Merge pull request #2965 from tnull/2024-03-impl-readable-writeable-offer-invoice...
[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 pub use crate::ln::channel::{InboundHTLCDetails, InboundHTLCStateDetails, OutboundHTLCDetails, OutboundHTLCStateDetails};
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 offer = channel_manager
1558 ///     .create_offer_builder()?
1559 /// # ;
1560 /// # // Needed for compiling for c_bindings
1561 /// # let builder: lightning::offers::offer::OfferBuilder<_, _> = offer.into();
1562 /// # let offer = builder
1563 ///     .description("coffee".to_string())
1564 ///     .amount_msats(10_000_000)
1565 ///     .build()?;
1566 /// let bech32_offer = offer.to_string();
1567 ///
1568 /// // On the event processing thread
1569 /// channel_manager.process_pending_events(&|event| match event {
1570 ///     Event::PaymentClaimable { payment_hash, purpose, .. } => match purpose {
1571 ///         PaymentPurpose::Bolt12OfferPayment { payment_preimage: Some(payment_preimage), .. } => {
1572 ///             println!("Claiming payment {}", payment_hash);
1573 ///             channel_manager.claim_funds(payment_preimage);
1574 ///         },
1575 ///         PaymentPurpose::Bolt12OfferPayment { payment_preimage: None, .. } => {
1576 ///             println!("Unknown payment hash: {}", payment_hash);
1577 ///         },
1578 ///         // ...
1579 /// #         _ => {},
1580 ///     },
1581 ///     Event::PaymentClaimed { payment_hash, amount_msat, .. } => {
1582 ///         println!("Claimed {} msats", amount_msat);
1583 ///     },
1584 ///     // ...
1585 /// #     _ => {},
1586 /// });
1587 /// # Ok(())
1588 /// # }
1589 /// ```
1590 ///
1591 /// Use [`pay_for_offer`] to initiated payment, which sends an [`InvoiceRequest`] for an [`Offer`]
1592 /// and pays the [`Bolt12Invoice`] response. In addition to success and failure events,
1593 /// [`ChannelManager`] may also generate an [`Event::InvoiceRequestFailed`].
1594 ///
1595 /// ```
1596 /// # use lightning::events::{Event, EventsProvider};
1597 /// # use lightning::ln::channelmanager::{AChannelManager, PaymentId, RecentPaymentDetails, Retry};
1598 /// # use lightning::offers::offer::Offer;
1599 /// #
1600 /// # fn example<T: AChannelManager>(
1601 /// #     channel_manager: T, offer: &Offer, quantity: Option<u64>, amount_msats: Option<u64>,
1602 /// #     payer_note: Option<String>, retry: Retry, max_total_routing_fee_msat: Option<u64>
1603 /// # ) {
1604 /// # let channel_manager = channel_manager.get_cm();
1605 /// let payment_id = PaymentId([42; 32]);
1606 /// match channel_manager.pay_for_offer(
1607 ///     offer, quantity, amount_msats, payer_note, payment_id, retry, max_total_routing_fee_msat
1608 /// ) {
1609 ///     Ok(()) => println!("Requesting invoice for offer"),
1610 ///     Err(e) => println!("Unable to request invoice for offer: {:?}", e),
1611 /// }
1612 ///
1613 /// // First the payment will be waiting on an invoice
1614 /// let expected_payment_id = payment_id;
1615 /// assert!(
1616 ///     channel_manager.list_recent_payments().iter().find(|details| matches!(
1617 ///         details,
1618 ///         RecentPaymentDetails::AwaitingInvoice { payment_id: expected_payment_id }
1619 ///     )).is_some()
1620 /// );
1621 ///
1622 /// // Once the invoice is received, a payment will be sent
1623 /// assert!(
1624 ///     channel_manager.list_recent_payments().iter().find(|details| matches!(
1625 ///         details,
1626 ///         RecentPaymentDetails::Pending { payment_id: expected_payment_id, ..  }
1627 ///     )).is_some()
1628 /// );
1629 ///
1630 /// // On the event processing thread
1631 /// channel_manager.process_pending_events(&|event| match event {
1632 ///     Event::PaymentSent { payment_id: Some(payment_id), .. } => println!("Paid {}", payment_id),
1633 ///     Event::PaymentFailed { payment_id, .. } => println!("Failed paying {}", payment_id),
1634 ///     Event::InvoiceRequestFailed { payment_id, .. } => println!("Failed paying {}", payment_id),
1635 ///     // ...
1636 /// #     _ => {},
1637 /// });
1638 /// # }
1639 /// ```
1640 ///
1641 /// ## BOLT 12 Refunds
1642 ///
1643 /// A [`Refund`] is a request for an invoice to be paid. Like *paying* for an [`Offer`], *creating*
1644 /// a [`Refund`] involves maintaining state since it represents a future outbound payment.
1645 /// Therefore, use [`create_refund_builder`] when creating one, otherwise [`ChannelManager`] will
1646 /// refuse to pay any corresponding [`Bolt12Invoice`] that it receives.
1647 ///
1648 /// ```
1649 /// # use core::time::Duration;
1650 /// # use lightning::events::{Event, EventsProvider};
1651 /// # use lightning::ln::channelmanager::{AChannelManager, PaymentId, RecentPaymentDetails, Retry};
1652 /// # use lightning::offers::parse::Bolt12SemanticError;
1653 /// #
1654 /// # fn example<T: AChannelManager>(
1655 /// #     channel_manager: T, amount_msats: u64, absolute_expiry: Duration, retry: Retry,
1656 /// #     max_total_routing_fee_msat: Option<u64>
1657 /// # ) -> Result<(), Bolt12SemanticError> {
1658 /// # let channel_manager = channel_manager.get_cm();
1659 /// let payment_id = PaymentId([42; 32]);
1660 /// let refund = channel_manager
1661 ///     .create_refund_builder(
1662 ///         amount_msats, absolute_expiry, payment_id, retry, max_total_routing_fee_msat
1663 ///     )?
1664 /// # ;
1665 /// # // Needed for compiling for c_bindings
1666 /// # let builder: lightning::offers::refund::RefundBuilder<_> = refund.into();
1667 /// # let refund = builder
1668 ///     .description("coffee".to_string())
1669 ///     .payer_note("refund for order 1234".to_string())
1670 ///     .build()?;
1671 /// let bech32_refund = refund.to_string();
1672 ///
1673 /// // First the payment will be waiting on an invoice
1674 /// let expected_payment_id = payment_id;
1675 /// assert!(
1676 ///     channel_manager.list_recent_payments().iter().find(|details| matches!(
1677 ///         details,
1678 ///         RecentPaymentDetails::AwaitingInvoice { payment_id: expected_payment_id }
1679 ///     )).is_some()
1680 /// );
1681 ///
1682 /// // Once the invoice is received, a payment will be sent
1683 /// assert!(
1684 ///     channel_manager.list_recent_payments().iter().find(|details| matches!(
1685 ///         details,
1686 ///         RecentPaymentDetails::Pending { payment_id: expected_payment_id, ..  }
1687 ///     )).is_some()
1688 /// );
1689 ///
1690 /// // On the event processing thread
1691 /// channel_manager.process_pending_events(&|event| match event {
1692 ///     Event::PaymentSent { payment_id: Some(payment_id), .. } => println!("Paid {}", payment_id),
1693 ///     Event::PaymentFailed { payment_id, .. } => println!("Failed paying {}", payment_id),
1694 ///     // ...
1695 /// #     _ => {},
1696 /// });
1697 /// # Ok(())
1698 /// # }
1699 /// ```
1700 ///
1701 /// Use [`request_refund_payment`] to send a [`Bolt12Invoice`] for receiving the refund. Similar to
1702 /// *creating* an [`Offer`], this is stateless as it represents an inbound payment.
1703 ///
1704 /// ```
1705 /// # use lightning::events::{Event, EventsProvider, PaymentPurpose};
1706 /// # use lightning::ln::channelmanager::AChannelManager;
1707 /// # use lightning::offers::refund::Refund;
1708 /// #
1709 /// # fn example<T: AChannelManager>(channel_manager: T, refund: &Refund) {
1710 /// # let channel_manager = channel_manager.get_cm();
1711 /// let known_payment_hash = match channel_manager.request_refund_payment(refund) {
1712 ///     Ok(invoice) => {
1713 ///         let payment_hash = invoice.payment_hash();
1714 ///         println!("Requesting refund payment {}", payment_hash);
1715 ///         payment_hash
1716 ///     },
1717 ///     Err(e) => panic!("Unable to request payment for refund: {:?}", e),
1718 /// };
1719 ///
1720 /// // On the event processing thread
1721 /// channel_manager.process_pending_events(&|event| match event {
1722 ///     Event::PaymentClaimable { payment_hash, purpose, .. } => match purpose {
1723 ///             PaymentPurpose::Bolt12RefundPayment { payment_preimage: Some(payment_preimage), .. } => {
1724 ///             assert_eq!(payment_hash, known_payment_hash);
1725 ///             println!("Claiming payment {}", payment_hash);
1726 ///             channel_manager.claim_funds(payment_preimage);
1727 ///         },
1728 ///             PaymentPurpose::Bolt12RefundPayment { payment_preimage: None, .. } => {
1729 ///             println!("Unknown payment hash: {}", payment_hash);
1730 ///             },
1731 ///         // ...
1732 /// #         _ => {},
1733 ///     },
1734 ///     Event::PaymentClaimed { payment_hash, amount_msat, .. } => {
1735 ///         assert_eq!(payment_hash, known_payment_hash);
1736 ///         println!("Claimed {} msats", amount_msat);
1737 ///     },
1738 ///     // ...
1739 /// #     _ => {},
1740 /// });
1741 /// # }
1742 /// ```
1743 ///
1744 /// # Persistence
1745 ///
1746 /// Implements [`Writeable`] to write out all channel state to disk. Implies [`peer_disconnected`] for
1747 /// all peers during write/read (though does not modify this instance, only the instance being
1748 /// serialized). This will result in any channels which have not yet exchanged [`funding_created`] (i.e.,
1749 /// called [`funding_transaction_generated`] for outbound channels) being closed.
1750 ///
1751 /// Note that you can be a bit lazier about writing out `ChannelManager` than you can be with
1752 /// [`ChannelMonitor`]. With [`ChannelMonitor`] you MUST durably write each
1753 /// [`ChannelMonitorUpdate`] before returning from
1754 /// [`chain::Watch::watch_channel`]/[`update_channel`] or before completing async writes. With
1755 /// `ChannelManager`s, writing updates happens out-of-band (and will prevent any other
1756 /// `ChannelManager` operations from occurring during the serialization process). If the
1757 /// deserialized version is out-of-date compared to the [`ChannelMonitor`] passed by reference to
1758 /// [`read`], those channels will be force-closed based on the `ChannelMonitor` state and no funds
1759 /// will be lost (modulo on-chain transaction fees).
1760 ///
1761 /// Note that the deserializer is only implemented for `(`[`BlockHash`]`, `[`ChannelManager`]`)`, which
1762 /// tells you the last block hash which was connected. You should get the best block tip before using the manager.
1763 /// See [`chain::Listen`] and [`chain::Confirm`] for more details.
1764 ///
1765 /// # `ChannelUpdate` Messages
1766 ///
1767 /// Note that `ChannelManager` is responsible for tracking liveness of its channels and generating
1768 /// [`ChannelUpdate`] messages informing peers that the channel is temporarily disabled. To avoid
1769 /// spam due to quick disconnection/reconnection, updates are not sent until the channel has been
1770 /// offline for a full minute. In order to track this, you must call
1771 /// [`timer_tick_occurred`] roughly once per minute, though it doesn't have to be perfect.
1772 ///
1773 /// # DoS Mitigation
1774 ///
1775 /// To avoid trivial DoS issues, `ChannelManager` limits the number of inbound connections and
1776 /// inbound channels without confirmed funding transactions. This may result in nodes which we do
1777 /// not have a channel with being unable to connect to us or open new channels with us if we have
1778 /// many peers with unfunded channels.
1779 ///
1780 /// Because it is an indication of trust, inbound channels which we've accepted as 0conf are
1781 /// exempted from the count of unfunded channels. Similarly, outbound channels and connections are
1782 /// never limited. Please ensure you limit the count of such channels yourself.
1783 ///
1784 /// # Type Aliases
1785 ///
1786 /// Rather than using a plain `ChannelManager`, it is preferable to use either a [`SimpleArcChannelManager`]
1787 /// a [`SimpleRefChannelManager`], for conciseness. See their documentation for more details, but
1788 /// essentially you should default to using a [`SimpleRefChannelManager`], and use a
1789 /// [`SimpleArcChannelManager`] when you require a `ChannelManager` with a static lifetime, such as when
1790 /// you're using lightning-net-tokio.
1791 ///
1792 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
1793 /// [`MessageHandler`]: crate::ln::peer_handler::MessageHandler
1794 /// [`OnionMessenger`]: crate::onion_message::messenger::OnionMessenger
1795 /// [`PeerManager::read_event`]: crate::ln::peer_handler::PeerManager::read_event
1796 /// [`PeerManager::process_events`]: crate::ln::peer_handler::PeerManager::process_events
1797 /// [`timer_tick_occurred`]: Self::timer_tick_occurred
1798 /// [`get_and_clear_needs_persistence`]: Self::get_and_clear_needs_persistence
1799 /// [`Persister`]: crate::util::persist::Persister
1800 /// [`KVStore`]: crate::util::persist::KVStore
1801 /// [`get_event_or_persistence_needed_future`]: Self::get_event_or_persistence_needed_future
1802 /// [`lightning-block-sync`]: https://docs.rs/lightning_block_sync/latest/lightning_block_sync
1803 /// [`lightning-transaction-sync`]: https://docs.rs/lightning_transaction_sync/latest/lightning_transaction_sync
1804 /// [`lightning-background-processor`]: https://docs.rs/lightning_background_processor/lightning_background_processor
1805 /// [`list_channels`]: Self::list_channels
1806 /// [`list_usable_channels`]: Self::list_usable_channels
1807 /// [`create_channel`]: Self::create_channel
1808 /// [`close_channel`]: Self::force_close_broadcasting_latest_txn
1809 /// [`force_close_broadcasting_latest_txn`]: Self::force_close_broadcasting_latest_txn
1810 /// [BOLT 11]: https://github.com/lightning/bolts/blob/master/11-payment-encoding.md
1811 /// [BOLT 12]: https://github.com/rustyrussell/lightning-rfc/blob/guilt/offers/12-offer-encoding.md
1812 /// [`list_recent_payments`]: Self::list_recent_payments
1813 /// [`abandon_payment`]: Self::abandon_payment
1814 /// [`lightning-invoice`]: https://docs.rs/lightning_invoice/latest/lightning_invoice
1815 /// [`create_inbound_payment`]: Self::create_inbound_payment
1816 /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
1817 /// [`claim_funds`]: Self::claim_funds
1818 /// [`send_payment`]: Self::send_payment
1819 /// [`offers`]: crate::offers
1820 /// [`create_offer_builder`]: Self::create_offer_builder
1821 /// [`pay_for_offer`]: Self::pay_for_offer
1822 /// [`InvoiceRequest`]: crate::offers::invoice_request::InvoiceRequest
1823 /// [`create_refund_builder`]: Self::create_refund_builder
1824 /// [`request_refund_payment`]: Self::request_refund_payment
1825 /// [`peer_disconnected`]: msgs::ChannelMessageHandler::peer_disconnected
1826 /// [`funding_created`]: msgs::FundingCreated
1827 /// [`funding_transaction_generated`]: Self::funding_transaction_generated
1828 /// [`BlockHash`]: bitcoin::hash_types::BlockHash
1829 /// [`update_channel`]: chain::Watch::update_channel
1830 /// [`ChannelUpdate`]: msgs::ChannelUpdate
1831 /// [`read`]: ReadableArgs::read
1832 //
1833 // Lock order:
1834 // The tree structure below illustrates the lock order requirements for the different locks of the
1835 // `ChannelManager`. Locks can be held at the same time if they are on the same branch in the tree,
1836 // and should then be taken in the order of the lowest to the highest level in the tree.
1837 // Note that locks on different branches shall not be taken at the same time, as doing so will
1838 // create a new lock order for those specific locks in the order they were taken.
1839 //
1840 // Lock order tree:
1841 //
1842 // `pending_offers_messages`
1843 //
1844 // `total_consistency_lock`
1845 //  |
1846 //  |__`forward_htlcs`
1847 //  |   |
1848 //  |   |__`pending_intercepted_htlcs`
1849 //  |
1850 //  |__`decode_update_add_htlcs`
1851 //  |
1852 //  |__`per_peer_state`
1853 //      |
1854 //      |__`pending_inbound_payments`
1855 //          |
1856 //          |__`claimable_payments`
1857 //          |
1858 //          |__`pending_outbound_payments` // This field's struct contains a map of pending outbounds
1859 //              |
1860 //              |__`peer_state`
1861 //                  |
1862 //                  |__`outpoint_to_peer`
1863 //                  |
1864 //                  |__`short_to_chan_info`
1865 //                  |
1866 //                  |__`outbound_scid_aliases`
1867 //                  |
1868 //                  |__`best_block`
1869 //                  |
1870 //                  |__`pending_events`
1871 //                      |
1872 //                      |__`pending_background_events`
1873 //
1874 pub struct ChannelManager<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
1875 where
1876         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
1877         T::Target: BroadcasterInterface,
1878         ES::Target: EntropySource,
1879         NS::Target: NodeSigner,
1880         SP::Target: SignerProvider,
1881         F::Target: FeeEstimator,
1882         R::Target: Router,
1883         L::Target: Logger,
1884 {
1885         default_configuration: UserConfig,
1886         chain_hash: ChainHash,
1887         fee_estimator: LowerBoundedFeeEstimator<F>,
1888         chain_monitor: M,
1889         tx_broadcaster: T,
1890         #[allow(unused)]
1891         router: R,
1892
1893         /// See `ChannelManager` struct-level documentation for lock order requirements.
1894         #[cfg(test)]
1895         pub(super) best_block: RwLock<BestBlock>,
1896         #[cfg(not(test))]
1897         best_block: RwLock<BestBlock>,
1898         secp_ctx: Secp256k1<secp256k1::All>,
1899
1900         /// Storage for PaymentSecrets and any requirements on future inbound payments before we will
1901         /// expose them to users via a PaymentClaimable event. HTLCs which do not meet the requirements
1902         /// here are failed when we process them as pending-forwardable-HTLCs, and entries are removed
1903         /// after we generate a PaymentClaimable upon receipt of all MPP parts or when they time out.
1904         ///
1905         /// See `ChannelManager` struct-level documentation for lock order requirements.
1906         pending_inbound_payments: Mutex<HashMap<PaymentHash, PendingInboundPayment>>,
1907
1908         /// The session_priv bytes and retry metadata of outbound payments which are pending resolution.
1909         /// The authoritative state of these HTLCs resides either within Channels or ChannelMonitors
1910         /// (if the channel has been force-closed), however we track them here to prevent duplicative
1911         /// PaymentSent/PaymentPathFailed events. Specifically, in the case of a duplicative
1912         /// update_fulfill_htlc message after a reconnect, we may "claim" a payment twice.
1913         /// Additionally, because ChannelMonitors are often not re-serialized after connecting block(s)
1914         /// which may generate a claim event, we may receive similar duplicate claim/fail MonitorEvents
1915         /// after reloading from disk while replaying blocks against ChannelMonitors.
1916         ///
1917         /// See `PendingOutboundPayment` documentation for more info.
1918         ///
1919         /// See `ChannelManager` struct-level documentation for lock order requirements.
1920         pending_outbound_payments: OutboundPayments,
1921
1922         /// SCID/SCID Alias -> forward infos. Key of 0 means payments received.
1923         ///
1924         /// Note that because we may have an SCID Alias as the key we can have two entries per channel,
1925         /// though in practice we probably won't be receiving HTLCs for a channel both via the alias
1926         /// and via the classic SCID.
1927         ///
1928         /// Note that no consistency guarantees are made about the existence of a channel with the
1929         /// `short_channel_id` here, nor the `short_channel_id` in the `PendingHTLCInfo`!
1930         ///
1931         /// See `ChannelManager` struct-level documentation for lock order requirements.
1932         #[cfg(test)]
1933         pub(super) forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
1934         #[cfg(not(test))]
1935         forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
1936         /// Storage for HTLCs that have been intercepted and bubbled up to the user. We hold them here
1937         /// until the user tells us what we should do with them.
1938         ///
1939         /// See `ChannelManager` struct-level documentation for lock order requirements.
1940         pending_intercepted_htlcs: Mutex<HashMap<InterceptId, PendingAddHTLCInfo>>,
1941
1942         /// SCID/SCID Alias -> pending `update_add_htlc`s to decode.
1943         ///
1944         /// Note that because we may have an SCID Alias as the key we can have two entries per channel,
1945         /// though in practice we probably won't be receiving HTLCs for a channel both via the alias
1946         /// and via the classic SCID.
1947         ///
1948         /// Note that no consistency guarantees are made about the existence of a channel with the
1949         /// `short_channel_id` here, nor the `channel_id` in `UpdateAddHTLC`!
1950         ///
1951         /// See `ChannelManager` struct-level documentation for lock order requirements.
1952         decode_update_add_htlcs: Mutex<HashMap<u64, Vec<msgs::UpdateAddHTLC>>>,
1953
1954         /// The sets of payments which are claimable or currently being claimed. See
1955         /// [`ClaimablePayments`]' individual field docs for more info.
1956         ///
1957         /// See `ChannelManager` struct-level documentation for lock order requirements.
1958         claimable_payments: Mutex<ClaimablePayments>,
1959
1960         /// The set of outbound SCID aliases across all our channels, including unconfirmed channels
1961         /// and some closed channels which reached a usable state prior to being closed. This is used
1962         /// only to avoid duplicates, and is not persisted explicitly to disk, but rebuilt from the
1963         /// active channel list on load.
1964         ///
1965         /// See `ChannelManager` struct-level documentation for lock order requirements.
1966         outbound_scid_aliases: Mutex<HashSet<u64>>,
1967
1968         /// Channel funding outpoint -> `counterparty_node_id`.
1969         ///
1970         /// Note that this map should only be used for `MonitorEvent` handling, to be able to access
1971         /// the corresponding channel for the event, as we only have access to the `channel_id` during
1972         /// the handling of the events.
1973         ///
1974         /// Note that no consistency guarantees are made about the existence of a peer with the
1975         /// `counterparty_node_id` in our other maps.
1976         ///
1977         /// TODO:
1978         /// The `counterparty_node_id` isn't passed with `MonitorEvent`s currently. To pass it, we need
1979         /// to make `counterparty_node_id`'s a required field in `ChannelMonitor`s, which unfortunately
1980         /// would break backwards compatability.
1981         /// We should add `counterparty_node_id`s to `MonitorEvent`s, and eventually rely on it in the
1982         /// future. That would make this map redundant, as only the `ChannelManager::per_peer_state` is
1983         /// required to access the channel with the `counterparty_node_id`.
1984         ///
1985         /// See `ChannelManager` struct-level documentation for lock order requirements.
1986         #[cfg(not(test))]
1987         outpoint_to_peer: Mutex<HashMap<OutPoint, PublicKey>>,
1988         #[cfg(test)]
1989         pub(crate) outpoint_to_peer: Mutex<HashMap<OutPoint, PublicKey>>,
1990
1991         /// SCIDs (and outbound SCID aliases) -> `counterparty_node_id`s and `channel_id`s.
1992         ///
1993         /// Outbound SCID aliases are added here once the channel is available for normal use, with
1994         /// SCIDs being added once the funding transaction is confirmed at the channel's required
1995         /// confirmation depth.
1996         ///
1997         /// Note that while this holds `counterparty_node_id`s and `channel_id`s, no consistency
1998         /// guarantees are made about the existence of a peer with the `counterparty_node_id` nor a
1999         /// channel with the `channel_id` in our other maps.
2000         ///
2001         /// See `ChannelManager` struct-level documentation for lock order requirements.
2002         #[cfg(test)]
2003         pub(super) short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, ChannelId)>>,
2004         #[cfg(not(test))]
2005         short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, ChannelId)>>,
2006
2007         our_network_pubkey: PublicKey,
2008
2009         inbound_payment_key: inbound_payment::ExpandedKey,
2010
2011         /// LDK puts the [fake scids] that it generates into namespaces, to identify the type of an
2012         /// incoming payment. To make it harder for a third-party to identify the type of a payment,
2013         /// we encrypt the namespace identifier using these bytes.
2014         ///
2015         /// [fake scids]: crate::util::scid_utils::fake_scid
2016         fake_scid_rand_bytes: [u8; 32],
2017
2018         /// When we send payment probes, we generate the [`PaymentHash`] based on this cookie secret
2019         /// and a random [`PaymentId`]. This allows us to discern probes from real payments, without
2020         /// keeping additional state.
2021         probing_cookie_secret: [u8; 32],
2022
2023         /// The highest block timestamp we've seen, which is usually a good guess at the current time.
2024         /// Assuming most miners are generating blocks with reasonable timestamps, this shouldn't be
2025         /// very far in the past, and can only ever be up to two hours in the future.
2026         highest_seen_timestamp: AtomicUsize,
2027
2028         /// The bulk of our storage. Currently the `per_peer_state` stores our channels on a per-peer
2029         /// basis, as well as the peer's latest features.
2030         ///
2031         /// If we are connected to a peer we always at least have an entry here, even if no channels
2032         /// are currently open with that peer.
2033         ///
2034         /// Because adding or removing an entry is rare, we usually take an outer read lock and then
2035         /// operate on the inner value freely. This opens up for parallel per-peer operation for
2036         /// channels.
2037         ///
2038         /// Note that the same thread must never acquire two inner `PeerState` locks at the same time.
2039         ///
2040         /// See `ChannelManager` struct-level documentation for lock order requirements.
2041         #[cfg(not(any(test, feature = "_test_utils")))]
2042         per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<SP>>>>,
2043         #[cfg(any(test, feature = "_test_utils"))]
2044         pub(super) per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<SP>>>>,
2045
2046         /// The set of events which we need to give to the user to handle. In some cases an event may
2047         /// require some further action after the user handles it (currently only blocking a monitor
2048         /// update from being handed to the user to ensure the included changes to the channel state
2049         /// are handled by the user before they're persisted durably to disk). In that case, the second
2050         /// element in the tuple is set to `Some` with further details of the action.
2051         ///
2052         /// Note that events MUST NOT be removed from pending_events after deserialization, as they
2053         /// could be in the middle of being processed without the direct mutex held.
2054         ///
2055         /// See `ChannelManager` struct-level documentation for lock order requirements.
2056         #[cfg(not(any(test, feature = "_test_utils")))]
2057         pending_events: Mutex<VecDeque<(events::Event, Option<EventCompletionAction>)>>,
2058         #[cfg(any(test, feature = "_test_utils"))]
2059         pub(crate) pending_events: Mutex<VecDeque<(events::Event, Option<EventCompletionAction>)>>,
2060
2061         /// A simple atomic flag to ensure only one task at a time can be processing events asynchronously.
2062         pending_events_processor: AtomicBool,
2063
2064         /// If we are running during init (either directly during the deserialization method or in
2065         /// block connection methods which run after deserialization but before normal operation) we
2066         /// cannot provide the user with [`ChannelMonitorUpdate`]s through the normal update flow -
2067         /// prior to normal operation the user may not have loaded the [`ChannelMonitor`]s into their
2068         /// [`ChainMonitor`] and thus attempting to update it will fail or panic.
2069         ///
2070         /// Thus, we place them here to be handled as soon as possible once we are running normally.
2071         ///
2072         /// See `ChannelManager` struct-level documentation for lock order requirements.
2073         ///
2074         /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
2075         pending_background_events: Mutex<Vec<BackgroundEvent>>,
2076         /// Used when we have to take a BIG lock to make sure everything is self-consistent.
2077         /// Essentially just when we're serializing ourselves out.
2078         /// Taken first everywhere where we are making changes before any other locks.
2079         /// When acquiring this lock in read mode, rather than acquiring it directly, call
2080         /// `PersistenceNotifierGuard::notify_on_drop(..)` and pass the lock to it, to ensure the
2081         /// Notifier the lock contains sends out a notification when the lock is released.
2082         total_consistency_lock: RwLock<()>,
2083         /// Tracks the progress of channels going through batch funding by whether funding_signed was
2084         /// received and the monitor has been persisted.
2085         ///
2086         /// This information does not need to be persisted as funding nodes can forget
2087         /// unfunded channels upon disconnection.
2088         funding_batch_states: Mutex<BTreeMap<Txid, Vec<(ChannelId, PublicKey, bool)>>>,
2089
2090         background_events_processed_since_startup: AtomicBool,
2091
2092         event_persist_notifier: Notifier,
2093         needs_persist_flag: AtomicBool,
2094
2095         pending_offers_messages: Mutex<Vec<PendingOnionMessage<OffersMessage>>>,
2096
2097         /// Tracks the message events that are to be broadcasted when we are connected to some peer.
2098         pending_broadcast_messages: Mutex<Vec<MessageSendEvent>>,
2099
2100         entropy_source: ES,
2101         node_signer: NS,
2102         signer_provider: SP,
2103
2104         logger: L,
2105 }
2106
2107 /// Chain-related parameters used to construct a new `ChannelManager`.
2108 ///
2109 /// Typically, the block-specific parameters are derived from the best block hash for the network,
2110 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
2111 /// are not needed when deserializing a previously constructed `ChannelManager`.
2112 #[derive(Clone, Copy, PartialEq)]
2113 pub struct ChainParameters {
2114         /// The network for determining the `chain_hash` in Lightning messages.
2115         pub network: Network,
2116
2117         /// The hash and height of the latest block successfully connected.
2118         ///
2119         /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
2120         pub best_block: BestBlock,
2121 }
2122
2123 #[derive(Copy, Clone, PartialEq)]
2124 #[must_use]
2125 enum NotifyOption {
2126         DoPersist,
2127         SkipPersistHandleEvents,
2128         SkipPersistNoEvents,
2129 }
2130
2131 /// Whenever we release the `ChannelManager`'s `total_consistency_lock`, from read mode, it is
2132 /// desirable to notify any listeners on `await_persistable_update_timeout`/
2133 /// `await_persistable_update` when new updates are available for persistence. Therefore, this
2134 /// struct is responsible for locking the total consistency lock and, upon going out of scope,
2135 /// sending the aforementioned notification (since the lock being released indicates that the
2136 /// updates are ready for persistence).
2137 ///
2138 /// We allow callers to either always notify by constructing with `notify_on_drop` or choose to
2139 /// notify or not based on whether relevant changes have been made, providing a closure to
2140 /// `optionally_notify` which returns a `NotifyOption`.
2141 struct PersistenceNotifierGuard<'a, F: FnMut() -> NotifyOption> {
2142         event_persist_notifier: &'a Notifier,
2143         needs_persist_flag: &'a AtomicBool,
2144         should_persist: F,
2145         // We hold onto this result so the lock doesn't get released immediately.
2146         _read_guard: RwLockReadGuard<'a, ()>,
2147 }
2148
2149 impl<'a> PersistenceNotifierGuard<'a, fn() -> NotifyOption> { // We don't care what the concrete F is here, it's unused
2150         /// Notifies any waiters and indicates that we need to persist, in addition to possibly having
2151         /// events to handle.
2152         ///
2153         /// This must always be called if the changes included a `ChannelMonitorUpdate`, as well as in
2154         /// other cases where losing the changes on restart may result in a force-close or otherwise
2155         /// isn't ideal.
2156         fn notify_on_drop<C: AChannelManager>(cm: &'a C) -> PersistenceNotifierGuard<'a, impl FnMut() -> NotifyOption> {
2157                 Self::optionally_notify(cm, || -> NotifyOption { NotifyOption::DoPersist })
2158         }
2159
2160         fn optionally_notify<F: FnMut() -> NotifyOption, C: AChannelManager>(cm: &'a C, mut persist_check: F)
2161         -> PersistenceNotifierGuard<'a, impl FnMut() -> NotifyOption> {
2162                 let read_guard = cm.get_cm().total_consistency_lock.read().unwrap();
2163                 let force_notify = cm.get_cm().process_background_events();
2164
2165                 PersistenceNotifierGuard {
2166                         event_persist_notifier: &cm.get_cm().event_persist_notifier,
2167                         needs_persist_flag: &cm.get_cm().needs_persist_flag,
2168                         should_persist: move || {
2169                                 // Pick the "most" action between `persist_check` and the background events
2170                                 // processing and return that.
2171                                 let notify = persist_check();
2172                                 match (notify, force_notify) {
2173                                         (NotifyOption::DoPersist, _) => NotifyOption::DoPersist,
2174                                         (_, NotifyOption::DoPersist) => NotifyOption::DoPersist,
2175                                         (NotifyOption::SkipPersistHandleEvents, _) => NotifyOption::SkipPersistHandleEvents,
2176                                         (_, NotifyOption::SkipPersistHandleEvents) => NotifyOption::SkipPersistHandleEvents,
2177                                         _ => NotifyOption::SkipPersistNoEvents,
2178                                 }
2179                         },
2180                         _read_guard: read_guard,
2181                 }
2182         }
2183
2184         /// Note that if any [`ChannelMonitorUpdate`]s are possibly generated,
2185         /// [`ChannelManager::process_background_events`] MUST be called first (or
2186         /// [`Self::optionally_notify`] used).
2187         fn optionally_notify_skipping_background_events<F: Fn() -> NotifyOption, C: AChannelManager>
2188         (cm: &'a C, persist_check: F) -> PersistenceNotifierGuard<'a, F> {
2189                 let read_guard = cm.get_cm().total_consistency_lock.read().unwrap();
2190
2191                 PersistenceNotifierGuard {
2192                         event_persist_notifier: &cm.get_cm().event_persist_notifier,
2193                         needs_persist_flag: &cm.get_cm().needs_persist_flag,
2194                         should_persist: persist_check,
2195                         _read_guard: read_guard,
2196                 }
2197         }
2198 }
2199
2200 impl<'a, F: FnMut() -> NotifyOption> Drop for PersistenceNotifierGuard<'a, F> {
2201         fn drop(&mut self) {
2202                 match (self.should_persist)() {
2203                         NotifyOption::DoPersist => {
2204                                 self.needs_persist_flag.store(true, Ordering::Release);
2205                                 self.event_persist_notifier.notify()
2206                         },
2207                         NotifyOption::SkipPersistHandleEvents =>
2208                                 self.event_persist_notifier.notify(),
2209                         NotifyOption::SkipPersistNoEvents => {},
2210                 }
2211         }
2212 }
2213
2214 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
2215 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
2216 ///
2217 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
2218 ///
2219 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
2220 pub const BREAKDOWN_TIMEOUT: u16 = 6 * 24;
2221 /// The amount of time in blocks we're willing to wait to claim money back to us. This matches
2222 /// the maximum required amount in lnd as of March 2021.
2223 pub(crate) const MAX_LOCAL_BREAKDOWN_TIMEOUT: u16 = 2 * 6 * 24 * 7;
2224
2225 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
2226 /// HTLC's CLTV. The current default represents roughly seven hours of blocks at six blocks/hour.
2227 ///
2228 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
2229 ///
2230 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
2231 // This should always be a few blocks greater than channelmonitor::CLTV_CLAIM_BUFFER,
2232 // i.e. the node we forwarded the payment on to should always have enough room to reliably time out
2233 // the HTLC via a full update_fail_htlc/commitment_signed dance before we hit the
2234 // CLTV_CLAIM_BUFFER point (we static assert that it's at least 3 blocks more).
2235 pub const MIN_CLTV_EXPIRY_DELTA: u16 = 6*7;
2236 // This should be long enough to allow a payment path drawn across multiple routing hops with substantial
2237 // `cltv_expiry_delta`. Indeed, the length of those values is the reaction delay offered to a routing node
2238 // in case of HTLC on-chain settlement. While appearing less competitive, a node operator could decide to
2239 // scale them up to suit its security policy. At the network-level, we shouldn't constrain them too much,
2240 // while avoiding to introduce a DoS vector. Further, a low CTLV_FAR_FAR_AWAY could be a source of
2241 // routing failure for any HTLC sender picking up an LDK node among the first hops.
2242 pub(super) const CLTV_FAR_FAR_AWAY: u32 = 14 * 24 * 6;
2243
2244 /// Minimum CLTV difference between the current block height and received inbound payments.
2245 /// Invoices generated for payment to us must set their `min_final_cltv_expiry_delta` field to at least
2246 /// this value.
2247 // Note that we fail if exactly HTLC_FAIL_BACK_BUFFER + 1 was used, so we need to add one for
2248 // any payments to succeed. Further, we don't want payments to fail if a block was found while
2249 // a payment was being routed, so we add an extra block to be safe.
2250 pub const MIN_FINAL_CLTV_EXPIRY_DELTA: u16 = HTLC_FAIL_BACK_BUFFER as u16 + 3;
2251
2252 // Check that our CLTV_EXPIRY is at least CLTV_CLAIM_BUFFER + ANTI_REORG_DELAY + LATENCY_GRACE_PERIOD_BLOCKS,
2253 // ie that if the next-hop peer fails the HTLC within
2254 // LATENCY_GRACE_PERIOD_BLOCKS then we'll still have CLTV_CLAIM_BUFFER left to timeout it onchain,
2255 // then waiting ANTI_REORG_DELAY to be reorg-safe on the outbound HLTC and
2256 // failing the corresponding htlc backward, and us now seeing the last block of ANTI_REORG_DELAY before
2257 // LATENCY_GRACE_PERIOD_BLOCKS.
2258 #[allow(dead_code)]
2259 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;
2260
2261 // Check for ability of an attacker to make us fail on-chain by delaying an HTLC claim. See
2262 // ChannelMonitor::should_broadcast_holder_commitment_txn for a description of why this is needed.
2263 #[allow(dead_code)]
2264 const CHECK_CLTV_EXPIRY_SANITY_2: u32 = MIN_CLTV_EXPIRY_DELTA as u32 - LATENCY_GRACE_PERIOD_BLOCKS - 2*CLTV_CLAIM_BUFFER;
2265
2266 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until expiry of incomplete MPPs
2267 pub(crate) const MPP_TIMEOUT_TICKS: u8 = 3;
2268
2269 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is disconnected
2270 /// until we mark the channel disabled and gossip the update.
2271 pub(crate) const DISABLE_GOSSIP_TICKS: u8 = 10;
2272
2273 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is connected until
2274 /// we mark the channel enabled and gossip the update.
2275 pub(crate) const ENABLE_GOSSIP_TICKS: u8 = 5;
2276
2277 /// The maximum number of unfunded channels we can have per-peer before we start rejecting new
2278 /// (inbound) ones. The number of peers with unfunded channels is limited separately in
2279 /// [`MAX_UNFUNDED_CHANNEL_PEERS`].
2280 const MAX_UNFUNDED_CHANS_PER_PEER: usize = 4;
2281
2282 /// The maximum number of peers from which we will allow pending unfunded channels. Once we reach
2283 /// this many peers we reject new (inbound) channels from peers with which we don't have a channel.
2284 const MAX_UNFUNDED_CHANNEL_PEERS: usize = 50;
2285
2286 /// The maximum number of peers which we do not have a (funded) channel with. Once we reach this
2287 /// many peers we reject new (inbound) connections.
2288 const MAX_NO_CHANNEL_PEERS: usize = 250;
2289
2290 /// Information needed for constructing an invoice route hint for this channel.
2291 #[derive(Clone, Debug, PartialEq)]
2292 pub struct CounterpartyForwardingInfo {
2293         /// Base routing fee in millisatoshis.
2294         pub fee_base_msat: u32,
2295         /// Amount in millionths of a satoshi the channel will charge per transferred satoshi.
2296         pub fee_proportional_millionths: u32,
2297         /// The minimum difference in cltv_expiry between an ingoing HTLC and its outgoing counterpart,
2298         /// such that the outgoing HTLC is forwardable to this counterparty. See `msgs::ChannelUpdate`'s
2299         /// `cltv_expiry_delta` for more details.
2300         pub cltv_expiry_delta: u16,
2301 }
2302
2303 /// Channel parameters which apply to our counterparty. These are split out from [`ChannelDetails`]
2304 /// to better separate parameters.
2305 #[derive(Clone, Debug, PartialEq)]
2306 pub struct ChannelCounterparty {
2307         /// The node_id of our counterparty
2308         pub node_id: PublicKey,
2309         /// The Features the channel counterparty provided upon last connection.
2310         /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
2311         /// many routing-relevant features are present in the init context.
2312         pub features: InitFeatures,
2313         /// The value, in satoshis, that must always be held in the channel for our counterparty. This
2314         /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
2315         /// claiming at least this value on chain.
2316         ///
2317         /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
2318         ///
2319         /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
2320         pub unspendable_punishment_reserve: u64,
2321         /// Information on the fees and requirements that the counterparty requires when forwarding
2322         /// payments to us through this channel.
2323         pub forwarding_info: Option<CounterpartyForwardingInfo>,
2324         /// The smallest value HTLC (in msat) the remote peer will accept, for this channel. This field
2325         /// is only `None` before we have received either the `OpenChannel` or `AcceptChannel` message
2326         /// from the remote peer, or for `ChannelCounterparty` objects serialized prior to LDK 0.0.107.
2327         pub outbound_htlc_minimum_msat: Option<u64>,
2328         /// The largest value HTLC (in msat) the remote peer currently will accept, for this channel.
2329         pub outbound_htlc_maximum_msat: Option<u64>,
2330 }
2331
2332 /// Details of a channel, as returned by [`ChannelManager::list_channels`] and [`ChannelManager::list_usable_channels`]
2333 #[derive(Clone, Debug, PartialEq)]
2334 pub struct ChannelDetails {
2335         /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
2336         /// thereafter this is the txid of the funding transaction xor the funding transaction output).
2337         /// Note that this means this value is *not* persistent - it can change once during the
2338         /// lifetime of the channel.
2339         pub channel_id: ChannelId,
2340         /// Parameters which apply to our counterparty. See individual fields for more information.
2341         pub counterparty: ChannelCounterparty,
2342         /// The Channel's funding transaction output, if we've negotiated the funding transaction with
2343         /// our counterparty already.
2344         pub funding_txo: Option<OutPoint>,
2345         /// The features which this channel operates with. See individual features for more info.
2346         ///
2347         /// `None` until negotiation completes and the channel type is finalized.
2348         pub channel_type: Option<ChannelTypeFeatures>,
2349         /// The position of the funding transaction in the chain. None if the funding transaction has
2350         /// not yet been confirmed and the channel fully opened.
2351         ///
2352         /// Note that if [`inbound_scid_alias`] is set, it must be used for invoices and inbound
2353         /// payments instead of this. See [`get_inbound_payment_scid`].
2354         ///
2355         /// For channels with [`confirmations_required`] set to `Some(0)`, [`outbound_scid_alias`] may
2356         /// be used in place of this in outbound routes. See [`get_outbound_payment_scid`].
2357         ///
2358         /// [`inbound_scid_alias`]: Self::inbound_scid_alias
2359         /// [`outbound_scid_alias`]: Self::outbound_scid_alias
2360         /// [`get_inbound_payment_scid`]: Self::get_inbound_payment_scid
2361         /// [`get_outbound_payment_scid`]: Self::get_outbound_payment_scid
2362         /// [`confirmations_required`]: Self::confirmations_required
2363         pub short_channel_id: Option<u64>,
2364         /// An optional [`short_channel_id`] alias for this channel, randomly generated by us and
2365         /// usable in place of [`short_channel_id`] to reference the channel in outbound routes when
2366         /// the channel has not yet been confirmed (as long as [`confirmations_required`] is
2367         /// `Some(0)`).
2368         ///
2369         /// This will be `None` as long as the channel is not available for routing outbound payments.
2370         ///
2371         /// [`short_channel_id`]: Self::short_channel_id
2372         /// [`confirmations_required`]: Self::confirmations_required
2373         pub outbound_scid_alias: Option<u64>,
2374         /// An optional [`short_channel_id`] alias for this channel, randomly generated by our
2375         /// counterparty and usable in place of [`short_channel_id`] in invoice route hints. Our
2376         /// counterparty will recognize the alias provided here in place of the [`short_channel_id`]
2377         /// when they see a payment to be routed to us.
2378         ///
2379         /// Our counterparty may choose to rotate this value at any time, though will always recognize
2380         /// previous values for inbound payment forwarding.
2381         ///
2382         /// [`short_channel_id`]: Self::short_channel_id
2383         pub inbound_scid_alias: Option<u64>,
2384         /// The value, in satoshis, of this channel as appears in the funding output
2385         pub channel_value_satoshis: u64,
2386         /// The value, in satoshis, that must always be held in the channel for us. This value ensures
2387         /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
2388         /// this value on chain.
2389         ///
2390         /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
2391         ///
2392         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
2393         ///
2394         /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
2395         pub unspendable_punishment_reserve: Option<u64>,
2396         /// The `user_channel_id` value passed in to [`ChannelManager::create_channel`] for outbound
2397         /// channels, or to [`ChannelManager::accept_inbound_channel`] for inbound channels if
2398         /// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true. Otherwise
2399         /// `user_channel_id` will be randomized for an inbound channel.  This may be zero for objects
2400         /// serialized with LDK versions prior to 0.0.113.
2401         ///
2402         /// [`ChannelManager::create_channel`]: crate::ln::channelmanager::ChannelManager::create_channel
2403         /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
2404         /// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
2405         pub user_channel_id: u128,
2406         /// The currently negotiated fee rate denominated in satoshi per 1000 weight units,
2407         /// which is applied to commitment and HTLC transactions.
2408         ///
2409         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.115.
2410         pub feerate_sat_per_1000_weight: Option<u32>,
2411         /// Our total balance.  This is the amount we would get if we close the channel.
2412         /// This value is not exact. Due to various in-flight changes and feerate changes, exactly this
2413         /// amount is not likely to be recoverable on close.
2414         ///
2415         /// This does not include any pending HTLCs which are not yet fully resolved (and, thus, whose
2416         /// balance is not available for inclusion in new outbound HTLCs). This further does not include
2417         /// any pending outgoing HTLCs which are awaiting some other resolution to be sent.
2418         /// This does not consider any on-chain fees.
2419         ///
2420         /// See also [`ChannelDetails::outbound_capacity_msat`]
2421         pub balance_msat: u64,
2422         /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
2423         /// any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
2424         /// available for inclusion in new outbound HTLCs). This further does not include any pending
2425         /// outgoing HTLCs which are awaiting some other resolution to be sent.
2426         ///
2427         /// See also [`ChannelDetails::balance_msat`]
2428         ///
2429         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
2430         /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
2431         /// should be able to spend nearly this amount.
2432         pub outbound_capacity_msat: u64,
2433         /// The available outbound capacity for sending a single HTLC to the remote peer. This is
2434         /// similar to [`ChannelDetails::outbound_capacity_msat`] but it may be further restricted by
2435         /// the current state and per-HTLC limit(s). This is intended for use when routing, allowing us
2436         /// to use a limit as close as possible to the HTLC limit we can currently send.
2437         ///
2438         /// See also [`ChannelDetails::next_outbound_htlc_minimum_msat`],
2439         /// [`ChannelDetails::balance_msat`], and [`ChannelDetails::outbound_capacity_msat`].
2440         pub next_outbound_htlc_limit_msat: u64,
2441         /// The minimum value for sending a single HTLC to the remote peer. This is the equivalent of
2442         /// [`ChannelDetails::next_outbound_htlc_limit_msat`] but represents a lower-bound, rather than
2443         /// an upper-bound. This is intended for use when routing, allowing us to ensure we pick a
2444         /// route which is valid.
2445         pub next_outbound_htlc_minimum_msat: u64,
2446         /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
2447         /// include any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
2448         /// available for inclusion in new inbound HTLCs).
2449         /// Note that there are some corner cases not fully handled here, so the actual available
2450         /// inbound capacity may be slightly higher than this.
2451         ///
2452         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
2453         /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
2454         /// However, our counterparty should be able to spend nearly this amount.
2455         pub inbound_capacity_msat: u64,
2456         /// The number of required confirmations on the funding transaction before the funding will be
2457         /// considered "locked". This number is selected by the channel fundee (i.e. us if
2458         /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
2459         /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
2460         /// [`ChannelHandshakeLimits::max_minimum_depth`].
2461         ///
2462         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
2463         ///
2464         /// [`is_outbound`]: ChannelDetails::is_outbound
2465         /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
2466         /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
2467         pub confirmations_required: Option<u32>,
2468         /// The current number of confirmations on the funding transaction.
2469         ///
2470         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.113.
2471         pub confirmations: Option<u32>,
2472         /// The number of blocks (after our commitment transaction confirms) that we will need to wait
2473         /// until we can claim our funds after we force-close the channel. During this time our
2474         /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
2475         /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
2476         /// time to claim our non-HTLC-encumbered funds.
2477         ///
2478         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
2479         pub force_close_spend_delay: Option<u16>,
2480         /// True if the channel was initiated (and thus funded) by us.
2481         pub is_outbound: bool,
2482         /// True if the channel is confirmed, channel_ready messages have been exchanged, and the
2483         /// channel is not currently being shut down. `channel_ready` message exchange implies the
2484         /// required confirmation count has been reached (and we were connected to the peer at some
2485         /// point after the funding transaction received enough confirmations). The required
2486         /// confirmation count is provided in [`confirmations_required`].
2487         ///
2488         /// [`confirmations_required`]: ChannelDetails::confirmations_required
2489         pub is_channel_ready: bool,
2490         /// The stage of the channel's shutdown.
2491         /// `None` for `ChannelDetails` serialized on LDK versions prior to 0.0.116.
2492         pub channel_shutdown_state: Option<ChannelShutdownState>,
2493         /// True if the channel is (a) confirmed and channel_ready messages have been exchanged, (b)
2494         /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
2495         ///
2496         /// This is a strict superset of `is_channel_ready`.
2497         pub is_usable: bool,
2498         /// True if this channel is (or will be) publicly-announced.
2499         pub is_public: bool,
2500         /// The smallest value HTLC (in msat) we will accept, for this channel. This field
2501         /// is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.107
2502         pub inbound_htlc_minimum_msat: Option<u64>,
2503         /// The largest value HTLC (in msat) we currently will accept, for this channel.
2504         pub inbound_htlc_maximum_msat: Option<u64>,
2505         /// Set of configurable parameters that affect channel operation.
2506         ///
2507         /// This field is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.109.
2508         pub config: Option<ChannelConfig>,
2509         /// Pending inbound HTLCs.
2510         ///
2511         /// This field is empty for objects serialized with LDK versions prior to 0.0.122.
2512         pub pending_inbound_htlcs: Vec<InboundHTLCDetails>,
2513         /// Pending outbound HTLCs.
2514         ///
2515         /// This field is empty for objects serialized with LDK versions prior to 0.0.122.
2516         pub pending_outbound_htlcs: Vec<OutboundHTLCDetails>,
2517 }
2518
2519 impl ChannelDetails {
2520         /// Gets the current SCID which should be used to identify this channel for inbound payments.
2521         /// This should be used for providing invoice hints or in any other context where our
2522         /// counterparty will forward a payment to us.
2523         ///
2524         /// This is either the [`ChannelDetails::inbound_scid_alias`], if set, or the
2525         /// [`ChannelDetails::short_channel_id`]. See those for more information.
2526         pub fn get_inbound_payment_scid(&self) -> Option<u64> {
2527                 self.inbound_scid_alias.or(self.short_channel_id)
2528         }
2529
2530         /// Gets the current SCID which should be used to identify this channel for outbound payments.
2531         /// This should be used in [`Route`]s to describe the first hop or in other contexts where
2532         /// we're sending or forwarding a payment outbound over this channel.
2533         ///
2534         /// This is either the [`ChannelDetails::short_channel_id`], if set, or the
2535         /// [`ChannelDetails::outbound_scid_alias`]. See those for more information.
2536         pub fn get_outbound_payment_scid(&self) -> Option<u64> {
2537                 self.short_channel_id.or(self.outbound_scid_alias)
2538         }
2539
2540         fn from_channel_context<SP: Deref, F: Deref>(
2541                 context: &ChannelContext<SP>, best_block_height: u32, latest_features: InitFeatures,
2542                 fee_estimator: &LowerBoundedFeeEstimator<F>
2543         ) -> Self
2544         where
2545                 SP::Target: SignerProvider,
2546                 F::Target: FeeEstimator
2547         {
2548                 let balance = context.get_available_balances(fee_estimator);
2549                 let (to_remote_reserve_satoshis, to_self_reserve_satoshis) =
2550                         context.get_holder_counterparty_selected_channel_reserve_satoshis();
2551                 ChannelDetails {
2552                         channel_id: context.channel_id(),
2553                         counterparty: ChannelCounterparty {
2554                                 node_id: context.get_counterparty_node_id(),
2555                                 features: latest_features,
2556                                 unspendable_punishment_reserve: to_remote_reserve_satoshis,
2557                                 forwarding_info: context.counterparty_forwarding_info(),
2558                                 // Ensures that we have actually received the `htlc_minimum_msat` value
2559                                 // from the counterparty through the `OpenChannel` or `AcceptChannel`
2560                                 // message (as they are always the first message from the counterparty).
2561                                 // Else `Channel::get_counterparty_htlc_minimum_msat` could return the
2562                                 // default `0` value set by `Channel::new_outbound`.
2563                                 outbound_htlc_minimum_msat: if context.have_received_message() {
2564                                         Some(context.get_counterparty_htlc_minimum_msat()) } else { None },
2565                                 outbound_htlc_maximum_msat: context.get_counterparty_htlc_maximum_msat(),
2566                         },
2567                         funding_txo: context.get_funding_txo(),
2568                         // Note that accept_channel (or open_channel) is always the first message, so
2569                         // `have_received_message` indicates that type negotiation has completed.
2570                         channel_type: if context.have_received_message() { Some(context.get_channel_type().clone()) } else { None },
2571                         short_channel_id: context.get_short_channel_id(),
2572                         outbound_scid_alias: if context.is_usable() { Some(context.outbound_scid_alias()) } else { None },
2573                         inbound_scid_alias: context.latest_inbound_scid_alias(),
2574                         channel_value_satoshis: context.get_value_satoshis(),
2575                         feerate_sat_per_1000_weight: Some(context.get_feerate_sat_per_1000_weight()),
2576                         unspendable_punishment_reserve: to_self_reserve_satoshis,
2577                         balance_msat: balance.balance_msat,
2578                         inbound_capacity_msat: balance.inbound_capacity_msat,
2579                         outbound_capacity_msat: balance.outbound_capacity_msat,
2580                         next_outbound_htlc_limit_msat: balance.next_outbound_htlc_limit_msat,
2581                         next_outbound_htlc_minimum_msat: balance.next_outbound_htlc_minimum_msat,
2582                         user_channel_id: context.get_user_id(),
2583                         confirmations_required: context.minimum_depth(),
2584                         confirmations: Some(context.get_funding_tx_confirmations(best_block_height)),
2585                         force_close_spend_delay: context.get_counterparty_selected_contest_delay(),
2586                         is_outbound: context.is_outbound(),
2587                         is_channel_ready: context.is_usable(),
2588                         is_usable: context.is_live(),
2589                         is_public: context.should_announce(),
2590                         inbound_htlc_minimum_msat: Some(context.get_holder_htlc_minimum_msat()),
2591                         inbound_htlc_maximum_msat: context.get_holder_htlc_maximum_msat(),
2592                         config: Some(context.config()),
2593                         channel_shutdown_state: Some(context.shutdown_state()),
2594                         pending_inbound_htlcs: context.get_pending_inbound_htlc_details(),
2595                         pending_outbound_htlcs: context.get_pending_outbound_htlc_details(),
2596                 }
2597         }
2598 }
2599
2600 #[derive(Clone, Copy, Debug, PartialEq, Eq)]
2601 /// Further information on the details of the channel shutdown.
2602 /// Upon channels being forced closed (i.e. commitment transaction confirmation detected
2603 /// by `ChainMonitor`), ChannelShutdownState will be set to `ShutdownComplete` or
2604 /// the channel will be removed shortly.
2605 /// Also note, that in normal operation, peers could disconnect at any of these states
2606 /// and require peer re-connection before making progress onto other states
2607 pub enum ChannelShutdownState {
2608         /// Channel has not sent or received a shutdown message.
2609         NotShuttingDown,
2610         /// Local node has sent a shutdown message for this channel.
2611         ShutdownInitiated,
2612         /// Shutdown message exchanges have concluded and the channels are in the midst of
2613         /// resolving all existing open HTLCs before closing can continue.
2614         ResolvingHTLCs,
2615         /// All HTLCs have been resolved, nodes are currently negotiating channel close onchain fee rates.
2616         NegotiatingClosingFee,
2617         /// We've successfully negotiated a closing_signed dance. At this point `ChannelManager` is about
2618         /// to drop the channel.
2619         ShutdownComplete,
2620 }
2621
2622 /// Used by [`ChannelManager::list_recent_payments`] to express the status of recent payments.
2623 /// These include payments that have yet to find a successful path, or have unresolved HTLCs.
2624 #[derive(Debug, PartialEq)]
2625 pub enum RecentPaymentDetails {
2626         /// When an invoice was requested and thus a payment has not yet been sent.
2627         AwaitingInvoice {
2628                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
2629                 /// a payment and ensure idempotency in LDK.
2630                 payment_id: PaymentId,
2631         },
2632         /// When a payment is still being sent and awaiting successful delivery.
2633         Pending {
2634                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
2635                 /// a payment and ensure idempotency in LDK.
2636                 payment_id: PaymentId,
2637                 /// Hash of the payment that is currently being sent but has yet to be fulfilled or
2638                 /// abandoned.
2639                 payment_hash: PaymentHash,
2640                 /// Total amount (in msat, excluding fees) across all paths for this payment,
2641                 /// not just the amount currently inflight.
2642                 total_msat: u64,
2643         },
2644         /// When a pending payment is fulfilled, we continue tracking it until all pending HTLCs have
2645         /// been resolved. Upon receiving [`Event::PaymentSent`], we delay for a few minutes before the
2646         /// payment is removed from tracking.
2647         Fulfilled {
2648                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
2649                 /// a payment and ensure idempotency in LDK.
2650                 payment_id: PaymentId,
2651                 /// Hash of the payment that was claimed. `None` for serializations of [`ChannelManager`]
2652                 /// made before LDK version 0.0.104.
2653                 payment_hash: Option<PaymentHash>,
2654         },
2655         /// After a payment's retries are exhausted per the provided [`Retry`], or it is explicitly
2656         /// abandoned via [`ChannelManager::abandon_payment`], it is marked as abandoned until all
2657         /// pending HTLCs for this payment resolve and an [`Event::PaymentFailed`] is generated.
2658         Abandoned {
2659                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
2660                 /// a payment and ensure idempotency in LDK.
2661                 payment_id: PaymentId,
2662                 /// Hash of the payment that we have given up trying to send.
2663                 payment_hash: PaymentHash,
2664         },
2665 }
2666
2667 /// Route hints used in constructing invoices for [phantom node payents].
2668 ///
2669 /// [phantom node payments]: crate::sign::PhantomKeysManager
2670 #[derive(Clone)]
2671 pub struct PhantomRouteHints {
2672         /// The list of channels to be included in the invoice route hints.
2673         pub channels: Vec<ChannelDetails>,
2674         /// A fake scid used for representing the phantom node's fake channel in generating the invoice
2675         /// route hints.
2676         pub phantom_scid: u64,
2677         /// The pubkey of the real backing node that would ultimately receive the payment.
2678         pub real_node_pubkey: PublicKey,
2679 }
2680
2681 macro_rules! handle_error {
2682         ($self: ident, $internal: expr, $counterparty_node_id: expr) => { {
2683                 // In testing, ensure there are no deadlocks where the lock is already held upon
2684                 // entering the macro.
2685                 debug_assert_ne!($self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
2686                 debug_assert_ne!($self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
2687
2688                 match $internal {
2689                         Ok(msg) => Ok(msg),
2690                         Err(MsgHandleErrInternal { err, shutdown_finish, .. }) => {
2691                                 let mut msg_event = None;
2692
2693                                 if let Some((shutdown_res, update_option)) = shutdown_finish {
2694                                         let counterparty_node_id = shutdown_res.counterparty_node_id;
2695                                         let channel_id = shutdown_res.channel_id;
2696                                         let logger = WithContext::from(
2697                                                 &$self.logger, Some(counterparty_node_id), Some(channel_id), None
2698                                         );
2699                                         log_error!(logger, "Force-closing channel: {}", err.err);
2700
2701                                         $self.finish_close_channel(shutdown_res);
2702                                         if let Some(update) = update_option {
2703                                                 let mut pending_broadcast_messages = $self.pending_broadcast_messages.lock().unwrap();
2704                                                 pending_broadcast_messages.push(events::MessageSendEvent::BroadcastChannelUpdate {
2705                                                         msg: update
2706                                                 });
2707                                         }
2708                                 } else {
2709                                         log_error!($self.logger, "Got non-closing error: {}", err.err);
2710                                 }
2711
2712                                 if let msgs::ErrorAction::IgnoreError = err.action {
2713                                 } else {
2714                                         msg_event = Some(events::MessageSendEvent::HandleError {
2715                                                 node_id: $counterparty_node_id,
2716                                                 action: err.action.clone()
2717                                         });
2718                                 }
2719
2720                                 if let Some(msg_event) = msg_event {
2721                                         let per_peer_state = $self.per_peer_state.read().unwrap();
2722                                         if let Some(peer_state_mutex) = per_peer_state.get(&$counterparty_node_id) {
2723                                                 let mut peer_state = peer_state_mutex.lock().unwrap();
2724                                                 peer_state.pending_msg_events.push(msg_event);
2725                                         }
2726                                 }
2727
2728                                 // Return error in case higher-API need one
2729                                 Err(err)
2730                         },
2731                 }
2732         } };
2733 }
2734
2735 macro_rules! update_maps_on_chan_removal {
2736         ($self: expr, $channel_context: expr) => {{
2737                 if let Some(outpoint) = $channel_context.get_funding_txo() {
2738                         $self.outpoint_to_peer.lock().unwrap().remove(&outpoint);
2739                 }
2740                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
2741                 if let Some(short_id) = $channel_context.get_short_channel_id() {
2742                         short_to_chan_info.remove(&short_id);
2743                 } else {
2744                         // If the channel was never confirmed on-chain prior to its closure, remove the
2745                         // outbound SCID alias we used for it from the collision-prevention set. While we
2746                         // generally want to avoid ever re-using an outbound SCID alias across all channels, we
2747                         // also don't want a counterparty to be able to trivially cause a memory leak by simply
2748                         // opening a million channels with us which are closed before we ever reach the funding
2749                         // stage.
2750                         let alias_removed = $self.outbound_scid_aliases.lock().unwrap().remove(&$channel_context.outbound_scid_alias());
2751                         debug_assert!(alias_removed);
2752                 }
2753                 short_to_chan_info.remove(&$channel_context.outbound_scid_alias());
2754         }}
2755 }
2756
2757 /// Returns (boolean indicating if we should remove the Channel object from memory, a mapped error)
2758 macro_rules! convert_chan_phase_err {
2759         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, MANUAL_CHANNEL_UPDATE, $channel_update: expr) => {
2760                 match $err {
2761                         ChannelError::Warn(msg) => {
2762                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Warn(msg), *$channel_id))
2763                         },
2764                         ChannelError::Ignore(msg) => {
2765                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore(msg), *$channel_id))
2766                         },
2767                         ChannelError::Close(msg) => {
2768                                 let logger = WithChannelContext::from(&$self.logger, &$channel.context, None);
2769                                 log_error!(logger, "Closing channel {} due to close-required error: {}", $channel_id, msg);
2770                                 update_maps_on_chan_removal!($self, $channel.context);
2771                                 let reason = ClosureReason::ProcessingError { err: msg.clone() };
2772                                 let shutdown_res = $channel.context.force_shutdown(true, reason);
2773                                 let err =
2774                                         MsgHandleErrInternal::from_finish_shutdown(msg, *$channel_id, shutdown_res, $channel_update);
2775                                 (true, err)
2776                         },
2777                 }
2778         };
2779         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, FUNDED_CHANNEL) => {
2780                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, { $self.get_channel_update_for_broadcast($channel).ok() })
2781         };
2782         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, UNFUNDED_CHANNEL) => {
2783                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, None)
2784         };
2785         ($self: ident, $err: expr, $channel_phase: expr, $channel_id: expr) => {
2786                 match $channel_phase {
2787                         ChannelPhase::Funded(channel) => {
2788                                 convert_chan_phase_err!($self, $err, channel, $channel_id, FUNDED_CHANNEL)
2789                         },
2790                         ChannelPhase::UnfundedOutboundV1(channel) => {
2791                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
2792                         },
2793                         ChannelPhase::UnfundedInboundV1(channel) => {
2794                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
2795                         },
2796                         #[cfg(any(dual_funding, splicing))]
2797                         ChannelPhase::UnfundedOutboundV2(channel) => {
2798                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
2799                         },
2800                         #[cfg(any(dual_funding, splicing))]
2801                         ChannelPhase::UnfundedInboundV2(channel) => {
2802                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
2803                         },
2804                 }
2805         };
2806 }
2807
2808 macro_rules! break_chan_phase_entry {
2809         ($self: ident, $res: expr, $entry: expr) => {
2810                 match $res {
2811                         Ok(res) => res,
2812                         Err(e) => {
2813                                 let key = *$entry.key();
2814                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
2815                                 if drop {
2816                                         $entry.remove_entry();
2817                                 }
2818                                 break Err(res);
2819                         }
2820                 }
2821         }
2822 }
2823
2824 macro_rules! try_chan_phase_entry {
2825         ($self: ident, $res: expr, $entry: expr) => {
2826                 match $res {
2827                         Ok(res) => res,
2828                         Err(e) => {
2829                                 let key = *$entry.key();
2830                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
2831                                 if drop {
2832                                         $entry.remove_entry();
2833                                 }
2834                                 return Err(res);
2835                         }
2836                 }
2837         }
2838 }
2839
2840 macro_rules! remove_channel_phase {
2841         ($self: expr, $entry: expr) => {
2842                 {
2843                         let channel = $entry.remove_entry().1;
2844                         update_maps_on_chan_removal!($self, &channel.context());
2845                         channel
2846                 }
2847         }
2848 }
2849
2850 macro_rules! send_channel_ready {
2851         ($self: ident, $pending_msg_events: expr, $channel: expr, $channel_ready_msg: expr) => {{
2852                 $pending_msg_events.push(events::MessageSendEvent::SendChannelReady {
2853                         node_id: $channel.context.get_counterparty_node_id(),
2854                         msg: $channel_ready_msg,
2855                 });
2856                 // Note that we may send a `channel_ready` multiple times for a channel if we reconnect, so
2857                 // we allow collisions, but we shouldn't ever be updating the channel ID pointed to.
2858                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
2859                 let outbound_alias_insert = short_to_chan_info.insert($channel.context.outbound_scid_alias(), ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
2860                 assert!(outbound_alias_insert.is_none() || outbound_alias_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
2861                         "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
2862                 if let Some(real_scid) = $channel.context.get_short_channel_id() {
2863                         let scid_insert = short_to_chan_info.insert(real_scid, ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
2864                         assert!(scid_insert.is_none() || scid_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
2865                                 "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
2866                 }
2867         }}
2868 }
2869
2870 macro_rules! emit_channel_pending_event {
2871         ($locked_events: expr, $channel: expr) => {
2872                 if $channel.context.should_emit_channel_pending_event() {
2873                         $locked_events.push_back((events::Event::ChannelPending {
2874                                 channel_id: $channel.context.channel_id(),
2875                                 former_temporary_channel_id: $channel.context.temporary_channel_id(),
2876                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
2877                                 user_channel_id: $channel.context.get_user_id(),
2878                                 funding_txo: $channel.context.get_funding_txo().unwrap().into_bitcoin_outpoint(),
2879                                 channel_type: Some($channel.context.get_channel_type().clone()),
2880                         }, None));
2881                         $channel.context.set_channel_pending_event_emitted();
2882                 }
2883         }
2884 }
2885
2886 macro_rules! emit_channel_ready_event {
2887         ($locked_events: expr, $channel: expr) => {
2888                 if $channel.context.should_emit_channel_ready_event() {
2889                         debug_assert!($channel.context.channel_pending_event_emitted());
2890                         $locked_events.push_back((events::Event::ChannelReady {
2891                                 channel_id: $channel.context.channel_id(),
2892                                 user_channel_id: $channel.context.get_user_id(),
2893                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
2894                                 channel_type: $channel.context.get_channel_type().clone(),
2895                         }, None));
2896                         $channel.context.set_channel_ready_event_emitted();
2897                 }
2898         }
2899 }
2900
2901 macro_rules! handle_monitor_update_completion {
2902         ($self: ident, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr) => { {
2903                 let logger = WithChannelContext::from(&$self.logger, &$chan.context, None);
2904                 let mut updates = $chan.monitor_updating_restored(&&logger,
2905                         &$self.node_signer, $self.chain_hash, &$self.default_configuration,
2906                         $self.best_block.read().unwrap().height);
2907                 let counterparty_node_id = $chan.context.get_counterparty_node_id();
2908                 let channel_update = if updates.channel_ready.is_some() && $chan.context.is_usable() {
2909                         // We only send a channel_update in the case where we are just now sending a
2910                         // channel_ready and the channel is in a usable state. We may re-send a
2911                         // channel_update later through the announcement_signatures process for public
2912                         // channels, but there's no reason not to just inform our counterparty of our fees
2913                         // now.
2914                         if let Ok(msg) = $self.get_channel_update_for_unicast($chan) {
2915                                 Some(events::MessageSendEvent::SendChannelUpdate {
2916                                         node_id: counterparty_node_id,
2917                                         msg,
2918                                 })
2919                         } else { None }
2920                 } else { None };
2921
2922                 let update_actions = $peer_state.monitor_update_blocked_actions
2923                         .remove(&$chan.context.channel_id()).unwrap_or(Vec::new());
2924
2925                 let (htlc_forwards, decode_update_add_htlcs) = $self.handle_channel_resumption(
2926                         &mut $peer_state.pending_msg_events, $chan, updates.raa,
2927                         updates.commitment_update, updates.order, updates.accepted_htlcs, updates.pending_update_adds,
2928                         updates.funding_broadcastable, updates.channel_ready,
2929                         updates.announcement_sigs);
2930                 if let Some(upd) = channel_update {
2931                         $peer_state.pending_msg_events.push(upd);
2932                 }
2933
2934                 let channel_id = $chan.context.channel_id();
2935                 let unbroadcasted_batch_funding_txid = $chan.context.unbroadcasted_batch_funding_txid();
2936                 core::mem::drop($peer_state_lock);
2937                 core::mem::drop($per_peer_state_lock);
2938
2939                 // If the channel belongs to a batch funding transaction, the progress of the batch
2940                 // should be updated as we have received funding_signed and persisted the monitor.
2941                 if let Some(txid) = unbroadcasted_batch_funding_txid {
2942                         let mut funding_batch_states = $self.funding_batch_states.lock().unwrap();
2943                         let mut batch_completed = false;
2944                         if let Some(batch_state) = funding_batch_states.get_mut(&txid) {
2945                                 let channel_state = batch_state.iter_mut().find(|(chan_id, pubkey, _)| (
2946                                         *chan_id == channel_id &&
2947                                         *pubkey == counterparty_node_id
2948                                 ));
2949                                 if let Some(channel_state) = channel_state {
2950                                         channel_state.2 = true;
2951                                 } else {
2952                                         debug_assert!(false, "Missing channel batch state for channel which completed initial monitor update");
2953                                 }
2954                                 batch_completed = batch_state.iter().all(|(_, _, completed)| *completed);
2955                         } else {
2956                                 debug_assert!(false, "Missing batch state for channel which completed initial monitor update");
2957                         }
2958
2959                         // When all channels in a batched funding transaction have become ready, it is not necessary
2960                         // to track the progress of the batch anymore and the state of the channels can be updated.
2961                         if batch_completed {
2962                                 let removed_batch_state = funding_batch_states.remove(&txid).into_iter().flatten();
2963                                 let per_peer_state = $self.per_peer_state.read().unwrap();
2964                                 let mut batch_funding_tx = None;
2965                                 for (channel_id, counterparty_node_id, _) in removed_batch_state {
2966                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2967                                                 let mut peer_state = peer_state_mutex.lock().unwrap();
2968                                                 if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&channel_id) {
2969                                                         batch_funding_tx = batch_funding_tx.or_else(|| chan.context.unbroadcasted_funding());
2970                                                         chan.set_batch_ready();
2971                                                         let mut pending_events = $self.pending_events.lock().unwrap();
2972                                                         emit_channel_pending_event!(pending_events, chan);
2973                                                 }
2974                                         }
2975                                 }
2976                                 if let Some(tx) = batch_funding_tx {
2977                                         log_info!($self.logger, "Broadcasting batch funding transaction with txid {}", tx.txid());
2978                                         $self.tx_broadcaster.broadcast_transactions(&[&tx]);
2979                                 }
2980                         }
2981                 }
2982
2983                 $self.handle_monitor_update_completion_actions(update_actions);
2984
2985                 if let Some(forwards) = htlc_forwards {
2986                         $self.forward_htlcs(&mut [forwards][..]);
2987                 }
2988                 if let Some(decode) = decode_update_add_htlcs {
2989                         $self.push_decode_update_add_htlcs(decode);
2990                 }
2991                 $self.finalize_claims(updates.finalized_claimed_htlcs);
2992                 for failure in updates.failed_htlcs.drain(..) {
2993                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2994                         $self.fail_htlc_backwards_internal(&failure.0, &failure.1, &failure.2, receiver);
2995                 }
2996         } }
2997 }
2998
2999 macro_rules! handle_new_monitor_update {
3000         ($self: ident, $update_res: expr, $chan: expr, _internal, $completed: expr) => { {
3001                 debug_assert!($self.background_events_processed_since_startup.load(Ordering::Acquire));
3002                 let logger = WithChannelContext::from(&$self.logger, &$chan.context, None);
3003                 match $update_res {
3004                         ChannelMonitorUpdateStatus::UnrecoverableError => {
3005                                 let err_str = "ChannelMonitor[Update] persistence failed unrecoverably. This indicates we cannot continue normal operation and must shut down.";
3006                                 log_error!(logger, "{}", err_str);
3007                                 panic!("{}", err_str);
3008                         },
3009                         ChannelMonitorUpdateStatus::InProgress => {
3010                                 log_debug!(logger, "ChannelMonitor update for {} in flight, holding messages until the update completes.",
3011                                         &$chan.context.channel_id());
3012                                 false
3013                         },
3014                         ChannelMonitorUpdateStatus::Completed => {
3015                                 $completed;
3016                                 true
3017                         },
3018                 }
3019         } };
3020         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr, INITIAL_MONITOR) => {
3021                 handle_new_monitor_update!($self, $update_res, $chan, _internal,
3022                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan))
3023         };
3024         ($self: ident, $funding_txo: expr, $update: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr) => { {
3025                 let in_flight_updates = $peer_state.in_flight_monitor_updates.entry($funding_txo)
3026                         .or_insert_with(Vec::new);
3027                 // During startup, we push monitor updates as background events through to here in
3028                 // order to replay updates that were in-flight when we shut down. Thus, we have to
3029                 // filter for uniqueness here.
3030                 let idx = in_flight_updates.iter().position(|upd| upd == &$update)
3031                         .unwrap_or_else(|| {
3032                                 in_flight_updates.push($update);
3033                                 in_flight_updates.len() - 1
3034                         });
3035                 let update_res = $self.chain_monitor.update_channel($funding_txo, &in_flight_updates[idx]);
3036                 handle_new_monitor_update!($self, update_res, $chan, _internal,
3037                         {
3038                                 let _ = in_flight_updates.remove(idx);
3039                                 if in_flight_updates.is_empty() && $chan.blocked_monitor_updates_pending() == 0 {
3040                                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan);
3041                                 }
3042                         })
3043         } };
3044 }
3045
3046 macro_rules! process_events_body {
3047         ($self: expr, $event_to_handle: expr, $handle_event: expr) => {
3048                 let mut processed_all_events = false;
3049                 while !processed_all_events {
3050                         if $self.pending_events_processor.compare_exchange(false, true, Ordering::Acquire, Ordering::Relaxed).is_err() {
3051                                 return;
3052                         }
3053
3054                         let mut result;
3055
3056                         {
3057                                 // We'll acquire our total consistency lock so that we can be sure no other
3058                                 // persists happen while processing monitor events.
3059                                 let _read_guard = $self.total_consistency_lock.read().unwrap();
3060
3061                                 // Because `handle_post_event_actions` may send `ChannelMonitorUpdate`s to the user we must
3062                                 // ensure any startup-generated background events are handled first.
3063                                 result = $self.process_background_events();
3064
3065                                 // TODO: This behavior should be documented. It's unintuitive that we query
3066                                 // ChannelMonitors when clearing other events.
3067                                 if $self.process_pending_monitor_events() {
3068                                         result = NotifyOption::DoPersist;
3069                                 }
3070                         }
3071
3072                         let pending_events = $self.pending_events.lock().unwrap().clone();
3073                         let num_events = pending_events.len();
3074                         if !pending_events.is_empty() {
3075                                 result = NotifyOption::DoPersist;
3076                         }
3077
3078                         let mut post_event_actions = Vec::new();
3079
3080                         for (event, action_opt) in pending_events {
3081                                 $event_to_handle = event;
3082                                 $handle_event;
3083                                 if let Some(action) = action_opt {
3084                                         post_event_actions.push(action);
3085                                 }
3086                         }
3087
3088                         {
3089                                 let mut pending_events = $self.pending_events.lock().unwrap();
3090                                 pending_events.drain(..num_events);
3091                                 processed_all_events = pending_events.is_empty();
3092                                 // Note that `push_pending_forwards_ev` relies on `pending_events_processor` being
3093                                 // updated here with the `pending_events` lock acquired.
3094                                 $self.pending_events_processor.store(false, Ordering::Release);
3095                         }
3096
3097                         if !post_event_actions.is_empty() {
3098                                 $self.handle_post_event_actions(post_event_actions);
3099                                 // If we had some actions, go around again as we may have more events now
3100                                 processed_all_events = false;
3101                         }
3102
3103                         match result {
3104                                 NotifyOption::DoPersist => {
3105                                         $self.needs_persist_flag.store(true, Ordering::Release);
3106                                         $self.event_persist_notifier.notify();
3107                                 },
3108                                 NotifyOption::SkipPersistHandleEvents =>
3109                                         $self.event_persist_notifier.notify(),
3110                                 NotifyOption::SkipPersistNoEvents => {},
3111                         }
3112                 }
3113         }
3114 }
3115
3116 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>
3117 where
3118         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
3119         T::Target: BroadcasterInterface,
3120         ES::Target: EntropySource,
3121         NS::Target: NodeSigner,
3122         SP::Target: SignerProvider,
3123         F::Target: FeeEstimator,
3124         R::Target: Router,
3125         L::Target: Logger,
3126 {
3127         /// Constructs a new `ChannelManager` to hold several channels and route between them.
3128         ///
3129         /// The current time or latest block header time can be provided as the `current_timestamp`.
3130         ///
3131         /// This is the main "logic hub" for all channel-related actions, and implements
3132         /// [`ChannelMessageHandler`].
3133         ///
3134         /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
3135         ///
3136         /// Users need to notify the new `ChannelManager` when a new block is connected or
3137         /// disconnected using its [`block_connected`] and [`block_disconnected`] methods, starting
3138         /// from after [`params.best_block.block_hash`]. See [`chain::Listen`] and [`chain::Confirm`] for
3139         /// more details.
3140         ///
3141         /// [`block_connected`]: chain::Listen::block_connected
3142         /// [`block_disconnected`]: chain::Listen::block_disconnected
3143         /// [`params.best_block.block_hash`]: chain::BestBlock::block_hash
3144         pub fn new(
3145                 fee_est: F, chain_monitor: M, tx_broadcaster: T, router: R, logger: L, entropy_source: ES,
3146                 node_signer: NS, signer_provider: SP, config: UserConfig, params: ChainParameters,
3147                 current_timestamp: u32,
3148         ) -> Self {
3149                 let mut secp_ctx = Secp256k1::new();
3150                 secp_ctx.seeded_randomize(&entropy_source.get_secure_random_bytes());
3151                 let inbound_pmt_key_material = node_signer.get_inbound_payment_key_material();
3152                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
3153                 ChannelManager {
3154                         default_configuration: config.clone(),
3155                         chain_hash: ChainHash::using_genesis_block(params.network),
3156                         fee_estimator: LowerBoundedFeeEstimator::new(fee_est),
3157                         chain_monitor,
3158                         tx_broadcaster,
3159                         router,
3160
3161                         best_block: RwLock::new(params.best_block),
3162
3163                         outbound_scid_aliases: Mutex::new(new_hash_set()),
3164                         pending_inbound_payments: Mutex::new(new_hash_map()),
3165                         pending_outbound_payments: OutboundPayments::new(),
3166                         forward_htlcs: Mutex::new(new_hash_map()),
3167                         decode_update_add_htlcs: Mutex::new(new_hash_map()),
3168                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments: new_hash_map(), pending_claiming_payments: new_hash_map() }),
3169                         pending_intercepted_htlcs: Mutex::new(new_hash_map()),
3170                         outpoint_to_peer: Mutex::new(new_hash_map()),
3171                         short_to_chan_info: FairRwLock::new(new_hash_map()),
3172
3173                         our_network_pubkey: node_signer.get_node_id(Recipient::Node).unwrap(),
3174                         secp_ctx,
3175
3176                         inbound_payment_key: expanded_inbound_key,
3177                         fake_scid_rand_bytes: entropy_source.get_secure_random_bytes(),
3178
3179                         probing_cookie_secret: entropy_source.get_secure_random_bytes(),
3180
3181                         highest_seen_timestamp: AtomicUsize::new(current_timestamp as usize),
3182
3183                         per_peer_state: FairRwLock::new(new_hash_map()),
3184
3185                         pending_events: Mutex::new(VecDeque::new()),
3186                         pending_events_processor: AtomicBool::new(false),
3187                         pending_background_events: Mutex::new(Vec::new()),
3188                         total_consistency_lock: RwLock::new(()),
3189                         background_events_processed_since_startup: AtomicBool::new(false),
3190                         event_persist_notifier: Notifier::new(),
3191                         needs_persist_flag: AtomicBool::new(false),
3192                         funding_batch_states: Mutex::new(BTreeMap::new()),
3193
3194                         pending_offers_messages: Mutex::new(Vec::new()),
3195                         pending_broadcast_messages: Mutex::new(Vec::new()),
3196
3197                         entropy_source,
3198                         node_signer,
3199                         signer_provider,
3200
3201                         logger,
3202                 }
3203         }
3204
3205         /// Gets the current configuration applied to all new channels.
3206         pub fn get_current_default_configuration(&self) -> &UserConfig {
3207                 &self.default_configuration
3208         }
3209
3210         fn create_and_insert_outbound_scid_alias(&self) -> u64 {
3211                 let height = self.best_block.read().unwrap().height;
3212                 let mut outbound_scid_alias = 0;
3213                 let mut i = 0;
3214                 loop {
3215                         if cfg!(fuzzing) { // fuzzing chacha20 doesn't use the key at all so we always get the same alias
3216                                 outbound_scid_alias += 1;
3217                         } else {
3218                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias.get_fake_scid(height, &self.chain_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
3219                         }
3220                         if outbound_scid_alias != 0 && self.outbound_scid_aliases.lock().unwrap().insert(outbound_scid_alias) {
3221                                 break;
3222                         }
3223                         i += 1;
3224                         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"); }
3225                 }
3226                 outbound_scid_alias
3227         }
3228
3229         /// Creates a new outbound channel to the given remote node and with the given value.
3230         ///
3231         /// `user_channel_id` will be provided back as in
3232         /// [`Event::FundingGenerationReady::user_channel_id`] to allow tracking of which events
3233         /// correspond with which `create_channel` call. Note that the `user_channel_id` defaults to a
3234         /// randomized value for inbound channels. `user_channel_id` has no meaning inside of LDK, it
3235         /// is simply copied to events and otherwise ignored.
3236         ///
3237         /// Raises [`APIError::APIMisuseError`] when `channel_value_satoshis` > 2**24 or `push_msat` is
3238         /// greater than `channel_value_satoshis * 1k` or `channel_value_satoshis < 1000`.
3239         ///
3240         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be opened due to failing to
3241         /// generate a shutdown scriptpubkey or destination script set by
3242         /// [`SignerProvider::get_shutdown_scriptpubkey`] or [`SignerProvider::get_destination_script`].
3243         ///
3244         /// Note that we do not check if you are currently connected to the given peer. If no
3245         /// connection is available, the outbound `open_channel` message may fail to send, resulting in
3246         /// the channel eventually being silently forgotten (dropped on reload).
3247         ///
3248         /// If `temporary_channel_id` is specified, it will be used as the temporary channel ID of the
3249         /// channel. Otherwise, a random one will be generated for you.
3250         ///
3251         /// Returns the new Channel's temporary `channel_id`. This ID will appear as
3252         /// [`Event::FundingGenerationReady::temporary_channel_id`] and in
3253         /// [`ChannelDetails::channel_id`] until after
3254         /// [`ChannelManager::funding_transaction_generated`] is called, swapping the Channel's ID for
3255         /// one derived from the funding transaction's TXID. If the counterparty rejects the channel
3256         /// immediately, this temporary ID will appear in [`Event::ChannelClosed::channel_id`].
3257         ///
3258         /// [`Event::FundingGenerationReady::user_channel_id`]: events::Event::FundingGenerationReady::user_channel_id
3259         /// [`Event::FundingGenerationReady::temporary_channel_id`]: events::Event::FundingGenerationReady::temporary_channel_id
3260         /// [`Event::ChannelClosed::channel_id`]: events::Event::ChannelClosed::channel_id
3261         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> {
3262                 if channel_value_satoshis < 1000 {
3263                         return Err(APIError::APIMisuseError { err: format!("Channel value must be at least 1000 satoshis. It was {}", channel_value_satoshis) });
3264                 }
3265
3266                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3267                 // We want to make sure the lock is actually acquired by PersistenceNotifierGuard.
3268                 debug_assert!(&self.total_consistency_lock.try_write().is_err());
3269
3270                 let per_peer_state = self.per_peer_state.read().unwrap();
3271
3272                 let peer_state_mutex = per_peer_state.get(&their_network_key)
3273                         .ok_or_else(|| APIError::APIMisuseError{ err: format!("Not connected to node: {}", their_network_key) })?;
3274
3275                 let mut peer_state = peer_state_mutex.lock().unwrap();
3276
3277                 if let Some(temporary_channel_id) = temporary_channel_id {
3278                         if peer_state.channel_by_id.contains_key(&temporary_channel_id) {
3279                                 return Err(APIError::APIMisuseError{ err: format!("Channel with temporary channel ID {} already exists!", temporary_channel_id)});
3280                         }
3281                 }
3282
3283                 let channel = {
3284                         let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
3285                         let their_features = &peer_state.latest_features;
3286                         let config = if override_config.is_some() { override_config.as_ref().unwrap() } else { &self.default_configuration };
3287                         match OutboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider, their_network_key,
3288                                 their_features, channel_value_satoshis, push_msat, user_channel_id, config,
3289                                 self.best_block.read().unwrap().height, outbound_scid_alias, temporary_channel_id)
3290                         {
3291                                 Ok(res) => res,
3292                                 Err(e) => {
3293                                         self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
3294                                         return Err(e);
3295                                 },
3296                         }
3297                 };
3298                 let res = channel.get_open_channel(self.chain_hash);
3299
3300                 let temporary_channel_id = channel.context.channel_id();
3301                 match peer_state.channel_by_id.entry(temporary_channel_id) {
3302                         hash_map::Entry::Occupied(_) => {
3303                                 if cfg!(fuzzing) {
3304                                         return Err(APIError::APIMisuseError { err: "Fuzzy bad RNG".to_owned() });
3305                                 } else {
3306                                         panic!("RNG is bad???");
3307                                 }
3308                         },
3309                         hash_map::Entry::Vacant(entry) => { entry.insert(ChannelPhase::UnfundedOutboundV1(channel)); }
3310                 }
3311
3312                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
3313                         node_id: their_network_key,
3314                         msg: res,
3315                 });
3316                 Ok(temporary_channel_id)
3317         }
3318
3319         fn list_funded_channels_with_filter<Fn: FnMut(&(&ChannelId, &Channel<SP>)) -> bool + Copy>(&self, f: Fn) -> Vec<ChannelDetails> {
3320                 // Allocate our best estimate of the number of channels we have in the `res`
3321                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
3322                 // a scid or a scid alias, and the `outpoint_to_peer` shouldn't be used outside
3323                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
3324                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
3325                 // the same channel.
3326                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
3327                 {
3328                         let best_block_height = self.best_block.read().unwrap().height;
3329                         let per_peer_state = self.per_peer_state.read().unwrap();
3330                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
3331                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3332                                 let peer_state = &mut *peer_state_lock;
3333                                 res.extend(peer_state.channel_by_id.iter()
3334                                         .filter_map(|(chan_id, phase)| match phase {
3335                                                 // Only `Channels` in the `ChannelPhase::Funded` phase can be considered funded.
3336                                                 ChannelPhase::Funded(chan) => Some((chan_id, chan)),
3337                                                 _ => None,
3338                                         })
3339                                         .filter(f)
3340                                         .map(|(_channel_id, channel)| {
3341                                                 ChannelDetails::from_channel_context(&channel.context, best_block_height,
3342                                                         peer_state.latest_features.clone(), &self.fee_estimator)
3343                                         })
3344                                 );
3345                         }
3346                 }
3347                 res
3348         }
3349
3350         /// Gets the list of open channels, in random order. See [`ChannelDetails`] field documentation for
3351         /// more information.
3352         pub fn list_channels(&self) -> Vec<ChannelDetails> {
3353                 // Allocate our best estimate of the number of channels we have in the `res`
3354                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
3355                 // a scid or a scid alias, and the `outpoint_to_peer` shouldn't be used outside
3356                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
3357                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
3358                 // the same channel.
3359                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
3360                 {
3361                         let best_block_height = self.best_block.read().unwrap().height;
3362                         let per_peer_state = self.per_peer_state.read().unwrap();
3363                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
3364                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3365                                 let peer_state = &mut *peer_state_lock;
3366                                 for context in peer_state.channel_by_id.iter().map(|(_, phase)| phase.context()) {
3367                                         let details = ChannelDetails::from_channel_context(context, best_block_height,
3368                                                 peer_state.latest_features.clone(), &self.fee_estimator);
3369                                         res.push(details);
3370                                 }
3371                         }
3372                 }
3373                 res
3374         }
3375
3376         /// Gets the list of usable channels, in random order. Useful as an argument to
3377         /// [`Router::find_route`] to ensure non-announced channels are used.
3378         ///
3379         /// These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
3380         /// documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
3381         /// are.
3382         pub fn list_usable_channels(&self) -> Vec<ChannelDetails> {
3383                 // Note we use is_live here instead of usable which leads to somewhat confused
3384                 // internal/external nomenclature, but that's ok cause that's probably what the user
3385                 // really wanted anyway.
3386                 self.list_funded_channels_with_filter(|&(_, ref channel)| channel.context.is_live())
3387         }
3388
3389         /// Gets the list of channels we have with a given counterparty, in random order.
3390         pub fn list_channels_with_counterparty(&self, counterparty_node_id: &PublicKey) -> Vec<ChannelDetails> {
3391                 let best_block_height = self.best_block.read().unwrap().height;
3392                 let per_peer_state = self.per_peer_state.read().unwrap();
3393
3394                 if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
3395                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3396                         let peer_state = &mut *peer_state_lock;
3397                         let features = &peer_state.latest_features;
3398                         let context_to_details = |context| {
3399                                 ChannelDetails::from_channel_context(context, best_block_height, features.clone(), &self.fee_estimator)
3400                         };
3401                         return peer_state.channel_by_id
3402                                 .iter()
3403                                 .map(|(_, phase)| phase.context())
3404                                 .map(context_to_details)
3405                                 .collect();
3406                 }
3407                 vec![]
3408         }
3409
3410         /// Returns in an undefined order recent payments that -- if not fulfilled -- have yet to find a
3411         /// successful path, or have unresolved HTLCs.
3412         ///
3413         /// This can be useful for payments that may have been prepared, but ultimately not sent, as a
3414         /// result of a crash. If such a payment exists, is not listed here, and an
3415         /// [`Event::PaymentSent`] has not been received, you may consider resending the payment.
3416         ///
3417         /// [`Event::PaymentSent`]: events::Event::PaymentSent
3418         pub fn list_recent_payments(&self) -> Vec<RecentPaymentDetails> {
3419                 self.pending_outbound_payments.pending_outbound_payments.lock().unwrap().iter()
3420                         .filter_map(|(payment_id, pending_outbound_payment)| match pending_outbound_payment {
3421                                 PendingOutboundPayment::AwaitingInvoice { .. } => {
3422                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
3423                                 },
3424                                 // InvoiceReceived is an intermediate state and doesn't need to be exposed
3425                                 PendingOutboundPayment::InvoiceReceived { .. } => {
3426                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
3427                                 },
3428                                 PendingOutboundPayment::Retryable { payment_hash, total_msat, .. } => {
3429                                         Some(RecentPaymentDetails::Pending {
3430                                                 payment_id: *payment_id,
3431                                                 payment_hash: *payment_hash,
3432                                                 total_msat: *total_msat,
3433                                         })
3434                                 },
3435                                 PendingOutboundPayment::Abandoned { payment_hash, .. } => {
3436                                         Some(RecentPaymentDetails::Abandoned { payment_id: *payment_id, payment_hash: *payment_hash })
3437                                 },
3438                                 PendingOutboundPayment::Fulfilled { payment_hash, .. } => {
3439                                         Some(RecentPaymentDetails::Fulfilled { payment_id: *payment_id, payment_hash: *payment_hash })
3440                                 },
3441                                 PendingOutboundPayment::Legacy { .. } => None
3442                         })
3443                         .collect()
3444         }
3445
3446         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> {
3447                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3448
3449                 let mut failed_htlcs: Vec<(HTLCSource, PaymentHash)> = Vec::new();
3450                 let mut shutdown_result = None;
3451
3452                 {
3453                         let per_peer_state = self.per_peer_state.read().unwrap();
3454
3455                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3456                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3457
3458                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3459                         let peer_state = &mut *peer_state_lock;
3460
3461                         match peer_state.channel_by_id.entry(channel_id.clone()) {
3462                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
3463                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
3464                                                 let funding_txo_opt = chan.context.get_funding_txo();
3465                                                 let their_features = &peer_state.latest_features;
3466                                                 let (shutdown_msg, mut monitor_update_opt, htlcs) =
3467                                                         chan.get_shutdown(&self.signer_provider, their_features, target_feerate_sats_per_1000_weight, override_shutdown_script)?;
3468                                                 failed_htlcs = htlcs;
3469
3470                                                 // We can send the `shutdown` message before updating the `ChannelMonitor`
3471                                                 // here as we don't need the monitor update to complete until we send a
3472                                                 // `shutdown_signed`, which we'll delay if we're pending a monitor update.
3473                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
3474                                                         node_id: *counterparty_node_id,
3475                                                         msg: shutdown_msg,
3476                                                 });
3477
3478                                                 debug_assert!(monitor_update_opt.is_none() || !chan.is_shutdown(),
3479                                                         "We can't both complete shutdown and generate a monitor update");
3480
3481                                                 // Update the monitor with the shutdown script if necessary.
3482                                                 if let Some(monitor_update) = monitor_update_opt.take() {
3483                                                         handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
3484                                                                 peer_state_lock, peer_state, per_peer_state, chan);
3485                                                 }
3486                                         } else {
3487                                                 let mut chan_phase = remove_channel_phase!(self, chan_phase_entry);
3488                                                 shutdown_result = Some(chan_phase.context_mut().force_shutdown(false, ClosureReason::HolderForceClosed));
3489                                         }
3490                                 },
3491                                 hash_map::Entry::Vacant(_) => {
3492                                         return Err(APIError::ChannelUnavailable {
3493                                                 err: format!(
3494                                                         "Channel with id {} not found for the passed counterparty node_id {}",
3495                                                         channel_id, counterparty_node_id,
3496                                                 )
3497                                         });
3498                                 },
3499                         }
3500                 }
3501
3502                 for htlc_source in failed_htlcs.drain(..) {
3503                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
3504                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(*counterparty_node_id), channel_id: *channel_id };
3505                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
3506                 }
3507
3508                 if let Some(shutdown_result) = shutdown_result {
3509                         self.finish_close_channel(shutdown_result);
3510                 }
3511
3512                 Ok(())
3513         }
3514
3515         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
3516         /// will be accepted on the given channel, and after additional timeout/the closing of all
3517         /// pending HTLCs, the channel will be closed on chain.
3518         ///
3519         ///  * If we are the channel initiator, we will pay between our [`ChannelCloseMinimum`] and
3520         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`NonAnchorChannelFee`]
3521         ///    fee estimate.
3522         ///  * If our counterparty is the channel initiator, we will require a channel closing
3523         ///    transaction feerate of at least our [`ChannelCloseMinimum`] feerate or the feerate which
3524         ///    would appear on a force-closure transaction, whichever is lower. We will allow our
3525         ///    counterparty to pay as much fee as they'd like, however.
3526         ///
3527         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
3528         ///
3529         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
3530         /// generate a shutdown scriptpubkey or destination script set by
3531         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
3532         /// channel.
3533         ///
3534         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
3535         /// [`ChannelCloseMinimum`]: crate::chain::chaininterface::ConfirmationTarget::ChannelCloseMinimum
3536         /// [`NonAnchorChannelFee`]: crate::chain::chaininterface::ConfirmationTarget::NonAnchorChannelFee
3537         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
3538         pub fn close_channel(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey) -> Result<(), APIError> {
3539                 self.close_channel_internal(channel_id, counterparty_node_id, None, None)
3540         }
3541
3542         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
3543         /// will be accepted on the given channel, and after additional timeout/the closing of all
3544         /// pending HTLCs, the channel will be closed on chain.
3545         ///
3546         /// `target_feerate_sat_per_1000_weight` has different meanings depending on if we initiated
3547         /// the channel being closed or not:
3548         ///  * If we are the channel initiator, we will pay at least this feerate on the closing
3549         ///    transaction. The upper-bound is set by
3550         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`NonAnchorChannelFee`]
3551         ///    fee estimate (or `target_feerate_sat_per_1000_weight`, if it is greater).
3552         ///  * If our counterparty is the channel initiator, we will refuse to accept a channel closure
3553         ///    transaction feerate below `target_feerate_sat_per_1000_weight` (or the feerate which
3554         ///    will appear on a force-closure transaction, whichever is lower).
3555         ///
3556         /// The `shutdown_script` provided  will be used as the `scriptPubKey` for the closing transaction.
3557         /// Will fail if a shutdown script has already been set for this channel by
3558         /// ['ChannelHandshakeConfig::commit_upfront_shutdown_pubkey`]. The given shutdown script must
3559         /// also be compatible with our and the counterparty's features.
3560         ///
3561         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
3562         ///
3563         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
3564         /// generate a shutdown scriptpubkey or destination script set by
3565         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
3566         /// channel.
3567         ///
3568         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
3569         /// [`NonAnchorChannelFee`]: crate::chain::chaininterface::ConfirmationTarget::NonAnchorChannelFee
3570         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
3571         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> {
3572                 self.close_channel_internal(channel_id, counterparty_node_id, target_feerate_sats_per_1000_weight, shutdown_script)
3573         }
3574
3575         fn finish_close_channel(&self, mut shutdown_res: ShutdownResult) {
3576                 debug_assert_ne!(self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
3577                 #[cfg(debug_assertions)]
3578                 for (_, peer) in self.per_peer_state.read().unwrap().iter() {
3579                         debug_assert_ne!(peer.held_by_thread(), LockHeldState::HeldByThread);
3580                 }
3581
3582                 let logger = WithContext::from(
3583                         &self.logger, Some(shutdown_res.counterparty_node_id), Some(shutdown_res.channel_id), None
3584                 );
3585
3586                 log_debug!(logger, "Finishing closure of channel due to {} with {} HTLCs to fail",
3587                         shutdown_res.closure_reason, shutdown_res.dropped_outbound_htlcs.len());
3588                 for htlc_source in shutdown_res.dropped_outbound_htlcs.drain(..) {
3589                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
3590                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
3591                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
3592                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
3593                 }
3594                 if let Some((_, funding_txo, _channel_id, monitor_update)) = shutdown_res.monitor_update {
3595                         // There isn't anything we can do if we get an update failure - we're already
3596                         // force-closing. The monitor update on the required in-memory copy should broadcast
3597                         // the latest local state, which is the best we can do anyway. Thus, it is safe to
3598                         // ignore the result here.
3599                         let _ = self.chain_monitor.update_channel(funding_txo, &monitor_update);
3600                 }
3601                 let mut shutdown_results = Vec::new();
3602                 if let Some(txid) = shutdown_res.unbroadcasted_batch_funding_txid {
3603                         let mut funding_batch_states = self.funding_batch_states.lock().unwrap();
3604                         let affected_channels = funding_batch_states.remove(&txid).into_iter().flatten();
3605                         let per_peer_state = self.per_peer_state.read().unwrap();
3606                         let mut has_uncompleted_channel = None;
3607                         for (channel_id, counterparty_node_id, state) in affected_channels {
3608                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
3609                                         let mut peer_state = peer_state_mutex.lock().unwrap();
3610                                         if let Some(mut chan) = peer_state.channel_by_id.remove(&channel_id) {
3611                                                 update_maps_on_chan_removal!(self, &chan.context());
3612                                                 shutdown_results.push(chan.context_mut().force_shutdown(false, ClosureReason::FundingBatchClosure));
3613                                         }
3614                                 }
3615                                 has_uncompleted_channel = Some(has_uncompleted_channel.map_or(!state, |v| v || !state));
3616                         }
3617                         debug_assert!(
3618                                 has_uncompleted_channel.unwrap_or(true),
3619                                 "Closing a batch where all channels have completed initial monitor update",
3620                         );
3621                 }
3622
3623                 {
3624                         let mut pending_events = self.pending_events.lock().unwrap();
3625                         pending_events.push_back((events::Event::ChannelClosed {
3626                                 channel_id: shutdown_res.channel_id,
3627                                 user_channel_id: shutdown_res.user_channel_id,
3628                                 reason: shutdown_res.closure_reason,
3629                                 counterparty_node_id: Some(shutdown_res.counterparty_node_id),
3630                                 channel_capacity_sats: Some(shutdown_res.channel_capacity_satoshis),
3631                                 channel_funding_txo: shutdown_res.channel_funding_txo,
3632                         }, None));
3633
3634                         if let Some(transaction) = shutdown_res.unbroadcasted_funding_tx {
3635                                 pending_events.push_back((events::Event::DiscardFunding {
3636                                         channel_id: shutdown_res.channel_id, transaction
3637                                 }, None));
3638                         }
3639                 }
3640                 for shutdown_result in shutdown_results.drain(..) {
3641                         self.finish_close_channel(shutdown_result);
3642                 }
3643         }
3644
3645         /// `peer_msg` should be set when we receive a message from a peer, but not set when the
3646         /// user closes, which will be re-exposed as the `ChannelClosed` reason.
3647         fn force_close_channel_with_peer(&self, channel_id: &ChannelId, peer_node_id: &PublicKey, peer_msg: Option<&String>, broadcast: bool)
3648         -> Result<PublicKey, APIError> {
3649                 let per_peer_state = self.per_peer_state.read().unwrap();
3650                 let peer_state_mutex = per_peer_state.get(peer_node_id)
3651                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", peer_node_id) })?;
3652                 let (update_opt, counterparty_node_id) = {
3653                         let mut peer_state = peer_state_mutex.lock().unwrap();
3654                         let closure_reason = if let Some(peer_msg) = peer_msg {
3655                                 ClosureReason::CounterpartyForceClosed { peer_msg: UntrustedString(peer_msg.to_string()) }
3656                         } else {
3657                                 ClosureReason::HolderForceClosed
3658                         };
3659                         let logger = WithContext::from(&self.logger, Some(*peer_node_id), Some(*channel_id), None);
3660                         if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(channel_id.clone()) {
3661                                 log_error!(logger, "Force-closing channel {}", channel_id);
3662                                 let mut chan_phase = remove_channel_phase!(self, chan_phase_entry);
3663                                 mem::drop(peer_state);
3664                                 mem::drop(per_peer_state);
3665                                 match chan_phase {
3666                                         ChannelPhase::Funded(mut chan) => {
3667                                                 self.finish_close_channel(chan.context.force_shutdown(broadcast, closure_reason));
3668                                                 (self.get_channel_update_for_broadcast(&chan).ok(), chan.context.get_counterparty_node_id())
3669                                         },
3670                                         ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => {
3671                                                 self.finish_close_channel(chan_phase.context_mut().force_shutdown(false, closure_reason));
3672                                                 // Unfunded channel has no update
3673                                                 (None, chan_phase.context().get_counterparty_node_id())
3674                                         },
3675                                         // TODO(dual_funding): Combine this match arm with above once #[cfg(any(dual_funding, splicing))] is removed.
3676                                         #[cfg(any(dual_funding, splicing))]
3677                                         ChannelPhase::UnfundedOutboundV2(_) | ChannelPhase::UnfundedInboundV2(_) => {
3678                                                 self.finish_close_channel(chan_phase.context_mut().force_shutdown(false, closure_reason));
3679                                                 // Unfunded channel has no update
3680                                                 (None, chan_phase.context().get_counterparty_node_id())
3681                                         },
3682                                 }
3683                         } else if peer_state.inbound_channel_request_by_id.remove(channel_id).is_some() {
3684                                 log_error!(logger, "Force-closing channel {}", &channel_id);
3685                                 // N.B. that we don't send any channel close event here: we
3686                                 // don't have a user_channel_id, and we never sent any opening
3687                                 // events anyway.
3688                                 (None, *peer_node_id)
3689                         } else {
3690                                 return Err(APIError::ChannelUnavailable{ err: format!("Channel with id {} not found for the passed counterparty node_id {}", channel_id, peer_node_id) });
3691                         }
3692                 };
3693                 if let Some(update) = update_opt {
3694                         // If we have some Channel Update to broadcast, we cache it and broadcast it later.
3695                         let mut pending_broadcast_messages = self.pending_broadcast_messages.lock().unwrap();
3696                         pending_broadcast_messages.push(events::MessageSendEvent::BroadcastChannelUpdate {
3697                                 msg: update
3698                         });
3699                 }
3700
3701                 Ok(counterparty_node_id)
3702         }
3703
3704         fn force_close_sending_error(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, broadcast: bool, error_message: String)
3705         -> Result<(), APIError> {
3706                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3707                 log_debug!(self.logger,
3708                         "Force-closing channel, The error message sent to the peer : {}", error_message);
3709                 match self.force_close_channel_with_peer(channel_id, counterparty_node_id, None, broadcast) {
3710                         Ok(counterparty_node_id) => {
3711                                 let per_peer_state = self.per_peer_state.read().unwrap();
3712                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
3713                                         let mut peer_state = peer_state_mutex.lock().unwrap();
3714                                         peer_state.pending_msg_events.push(
3715                                                 events::MessageSendEvent::HandleError {
3716                                                         node_id: counterparty_node_id,
3717                                                         action: msgs::ErrorAction::DisconnectPeer {
3718                                                                 msg: Some(msgs::ErrorMessage { channel_id: *channel_id, data: error_message})
3719                                                         },
3720                                                 }
3721                                         );
3722                                 }
3723                                 Ok(())
3724                         },
3725                         Err(e) => Err(e)
3726                 }
3727         }
3728
3729         /// Force closes a channel, immediately broadcasting the latest local transaction(s),
3730         /// rejecting new HTLCs.
3731         ///
3732         /// The provided `error_message` is sent to connected peers for closing
3733         /// channels and should be a human-readable description of what went wrong.
3734         ///
3735         /// Fails if `channel_id` is unknown to the manager, or if the `counterparty_node_id`
3736         /// isn't the counterparty of the corresponding channel.
3737         pub fn force_close_broadcasting_latest_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, error_message: String)
3738         -> Result<(), APIError> {
3739                 self.force_close_sending_error(channel_id, counterparty_node_id, true, error_message)
3740         }
3741
3742         /// Force closes a channel, rejecting new HTLCs on the given channel but skips broadcasting
3743         /// the latest local transaction(s).
3744         ///
3745         /// The provided `error_message` is sent to connected peers for closing channels and should
3746         /// be a human-readable description of what went wrong.
3747         ///
3748         /// Fails if `channel_id` is unknown to the manager, or if the
3749         /// `counterparty_node_id` isn't the counterparty of the corresponding channel.
3750         /// You can always broadcast the latest local transaction(s) via
3751         /// [`ChannelMonitor::broadcast_latest_holder_commitment_txn`].
3752         pub fn force_close_without_broadcasting_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, error_message: String)
3753         -> Result<(), APIError> {
3754                 self.force_close_sending_error(channel_id, counterparty_node_id, false, error_message)
3755         }
3756
3757         /// Force close all channels, immediately broadcasting the latest local commitment transaction
3758         /// for each to the chain and rejecting new HTLCs on each.
3759         ///
3760         /// The provided `error_message` is sent to connected peers for closing channels and should
3761         /// be a human-readable description of what went wrong.
3762         pub fn force_close_all_channels_broadcasting_latest_txn(&self, error_message: String) {
3763                 for chan in self.list_channels() {
3764                         let _ = self.force_close_broadcasting_latest_txn(&chan.channel_id, &chan.counterparty.node_id, error_message.clone());
3765                 }
3766         }
3767
3768         /// Force close all channels rejecting new HTLCs on each but without broadcasting the latest
3769         /// local transaction(s).
3770         ///
3771         /// The provided `error_message` is sent to connected peers for closing channels and
3772         /// should be a human-readable description of what went wrong.
3773         pub fn force_close_all_channels_without_broadcasting_txn(&self, error_message: String) {
3774                 for chan in self.list_channels() {
3775                         let _ = self.force_close_without_broadcasting_txn(&chan.channel_id, &chan.counterparty.node_id, error_message.clone());
3776                 }
3777         }
3778
3779         fn can_forward_htlc_to_outgoing_channel(
3780                 &self, chan: &mut Channel<SP>, msg: &msgs::UpdateAddHTLC, next_packet: &NextPacketDetails
3781         ) -> Result<(), (&'static str, u16, Option<msgs::ChannelUpdate>)> {
3782                 if !chan.context.should_announce() && !self.default_configuration.accept_forwards_to_priv_channels {
3783                         // Note that the behavior here should be identical to the above block - we
3784                         // should NOT reveal the existence or non-existence of a private channel if
3785                         // we don't allow forwards outbound over them.
3786                         return Err(("Refusing to forward to a private channel based on our config.", 0x4000 | 10, None));
3787                 }
3788                 if chan.context.get_channel_type().supports_scid_privacy() && next_packet.outgoing_scid != chan.context.outbound_scid_alias() {
3789                         // `option_scid_alias` (referred to in LDK as `scid_privacy`) means
3790                         // "refuse to forward unless the SCID alias was used", so we pretend
3791                         // we don't have the channel here.
3792                         return Err(("Refusing to forward over real channel SCID as our counterparty requested.", 0x4000 | 10, None));
3793                 }
3794
3795                 // Note that we could technically not return an error yet here and just hope
3796                 // that the connection is reestablished or monitor updated by the time we get
3797                 // around to doing the actual forward, but better to fail early if we can and
3798                 // hopefully an attacker trying to path-trace payments cannot make this occur
3799                 // on a small/per-node/per-channel scale.
3800                 if !chan.context.is_live() { // channel_disabled
3801                         // If the channel_update we're going to return is disabled (i.e. the
3802                         // peer has been disabled for some time), return `channel_disabled`,
3803                         // otherwise return `temporary_channel_failure`.
3804                         let chan_update_opt = self.get_channel_update_for_onion(next_packet.outgoing_scid, chan).ok();
3805                         if chan_update_opt.as_ref().map(|u| u.contents.flags & 2 == 2).unwrap_or(false) {
3806                                 return Err(("Forwarding channel has been disconnected for some time.", 0x1000 | 20, chan_update_opt));
3807                         } else {
3808                                 return Err(("Forwarding channel is not in a ready state.", 0x1000 | 7, chan_update_opt));
3809                         }
3810                 }
3811                 if next_packet.outgoing_amt_msat < chan.context.get_counterparty_htlc_minimum_msat() { // amount_below_minimum
3812                         let chan_update_opt = self.get_channel_update_for_onion(next_packet.outgoing_scid, chan).ok();
3813                         return Err(("HTLC amount was below the htlc_minimum_msat", 0x1000 | 11, chan_update_opt));
3814                 }
3815                 if let Err((err, code)) = chan.htlc_satisfies_config(msg, next_packet.outgoing_amt_msat, next_packet.outgoing_cltv_value) {
3816                         let chan_update_opt = self.get_channel_update_for_onion(next_packet.outgoing_scid, chan).ok();
3817                         return Err((err, code, chan_update_opt));
3818                 }
3819
3820                 Ok(())
3821         }
3822
3823         /// Executes a callback `C` that returns some value `X` on the channel found with the given
3824         /// `scid`. `None` is returned when the channel is not found.
3825         fn do_funded_channel_callback<X, C: Fn(&mut Channel<SP>) -> X>(
3826                 &self, scid: u64, callback: C,
3827         ) -> Option<X> {
3828                 let (counterparty_node_id, channel_id) = match self.short_to_chan_info.read().unwrap().get(&scid).cloned() {
3829                         None => return None,
3830                         Some((cp_id, id)) => (cp_id, id),
3831                 };
3832                 let per_peer_state = self.per_peer_state.read().unwrap();
3833                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
3834                 if peer_state_mutex_opt.is_none() {
3835                         return None;
3836                 }
3837                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
3838                 let peer_state = &mut *peer_state_lock;
3839                 match peer_state.channel_by_id.get_mut(&channel_id).and_then(
3840                         |chan_phase| if let ChannelPhase::Funded(chan) = chan_phase { Some(chan) } else { None }
3841                 ) {
3842                         None => None,
3843                         Some(chan) => Some(callback(chan)),
3844                 }
3845         }
3846
3847         fn can_forward_htlc(
3848                 &self, msg: &msgs::UpdateAddHTLC, next_packet_details: &NextPacketDetails
3849         ) -> Result<(), (&'static str, u16, Option<msgs::ChannelUpdate>)> {
3850                 match self.do_funded_channel_callback(next_packet_details.outgoing_scid, |chan: &mut Channel<SP>| {
3851                         self.can_forward_htlc_to_outgoing_channel(chan, msg, next_packet_details)
3852                 }) {
3853                         Some(Ok(())) => {},
3854                         Some(Err(e)) => return Err(e),
3855                         None => {
3856                                 // If we couldn't find the channel info for the scid, it may be a phantom or
3857                                 // intercept forward.
3858                                 if (self.default_configuration.accept_intercept_htlcs &&
3859                                         fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, next_packet_details.outgoing_scid, &self.chain_hash)) ||
3860                                         fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, next_packet_details.outgoing_scid, &self.chain_hash)
3861                                 {} else {
3862                                         return Err(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
3863                                 }
3864                         }
3865                 }
3866
3867                 let cur_height = self.best_block.read().unwrap().height + 1;
3868                 if let Err((err_msg, err_code)) = check_incoming_htlc_cltv(
3869                         cur_height, next_packet_details.outgoing_cltv_value, msg.cltv_expiry
3870                 ) {
3871                         let chan_update_opt = self.do_funded_channel_callback(next_packet_details.outgoing_scid, |chan: &mut Channel<SP>| {
3872                                 self.get_channel_update_for_onion(next_packet_details.outgoing_scid, chan).ok()
3873                         }).flatten();
3874                         return Err((err_msg, err_code, chan_update_opt));
3875                 }
3876
3877                 Ok(())
3878         }
3879
3880         fn htlc_failure_from_update_add_err(
3881                 &self, msg: &msgs::UpdateAddHTLC, counterparty_node_id: &PublicKey, err_msg: &'static str,
3882                 mut err_code: u16, chan_update: Option<msgs::ChannelUpdate>, is_intro_node_blinded_forward: bool,
3883                 shared_secret: &[u8; 32]
3884         ) -> HTLCFailureMsg {
3885                 let mut res = VecWriter(Vec::with_capacity(chan_update.serialized_length() + 2 + 8 + 2));
3886                 if chan_update.is_some() && err_code & 0x1000 == 0x1000 {
3887                         let chan_update = chan_update.unwrap();
3888                         if err_code == 0x1000 | 11 || err_code == 0x1000 | 12 {
3889                                 msg.amount_msat.write(&mut res).expect("Writes cannot fail");
3890                         }
3891                         else if err_code == 0x1000 | 13 {
3892                                 msg.cltv_expiry.write(&mut res).expect("Writes cannot fail");
3893                         }
3894                         else if err_code == 0x1000 | 20 {
3895                                 // TODO: underspecified, follow https://github.com/lightning/bolts/issues/791
3896                                 0u16.write(&mut res).expect("Writes cannot fail");
3897                         }
3898                         (chan_update.serialized_length() as u16 + 2).write(&mut res).expect("Writes cannot fail");
3899                         msgs::ChannelUpdate::TYPE.write(&mut res).expect("Writes cannot fail");
3900                         chan_update.write(&mut res).expect("Writes cannot fail");
3901                 } else if err_code & 0x1000 == 0x1000 {
3902                         // If we're trying to return an error that requires a `channel_update` but
3903                         // we're forwarding to a phantom or intercept "channel" (i.e. cannot
3904                         // generate an update), just use the generic "temporary_node_failure"
3905                         // instead.
3906                         err_code = 0x2000 | 2;
3907                 }
3908
3909                 log_info!(
3910                         WithContext::from(&self.logger, Some(*counterparty_node_id), Some(msg.channel_id), Some(msg.payment_hash)),
3911                         "Failed to accept/forward incoming HTLC: {}", err_msg
3912                 );
3913                 // If `msg.blinding_point` is set, we must always fail with malformed.
3914                 if msg.blinding_point.is_some() {
3915                         return HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
3916                                 channel_id: msg.channel_id,
3917                                 htlc_id: msg.htlc_id,
3918                                 sha256_of_onion: [0; 32],
3919                                 failure_code: INVALID_ONION_BLINDING,
3920                         });
3921                 }
3922
3923                 let (err_code, err_data) = if is_intro_node_blinded_forward {
3924                         (INVALID_ONION_BLINDING, &[0; 32][..])
3925                 } else {
3926                         (err_code, &res.0[..])
3927                 };
3928                 HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
3929                         channel_id: msg.channel_id,
3930                         htlc_id: msg.htlc_id,
3931                         reason: HTLCFailReason::reason(err_code, err_data.to_vec())
3932                                 .get_encrypted_failure_packet(shared_secret, &None),
3933                 })
3934         }
3935
3936         fn decode_update_add_htlc_onion(
3937                 &self, msg: &msgs::UpdateAddHTLC, counterparty_node_id: &PublicKey,
3938         ) -> Result<
3939                 (onion_utils::Hop, [u8; 32], Option<Result<PublicKey, secp256k1::Error>>), HTLCFailureMsg
3940         > {
3941                 let (next_hop, shared_secret, next_packet_details_opt) = decode_incoming_update_add_htlc_onion(
3942                         msg, &self.node_signer, &self.logger, &self.secp_ctx
3943                 )?;
3944
3945                 let next_packet_details = match next_packet_details_opt {
3946                         Some(next_packet_details) => next_packet_details,
3947                         // it is a receive, so no need for outbound checks
3948                         None => return Ok((next_hop, shared_secret, None)),
3949                 };
3950
3951                 // Perform outbound checks here instead of in [`Self::construct_pending_htlc_info`] because we
3952                 // can't hold the outbound peer state lock at the same time as the inbound peer state lock.
3953                 self.can_forward_htlc(&msg, &next_packet_details).map_err(|e| {
3954                         let (err_msg, err_code, chan_update_opt) = e;
3955                         self.htlc_failure_from_update_add_err(
3956                                 msg, counterparty_node_id, err_msg, err_code, chan_update_opt,
3957                                 next_hop.is_intro_node_blinded_forward(), &shared_secret
3958                         )
3959                 })?;
3960
3961                 Ok((next_hop, shared_secret, Some(next_packet_details.next_packet_pubkey)))
3962         }
3963
3964         fn construct_pending_htlc_status<'a>(
3965                 &self, msg: &msgs::UpdateAddHTLC, counterparty_node_id: &PublicKey, shared_secret: [u8; 32],
3966                 decoded_hop: onion_utils::Hop, allow_underpay: bool,
3967                 next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>,
3968         ) -> PendingHTLCStatus {
3969                 macro_rules! return_err {
3970                         ($msg: expr, $err_code: expr, $data: expr) => {
3971                                 {
3972                                         let logger = WithContext::from(&self.logger, Some(*counterparty_node_id), Some(msg.channel_id), Some(msg.payment_hash));
3973                                         log_info!(logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3974                                         if msg.blinding_point.is_some() {
3975                                                 return PendingHTLCStatus::Fail(HTLCFailureMsg::Malformed(
3976                                                         msgs::UpdateFailMalformedHTLC {
3977                                                                 channel_id: msg.channel_id,
3978                                                                 htlc_id: msg.htlc_id,
3979                                                                 sha256_of_onion: [0; 32],
3980                                                                 failure_code: INVALID_ONION_BLINDING,
3981                                                         }
3982                                                 ))
3983                                         }
3984                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
3985                                                 channel_id: msg.channel_id,
3986                                                 htlc_id: msg.htlc_id,
3987                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
3988                                                         .get_encrypted_failure_packet(&shared_secret, &None),
3989                                         }));
3990                                 }
3991                         }
3992                 }
3993                 match decoded_hop {
3994                         onion_utils::Hop::Receive(next_hop_data) => {
3995                                 // OUR PAYMENT!
3996                                 let current_height: u32 = self.best_block.read().unwrap().height;
3997                                 match create_recv_pending_htlc_info(next_hop_data, shared_secret, msg.payment_hash,
3998                                         msg.amount_msat, msg.cltv_expiry, None, allow_underpay, msg.skimmed_fee_msat,
3999                                         current_height, self.default_configuration.accept_mpp_keysend)
4000                                 {
4001                                         Ok(info) => {
4002                                                 // Note that we could obviously respond immediately with an update_fulfill_htlc
4003                                                 // message, however that would leak that we are the recipient of this payment, so
4004                                                 // instead we stay symmetric with the forwarding case, only responding (after a
4005                                                 // delay) once they've send us a commitment_signed!
4006                                                 PendingHTLCStatus::Forward(info)
4007                                         },
4008                                         Err(InboundHTLCErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
4009                                 }
4010                         },
4011                         onion_utils::Hop::Forward { next_hop_data, next_hop_hmac, new_packet_bytes } => {
4012                                 match create_fwd_pending_htlc_info(msg, next_hop_data, next_hop_hmac,
4013                                         new_packet_bytes, shared_secret, next_packet_pubkey_opt) {
4014                                         Ok(info) => PendingHTLCStatus::Forward(info),
4015                                         Err(InboundHTLCErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
4016                                 }
4017                         }
4018                 }
4019         }
4020
4021         /// Gets the current [`channel_update`] for the given channel. This first checks if the channel is
4022         /// public, and thus should be called whenever the result is going to be passed out in a
4023         /// [`MessageSendEvent::BroadcastChannelUpdate`] event.
4024         ///
4025         /// Note that in [`internal_closing_signed`], this function is called without the `peer_state`
4026         /// corresponding to the channel's counterparty locked, as the channel been removed from the
4027         /// storage and the `peer_state` lock has been dropped.
4028         ///
4029         /// [`channel_update`]: msgs::ChannelUpdate
4030         /// [`internal_closing_signed`]: Self::internal_closing_signed
4031         fn get_channel_update_for_broadcast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
4032                 if !chan.context.should_announce() {
4033                         return Err(LightningError {
4034                                 err: "Cannot broadcast a channel_update for a private channel".to_owned(),
4035                                 action: msgs::ErrorAction::IgnoreError
4036                         });
4037                 }
4038                 if chan.context.get_short_channel_id().is_none() {
4039                         return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError});
4040                 }
4041                 let logger = WithChannelContext::from(&self.logger, &chan.context, None);
4042                 log_trace!(logger, "Attempting to generate broadcast channel update for channel {}", &chan.context.channel_id());
4043                 self.get_channel_update_for_unicast(chan)
4044         }
4045
4046         /// Gets the current [`channel_update`] for the given channel. This does not check if the channel
4047         /// is public (only returning an `Err` if the channel does not yet have an assigned SCID),
4048         /// and thus MUST NOT be called unless the recipient of the resulting message has already
4049         /// provided evidence that they know about the existence of the channel.
4050         ///
4051         /// Note that through [`internal_closing_signed`], this function is called without the
4052         /// `peer_state`  corresponding to the channel's counterparty locked, as the channel been
4053         /// removed from the storage and the `peer_state` lock has been dropped.
4054         ///
4055         /// [`channel_update`]: msgs::ChannelUpdate
4056         /// [`internal_closing_signed`]: Self::internal_closing_signed
4057         fn get_channel_update_for_unicast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
4058                 let logger = WithChannelContext::from(&self.logger, &chan.context, None);
4059                 log_trace!(logger, "Attempting to generate channel update for channel {}", chan.context.channel_id());
4060                 let short_channel_id = match chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias()) {
4061                         None => return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError}),
4062                         Some(id) => id,
4063                 };
4064
4065                 self.get_channel_update_for_onion(short_channel_id, chan)
4066         }
4067
4068         fn get_channel_update_for_onion(&self, short_channel_id: u64, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
4069                 let logger = WithChannelContext::from(&self.logger, &chan.context, None);
4070                 log_trace!(logger, "Generating channel update for channel {}", chan.context.channel_id());
4071                 let were_node_one = self.our_network_pubkey.serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
4072
4073                 let enabled = chan.context.is_usable() && match chan.channel_update_status() {
4074                         ChannelUpdateStatus::Enabled => true,
4075                         ChannelUpdateStatus::DisabledStaged(_) => true,
4076                         ChannelUpdateStatus::Disabled => false,
4077                         ChannelUpdateStatus::EnabledStaged(_) => false,
4078                 };
4079
4080                 let unsigned = msgs::UnsignedChannelUpdate {
4081                         chain_hash: self.chain_hash,
4082                         short_channel_id,
4083                         timestamp: chan.context.get_update_time_counter(),
4084                         flags: (!were_node_one) as u8 | ((!enabled as u8) << 1),
4085                         cltv_expiry_delta: chan.context.get_cltv_expiry_delta(),
4086                         htlc_minimum_msat: chan.context.get_counterparty_htlc_minimum_msat(),
4087                         htlc_maximum_msat: chan.context.get_announced_htlc_max_msat(),
4088                         fee_base_msat: chan.context.get_outbound_forwarding_fee_base_msat(),
4089                         fee_proportional_millionths: chan.context.get_fee_proportional_millionths(),
4090                         excess_data: Vec::new(),
4091                 };
4092                 // Panic on failure to signal LDK should be restarted to retry signing the `ChannelUpdate`.
4093                 // If we returned an error and the `node_signer` cannot provide a signature for whatever
4094                 // reason`, we wouldn't be able to receive inbound payments through the corresponding
4095                 // channel.
4096                 let sig = self.node_signer.sign_gossip_message(msgs::UnsignedGossipMessage::ChannelUpdate(&unsigned)).unwrap();
4097
4098                 Ok(msgs::ChannelUpdate {
4099                         signature: sig,
4100                         contents: unsigned
4101                 })
4102         }
4103
4104         #[cfg(test)]
4105         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> {
4106                 let _lck = self.total_consistency_lock.read().unwrap();
4107                 self.send_payment_along_path(SendAlongPathArgs {
4108                         path, payment_hash, recipient_onion: &recipient_onion, total_value,
4109                         cur_height, payment_id, keysend_preimage, session_priv_bytes
4110                 })
4111         }
4112
4113         fn send_payment_along_path(&self, args: SendAlongPathArgs) -> Result<(), APIError> {
4114                 let SendAlongPathArgs {
4115                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
4116                         session_priv_bytes
4117                 } = args;
4118                 // The top-level caller should hold the total_consistency_lock read lock.
4119                 debug_assert!(self.total_consistency_lock.try_write().is_err());
4120                 let prng_seed = self.entropy_source.get_secure_random_bytes();
4121                 let session_priv = SecretKey::from_slice(&session_priv_bytes[..]).expect("RNG is busted");
4122
4123                 let (onion_packet, htlc_msat, htlc_cltv) = onion_utils::create_payment_onion(
4124                         &self.secp_ctx, &path, &session_priv, total_value, recipient_onion, cur_height,
4125                         payment_hash, keysend_preimage, prng_seed
4126                 ).map_err(|e| {
4127                         let logger = WithContext::from(&self.logger, Some(path.hops.first().unwrap().pubkey), None, Some(*payment_hash));
4128                         log_error!(logger, "Failed to build an onion for path for payment hash {}", payment_hash);
4129                         e
4130                 })?;
4131
4132                 let err: Result<(), _> = loop {
4133                         let (counterparty_node_id, id) = match self.short_to_chan_info.read().unwrap().get(&path.hops.first().unwrap().short_channel_id) {
4134                                 None => {
4135                                         let logger = WithContext::from(&self.logger, Some(path.hops.first().unwrap().pubkey), None, Some(*payment_hash));
4136                                         log_error!(logger, "Failed to find first-hop for payment hash {}", payment_hash);
4137                                         return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()})
4138                                 },
4139                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
4140                         };
4141
4142                         let logger = WithContext::from(&self.logger, Some(counterparty_node_id), Some(id), Some(*payment_hash));
4143                         log_trace!(logger,
4144                                 "Attempting to send payment with payment hash {} along path with next hop {}",
4145                                 payment_hash, path.hops.first().unwrap().short_channel_id);
4146
4147                         let per_peer_state = self.per_peer_state.read().unwrap();
4148                         let peer_state_mutex = per_peer_state.get(&counterparty_node_id)
4149                                 .ok_or_else(|| APIError::ChannelUnavailable{err: "No peer matching the path's first hop found!".to_owned() })?;
4150                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4151                         let peer_state = &mut *peer_state_lock;
4152                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(id) {
4153                                 match chan_phase_entry.get_mut() {
4154                                         ChannelPhase::Funded(chan) => {
4155                                                 if !chan.context.is_live() {
4156                                                         return Err(APIError::ChannelUnavailable{err: "Peer for first hop currently disconnected".to_owned()});
4157                                                 }
4158                                                 let funding_txo = chan.context.get_funding_txo().unwrap();
4159                                                 let logger = WithChannelContext::from(&self.logger, &chan.context, Some(*payment_hash));
4160                                                 let send_res = chan.send_htlc_and_commit(htlc_msat, payment_hash.clone(),
4161                                                         htlc_cltv, HTLCSource::OutboundRoute {
4162                                                                 path: path.clone(),
4163                                                                 session_priv: session_priv.clone(),
4164                                                                 first_hop_htlc_msat: htlc_msat,
4165                                                                 payment_id,
4166                                                         }, onion_packet, None, &self.fee_estimator, &&logger);
4167                                                 match break_chan_phase_entry!(self, send_res, chan_phase_entry) {
4168                                                         Some(monitor_update) => {
4169                                                                 match handle_new_monitor_update!(self, funding_txo, monitor_update, peer_state_lock, peer_state, per_peer_state, chan) {
4170                                                                         false => {
4171                                                                                 // Note that MonitorUpdateInProgress here indicates (per function
4172                                                                                 // docs) that we will resend the commitment update once monitor
4173                                                                                 // updating completes. Therefore, we must return an error
4174                                                                                 // indicating that it is unsafe to retry the payment wholesale,
4175                                                                                 // which we do in the send_payment check for
4176                                                                                 // MonitorUpdateInProgress, below.
4177                                                                                 return Err(APIError::MonitorUpdateInProgress);
4178                                                                         },
4179                                                                         true => {},
4180                                                                 }
4181                                                         },
4182                                                         None => {},
4183                                                 }
4184                                         },
4185                                         _ => return Err(APIError::ChannelUnavailable{err: "Channel to first hop is unfunded".to_owned()}),
4186                                 };
4187                         } else {
4188                                 // The channel was likely removed after we fetched the id from the
4189                                 // `short_to_chan_info` map, but before we successfully locked the
4190                                 // `channel_by_id` map.
4191                                 // This can occur as no consistency guarantees exists between the two maps.
4192                                 return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()});
4193                         }
4194                         return Ok(());
4195                 };
4196                 match handle_error!(self, err, path.hops.first().unwrap().pubkey) {
4197                         Ok(_) => unreachable!(),
4198                         Err(e) => {
4199                                 Err(APIError::ChannelUnavailable { err: e.err })
4200                         },
4201                 }
4202         }
4203
4204         /// Sends a payment along a given route.
4205         ///
4206         /// Value parameters are provided via the last hop in route, see documentation for [`RouteHop`]
4207         /// fields for more info.
4208         ///
4209         /// May generate [`UpdateHTLCs`] message(s) event on success, which should be relayed (e.g. via
4210         /// [`PeerManager::process_events`]).
4211         ///
4212         /// # Avoiding Duplicate Payments
4213         ///
4214         /// If a pending payment is currently in-flight with the same [`PaymentId`] provided, this
4215         /// method will error with an [`APIError::InvalidRoute`]. Note, however, that once a payment
4216         /// is no longer pending (either via [`ChannelManager::abandon_payment`], or handling of an
4217         /// [`Event::PaymentSent`] or [`Event::PaymentFailed`]) LDK will not stop you from sending a
4218         /// second payment with the same [`PaymentId`].
4219         ///
4220         /// Thus, in order to ensure duplicate payments are not sent, you should implement your own
4221         /// tracking of payments, including state to indicate once a payment has completed. Because you
4222         /// should also ensure that [`PaymentHash`]es are not re-used, for simplicity, you should
4223         /// consider using the [`PaymentHash`] as the key for tracking payments. In that case, the
4224         /// [`PaymentId`] should be a copy of the [`PaymentHash`] bytes.
4225         ///
4226         /// Additionally, in the scenario where we begin the process of sending a payment, but crash
4227         /// before `send_payment` returns (or prior to [`ChannelMonitorUpdate`] persistence if you're
4228         /// using [`ChannelMonitorUpdateStatus::InProgress`]), the payment may be lost on restart. See
4229         /// [`ChannelManager::list_recent_payments`] for more information.
4230         ///
4231         /// # Possible Error States on [`PaymentSendFailure`]
4232         ///
4233         /// Each path may have a different return value, and [`PaymentSendFailure`] may return a `Vec` with
4234         /// each entry matching the corresponding-index entry in the route paths, see
4235         /// [`PaymentSendFailure`] for more info.
4236         ///
4237         /// In general, a path may raise:
4238         ///  * [`APIError::InvalidRoute`] when an invalid route or forwarding parameter (cltv_delta, fee,
4239         ///    node public key) is specified.
4240         ///  * [`APIError::ChannelUnavailable`] if the next-hop channel is not available as it has been
4241         ///    closed, doesn't exist, or the peer is currently disconnected.
4242         ///  * [`APIError::MonitorUpdateInProgress`] if a new monitor update failure prevented sending the
4243         ///    relevant updates.
4244         ///
4245         /// Note that depending on the type of the [`PaymentSendFailure`] the HTLC may have been
4246         /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
4247         /// different route unless you intend to pay twice!
4248         ///
4249         /// [`RouteHop`]: crate::routing::router::RouteHop
4250         /// [`Event::PaymentSent`]: events::Event::PaymentSent
4251         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
4252         /// [`UpdateHTLCs`]: events::MessageSendEvent::UpdateHTLCs
4253         /// [`PeerManager::process_events`]: crate::ln::peer_handler::PeerManager::process_events
4254         /// [`ChannelMonitorUpdateStatus::InProgress`]: crate::chain::ChannelMonitorUpdateStatus::InProgress
4255         pub fn send_payment_with_route(&self, route: &Route, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<(), PaymentSendFailure> {
4256                 let best_block_height = self.best_block.read().unwrap().height;
4257                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4258                 self.pending_outbound_payments
4259                         .send_payment_with_route(route, payment_hash, recipient_onion, payment_id,
4260                                 &self.entropy_source, &self.node_signer, best_block_height,
4261                                 |args| self.send_payment_along_path(args))
4262         }
4263
4264         /// Similar to [`ChannelManager::send_payment_with_route`], but will automatically find a route based on
4265         /// `route_params` and retry failed payment paths based on `retry_strategy`.
4266         pub fn send_payment(&self, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId, route_params: RouteParameters, retry_strategy: Retry) -> Result<(), RetryableSendFailure> {
4267                 let best_block_height = self.best_block.read().unwrap().height;
4268                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4269                 self.pending_outbound_payments
4270                         .send_payment(payment_hash, recipient_onion, payment_id, retry_strategy, route_params,
4271                                 &self.router, self.list_usable_channels(), || self.compute_inflight_htlcs(),
4272                                 &self.entropy_source, &self.node_signer, best_block_height, &self.logger,
4273                                 &self.pending_events, |args| self.send_payment_along_path(args))
4274         }
4275
4276         #[cfg(test)]
4277         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> {
4278                 let best_block_height = self.best_block.read().unwrap().height;
4279                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4280                 self.pending_outbound_payments.test_send_payment_internal(route, payment_hash, recipient_onion,
4281                         keysend_preimage, payment_id, recv_value_msat, onion_session_privs, &self.node_signer,
4282                         best_block_height, |args| self.send_payment_along_path(args))
4283         }
4284
4285         #[cfg(test)]
4286         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> {
4287                 let best_block_height = self.best_block.read().unwrap().height;
4288                 self.pending_outbound_payments.test_add_new_pending_payment(payment_hash, recipient_onion, payment_id, route, None, &self.entropy_source, best_block_height)
4289         }
4290
4291         #[cfg(test)]
4292         pub(crate) fn test_set_payment_metadata(&self, payment_id: PaymentId, new_payment_metadata: Option<Vec<u8>>) {
4293                 self.pending_outbound_payments.test_set_payment_metadata(payment_id, new_payment_metadata);
4294         }
4295
4296         pub(super) fn send_payment_for_bolt12_invoice(&self, invoice: &Bolt12Invoice, payment_id: PaymentId) -> Result<(), Bolt12PaymentError> {
4297                 let best_block_height = self.best_block.read().unwrap().height;
4298                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4299                 self.pending_outbound_payments
4300                         .send_payment_for_bolt12_invoice(
4301                                 invoice, payment_id, &self.router, self.list_usable_channels(),
4302                                 || self.compute_inflight_htlcs(), &self.entropy_source, &self.node_signer,
4303                                 best_block_height, &self.logger, &self.pending_events,
4304                                 |args| self.send_payment_along_path(args)
4305                         )
4306         }
4307
4308         /// Signals that no further attempts for the given payment should occur. Useful if you have a
4309         /// pending outbound payment with retries remaining, but wish to stop retrying the payment before
4310         /// retries are exhausted.
4311         ///
4312         /// # Event Generation
4313         ///
4314         /// If no [`Event::PaymentFailed`] event had been generated before, one will be generated as soon
4315         /// as there are no remaining pending HTLCs for this payment.
4316         ///
4317         /// Note that calling this method does *not* prevent a payment from succeeding. You must still
4318         /// wait until you receive either a [`Event::PaymentFailed`] or [`Event::PaymentSent`] event to
4319         /// determine the ultimate status of a payment.
4320         ///
4321         /// # Requested Invoices
4322         ///
4323         /// In the case of paying a [`Bolt12Invoice`] via [`ChannelManager::pay_for_offer`], abandoning
4324         /// the payment prior to receiving the invoice will result in an [`Event::InvoiceRequestFailed`]
4325         /// and prevent any attempts at paying it once received. The other events may only be generated
4326         /// once the invoice has been received.
4327         ///
4328         /// # Restart Behavior
4329         ///
4330         /// If an [`Event::PaymentFailed`] is generated and we restart without first persisting the
4331         /// [`ChannelManager`], another [`Event::PaymentFailed`] may be generated; likewise for
4332         /// [`Event::InvoiceRequestFailed`].
4333         ///
4334         /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
4335         pub fn abandon_payment(&self, payment_id: PaymentId) {
4336                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4337                 self.pending_outbound_payments.abandon_payment(payment_id, PaymentFailureReason::UserAbandoned, &self.pending_events);
4338         }
4339
4340         /// Send a spontaneous payment, which is a payment that does not require the recipient to have
4341         /// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
4342         /// the preimage, it must be a cryptographically secure random value that no intermediate node
4343         /// would be able to guess -- otherwise, an intermediate node may claim the payment and it will
4344         /// never reach the recipient.
4345         ///
4346         /// See [`send_payment`] documentation for more details on the return value of this function
4347         /// and idempotency guarantees provided by the [`PaymentId`] key.
4348         ///
4349         /// Similar to regular payments, you MUST NOT reuse a `payment_preimage` value. See
4350         /// [`send_payment`] for more information about the risks of duplicate preimage usage.
4351         ///
4352         /// [`send_payment`]: Self::send_payment
4353         pub fn send_spontaneous_payment(&self, route: &Route, payment_preimage: Option<PaymentPreimage>, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<PaymentHash, PaymentSendFailure> {
4354                 let best_block_height = self.best_block.read().unwrap().height;
4355                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4356                 self.pending_outbound_payments.send_spontaneous_payment_with_route(
4357                         route, payment_preimage, recipient_onion, payment_id, &self.entropy_source,
4358                         &self.node_signer, best_block_height, |args| self.send_payment_along_path(args))
4359         }
4360
4361         /// Similar to [`ChannelManager::send_spontaneous_payment`], but will automatically find a route
4362         /// based on `route_params` and retry failed payment paths based on `retry_strategy`.
4363         ///
4364         /// See [`PaymentParameters::for_keysend`] for help in constructing `route_params` for spontaneous
4365         /// payments.
4366         ///
4367         /// [`PaymentParameters::for_keysend`]: crate::routing::router::PaymentParameters::for_keysend
4368         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> {
4369                 let best_block_height = self.best_block.read().unwrap().height;
4370                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4371                 self.pending_outbound_payments.send_spontaneous_payment(payment_preimage, recipient_onion,
4372                         payment_id, retry_strategy, route_params, &self.router, self.list_usable_channels(),
4373                         || self.compute_inflight_htlcs(),  &self.entropy_source, &self.node_signer, best_block_height,
4374                         &self.logger, &self.pending_events, |args| self.send_payment_along_path(args))
4375         }
4376
4377         /// Send a payment that is probing the given route for liquidity. We calculate the
4378         /// [`PaymentHash`] of probes based on a static secret and a random [`PaymentId`], which allows
4379         /// us to easily discern them from real payments.
4380         pub fn send_probe(&self, path: Path) -> Result<(PaymentHash, PaymentId), PaymentSendFailure> {
4381                 let best_block_height = self.best_block.read().unwrap().height;
4382                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4383                 self.pending_outbound_payments.send_probe(path, self.probing_cookie_secret,
4384                         &self.entropy_source, &self.node_signer, best_block_height,
4385                         |args| self.send_payment_along_path(args))
4386         }
4387
4388         /// Returns whether a payment with the given [`PaymentHash`] and [`PaymentId`] is, in fact, a
4389         /// payment probe.
4390         #[cfg(test)]
4391         pub(crate) fn payment_is_probe(&self, payment_hash: &PaymentHash, payment_id: &PaymentId) -> bool {
4392                 outbound_payment::payment_is_probe(payment_hash, payment_id, self.probing_cookie_secret)
4393         }
4394
4395         /// Sends payment probes over all paths of a route that would be used to pay the given
4396         /// amount to the given `node_id`.
4397         ///
4398         /// See [`ChannelManager::send_preflight_probes`] for more information.
4399         pub fn send_spontaneous_preflight_probes(
4400                 &self, node_id: PublicKey, amount_msat: u64, final_cltv_expiry_delta: u32,
4401                 liquidity_limit_multiplier: Option<u64>,
4402         ) -> Result<Vec<(PaymentHash, PaymentId)>, ProbeSendFailure> {
4403                 let payment_params =
4404                         PaymentParameters::from_node_id(node_id, final_cltv_expiry_delta);
4405
4406                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, amount_msat);
4407
4408                 self.send_preflight_probes(route_params, liquidity_limit_multiplier)
4409         }
4410
4411         /// Sends payment probes over all paths of a route that would be used to pay a route found
4412         /// according to the given [`RouteParameters`].
4413         ///
4414         /// This may be used to send "pre-flight" probes, i.e., to train our scorer before conducting
4415         /// the actual payment. Note this is only useful if there likely is sufficient time for the
4416         /// probe to settle before sending out the actual payment, e.g., when waiting for user
4417         /// confirmation in a wallet UI.
4418         ///
4419         /// Otherwise, there is a chance the probe could take up some liquidity needed to complete the
4420         /// actual payment. Users should therefore be cautious and might avoid sending probes if
4421         /// liquidity is scarce and/or they don't expect the probe to return before they send the
4422         /// payment. To mitigate this issue, channels with available liquidity less than the required
4423         /// amount times the given `liquidity_limit_multiplier` won't be used to send pre-flight
4424         /// probes. If `None` is given as `liquidity_limit_multiplier`, it defaults to `3`.
4425         pub fn send_preflight_probes(
4426                 &self, route_params: RouteParameters, liquidity_limit_multiplier: Option<u64>,
4427         ) -> Result<Vec<(PaymentHash, PaymentId)>, ProbeSendFailure> {
4428                 let liquidity_limit_multiplier = liquidity_limit_multiplier.unwrap_or(3);
4429
4430                 let payer = self.get_our_node_id();
4431                 let usable_channels = self.list_usable_channels();
4432                 let first_hops = usable_channels.iter().collect::<Vec<_>>();
4433                 let inflight_htlcs = self.compute_inflight_htlcs();
4434
4435                 let route = self
4436                         .router
4437                         .find_route(&payer, &route_params, Some(&first_hops), inflight_htlcs)
4438                         .map_err(|e| {
4439                                 log_error!(self.logger, "Failed to find path for payment probe: {:?}", e);
4440                                 ProbeSendFailure::RouteNotFound
4441                         })?;
4442
4443                 let mut used_liquidity_map = hash_map_with_capacity(first_hops.len());
4444
4445                 let mut res = Vec::new();
4446
4447                 for mut path in route.paths {
4448                         // If the last hop is probably an unannounced channel we refrain from probing all the
4449                         // way through to the end and instead probe up to the second-to-last channel.
4450                         while let Some(last_path_hop) = path.hops.last() {
4451                                 if last_path_hop.maybe_announced_channel {
4452                                         // We found a potentially announced last hop.
4453                                         break;
4454                                 } else {
4455                                         // Drop the last hop, as it's likely unannounced.
4456                                         log_debug!(
4457                                                 self.logger,
4458                                                 "Avoided sending payment probe all the way to last hop {} as it is likely unannounced.",
4459                                                 last_path_hop.short_channel_id
4460                                         );
4461                                         let final_value_msat = path.final_value_msat();
4462                                         path.hops.pop();
4463                                         if let Some(new_last) = path.hops.last_mut() {
4464                                                 new_last.fee_msat += final_value_msat;
4465                                         }
4466                                 }
4467                         }
4468
4469                         if path.hops.len() < 2 {
4470                                 log_debug!(
4471                                         self.logger,
4472                                         "Skipped sending payment probe over path with less than two hops."
4473                                 );
4474                                 continue;
4475                         }
4476
4477                         if let Some(first_path_hop) = path.hops.first() {
4478                                 if let Some(first_hop) = first_hops.iter().find(|h| {
4479                                         h.get_outbound_payment_scid() == Some(first_path_hop.short_channel_id)
4480                                 }) {
4481                                         let path_value = path.final_value_msat() + path.fee_msat();
4482                                         let used_liquidity =
4483                                                 used_liquidity_map.entry(first_path_hop.short_channel_id).or_insert(0);
4484
4485                                         if first_hop.next_outbound_htlc_limit_msat
4486                                                 < (*used_liquidity + path_value) * liquidity_limit_multiplier
4487                                         {
4488                                                 log_debug!(self.logger, "Skipped sending payment probe to avoid putting channel {} under the liquidity limit.", first_path_hop.short_channel_id);
4489                                                 continue;
4490                                         } else {
4491                                                 *used_liquidity += path_value;
4492                                         }
4493                                 }
4494                         }
4495
4496                         res.push(self.send_probe(path).map_err(|e| {
4497                                 log_error!(self.logger, "Failed to send pre-flight probe: {:?}", e);
4498                                 ProbeSendFailure::SendingFailed(e)
4499                         })?);
4500                 }
4501
4502                 Ok(res)
4503         }
4504
4505         /// Handles the generation of a funding transaction, optionally (for tests) with a function
4506         /// which checks the correctness of the funding transaction given the associated channel.
4507         fn funding_transaction_generated_intern<FundingOutput: FnMut(&OutboundV1Channel<SP>, &Transaction) -> Result<OutPoint, &'static str>>(
4508                 &self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, is_batch_funding: bool,
4509                 mut find_funding_output: FundingOutput,
4510         ) -> Result<(), APIError> {
4511                 let per_peer_state = self.per_peer_state.read().unwrap();
4512                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
4513                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
4514
4515                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4516                 let peer_state = &mut *peer_state_lock;
4517                 let funding_txo;
4518                 let (mut chan, msg_opt) = match peer_state.channel_by_id.remove(temporary_channel_id) {
4519                         Some(ChannelPhase::UnfundedOutboundV1(mut chan)) => {
4520                                 macro_rules! close_chan { ($err: expr, $api_err: expr, $chan: expr) => { {
4521                                         let counterparty;
4522                                         let err = if let ChannelError::Close(msg) = $err {
4523                                                 let channel_id = $chan.context.channel_id();
4524                                                 counterparty = chan.context.get_counterparty_node_id();
4525                                                 let reason = ClosureReason::ProcessingError { err: msg.clone() };
4526                                                 let shutdown_res = $chan.context.force_shutdown(false, reason);
4527                                                 MsgHandleErrInternal::from_finish_shutdown(msg, channel_id, shutdown_res, None)
4528                                         } else { unreachable!(); };
4529
4530                                         mem::drop(peer_state_lock);
4531                                         mem::drop(per_peer_state);
4532                                         let _: Result<(), _> = handle_error!(self, Err(err), counterparty);
4533                                         Err($api_err)
4534                                 } } }
4535                                 match find_funding_output(&chan, &funding_transaction) {
4536                                         Ok(found_funding_txo) => funding_txo = found_funding_txo,
4537                                         Err(err) => {
4538                                                 let chan_err = ChannelError::Close(err.to_owned());
4539                                                 let api_err = APIError::APIMisuseError { err: err.to_owned() };
4540                                                 return close_chan!(chan_err, api_err, chan);
4541                                         },
4542                                 }
4543
4544                                 let logger = WithChannelContext::from(&self.logger, &chan.context, None);
4545                                 let funding_res = chan.get_funding_created(funding_transaction, funding_txo, is_batch_funding, &&logger);
4546                                 match funding_res {
4547                                         Ok(funding_msg) => (chan, funding_msg),
4548                                         Err((mut chan, chan_err)) => {
4549                                                 let api_err = APIError::ChannelUnavailable { err: "Signer refused to sign the initial commitment transaction".to_owned() };
4550                                                 return close_chan!(chan_err, api_err, chan);
4551                                         }
4552                                 }
4553                         },
4554                         Some(phase) => {
4555                                 peer_state.channel_by_id.insert(*temporary_channel_id, phase);
4556                                 return Err(APIError::APIMisuseError {
4557                                         err: format!(
4558                                                 "Channel with id {} for the passed counterparty node_id {} is not an unfunded, outbound V1 channel",
4559                                                 temporary_channel_id, counterparty_node_id),
4560                                 })
4561                         },
4562                         None => return Err(APIError::ChannelUnavailable {err: format!(
4563                                 "Channel with id {} not found for the passed counterparty node_id {}",
4564                                 temporary_channel_id, counterparty_node_id),
4565                                 }),
4566                 };
4567
4568                 if let Some(msg) = msg_opt {
4569                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
4570                                 node_id: chan.context.get_counterparty_node_id(),
4571                                 msg,
4572                         });
4573                 }
4574                 match peer_state.channel_by_id.entry(chan.context.channel_id()) {
4575                         hash_map::Entry::Occupied(_) => {
4576                                 panic!("Generated duplicate funding txid?");
4577                         },
4578                         hash_map::Entry::Vacant(e) => {
4579                                 let mut outpoint_to_peer = self.outpoint_to_peer.lock().unwrap();
4580                                 match outpoint_to_peer.entry(funding_txo) {
4581                                         hash_map::Entry::Vacant(e) => { e.insert(chan.context.get_counterparty_node_id()); },
4582                                         hash_map::Entry::Occupied(o) => {
4583                                                 let err = format!(
4584                                                         "An existing channel using outpoint {} is open with peer {}",
4585                                                         funding_txo, o.get()
4586                                                 );
4587                                                 mem::drop(outpoint_to_peer);
4588                                                 mem::drop(peer_state_lock);
4589                                                 mem::drop(per_peer_state);
4590                                                 let reason = ClosureReason::ProcessingError { err: err.clone() };
4591                                                 self.finish_close_channel(chan.context.force_shutdown(true, reason));
4592                                                 return Err(APIError::ChannelUnavailable { err });
4593                                         }
4594                                 }
4595                                 e.insert(ChannelPhase::UnfundedOutboundV1(chan));
4596                         }
4597                 }
4598                 Ok(())
4599         }
4600
4601         #[cfg(test)]
4602         pub(crate) fn funding_transaction_generated_unchecked(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, output_index: u16) -> Result<(), APIError> {
4603                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, false, |_, tx| {
4604                         Ok(OutPoint { txid: tx.txid(), index: output_index })
4605                 })
4606         }
4607
4608         /// Call this upon creation of a funding transaction for the given channel.
4609         ///
4610         /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
4611         /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
4612         ///
4613         /// Returns [`APIError::APIMisuseError`] if the funding transaction is not final for propagation
4614         /// across the p2p network.
4615         ///
4616         /// Returns [`APIError::ChannelUnavailable`] if a funding transaction has already been provided
4617         /// for the channel or if the channel has been closed as indicated by [`Event::ChannelClosed`].
4618         ///
4619         /// May panic if the output found in the funding transaction is duplicative with some other
4620         /// channel (note that this should be trivially prevented by using unique funding transaction
4621         /// keys per-channel).
4622         ///
4623         /// Do NOT broadcast the funding transaction yourself. When we have safely received our
4624         /// counterparty's signature the funding transaction will automatically be broadcast via the
4625         /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
4626         ///
4627         /// Note that this includes RBF or similar transaction replacement strategies - lightning does
4628         /// not currently support replacing a funding transaction on an existing channel. Instead,
4629         /// create a new channel with a conflicting funding transaction.
4630         ///
4631         /// Note to keep the miner incentives aligned in moving the blockchain forward, we recommend
4632         /// the wallet software generating the funding transaction to apply anti-fee sniping as
4633         /// implemented by Bitcoin Core wallet. See <https://bitcoinops.org/en/topics/fee-sniping/>
4634         /// for more details.
4635         ///
4636         /// [`Event::FundingGenerationReady`]: crate::events::Event::FundingGenerationReady
4637         /// [`Event::ChannelClosed`]: crate::events::Event::ChannelClosed
4638         pub fn funding_transaction_generated(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction) -> Result<(), APIError> {
4639                 self.batch_funding_transaction_generated(&[(temporary_channel_id, counterparty_node_id)], funding_transaction)
4640         }
4641
4642         /// Call this upon creation of a batch funding transaction for the given channels.
4643         ///
4644         /// Return values are identical to [`Self::funding_transaction_generated`], respective to
4645         /// each individual channel and transaction output.
4646         ///
4647         /// Do NOT broadcast the funding transaction yourself. This batch funding transaction
4648         /// will only be broadcast when we have safely received and persisted the counterparty's
4649         /// signature for each channel.
4650         ///
4651         /// If there is an error, all channels in the batch are to be considered closed.
4652         pub fn batch_funding_transaction_generated(&self, temporary_channels: &[(&ChannelId, &PublicKey)], funding_transaction: Transaction) -> Result<(), APIError> {
4653                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4654                 let mut result = Ok(());
4655
4656                 if !funding_transaction.is_coinbase() {
4657                         for inp in funding_transaction.input.iter() {
4658                                 if inp.witness.is_empty() {
4659                                         result = result.and(Err(APIError::APIMisuseError {
4660                                                 err: "Funding transaction must be fully signed and spend Segwit outputs".to_owned()
4661                                         }));
4662                                 }
4663                         }
4664                 }
4665                 if funding_transaction.output.len() > u16::max_value() as usize {
4666                         result = result.and(Err(APIError::APIMisuseError {
4667                                 err: "Transaction had more than 2^16 outputs, which is not supported".to_owned()
4668                         }));
4669                 }
4670                 {
4671                         let height = self.best_block.read().unwrap().height;
4672                         // Transactions are evaluated as final by network mempools if their locktime is strictly
4673                         // lower than the next block height. However, the modules constituting our Lightning
4674                         // node might not have perfect sync about their blockchain views. Thus, if the wallet
4675                         // module is ahead of LDK, only allow one more block of headroom.
4676                         if !funding_transaction.input.iter().all(|input| input.sequence == Sequence::MAX) &&
4677                                 funding_transaction.lock_time.is_block_height() &&
4678                                 funding_transaction.lock_time.to_consensus_u32() > height + 1
4679                         {
4680                                 result = result.and(Err(APIError::APIMisuseError {
4681                                         err: "Funding transaction absolute timelock is non-final".to_owned()
4682                                 }));
4683                         }
4684                 }
4685
4686                 let txid = funding_transaction.txid();
4687                 let is_batch_funding = temporary_channels.len() > 1;
4688                 let mut funding_batch_states = if is_batch_funding {
4689                         Some(self.funding_batch_states.lock().unwrap())
4690                 } else {
4691                         None
4692                 };
4693                 let mut funding_batch_state = funding_batch_states.as_mut().and_then(|states| {
4694                         match states.entry(txid) {
4695                                 btree_map::Entry::Occupied(_) => {
4696                                         result = result.clone().and(Err(APIError::APIMisuseError {
4697                                                 err: "Batch funding transaction with the same txid already exists".to_owned()
4698                                         }));
4699                                         None
4700                                 },
4701                                 btree_map::Entry::Vacant(vacant) => Some(vacant.insert(Vec::new())),
4702                         }
4703                 });
4704                 for &(temporary_channel_id, counterparty_node_id) in temporary_channels {
4705                         result = result.and_then(|_| self.funding_transaction_generated_intern(
4706                                 temporary_channel_id,
4707                                 counterparty_node_id,
4708                                 funding_transaction.clone(),
4709                                 is_batch_funding,
4710                                 |chan, tx| {
4711                                         let mut output_index = None;
4712                                         let expected_spk = chan.context.get_funding_redeemscript().to_p2wsh();
4713                                         for (idx, outp) in tx.output.iter().enumerate() {
4714                                                 if outp.script_pubkey == expected_spk && outp.value.to_sat() == chan.context.get_value_satoshis() {
4715                                                         if output_index.is_some() {
4716                                                                 return Err("Multiple outputs matched the expected script and value");
4717                                                         }
4718                                                         output_index = Some(idx as u16);
4719                                                 }
4720                                         }
4721                                         if output_index.is_none() {
4722                                                 return Err("No output matched the script_pubkey and value in the FundingGenerationReady event");
4723                                         }
4724                                         let outpoint = OutPoint { txid: tx.txid(), index: output_index.unwrap() };
4725                                         if let Some(funding_batch_state) = funding_batch_state.as_mut() {
4726                                                 // TODO(dual_funding): We only do batch funding for V1 channels at the moment, but we'll probably
4727                                                 // need to fix this somehow to not rely on using the outpoint for the channel ID if we
4728                                                 // want to support V2 batching here as well.
4729                                                 funding_batch_state.push((ChannelId::v1_from_funding_outpoint(outpoint), *counterparty_node_id, false));
4730                                         }
4731                                         Ok(outpoint)
4732                                 })
4733                         );
4734                 }
4735                 if let Err(ref e) = result {
4736                         // Remaining channels need to be removed on any error.
4737                         let e = format!("Error in transaction funding: {:?}", e);
4738                         let mut channels_to_remove = Vec::new();
4739                         channels_to_remove.extend(funding_batch_states.as_mut()
4740                                 .and_then(|states| states.remove(&txid))
4741                                 .into_iter().flatten()
4742                                 .map(|(chan_id, node_id, _state)| (chan_id, node_id))
4743                         );
4744                         channels_to_remove.extend(temporary_channels.iter()
4745                                 .map(|(&chan_id, &node_id)| (chan_id, node_id))
4746                         );
4747                         let mut shutdown_results = Vec::new();
4748                         {
4749                                 let per_peer_state = self.per_peer_state.read().unwrap();
4750                                 for (channel_id, counterparty_node_id) in channels_to_remove {
4751                                         per_peer_state.get(&counterparty_node_id)
4752                                                 .map(|peer_state_mutex| peer_state_mutex.lock().unwrap())
4753                                                 .and_then(|mut peer_state| peer_state.channel_by_id.remove(&channel_id).map(|chan| (chan, peer_state)))
4754                                                 .map(|(mut chan, mut peer_state)| {
4755                                                         update_maps_on_chan_removal!(self, &chan.context());
4756                                                         let closure_reason = ClosureReason::ProcessingError { err: e.clone() };
4757                                                         shutdown_results.push(chan.context_mut().force_shutdown(false, closure_reason));
4758                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::HandleError {
4759                                                                 node_id: counterparty_node_id,
4760                                                                 action: msgs::ErrorAction::SendErrorMessage {
4761                                                                         msg: msgs::ErrorMessage {
4762                                                                                 channel_id,
4763                                                                                 data: "Failed to fund channel".to_owned(),
4764                                                                         }
4765                                                                 },
4766                                                         });
4767                                                 });
4768                                 }
4769                         }
4770                         mem::drop(funding_batch_states);
4771                         for shutdown_result in shutdown_results.drain(..) {
4772                                 self.finish_close_channel(shutdown_result);
4773                         }
4774                 }
4775                 result
4776         }
4777
4778         /// Atomically applies partial updates to the [`ChannelConfig`] of the given channels.
4779         ///
4780         /// Once the updates are applied, each eligible channel (advertised with a known short channel
4781         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
4782         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
4783         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
4784         ///
4785         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
4786         /// `counterparty_node_id` is provided.
4787         ///
4788         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
4789         /// below [`MIN_CLTV_EXPIRY_DELTA`].
4790         ///
4791         /// If an error is returned, none of the updates should be considered applied.
4792         ///
4793         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
4794         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
4795         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
4796         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
4797         /// [`ChannelUpdate`]: msgs::ChannelUpdate
4798         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
4799         /// [`APIMisuseError`]: APIError::APIMisuseError
4800         pub fn update_partial_channel_config(
4801                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config_update: &ChannelConfigUpdate,
4802         ) -> Result<(), APIError> {
4803                 if config_update.cltv_expiry_delta.map(|delta| delta < MIN_CLTV_EXPIRY_DELTA).unwrap_or(false) {
4804                         return Err(APIError::APIMisuseError {
4805                                 err: format!("The chosen CLTV expiry delta is below the minimum of {}", MIN_CLTV_EXPIRY_DELTA),
4806                         });
4807                 }
4808
4809                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4810                 let per_peer_state = self.per_peer_state.read().unwrap();
4811                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
4812                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
4813                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4814                 let peer_state = &mut *peer_state_lock;
4815
4816                 for channel_id in channel_ids {
4817                         if !peer_state.has_channel(channel_id) {
4818                                 return Err(APIError::ChannelUnavailable {
4819                                         err: format!("Channel with id {} not found for the passed counterparty node_id {}", channel_id, counterparty_node_id),
4820                                 });
4821                         };
4822                 }
4823                 for channel_id in channel_ids {
4824                         if let Some(channel_phase) = peer_state.channel_by_id.get_mut(channel_id) {
4825                                 let mut config = channel_phase.context().config();
4826                                 config.apply(config_update);
4827                                 if !channel_phase.context_mut().update_config(&config) {
4828                                         continue;
4829                                 }
4830                                 if let ChannelPhase::Funded(channel) = channel_phase {
4831                                         if let Ok(msg) = self.get_channel_update_for_broadcast(channel) {
4832                                                 let mut pending_broadcast_messages = self.pending_broadcast_messages.lock().unwrap();
4833                                                 pending_broadcast_messages.push(events::MessageSendEvent::BroadcastChannelUpdate { msg });
4834                                         } else if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
4835                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
4836                                                         node_id: channel.context.get_counterparty_node_id(),
4837                                                         msg,
4838                                                 });
4839                                         }
4840                                 }
4841                                 continue;
4842                         } else {
4843                                 // This should not be reachable as we've already checked for non-existence in the previous channel_id loop.
4844                                 debug_assert!(false);
4845                                 return Err(APIError::ChannelUnavailable {
4846                                         err: format!(
4847                                                 "Channel with ID {} for passed counterparty_node_id {} disappeared after we confirmed its existence - this should not be reachable!",
4848                                                 channel_id, counterparty_node_id),
4849                                 });
4850                         };
4851                 }
4852                 Ok(())
4853         }
4854
4855         /// Atomically updates the [`ChannelConfig`] for the given channels.
4856         ///
4857         /// Once the updates are applied, each eligible channel (advertised with a known short channel
4858         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
4859         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
4860         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
4861         ///
4862         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
4863         /// `counterparty_node_id` is provided.
4864         ///
4865         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
4866         /// below [`MIN_CLTV_EXPIRY_DELTA`].
4867         ///
4868         /// If an error is returned, none of the updates should be considered applied.
4869         ///
4870         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
4871         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
4872         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
4873         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
4874         /// [`ChannelUpdate`]: msgs::ChannelUpdate
4875         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
4876         /// [`APIMisuseError`]: APIError::APIMisuseError
4877         pub fn update_channel_config(
4878                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config: &ChannelConfig,
4879         ) -> Result<(), APIError> {
4880                 return self.update_partial_channel_config(counterparty_node_id, channel_ids, &(*config).into());
4881         }
4882
4883         /// Attempts to forward an intercepted HTLC over the provided channel id and with the provided
4884         /// amount to forward. Should only be called in response to an [`HTLCIntercepted`] event.
4885         ///
4886         /// Intercepted HTLCs can be useful for Lightning Service Providers (LSPs) to open a just-in-time
4887         /// channel to a receiving node if the node lacks sufficient inbound liquidity.
4888         ///
4889         /// To make use of intercepted HTLCs, set [`UserConfig::accept_intercept_htlcs`] and use
4890         /// [`ChannelManager::get_intercept_scid`] to generate short channel id(s) to put in the
4891         /// receiver's invoice route hints. These route hints will signal to LDK to generate an
4892         /// [`HTLCIntercepted`] event when it receives the forwarded HTLC, and this method or
4893         /// [`ChannelManager::fail_intercepted_htlc`] MUST be called in response to the event.
4894         ///
4895         /// Note that LDK does not enforce fee requirements in `amt_to_forward_msat`, and will not stop
4896         /// you from forwarding more than you received. See
4897         /// [`HTLCIntercepted::expected_outbound_amount_msat`] for more on forwarding a different amount
4898         /// than expected.
4899         ///
4900         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
4901         /// backwards.
4902         ///
4903         /// [`UserConfig::accept_intercept_htlcs`]: crate::util::config::UserConfig::accept_intercept_htlcs
4904         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
4905         /// [`HTLCIntercepted::expected_outbound_amount_msat`]: events::Event::HTLCIntercepted::expected_outbound_amount_msat
4906         // TODO: when we move to deciding the best outbound channel at forward time, only take
4907         // `next_node_id` and not `next_hop_channel_id`
4908         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> {
4909                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4910
4911                 let next_hop_scid = {
4912                         let peer_state_lock = self.per_peer_state.read().unwrap();
4913                         let peer_state_mutex = peer_state_lock.get(&next_node_id)
4914                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", next_node_id) })?;
4915                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4916                         let peer_state = &mut *peer_state_lock;
4917                         match peer_state.channel_by_id.get(next_hop_channel_id) {
4918                                 Some(ChannelPhase::Funded(chan)) => {
4919                                         if !chan.context.is_usable() {
4920                                                 return Err(APIError::ChannelUnavailable {
4921                                                         err: format!("Channel with id {} not fully established", next_hop_channel_id)
4922                                                 })
4923                                         }
4924                                         chan.context.get_short_channel_id().unwrap_or(chan.context.outbound_scid_alias())
4925                                 },
4926                                 Some(_) => return Err(APIError::ChannelUnavailable {
4927                                         err: format!("Channel with id {} for the passed counterparty node_id {} is still opening.",
4928                                                 next_hop_channel_id, next_node_id)
4929                                 }),
4930                                 None => {
4931                                         let error = format!("Channel with id {} not found for the passed counterparty node_id {}",
4932                                                 next_hop_channel_id, next_node_id);
4933                                         let logger = WithContext::from(&self.logger, Some(next_node_id), Some(*next_hop_channel_id), None);
4934                                         log_error!(logger, "{} when attempting to forward intercepted HTLC", error);
4935                                         return Err(APIError::ChannelUnavailable {
4936                                                 err: error
4937                                         })
4938                                 }
4939                         }
4940                 };
4941
4942                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
4943                         .ok_or_else(|| APIError::APIMisuseError {
4944                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
4945                         })?;
4946
4947                 let routing = match payment.forward_info.routing {
4948                         PendingHTLCRouting::Forward { onion_packet, blinded, .. } => {
4949                                 PendingHTLCRouting::Forward {
4950                                         onion_packet, blinded, short_channel_id: next_hop_scid
4951                                 }
4952                         },
4953                         _ => unreachable!() // Only `PendingHTLCRouting::Forward`s are intercepted
4954                 };
4955                 let skimmed_fee_msat =
4956                         payment.forward_info.outgoing_amt_msat.saturating_sub(amt_to_forward_msat);
4957                 let pending_htlc_info = PendingHTLCInfo {
4958                         skimmed_fee_msat: if skimmed_fee_msat == 0 { None } else { Some(skimmed_fee_msat) },
4959                         outgoing_amt_msat: amt_to_forward_msat, routing, ..payment.forward_info
4960                 };
4961
4962                 let mut per_source_pending_forward = [(
4963                         payment.prev_short_channel_id,
4964                         payment.prev_funding_outpoint,
4965                         payment.prev_channel_id,
4966                         payment.prev_user_channel_id,
4967                         vec![(pending_htlc_info, payment.prev_htlc_id)]
4968                 )];
4969                 self.forward_htlcs(&mut per_source_pending_forward);
4970                 Ok(())
4971         }
4972
4973         /// Fails the intercepted HTLC indicated by intercept_id. Should only be called in response to
4974         /// an [`HTLCIntercepted`] event. See [`ChannelManager::forward_intercepted_htlc`].
4975         ///
4976         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
4977         /// backwards.
4978         ///
4979         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
4980         pub fn fail_intercepted_htlc(&self, intercept_id: InterceptId) -> Result<(), APIError> {
4981                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4982
4983                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
4984                         .ok_or_else(|| APIError::APIMisuseError {
4985                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
4986                         })?;
4987
4988                 if let PendingHTLCRouting::Forward { short_channel_id, .. } = payment.forward_info.routing {
4989                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4990                                 short_channel_id: payment.prev_short_channel_id,
4991                                 user_channel_id: Some(payment.prev_user_channel_id),
4992                                 outpoint: payment.prev_funding_outpoint,
4993                                 channel_id: payment.prev_channel_id,
4994                                 htlc_id: payment.prev_htlc_id,
4995                                 incoming_packet_shared_secret: payment.forward_info.incoming_shared_secret,
4996                                 phantom_shared_secret: None,
4997                                 blinded_failure: payment.forward_info.routing.blinded_failure(),
4998                         });
4999
5000                         let failure_reason = HTLCFailReason::from_failure_code(0x4000 | 10);
5001                         let destination = HTLCDestination::UnknownNextHop { requested_forward_scid: short_channel_id };
5002                         self.fail_htlc_backwards_internal(&htlc_source, &payment.forward_info.payment_hash, &failure_reason, destination);
5003                 } else { unreachable!() } // Only `PendingHTLCRouting::Forward`s are intercepted
5004
5005                 Ok(())
5006         }
5007
5008         fn process_pending_update_add_htlcs(&self) {
5009                 let mut decode_update_add_htlcs = new_hash_map();
5010                 mem::swap(&mut decode_update_add_htlcs, &mut self.decode_update_add_htlcs.lock().unwrap());
5011
5012                 let get_failed_htlc_destination = |outgoing_scid_opt: Option<u64>, payment_hash: PaymentHash| {
5013                         if let Some(outgoing_scid) = outgoing_scid_opt {
5014                                 match self.short_to_chan_info.read().unwrap().get(&outgoing_scid) {
5015                                         Some((outgoing_counterparty_node_id, outgoing_channel_id)) =>
5016                                                 HTLCDestination::NextHopChannel {
5017                                                         node_id: Some(*outgoing_counterparty_node_id),
5018                                                         channel_id: *outgoing_channel_id,
5019                                                 },
5020                                         None => HTLCDestination::UnknownNextHop {
5021                                                 requested_forward_scid: outgoing_scid,
5022                                         },
5023                                 }
5024                         } else {
5025                                 HTLCDestination::FailedPayment { payment_hash }
5026                         }
5027                 };
5028
5029                 'outer_loop: for (incoming_scid, update_add_htlcs) in decode_update_add_htlcs {
5030                         let incoming_channel_details_opt = self.do_funded_channel_callback(incoming_scid, |chan: &mut Channel<SP>| {
5031                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
5032                                 let channel_id = chan.context.channel_id();
5033                                 let funding_txo = chan.context.get_funding_txo().unwrap();
5034                                 let user_channel_id = chan.context.get_user_id();
5035                                 let accept_underpaying_htlcs = chan.context.config().accept_underpaying_htlcs;
5036                                 (counterparty_node_id, channel_id, funding_txo, user_channel_id, accept_underpaying_htlcs)
5037                         });
5038                         let (
5039                                 incoming_counterparty_node_id, incoming_channel_id, incoming_funding_txo,
5040                                 incoming_user_channel_id, incoming_accept_underpaying_htlcs
5041                          ) = if let Some(incoming_channel_details) = incoming_channel_details_opt {
5042                                 incoming_channel_details
5043                         } else {
5044                                 // The incoming channel no longer exists, HTLCs should be resolved onchain instead.
5045                                 continue;
5046                         };
5047
5048                         let mut htlc_forwards = Vec::new();
5049                         let mut htlc_fails = Vec::new();
5050                         for update_add_htlc in &update_add_htlcs {
5051                                 let (next_hop, shared_secret, next_packet_details_opt) = match decode_incoming_update_add_htlc_onion(
5052                                         &update_add_htlc, &self.node_signer, &self.logger, &self.secp_ctx
5053                                 ) {
5054                                         Ok(decoded_onion) => decoded_onion,
5055                                         Err(htlc_fail) => {
5056                                                 htlc_fails.push((htlc_fail, HTLCDestination::InvalidOnion));
5057                                                 continue;
5058                                         },
5059                                 };
5060
5061                                 let is_intro_node_blinded_forward = next_hop.is_intro_node_blinded_forward();
5062                                 let outgoing_scid_opt = next_packet_details_opt.as_ref().map(|d| d.outgoing_scid);
5063
5064                                 // Process the HTLC on the incoming channel.
5065                                 match self.do_funded_channel_callback(incoming_scid, |chan: &mut Channel<SP>| {
5066                                         let logger = WithChannelContext::from(&self.logger, &chan.context, Some(update_add_htlc.payment_hash));
5067                                         chan.can_accept_incoming_htlc(
5068                                                 update_add_htlc, &self.fee_estimator, &logger,
5069                                         )
5070                                 }) {
5071                                         Some(Ok(_)) => {},
5072                                         Some(Err((err, code))) => {
5073                                                 let outgoing_chan_update_opt = if let Some(outgoing_scid) = outgoing_scid_opt.as_ref() {
5074                                                         self.do_funded_channel_callback(*outgoing_scid, |chan: &mut Channel<SP>| {
5075                                                                 self.get_channel_update_for_onion(*outgoing_scid, chan).ok()
5076                                                         }).flatten()
5077                                                 } else {
5078                                                         None
5079                                                 };
5080                                                 let htlc_fail = self.htlc_failure_from_update_add_err(
5081                                                         &update_add_htlc, &incoming_counterparty_node_id, err, code,
5082                                                         outgoing_chan_update_opt, is_intro_node_blinded_forward, &shared_secret,
5083                                                 );
5084                                                 let htlc_destination = get_failed_htlc_destination(outgoing_scid_opt, update_add_htlc.payment_hash);
5085                                                 htlc_fails.push((htlc_fail, htlc_destination));
5086                                                 continue;
5087                                         },
5088                                         // The incoming channel no longer exists, HTLCs should be resolved onchain instead.
5089                                         None => continue 'outer_loop,
5090                                 }
5091
5092                                 // Now process the HTLC on the outgoing channel if it's a forward.
5093                                 if let Some(next_packet_details) = next_packet_details_opt.as_ref() {
5094                                         if let Err((err, code, chan_update_opt)) = self.can_forward_htlc(
5095                                                 &update_add_htlc, next_packet_details
5096                                         ) {
5097                                                 let htlc_fail = self.htlc_failure_from_update_add_err(
5098                                                         &update_add_htlc, &incoming_counterparty_node_id, err, code,
5099                                                         chan_update_opt, is_intro_node_blinded_forward, &shared_secret,
5100                                                 );
5101                                                 let htlc_destination = get_failed_htlc_destination(outgoing_scid_opt, update_add_htlc.payment_hash);
5102                                                 htlc_fails.push((htlc_fail, htlc_destination));
5103                                                 continue;
5104                                         }
5105                                 }
5106
5107                                 match self.construct_pending_htlc_status(
5108                                         &update_add_htlc, &incoming_counterparty_node_id, shared_secret, next_hop,
5109                                         incoming_accept_underpaying_htlcs, next_packet_details_opt.map(|d| d.next_packet_pubkey),
5110                                 ) {
5111                                         PendingHTLCStatus::Forward(htlc_forward) => {
5112                                                 htlc_forwards.push((htlc_forward, update_add_htlc.htlc_id));
5113                                         },
5114                                         PendingHTLCStatus::Fail(htlc_fail) => {
5115                                                 let htlc_destination = get_failed_htlc_destination(outgoing_scid_opt, update_add_htlc.payment_hash);
5116                                                 htlc_fails.push((htlc_fail, htlc_destination));
5117                                         },
5118                                 }
5119                         }
5120
5121                         // Process all of the forwards and failures for the channel in which the HTLCs were
5122                         // proposed to as a batch.
5123                         let pending_forwards = (incoming_scid, incoming_funding_txo, incoming_channel_id,
5124                                 incoming_user_channel_id, htlc_forwards.drain(..).collect());
5125                         self.forward_htlcs_without_forward_event(&mut [pending_forwards]);
5126                         for (htlc_fail, htlc_destination) in htlc_fails.drain(..) {
5127                                 let failure = match htlc_fail {
5128                                         HTLCFailureMsg::Relay(fail_htlc) => HTLCForwardInfo::FailHTLC {
5129                                                 htlc_id: fail_htlc.htlc_id,
5130                                                 err_packet: fail_htlc.reason,
5131                                         },
5132                                         HTLCFailureMsg::Malformed(fail_malformed_htlc) => HTLCForwardInfo::FailMalformedHTLC {
5133                                                 htlc_id: fail_malformed_htlc.htlc_id,
5134                                                 sha256_of_onion: fail_malformed_htlc.sha256_of_onion,
5135                                                 failure_code: fail_malformed_htlc.failure_code,
5136                                         },
5137                                 };
5138                                 self.forward_htlcs.lock().unwrap().entry(incoming_scid).or_insert(vec![]).push(failure);
5139                                 self.pending_events.lock().unwrap().push_back((events::Event::HTLCHandlingFailed {
5140                                         prev_channel_id: incoming_channel_id,
5141                                         failed_next_destination: htlc_destination,
5142                                 }, None));
5143                         }
5144                 }
5145         }
5146
5147         /// Processes HTLCs which are pending waiting on random forward delay.
5148         ///
5149         /// Should only really ever be called in response to a PendingHTLCsForwardable event.
5150         /// Will likely generate further events.
5151         pub fn process_pending_htlc_forwards(&self) {
5152                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5153
5154                 self.process_pending_update_add_htlcs();
5155
5156                 let mut new_events = VecDeque::new();
5157                 let mut failed_forwards = Vec::new();
5158                 let mut phantom_receives: Vec<(u64, OutPoint, ChannelId, u128, Vec<(PendingHTLCInfo, u64)>)> = Vec::new();
5159                 {
5160                         let mut forward_htlcs = new_hash_map();
5161                         mem::swap(&mut forward_htlcs, &mut self.forward_htlcs.lock().unwrap());
5162
5163                         for (short_chan_id, mut pending_forwards) in forward_htlcs {
5164                                 if short_chan_id != 0 {
5165                                         let mut forwarding_counterparty = None;
5166                                         macro_rules! forwarding_channel_not_found {
5167                                                 () => {
5168                                                         for forward_info in pending_forwards.drain(..) {
5169                                                                 match forward_info {
5170                                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
5171                                                                                 prev_short_channel_id, prev_htlc_id, prev_channel_id, prev_funding_outpoint,
5172                                                                                 prev_user_channel_id, forward_info: PendingHTLCInfo {
5173                                                                                         routing, incoming_shared_secret, payment_hash, outgoing_amt_msat,
5174                                                                                         outgoing_cltv_value, ..
5175                                                                                 }
5176                                                                         }) => {
5177                                                                                 macro_rules! failure_handler {
5178                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr, $next_hop_unknown: expr) => {
5179                                                                                                 let logger = WithContext::from(&self.logger, forwarding_counterparty, Some(prev_channel_id), Some(payment_hash));
5180                                                                                                 log_info!(logger, "Failed to accept/forward incoming HTLC: {}", $msg);
5181
5182                                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
5183                                                                                                         short_channel_id: prev_short_channel_id,
5184                                                                                                         user_channel_id: Some(prev_user_channel_id),
5185                                                                                                         channel_id: prev_channel_id,
5186                                                                                                         outpoint: prev_funding_outpoint,
5187                                                                                                         htlc_id: prev_htlc_id,
5188                                                                                                         incoming_packet_shared_secret: incoming_shared_secret,
5189                                                                                                         phantom_shared_secret: $phantom_ss,
5190                                                                                                         blinded_failure: routing.blinded_failure(),
5191                                                                                                 });
5192
5193                                                                                                 let reason = if $next_hop_unknown {
5194                                                                                                         HTLCDestination::UnknownNextHop { requested_forward_scid: short_chan_id }
5195                                                                                                 } else {
5196                                                                                                         HTLCDestination::FailedPayment{ payment_hash }
5197                                                                                                 };
5198
5199                                                                                                 failed_forwards.push((htlc_source, payment_hash,
5200                                                                                                         HTLCFailReason::reason($err_code, $err_data),
5201                                                                                                         reason
5202                                                                                                 ));
5203                                                                                                 continue;
5204                                                                                         }
5205                                                                                 }
5206                                                                                 macro_rules! fail_forward {
5207                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
5208                                                                                                 {
5209                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, true);
5210                                                                                                 }
5211                                                                                         }
5212                                                                                 }
5213                                                                                 macro_rules! failed_payment {
5214                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
5215                                                                                                 {
5216                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, false);
5217                                                                                                 }
5218                                                                                         }
5219                                                                                 }
5220                                                                                 if let PendingHTLCRouting::Forward { ref onion_packet, .. } = routing {
5221                                                                                         let phantom_pubkey_res = self.node_signer.get_node_id(Recipient::PhantomNode);
5222                                                                                         if phantom_pubkey_res.is_ok() && fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, short_chan_id, &self.chain_hash) {
5223                                                                                                 let phantom_shared_secret = self.node_signer.ecdh(Recipient::PhantomNode, &onion_packet.public_key.unwrap(), None).unwrap().secret_bytes();
5224                                                                                                 let next_hop = match onion_utils::decode_next_payment_hop(
5225                                                                                                         phantom_shared_secret, &onion_packet.hop_data, onion_packet.hmac,
5226                                                                                                         payment_hash, None, &self.node_signer
5227                                                                                                 ) {
5228                                                                                                         Ok(res) => res,
5229                                                                                                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
5230                                                                                                                 let sha256_of_onion = Sha256::hash(&onion_packet.hop_data).to_byte_array();
5231                                                                                                                 // In this scenario, the phantom would have sent us an
5232                                                                                                                 // `update_fail_malformed_htlc`, meaning here we encrypt the error as
5233                                                                                                                 // if it came from us (the second-to-last hop) but contains the sha256
5234                                                                                                                 // of the onion.
5235                                                                                                                 failed_payment!(err_msg, err_code, sha256_of_onion.to_vec(), None);
5236                                                                                                         },
5237                                                                                                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
5238                                                                                                                 failed_payment!(err_msg, err_code, Vec::new(), Some(phantom_shared_secret));
5239                                                                                                         },
5240                                                                                                 };
5241                                                                                                 match next_hop {
5242                                                                                                         onion_utils::Hop::Receive(hop_data) => {
5243                                                                                                                 let current_height: u32 = self.best_block.read().unwrap().height;
5244                                                                                                                 match create_recv_pending_htlc_info(hop_data,
5245                                                                                                                         incoming_shared_secret, payment_hash, outgoing_amt_msat,
5246                                                                                                                         outgoing_cltv_value, Some(phantom_shared_secret), false, None,
5247                                                                                                                         current_height, self.default_configuration.accept_mpp_keysend)
5248                                                                                                                 {
5249                                                                                                                         Ok(info) => phantom_receives.push((prev_short_channel_id, prev_funding_outpoint, prev_channel_id, prev_user_channel_id, vec![(info, prev_htlc_id)])),
5250                                                                                                                         Err(InboundHTLCErr { err_code, err_data, msg }) => failed_payment!(msg, err_code, err_data, Some(phantom_shared_secret))
5251                                                                                                                 }
5252                                                                                                         },
5253                                                                                                         _ => panic!(),
5254                                                                                                 }
5255                                                                                         } else {
5256                                                                                                 fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
5257                                                                                         }
5258                                                                                 } else {
5259                                                                                         fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
5260                                                                                 }
5261                                                                         },
5262                                                                         HTLCForwardInfo::FailHTLC { .. } | HTLCForwardInfo::FailMalformedHTLC { .. } => {
5263                                                                                 // Channel went away before we could fail it. This implies
5264                                                                                 // the channel is now on chain and our counterparty is
5265                                                                                 // trying to broadcast the HTLC-Timeout, but that's their
5266                                                                                 // problem, not ours.
5267                                                                         }
5268                                                                 }
5269                                                         }
5270                                                 }
5271                                         }
5272                                         let chan_info_opt = self.short_to_chan_info.read().unwrap().get(&short_chan_id).cloned();
5273                                         let (counterparty_node_id, forward_chan_id) = match chan_info_opt {
5274                                                 Some((cp_id, chan_id)) => (cp_id, chan_id),
5275                                                 None => {
5276                                                         forwarding_channel_not_found!();
5277                                                         continue;
5278                                                 }
5279                                         };
5280                                         forwarding_counterparty = Some(counterparty_node_id);
5281                                         let per_peer_state = self.per_peer_state.read().unwrap();
5282                                         let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
5283                                         if peer_state_mutex_opt.is_none() {
5284                                                 forwarding_channel_not_found!();
5285                                                 continue;
5286                                         }
5287                                         let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
5288                                         let peer_state = &mut *peer_state_lock;
5289                                         if let Some(ChannelPhase::Funded(ref mut chan)) = peer_state.channel_by_id.get_mut(&forward_chan_id) {
5290                                                 let logger = WithChannelContext::from(&self.logger, &chan.context, None);
5291                                                 for forward_info in pending_forwards.drain(..) {
5292                                                         let queue_fail_htlc_res = match forward_info {
5293                                                                 HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
5294                                                                         prev_short_channel_id, prev_htlc_id, prev_channel_id, prev_funding_outpoint,
5295                                                                         prev_user_channel_id, forward_info: PendingHTLCInfo {
5296                                                                                 incoming_shared_secret, payment_hash, outgoing_amt_msat, outgoing_cltv_value,
5297                                                                                 routing: PendingHTLCRouting::Forward {
5298                                                                                         onion_packet, blinded, ..
5299                                                                                 }, skimmed_fee_msat, ..
5300                                                                         },
5301                                                                 }) => {
5302                                                                         let logger = WithChannelContext::from(&self.logger, &chan.context, Some(payment_hash));
5303                                                                         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);
5304                                                                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
5305                                                                                 short_channel_id: prev_short_channel_id,
5306                                                                                 user_channel_id: Some(prev_user_channel_id),
5307                                                                                 channel_id: prev_channel_id,
5308                                                                                 outpoint: prev_funding_outpoint,
5309                                                                                 htlc_id: prev_htlc_id,
5310                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
5311                                                                                 // Phantom payments are only PendingHTLCRouting::Receive.
5312                                                                                 phantom_shared_secret: None,
5313                                                                                 blinded_failure: blinded.map(|b| b.failure),
5314                                                                         });
5315                                                                         let next_blinding_point = blinded.and_then(|b| {
5316                                                                                 let encrypted_tlvs_ss = self.node_signer.ecdh(
5317                                                                                         Recipient::Node, &b.inbound_blinding_point, None
5318                                                                                 ).unwrap().secret_bytes();
5319                                                                                 onion_utils::next_hop_pubkey(
5320                                                                                         &self.secp_ctx, b.inbound_blinding_point, &encrypted_tlvs_ss
5321                                                                                 ).ok()
5322                                                                         });
5323                                                                         if let Err(e) = chan.queue_add_htlc(outgoing_amt_msat,
5324                                                                                 payment_hash, outgoing_cltv_value, htlc_source.clone(),
5325                                                                                 onion_packet, skimmed_fee_msat, next_blinding_point, &self.fee_estimator,
5326                                                                                 &&logger)
5327                                                                         {
5328                                                                                 if let ChannelError::Ignore(msg) = e {
5329                                                                                         log_trace!(logger, "Failed to forward HTLC with payment_hash {}: {}", &payment_hash, msg);
5330                                                                                 } else {
5331                                                                                         panic!("Stated return value requirements in send_htlc() were not met");
5332                                                                                 }
5333                                                                                 let (failure_code, data) = self.get_htlc_temp_fail_err_and_data(0x1000|7, short_chan_id, chan);
5334                                                                                 failed_forwards.push((htlc_source, payment_hash,
5335                                                                                         HTLCFailReason::reason(failure_code, data),
5336                                                                                         HTLCDestination::NextHopChannel { node_id: Some(chan.context.get_counterparty_node_id()), channel_id: forward_chan_id }
5337                                                                                 ));
5338                                                                                 continue;
5339                                                                         }
5340                                                                         None
5341                                                                 },
5342                                                                 HTLCForwardInfo::AddHTLC { .. } => {
5343                                                                         panic!("short_channel_id != 0 should imply any pending_forward entries are of type Forward");
5344                                                                 },
5345                                                                 HTLCForwardInfo::FailHTLC { htlc_id, err_packet } => {
5346                                                                         log_trace!(logger, "Failing HTLC back to channel with short id {} (backward HTLC ID {}) after delay", short_chan_id, htlc_id);
5347                                                                         Some((chan.queue_fail_htlc(htlc_id, err_packet, &&logger), htlc_id))
5348                                                                 },
5349                                                                 HTLCForwardInfo::FailMalformedHTLC { htlc_id, failure_code, sha256_of_onion } => {
5350                                                                         log_trace!(logger, "Failing malformed HTLC back to channel with short id {} (backward HTLC ID {}) after delay", short_chan_id, htlc_id);
5351                                                                         let res = chan.queue_fail_malformed_htlc(
5352                                                                                 htlc_id, failure_code, sha256_of_onion, &&logger
5353                                                                         );
5354                                                                         Some((res, htlc_id))
5355                                                                 },
5356                                                         };
5357                                                         if let Some((queue_fail_htlc_res, htlc_id)) = queue_fail_htlc_res {
5358                                                                 if let Err(e) = queue_fail_htlc_res {
5359                                                                         if let ChannelError::Ignore(msg) = e {
5360                                                                                 log_trace!(logger, "Failed to fail HTLC with ID {} backwards to short_id {}: {}", htlc_id, short_chan_id, msg);
5361                                                                         } else {
5362                                                                                 panic!("Stated return value requirements in queue_fail_{{malformed_}}htlc() were not met");
5363                                                                         }
5364                                                                         // fail-backs are best-effort, we probably already have one
5365                                                                         // pending, and if not that's OK, if not, the channel is on
5366                                                                         // the chain and sending the HTLC-Timeout is their problem.
5367                                                                         continue;
5368                                                                 }
5369                                                         }
5370                                                 }
5371                                         } else {
5372                                                 forwarding_channel_not_found!();
5373                                                 continue;
5374                                         }
5375                                 } else {
5376                                         'next_forwardable_htlc: for forward_info in pending_forwards.drain(..) {
5377                                                 match forward_info {
5378                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
5379                                                                 prev_short_channel_id, prev_htlc_id, prev_channel_id, prev_funding_outpoint,
5380                                                                 prev_user_channel_id, forward_info: PendingHTLCInfo {
5381                                                                         routing, incoming_shared_secret, payment_hash, incoming_amt_msat, outgoing_amt_msat,
5382                                                                         skimmed_fee_msat, ..
5383                                                                 }
5384                                                         }) => {
5385                                                                 let blinded_failure = routing.blinded_failure();
5386                                                                 let (cltv_expiry, onion_payload, payment_data, payment_context, phantom_shared_secret, mut onion_fields) = match routing {
5387                                                                         PendingHTLCRouting::Receive {
5388                                                                                 payment_data, payment_metadata, payment_context,
5389                                                                                 incoming_cltv_expiry, phantom_shared_secret, custom_tlvs,
5390                                                                                 requires_blinded_error: _
5391                                                                         } => {
5392                                                                                 let _legacy_hop_data = Some(payment_data.clone());
5393                                                                                 let onion_fields = RecipientOnionFields { payment_secret: Some(payment_data.payment_secret),
5394                                                                                                 payment_metadata, custom_tlvs };
5395                                                                                 (incoming_cltv_expiry, OnionPayload::Invoice { _legacy_hop_data },
5396                                                                                         Some(payment_data), payment_context, phantom_shared_secret, onion_fields)
5397                                                                         },
5398                                                                         PendingHTLCRouting::ReceiveKeysend {
5399                                                                                 payment_data, payment_preimage, payment_metadata,
5400                                                                                 incoming_cltv_expiry, custom_tlvs, requires_blinded_error: _
5401                                                                         } => {
5402                                                                                 let onion_fields = RecipientOnionFields {
5403                                                                                         payment_secret: payment_data.as_ref().map(|data| data.payment_secret),
5404                                                                                         payment_metadata,
5405                                                                                         custom_tlvs,
5406                                                                                 };
5407                                                                                 (incoming_cltv_expiry, OnionPayload::Spontaneous(payment_preimage),
5408                                                                                         payment_data, None, None, onion_fields)
5409                                                                         },
5410                                                                         _ => {
5411                                                                                 panic!("short_channel_id == 0 should imply any pending_forward entries are of type Receive");
5412                                                                         }
5413                                                                 };
5414                                                                 let claimable_htlc = ClaimableHTLC {
5415                                                                         prev_hop: HTLCPreviousHopData {
5416                                                                                 short_channel_id: prev_short_channel_id,
5417                                                                                 user_channel_id: Some(prev_user_channel_id),
5418                                                                                 channel_id: prev_channel_id,
5419                                                                                 outpoint: prev_funding_outpoint,
5420                                                                                 htlc_id: prev_htlc_id,
5421                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
5422                                                                                 phantom_shared_secret,
5423                                                                                 blinded_failure,
5424                                                                         },
5425                                                                         // We differentiate the received value from the sender intended value
5426                                                                         // if possible so that we don't prematurely mark MPP payments complete
5427                                                                         // if routing nodes overpay
5428                                                                         value: incoming_amt_msat.unwrap_or(outgoing_amt_msat),
5429                                                                         sender_intended_value: outgoing_amt_msat,
5430                                                                         timer_ticks: 0,
5431                                                                         total_value_received: None,
5432                                                                         total_msat: if let Some(data) = &payment_data { data.total_msat } else { outgoing_amt_msat },
5433                                                                         cltv_expiry,
5434                                                                         onion_payload,
5435                                                                         counterparty_skimmed_fee_msat: skimmed_fee_msat,
5436                                                                 };
5437
5438                                                                 let mut committed_to_claimable = false;
5439
5440                                                                 macro_rules! fail_htlc {
5441                                                                         ($htlc: expr, $payment_hash: expr) => {
5442                                                                                 debug_assert!(!committed_to_claimable);
5443                                                                                 let mut htlc_msat_height_data = $htlc.value.to_be_bytes().to_vec();
5444                                                                                 htlc_msat_height_data.extend_from_slice(
5445                                                                                         &self.best_block.read().unwrap().height.to_be_bytes(),
5446                                                                                 );
5447                                                                                 failed_forwards.push((HTLCSource::PreviousHopData(HTLCPreviousHopData {
5448                                                                                                 short_channel_id: $htlc.prev_hop.short_channel_id,
5449                                                                                                 user_channel_id: $htlc.prev_hop.user_channel_id,
5450                                                                                                 channel_id: prev_channel_id,
5451                                                                                                 outpoint: prev_funding_outpoint,
5452                                                                                                 htlc_id: $htlc.prev_hop.htlc_id,
5453                                                                                                 incoming_packet_shared_secret: $htlc.prev_hop.incoming_packet_shared_secret,
5454                                                                                                 phantom_shared_secret,
5455                                                                                                 blinded_failure,
5456                                                                                         }), payment_hash,
5457                                                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
5458                                                                                         HTLCDestination::FailedPayment { payment_hash: $payment_hash },
5459                                                                                 ));
5460                                                                                 continue 'next_forwardable_htlc;
5461                                                                         }
5462                                                                 }
5463                                                                 let phantom_shared_secret = claimable_htlc.prev_hop.phantom_shared_secret;
5464                                                                 let mut receiver_node_id = self.our_network_pubkey;
5465                                                                 if phantom_shared_secret.is_some() {
5466                                                                         receiver_node_id = self.node_signer.get_node_id(Recipient::PhantomNode)
5467                                                                                 .expect("Failed to get node_id for phantom node recipient");
5468                                                                 }
5469
5470                                                                 macro_rules! check_total_value {
5471                                                                         ($purpose: expr) => {{
5472                                                                                 let mut payment_claimable_generated = false;
5473                                                                                 let is_keysend = $purpose.is_keysend();
5474                                                                                 let mut claimable_payments = self.claimable_payments.lock().unwrap();
5475                                                                                 if claimable_payments.pending_claiming_payments.contains_key(&payment_hash) {
5476                                                                                         fail_htlc!(claimable_htlc, payment_hash);
5477                                                                                 }
5478                                                                                 let ref mut claimable_payment = claimable_payments.claimable_payments
5479                                                                                         .entry(payment_hash)
5480                                                                                         // Note that if we insert here we MUST NOT fail_htlc!()
5481                                                                                         .or_insert_with(|| {
5482                                                                                                 committed_to_claimable = true;
5483                                                                                                 ClaimablePayment {
5484                                                                                                         purpose: $purpose.clone(), htlcs: Vec::new(), onion_fields: None,
5485                                                                                                 }
5486                                                                                         });
5487                                                                                 if $purpose != claimable_payment.purpose {
5488                                                                                         let log_keysend = |keysend| if keysend { "keysend" } else { "non-keysend" };
5489                                                                                         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));
5490                                                                                         fail_htlc!(claimable_htlc, payment_hash);
5491                                                                                 }
5492                                                                                 if !self.default_configuration.accept_mpp_keysend && is_keysend && !claimable_payment.htlcs.is_empty() {
5493                                                                                         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);
5494                                                                                         fail_htlc!(claimable_htlc, payment_hash);
5495                                                                                 }
5496                                                                                 if let Some(earlier_fields) = &mut claimable_payment.onion_fields {
5497                                                                                         if earlier_fields.check_merge(&mut onion_fields).is_err() {
5498                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
5499                                                                                         }
5500                                                                                 } else {
5501                                                                                         claimable_payment.onion_fields = Some(onion_fields);
5502                                                                                 }
5503                                                                                 let ref mut htlcs = &mut claimable_payment.htlcs;
5504                                                                                 let mut total_value = claimable_htlc.sender_intended_value;
5505                                                                                 let mut earliest_expiry = claimable_htlc.cltv_expiry;
5506                                                                                 for htlc in htlcs.iter() {
5507                                                                                         total_value += htlc.sender_intended_value;
5508                                                                                         earliest_expiry = cmp::min(earliest_expiry, htlc.cltv_expiry);
5509                                                                                         if htlc.total_msat != claimable_htlc.total_msat {
5510                                                                                                 log_trace!(self.logger, "Failing HTLCs with payment_hash {} as the HTLCs had inconsistent total values (eg {} and {})",
5511                                                                                                         &payment_hash, claimable_htlc.total_msat, htlc.total_msat);
5512                                                                                                 total_value = msgs::MAX_VALUE_MSAT;
5513                                                                                         }
5514                                                                                         if total_value >= msgs::MAX_VALUE_MSAT { break; }
5515                                                                                 }
5516                                                                                 // The condition determining whether an MPP is complete must
5517                                                                                 // match exactly the condition used in `timer_tick_occurred`
5518                                                                                 if total_value >= msgs::MAX_VALUE_MSAT {
5519                                                                                         fail_htlc!(claimable_htlc, payment_hash);
5520                                                                                 } else if total_value - claimable_htlc.sender_intended_value >= claimable_htlc.total_msat {
5521                                                                                         log_trace!(self.logger, "Failing HTLC with payment_hash {} as payment is already claimable",
5522                                                                                                 &payment_hash);
5523                                                                                         fail_htlc!(claimable_htlc, payment_hash);
5524                                                                                 } else if total_value >= claimable_htlc.total_msat {
5525                                                                                         #[allow(unused_assignments)] {
5526                                                                                                 committed_to_claimable = true;
5527                                                                                         }
5528                                                                                         htlcs.push(claimable_htlc);
5529                                                                                         let amount_msat = htlcs.iter().map(|htlc| htlc.value).sum();
5530                                                                                         htlcs.iter_mut().for_each(|htlc| htlc.total_value_received = Some(amount_msat));
5531                                                                                         let counterparty_skimmed_fee_msat = htlcs.iter()
5532                                                                                                 .map(|htlc| htlc.counterparty_skimmed_fee_msat.unwrap_or(0)).sum();
5533                                                                                         debug_assert!(total_value.saturating_sub(amount_msat) <=
5534                                                                                                 counterparty_skimmed_fee_msat);
5535                                                                                         new_events.push_back((events::Event::PaymentClaimable {
5536                                                                                                 receiver_node_id: Some(receiver_node_id),
5537                                                                                                 payment_hash,
5538                                                                                                 purpose: $purpose,
5539                                                                                                 amount_msat,
5540                                                                                                 counterparty_skimmed_fee_msat,
5541                                                                                                 via_channel_id: Some(prev_channel_id),
5542                                                                                                 via_user_channel_id: Some(prev_user_channel_id),
5543                                                                                                 claim_deadline: Some(earliest_expiry - HTLC_FAIL_BACK_BUFFER),
5544                                                                                                 onion_fields: claimable_payment.onion_fields.clone(),
5545                                                                                         }, None));
5546                                                                                         payment_claimable_generated = true;
5547                                                                                 } else {
5548                                                                                         // Nothing to do - we haven't reached the total
5549                                                                                         // payment value yet, wait until we receive more
5550                                                                                         // MPP parts.
5551                                                                                         htlcs.push(claimable_htlc);
5552                                                                                         #[allow(unused_assignments)] {
5553                                                                                                 committed_to_claimable = true;
5554                                                                                         }
5555                                                                                 }
5556                                                                                 payment_claimable_generated
5557                                                                         }}
5558                                                                 }
5559
5560                                                                 // Check that the payment hash and secret are known. Note that we
5561                                                                 // MUST take care to handle the "unknown payment hash" and
5562                                                                 // "incorrect payment secret" cases here identically or we'd expose
5563                                                                 // that we are the ultimate recipient of the given payment hash.
5564                                                                 // Further, we must not expose whether we have any other HTLCs
5565                                                                 // associated with the same payment_hash pending or not.
5566                                                                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
5567                                                                 match payment_secrets.entry(payment_hash) {
5568                                                                         hash_map::Entry::Vacant(_) => {
5569                                                                                 match claimable_htlc.onion_payload {
5570                                                                                         OnionPayload::Invoice { .. } => {
5571                                                                                                 let payment_data = payment_data.unwrap();
5572                                                                                                 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) {
5573                                                                                                         Ok(result) => result,
5574                                                                                                         Err(()) => {
5575                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as payment verification failed", &payment_hash);
5576                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
5577                                                                                                         }
5578                                                                                                 };
5579                                                                                                 if let Some(min_final_cltv_expiry_delta) = min_final_cltv_expiry_delta {
5580                                                                                                         let expected_min_expiry_height = (self.current_best_block().height + min_final_cltv_expiry_delta as u32) as u64;
5581                                                                                                         if (cltv_expiry as u64) < expected_min_expiry_height {
5582                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as its CLTV expiry was too soon (had {}, earliest expected {})",
5583                                                                                                                         &payment_hash, cltv_expiry, expected_min_expiry_height);
5584                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
5585                                                                                                         }
5586                                                                                                 }
5587                                                                                                 let purpose = events::PaymentPurpose::from_parts(
5588                                                                                                         payment_preimage,
5589                                                                                                         payment_data.payment_secret,
5590                                                                                                         payment_context,
5591                                                                                                 );
5592                                                                                                 check_total_value!(purpose);
5593                                                                                         },
5594                                                                                         OnionPayload::Spontaneous(preimage) => {
5595                                                                                                 let purpose = events::PaymentPurpose::SpontaneousPayment(preimage);
5596                                                                                                 check_total_value!(purpose);
5597                                                                                         }
5598                                                                                 }
5599                                                                         },
5600                                                                         hash_map::Entry::Occupied(inbound_payment) => {
5601                                                                                 if let OnionPayload::Spontaneous(_) = claimable_htlc.onion_payload {
5602                                                                                         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);
5603                                                                                         fail_htlc!(claimable_htlc, payment_hash);
5604                                                                                 }
5605                                                                                 let payment_data = payment_data.unwrap();
5606                                                                                 if inbound_payment.get().payment_secret != payment_data.payment_secret {
5607                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our expected payment secret.", &payment_hash);
5608                                                                                         fail_htlc!(claimable_htlc, payment_hash);
5609                                                                                 } else if inbound_payment.get().min_value_msat.is_some() && payment_data.total_msat < inbound_payment.get().min_value_msat.unwrap() {
5610                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our minimum value (had {}, needed {}).",
5611                                                                                                 &payment_hash, payment_data.total_msat, inbound_payment.get().min_value_msat.unwrap());
5612                                                                                         fail_htlc!(claimable_htlc, payment_hash);
5613                                                                                 } else {
5614                                                                                         let purpose = events::PaymentPurpose::from_parts(
5615                                                                                                 inbound_payment.get().payment_preimage,
5616                                                                                                 payment_data.payment_secret,
5617                                                                                                 payment_context,
5618                                                                                         );
5619                                                                                         let payment_claimable_generated = check_total_value!(purpose);
5620                                                                                         if payment_claimable_generated {
5621                                                                                                 inbound_payment.remove_entry();
5622                                                                                         }
5623                                                                                 }
5624                                                                         },
5625                                                                 };
5626                                                         },
5627                                                         HTLCForwardInfo::FailHTLC { .. } | HTLCForwardInfo::FailMalformedHTLC { .. } => {
5628                                                                 panic!("Got pending fail of our own HTLC");
5629                                                         }
5630                                                 }
5631                                         }
5632                                 }
5633                         }
5634                 }
5635
5636                 let best_block_height = self.best_block.read().unwrap().height;
5637                 self.pending_outbound_payments.check_retry_payments(&self.router, || self.list_usable_channels(),
5638                         || self.compute_inflight_htlcs(), &self.entropy_source, &self.node_signer, best_block_height,
5639                         &self.pending_events, &self.logger, |args| self.send_payment_along_path(args));
5640
5641                 for (htlc_source, payment_hash, failure_reason, destination) in failed_forwards.drain(..) {
5642                         self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
5643                 }
5644                 self.forward_htlcs(&mut phantom_receives);
5645
5646                 // Freeing the holding cell here is relatively redundant - in practice we'll do it when we
5647                 // next get a `get_and_clear_pending_msg_events` call, but some tests rely on it, and it's
5648                 // nice to do the work now if we can rather than while we're trying to get messages in the
5649                 // network stack.
5650                 self.check_free_holding_cells();
5651
5652                 if new_events.is_empty() { return }
5653                 let mut events = self.pending_events.lock().unwrap();
5654                 events.append(&mut new_events);
5655         }
5656
5657         /// Free the background events, generally called from [`PersistenceNotifierGuard`] constructors.
5658         ///
5659         /// Expects the caller to have a total_consistency_lock read lock.
5660         fn process_background_events(&self) -> NotifyOption {
5661                 debug_assert_ne!(self.total_consistency_lock.held_by_thread(), LockHeldState::NotHeldByThread);
5662
5663                 self.background_events_processed_since_startup.store(true, Ordering::Release);
5664
5665                 let mut background_events = Vec::new();
5666                 mem::swap(&mut *self.pending_background_events.lock().unwrap(), &mut background_events);
5667                 if background_events.is_empty() {
5668                         return NotifyOption::SkipPersistNoEvents;
5669                 }
5670
5671                 for event in background_events.drain(..) {
5672                         match event {
5673                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((funding_txo, _channel_id, update)) => {
5674                                         // The channel has already been closed, so no use bothering to care about the
5675                                         // monitor updating completing.
5676                                         let _ = self.chain_monitor.update_channel(funding_txo, &update);
5677                                 },
5678                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup { counterparty_node_id, funding_txo, channel_id, update } => {
5679                                         let mut updated_chan = false;
5680                                         {
5681                                                 let per_peer_state = self.per_peer_state.read().unwrap();
5682                                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
5683                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5684                                                         let peer_state = &mut *peer_state_lock;
5685                                                         match peer_state.channel_by_id.entry(channel_id) {
5686                                                                 hash_map::Entry::Occupied(mut chan_phase) => {
5687                                                                         if let ChannelPhase::Funded(chan) = chan_phase.get_mut() {
5688                                                                                 updated_chan = true;
5689                                                                                 handle_new_monitor_update!(self, funding_txo, update.clone(),
5690                                                                                         peer_state_lock, peer_state, per_peer_state, chan);
5691                                                                         } else {
5692                                                                                 debug_assert!(false, "We shouldn't have an update for a non-funded channel");
5693                                                                         }
5694                                                                 },
5695                                                                 hash_map::Entry::Vacant(_) => {},
5696                                                         }
5697                                                 }
5698                                         }
5699                                         if !updated_chan {
5700                                                 // TODO: Track this as in-flight even though the channel is closed.
5701                                                 let _ = self.chain_monitor.update_channel(funding_txo, &update);
5702                                         }
5703                                 },
5704                                 BackgroundEvent::MonitorUpdatesComplete { counterparty_node_id, channel_id } => {
5705                                         let per_peer_state = self.per_peer_state.read().unwrap();
5706                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
5707                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5708                                                 let peer_state = &mut *peer_state_lock;
5709                                                 if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&channel_id) {
5710                                                         handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, chan);
5711                                                 } else {
5712                                                         let update_actions = peer_state.monitor_update_blocked_actions
5713                                                                 .remove(&channel_id).unwrap_or(Vec::new());
5714                                                         mem::drop(peer_state_lock);
5715                                                         mem::drop(per_peer_state);
5716                                                         self.handle_monitor_update_completion_actions(update_actions);
5717                                                 }
5718                                         }
5719                                 },
5720                         }
5721                 }
5722                 NotifyOption::DoPersist
5723         }
5724
5725         #[cfg(any(test, feature = "_test_utils"))]
5726         /// Process background events, for functional testing
5727         pub fn test_process_background_events(&self) {
5728                 let _lck = self.total_consistency_lock.read().unwrap();
5729                 let _ = self.process_background_events();
5730         }
5731
5732         fn update_channel_fee(&self, chan_id: &ChannelId, chan: &mut Channel<SP>, new_feerate: u32) -> NotifyOption {
5733                 if !chan.context.is_outbound() { return NotifyOption::SkipPersistNoEvents; }
5734
5735                 let logger = WithChannelContext::from(&self.logger, &chan.context, None);
5736
5737                 // If the feerate has decreased by less than half, don't bother
5738                 if new_feerate <= chan.context.get_feerate_sat_per_1000_weight() && new_feerate * 2 > chan.context.get_feerate_sat_per_1000_weight() {
5739                         return NotifyOption::SkipPersistNoEvents;
5740                 }
5741                 if !chan.context.is_live() {
5742                         log_trace!(logger, "Channel {} does not qualify for a feerate change from {} to {} as it cannot currently be updated (probably the peer is disconnected).",
5743                                 chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
5744                         return NotifyOption::SkipPersistNoEvents;
5745                 }
5746                 log_trace!(logger, "Channel {} qualifies for a feerate change from {} to {}.",
5747                         &chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
5748
5749                 chan.queue_update_fee(new_feerate, &self.fee_estimator, &&logger);
5750                 NotifyOption::DoPersist
5751         }
5752
5753         #[cfg(fuzzing)]
5754         /// In chanmon_consistency we want to sometimes do the channel fee updates done in
5755         /// timer_tick_occurred, but we can't generate the disabled channel updates as it considers
5756         /// these a fuzz failure (as they usually indicate a channel force-close, which is exactly what
5757         /// it wants to detect). Thus, we have a variant exposed here for its benefit.
5758         pub fn maybe_update_chan_fees(&self) {
5759                 PersistenceNotifierGuard::optionally_notify(self, || {
5760                         let mut should_persist = NotifyOption::SkipPersistNoEvents;
5761
5762                         let non_anchor_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::NonAnchorChannelFee);
5763                         let anchor_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::AnchorChannelFee);
5764
5765                         let per_peer_state = self.per_peer_state.read().unwrap();
5766                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
5767                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5768                                 let peer_state = &mut *peer_state_lock;
5769                                 for (chan_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
5770                                         |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
5771                                 ) {
5772                                         let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
5773                                                 anchor_feerate
5774                                         } else {
5775                                                 non_anchor_feerate
5776                                         };
5777                                         let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
5778                                         if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
5779                                 }
5780                         }
5781
5782                         should_persist
5783                 });
5784         }
5785
5786         /// Performs actions which should happen on startup and roughly once per minute thereafter.
5787         ///
5788         /// This currently includes:
5789         ///  * Increasing or decreasing the on-chain feerate estimates for our outbound channels,
5790         ///  * Broadcasting [`ChannelUpdate`] messages if we've been disconnected from our peer for more
5791         ///    than a minute, informing the network that they should no longer attempt to route over
5792         ///    the channel.
5793         ///  * Expiring a channel's previous [`ChannelConfig`] if necessary to only allow forwarding HTLCs
5794         ///    with the current [`ChannelConfig`].
5795         ///  * Removing peers which have disconnected but and no longer have any channels.
5796         ///  * Force-closing and removing channels which have not completed establishment in a timely manner.
5797         ///  * Forgetting about stale outbound payments, either those that have already been fulfilled
5798         ///    or those awaiting an invoice that hasn't been delivered in the necessary amount of time.
5799         ///    The latter is determined using the system clock in `std` and the highest seen block time
5800         ///    minus two hours in `no-std`.
5801         ///
5802         /// Note that this may cause reentrancy through [`chain::Watch::update_channel`] calls or feerate
5803         /// estimate fetches.
5804         ///
5805         /// [`ChannelUpdate`]: msgs::ChannelUpdate
5806         /// [`ChannelConfig`]: crate::util::config::ChannelConfig
5807         pub fn timer_tick_occurred(&self) {
5808                 PersistenceNotifierGuard::optionally_notify(self, || {
5809                         let mut should_persist = NotifyOption::SkipPersistNoEvents;
5810
5811                         let non_anchor_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::NonAnchorChannelFee);
5812                         let anchor_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::AnchorChannelFee);
5813
5814                         let mut handle_errors: Vec<(Result<(), _>, _)> = Vec::new();
5815                         let mut timed_out_mpp_htlcs = Vec::new();
5816                         let mut pending_peers_awaiting_removal = Vec::new();
5817                         let mut shutdown_channels = Vec::new();
5818
5819                         let mut process_unfunded_channel_tick = |
5820                                 chan_id: &ChannelId,
5821                                 context: &mut ChannelContext<SP>,
5822                                 unfunded_context: &mut UnfundedChannelContext,
5823                                 pending_msg_events: &mut Vec<MessageSendEvent>,
5824                                 counterparty_node_id: PublicKey,
5825                         | {
5826                                 context.maybe_expire_prev_config();
5827                                 if unfunded_context.should_expire_unfunded_channel() {
5828                                         let logger = WithChannelContext::from(&self.logger, context, None);
5829                                         log_error!(logger,
5830                                                 "Force-closing pending channel with ID {} for not establishing in a timely manner", chan_id);
5831                                         update_maps_on_chan_removal!(self, &context);
5832                                         shutdown_channels.push(context.force_shutdown(false, ClosureReason::HolderForceClosed));
5833                                         pending_msg_events.push(MessageSendEvent::HandleError {
5834                                                 node_id: counterparty_node_id,
5835                                                 action: msgs::ErrorAction::SendErrorMessage {
5836                                                         msg: msgs::ErrorMessage {
5837                                                                 channel_id: *chan_id,
5838                                                                 data: "Force-closing pending channel due to timeout awaiting establishment handshake".to_owned(),
5839                                                         },
5840                                                 },
5841                                         });
5842                                         false
5843                                 } else {
5844                                         true
5845                                 }
5846                         };
5847
5848                         {
5849                                 let per_peer_state = self.per_peer_state.read().unwrap();
5850                                 for (counterparty_node_id, peer_state_mutex) in per_peer_state.iter() {
5851                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5852                                         let peer_state = &mut *peer_state_lock;
5853                                         let pending_msg_events = &mut peer_state.pending_msg_events;
5854                                         let counterparty_node_id = *counterparty_node_id;
5855                                         peer_state.channel_by_id.retain(|chan_id, phase| {
5856                                                 match phase {
5857                                                         ChannelPhase::Funded(chan) => {
5858                                                                 let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
5859                                                                         anchor_feerate
5860                                                                 } else {
5861                                                                         non_anchor_feerate
5862                                                                 };
5863                                                                 let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
5864                                                                 if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
5865
5866                                                                 if let Err(e) = chan.timer_check_closing_negotiation_progress() {
5867                                                                         let (needs_close, err) = convert_chan_phase_err!(self, e, chan, chan_id, FUNDED_CHANNEL);
5868                                                                         handle_errors.push((Err(err), counterparty_node_id));
5869                                                                         if needs_close { return false; }
5870                                                                 }
5871
5872                                                                 match chan.channel_update_status() {
5873                                                                         ChannelUpdateStatus::Enabled if !chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(0)),
5874                                                                         ChannelUpdateStatus::Disabled if chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(0)),
5875                                                                         ChannelUpdateStatus::DisabledStaged(_) if chan.context.is_live()
5876                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Enabled),
5877                                                                         ChannelUpdateStatus::EnabledStaged(_) if !chan.context.is_live()
5878                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Disabled),
5879                                                                         ChannelUpdateStatus::DisabledStaged(mut n) if !chan.context.is_live() => {
5880                                                                                 n += 1;
5881                                                                                 if n >= DISABLE_GOSSIP_TICKS {
5882                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Disabled);
5883                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5884                                                                                                 let mut pending_broadcast_messages = self.pending_broadcast_messages.lock().unwrap();
5885                                                                                                 pending_broadcast_messages.push(events::MessageSendEvent::BroadcastChannelUpdate {
5886                                                                                                         msg: update
5887                                                                                                 });
5888                                                                                         }
5889                                                                                         should_persist = NotifyOption::DoPersist;
5890                                                                                 } else {
5891                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(n));
5892                                                                                 }
5893                                                                         },
5894                                                                         ChannelUpdateStatus::EnabledStaged(mut n) if chan.context.is_live() => {
5895                                                                                 n += 1;
5896                                                                                 if n >= ENABLE_GOSSIP_TICKS {
5897                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Enabled);
5898                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5899                                                                                                 let mut pending_broadcast_messages = self.pending_broadcast_messages.lock().unwrap();
5900                                                                                                 pending_broadcast_messages.push(events::MessageSendEvent::BroadcastChannelUpdate {
5901                                                                                                         msg: update
5902                                                                                                 });
5903                                                                                         }
5904                                                                                         should_persist = NotifyOption::DoPersist;
5905                                                                                 } else {
5906                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(n));
5907                                                                                 }
5908                                                                         },
5909                                                                         _ => {},
5910                                                                 }
5911
5912                                                                 chan.context.maybe_expire_prev_config();
5913
5914                                                                 if chan.should_disconnect_peer_awaiting_response() {
5915                                                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
5916                                                                         log_debug!(logger, "Disconnecting peer {} due to not making any progress on channel {}",
5917                                                                                         counterparty_node_id, chan_id);
5918                                                                         pending_msg_events.push(MessageSendEvent::HandleError {
5919                                                                                 node_id: counterparty_node_id,
5920                                                                                 action: msgs::ErrorAction::DisconnectPeerWithWarning {
5921                                                                                         msg: msgs::WarningMessage {
5922                                                                                                 channel_id: *chan_id,
5923                                                                                                 data: "Disconnecting due to timeout awaiting response".to_owned(),
5924                                                                                         },
5925                                                                                 },
5926                                                                         });
5927                                                                 }
5928
5929                                                                 true
5930                                                         },
5931                                                         ChannelPhase::UnfundedInboundV1(chan) => {
5932                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
5933                                                                         pending_msg_events, counterparty_node_id)
5934                                                         },
5935                                                         ChannelPhase::UnfundedOutboundV1(chan) => {
5936                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
5937                                                                         pending_msg_events, counterparty_node_id)
5938                                                         },
5939                                                         #[cfg(any(dual_funding, splicing))]
5940                                                         ChannelPhase::UnfundedInboundV2(chan) => {
5941                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
5942                                                                         pending_msg_events, counterparty_node_id)
5943                                                         },
5944                                                         #[cfg(any(dual_funding, splicing))]
5945                                                         ChannelPhase::UnfundedOutboundV2(chan) => {
5946                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
5947                                                                         pending_msg_events, counterparty_node_id)
5948                                                         },
5949                                                 }
5950                                         });
5951
5952                                         for (chan_id, req) in peer_state.inbound_channel_request_by_id.iter_mut() {
5953                                                 if { req.ticks_remaining -= 1 ; req.ticks_remaining } <= 0 {
5954                                                         let logger = WithContext::from(&self.logger, Some(counterparty_node_id), Some(*chan_id), None);
5955                                                         log_error!(logger, "Force-closing unaccepted inbound channel {} for not accepting in a timely manner", &chan_id);
5956                                                         peer_state.pending_msg_events.push(
5957                                                                 events::MessageSendEvent::HandleError {
5958                                                                         node_id: counterparty_node_id,
5959                                                                         action: msgs::ErrorAction::SendErrorMessage {
5960                                                                                 msg: msgs::ErrorMessage { channel_id: chan_id.clone(), data: "Channel force-closed".to_owned() }
5961                                                                         },
5962                                                                 }
5963                                                         );
5964                                                 }
5965                                         }
5966                                         peer_state.inbound_channel_request_by_id.retain(|_, req| req.ticks_remaining > 0);
5967
5968                                         if peer_state.ok_to_remove(true) {
5969                                                 pending_peers_awaiting_removal.push(counterparty_node_id);
5970                                         }
5971                                 }
5972                         }
5973
5974                         // When a peer disconnects but still has channels, the peer's `peer_state` entry in the
5975                         // `per_peer_state` is not removed by the `peer_disconnected` function. If the channels
5976                         // of to that peer is later closed while still being disconnected (i.e. force closed),
5977                         // we therefore need to remove the peer from `peer_state` separately.
5978                         // To avoid having to take the `per_peer_state` `write` lock once the channels are
5979                         // closed, we instead remove such peers awaiting removal here on a timer, to limit the
5980                         // negative effects on parallelism as much as possible.
5981                         if pending_peers_awaiting_removal.len() > 0 {
5982                                 let mut per_peer_state = self.per_peer_state.write().unwrap();
5983                                 for counterparty_node_id in pending_peers_awaiting_removal {
5984                                         match per_peer_state.entry(counterparty_node_id) {
5985                                                 hash_map::Entry::Occupied(entry) => {
5986                                                         // Remove the entry if the peer is still disconnected and we still
5987                                                         // have no channels to the peer.
5988                                                         let remove_entry = {
5989                                                                 let peer_state = entry.get().lock().unwrap();
5990                                                                 peer_state.ok_to_remove(true)
5991                                                         };
5992                                                         if remove_entry {
5993                                                                 entry.remove_entry();
5994                                                         }
5995                                                 },
5996                                                 hash_map::Entry::Vacant(_) => { /* The PeerState has already been removed */ }
5997                                         }
5998                                 }
5999                         }
6000
6001                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
6002                                 if payment.htlcs.is_empty() {
6003                                         // This should be unreachable
6004                                         debug_assert!(false);
6005                                         return false;
6006                                 }
6007                                 if let OnionPayload::Invoice { .. } = payment.htlcs[0].onion_payload {
6008                                         // Check if we've received all the parts we need for an MPP (the value of the parts adds to total_msat).
6009                                         // In this case we're not going to handle any timeouts of the parts here.
6010                                         // This condition determining whether the MPP is complete here must match
6011                                         // exactly the condition used in `process_pending_htlc_forwards`.
6012                                         if payment.htlcs[0].total_msat <= payment.htlcs.iter()
6013                                                 .fold(0, |total, htlc| total + htlc.sender_intended_value)
6014                                         {
6015                                                 return true;
6016                                         } else if payment.htlcs.iter_mut().any(|htlc| {
6017                                                 htlc.timer_ticks += 1;
6018                                                 return htlc.timer_ticks >= MPP_TIMEOUT_TICKS
6019                                         }) {
6020                                                 timed_out_mpp_htlcs.extend(payment.htlcs.drain(..)
6021                                                         .map(|htlc: ClaimableHTLC| (htlc.prev_hop, *payment_hash)));
6022                                                 return false;
6023                                         }
6024                                 }
6025                                 true
6026                         });
6027
6028                         for htlc_source in timed_out_mpp_htlcs.drain(..) {
6029                                 let source = HTLCSource::PreviousHopData(htlc_source.0.clone());
6030                                 let reason = HTLCFailReason::from_failure_code(23);
6031                                 let receiver = HTLCDestination::FailedPayment { payment_hash: htlc_source.1 };
6032                                 self.fail_htlc_backwards_internal(&source, &htlc_source.1, &reason, receiver);
6033                         }
6034
6035                         for (err, counterparty_node_id) in handle_errors.drain(..) {
6036                                 let _ = handle_error!(self, err, counterparty_node_id);
6037                         }
6038
6039                         for shutdown_res in shutdown_channels {
6040                                 self.finish_close_channel(shutdown_res);
6041                         }
6042
6043                         #[cfg(feature = "std")]
6044                         let duration_since_epoch = std::time::SystemTime::now()
6045                                 .duration_since(std::time::SystemTime::UNIX_EPOCH)
6046                                 .expect("SystemTime::now() should come after SystemTime::UNIX_EPOCH");
6047                         #[cfg(not(feature = "std"))]
6048                         let duration_since_epoch = Duration::from_secs(
6049                                 self.highest_seen_timestamp.load(Ordering::Acquire).saturating_sub(7200) as u64
6050                         );
6051
6052                         self.pending_outbound_payments.remove_stale_payments(
6053                                 duration_since_epoch, &self.pending_events
6054                         );
6055
6056                         // Technically we don't need to do this here, but if we have holding cell entries in a
6057                         // channel that need freeing, it's better to do that here and block a background task
6058                         // than block the message queueing pipeline.
6059                         if self.check_free_holding_cells() {
6060                                 should_persist = NotifyOption::DoPersist;
6061                         }
6062
6063                         should_persist
6064                 });
6065         }
6066
6067         /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
6068         /// after a PaymentClaimable event, failing the HTLC back to its origin and freeing resources
6069         /// along the path (including in our own channel on which we received it).
6070         ///
6071         /// Note that in some cases around unclean shutdown, it is possible the payment may have
6072         /// already been claimed by you via [`ChannelManager::claim_funds`] prior to you seeing (a
6073         /// second copy of) the [`events::Event::PaymentClaimable`] event. Alternatively, the payment
6074         /// may have already been failed automatically by LDK if it was nearing its expiration time.
6075         ///
6076         /// While LDK will never claim a payment automatically on your behalf (i.e. without you calling
6077         /// [`ChannelManager::claim_funds`]), you should still monitor for
6078         /// [`events::Event::PaymentClaimed`] events even for payments you intend to fail, especially on
6079         /// startup during which time claims that were in-progress at shutdown may be replayed.
6080         pub fn fail_htlc_backwards(&self, payment_hash: &PaymentHash) {
6081                 self.fail_htlc_backwards_with_reason(payment_hash, FailureCode::IncorrectOrUnknownPaymentDetails);
6082         }
6083
6084         /// This is a variant of [`ChannelManager::fail_htlc_backwards`] that allows you to specify the
6085         /// reason for the failure.
6086         ///
6087         /// See [`FailureCode`] for valid failure codes.
6088         pub fn fail_htlc_backwards_with_reason(&self, payment_hash: &PaymentHash, failure_code: FailureCode) {
6089                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6090
6091                 let removed_source = self.claimable_payments.lock().unwrap().claimable_payments.remove(payment_hash);
6092                 if let Some(payment) = removed_source {
6093                         for htlc in payment.htlcs {
6094                                 let reason = self.get_htlc_fail_reason_from_failure_code(failure_code, &htlc);
6095                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
6096                                 let receiver = HTLCDestination::FailedPayment { payment_hash: *payment_hash };
6097                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
6098                         }
6099                 }
6100         }
6101
6102         /// Gets error data to form an [`HTLCFailReason`] given a [`FailureCode`] and [`ClaimableHTLC`].
6103         fn get_htlc_fail_reason_from_failure_code(&self, failure_code: FailureCode, htlc: &ClaimableHTLC) -> HTLCFailReason {
6104                 match failure_code {
6105                         FailureCode::TemporaryNodeFailure => HTLCFailReason::from_failure_code(failure_code.into()),
6106                         FailureCode::RequiredNodeFeatureMissing => HTLCFailReason::from_failure_code(failure_code.into()),
6107                         FailureCode::IncorrectOrUnknownPaymentDetails => {
6108                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
6109                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height.to_be_bytes());
6110                                 HTLCFailReason::reason(failure_code.into(), htlc_msat_height_data)
6111                         },
6112                         FailureCode::InvalidOnionPayload(data) => {
6113                                 let fail_data = match data {
6114                                         Some((typ, offset)) => [BigSize(typ).encode(), offset.encode()].concat(),
6115                                         None => Vec::new(),
6116                                 };
6117                                 HTLCFailReason::reason(failure_code.into(), fail_data)
6118                         }
6119                 }
6120         }
6121
6122         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
6123         /// that we want to return and a channel.
6124         ///
6125         /// This is for failures on the channel on which the HTLC was *received*, not failures
6126         /// forwarding
6127         fn get_htlc_inbound_temp_fail_err_and_data(&self, desired_err_code: u16, chan: &Channel<SP>) -> (u16, Vec<u8>) {
6128                 // We can't be sure what SCID was used when relaying inbound towards us, so we have to
6129                 // guess somewhat. If its a public channel, we figure best to just use the real SCID (as
6130                 // we're not leaking that we have a channel with the counterparty), otherwise we try to use
6131                 // an inbound SCID alias before the real SCID.
6132                 let scid_pref = if chan.context.should_announce() {
6133                         chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias())
6134                 } else {
6135                         chan.context.latest_inbound_scid_alias().or(chan.context.get_short_channel_id())
6136                 };
6137                 if let Some(scid) = scid_pref {
6138                         self.get_htlc_temp_fail_err_and_data(desired_err_code, scid, chan)
6139                 } else {
6140                         (0x4000|10, Vec::new())
6141                 }
6142         }
6143
6144
6145         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
6146         /// that we want to return and a channel.
6147         fn get_htlc_temp_fail_err_and_data(&self, desired_err_code: u16, scid: u64, chan: &Channel<SP>) -> (u16, Vec<u8>) {
6148                 debug_assert_eq!(desired_err_code & 0x1000, 0x1000);
6149                 if let Ok(upd) = self.get_channel_update_for_onion(scid, chan) {
6150                         let mut enc = VecWriter(Vec::with_capacity(upd.serialized_length() + 6));
6151                         if desired_err_code == 0x1000 | 20 {
6152                                 // No flags for `disabled_flags` are currently defined so they're always two zero bytes.
6153                                 // See https://github.com/lightning/bolts/blob/341ec84/04-onion-routing.md?plain=1#L1008
6154                                 0u16.write(&mut enc).expect("Writes cannot fail");
6155                         }
6156                         (upd.serialized_length() as u16 + 2).write(&mut enc).expect("Writes cannot fail");
6157                         msgs::ChannelUpdate::TYPE.write(&mut enc).expect("Writes cannot fail");
6158                         upd.write(&mut enc).expect("Writes cannot fail");
6159                         (desired_err_code, enc.0)
6160                 } else {
6161                         // If we fail to get a unicast channel_update, it implies we don't yet have an SCID,
6162                         // which means we really shouldn't have gotten a payment to be forwarded over this
6163                         // channel yet, or if we did it's from a route hint. Either way, returning an error of
6164                         // PERM|no_such_channel should be fine.
6165                         (0x4000|10, Vec::new())
6166                 }
6167         }
6168
6169         // Fail a list of HTLCs that were just freed from the holding cell. The HTLCs need to be
6170         // failed backwards or, if they were one of our outgoing HTLCs, then their failure needs to
6171         // be surfaced to the user.
6172         fn fail_holding_cell_htlcs(
6173                 &self, mut htlcs_to_fail: Vec<(HTLCSource, PaymentHash)>, channel_id: ChannelId,
6174                 counterparty_node_id: &PublicKey
6175         ) {
6176                 let (failure_code, onion_failure_data) = {
6177                         let per_peer_state = self.per_peer_state.read().unwrap();
6178                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
6179                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6180                                 let peer_state = &mut *peer_state_lock;
6181                                 match peer_state.channel_by_id.entry(channel_id) {
6182                                         hash_map::Entry::Occupied(chan_phase_entry) => {
6183                                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get() {
6184                                                         self.get_htlc_inbound_temp_fail_err_and_data(0x1000|7, &chan)
6185                                                 } else {
6186                                                         // We shouldn't be trying to fail holding cell HTLCs on an unfunded channel.
6187                                                         debug_assert!(false);
6188                                                         (0x4000|10, Vec::new())
6189                                                 }
6190                                         },
6191                                         hash_map::Entry::Vacant(_) => (0x4000|10, Vec::new())
6192                                 }
6193                         } else { (0x4000|10, Vec::new()) }
6194                 };
6195
6196                 for (htlc_src, payment_hash) in htlcs_to_fail.drain(..) {
6197                         let reason = HTLCFailReason::reason(failure_code, onion_failure_data.clone());
6198                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id };
6199                         self.fail_htlc_backwards_internal(&htlc_src, &payment_hash, &reason, receiver);
6200                 }
6201         }
6202
6203         fn fail_htlc_backwards_internal(&self, source: &HTLCSource, payment_hash: &PaymentHash, onion_error: &HTLCFailReason, destination: HTLCDestination) {
6204                 let push_forward_event = self.fail_htlc_backwards_internal_without_forward_event(source, payment_hash, onion_error, destination);
6205                 if push_forward_event { self.push_pending_forwards_ev(); }
6206         }
6207
6208         /// Fails an HTLC backwards to the sender of it to us.
6209         /// Note that we do not assume that channels corresponding to failed HTLCs are still available.
6210         fn fail_htlc_backwards_internal_without_forward_event(&self, source: &HTLCSource, payment_hash: &PaymentHash, onion_error: &HTLCFailReason, destination: HTLCDestination) -> bool {
6211                 // Ensure that no peer state channel storage lock is held when calling this function.
6212                 // This ensures that future code doesn't introduce a lock-order requirement for
6213                 // `forward_htlcs` to be locked after the `per_peer_state` peer locks, which calling
6214                 // this function with any `per_peer_state` peer lock acquired would.
6215                 #[cfg(debug_assertions)]
6216                 for (_, peer) in self.per_peer_state.read().unwrap().iter() {
6217                         debug_assert_ne!(peer.held_by_thread(), LockHeldState::HeldByThread);
6218                 }
6219
6220                 //TODO: There is a timing attack here where if a node fails an HTLC back to us they can
6221                 //identify whether we sent it or not based on the (I presume) very different runtime
6222                 //between the branches here. We should make this async and move it into the forward HTLCs
6223                 //timer handling.
6224
6225                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
6226                 // from block_connected which may run during initialization prior to the chain_monitor
6227                 // being fully configured. See the docs for `ChannelManagerReadArgs` for more.
6228                 let mut push_forward_event;
6229                 match source {
6230                         HTLCSource::OutboundRoute { ref path, ref session_priv, ref payment_id, .. } => {
6231                                 push_forward_event = self.pending_outbound_payments.fail_htlc(source, payment_hash, onion_error, path,
6232                                         session_priv, payment_id, self.probing_cookie_secret, &self.secp_ctx,
6233                                         &self.pending_events, &self.logger);
6234                         },
6235                         HTLCSource::PreviousHopData(HTLCPreviousHopData {
6236                                 ref short_channel_id, ref htlc_id, ref incoming_packet_shared_secret,
6237                                 ref phantom_shared_secret, outpoint: _, ref blinded_failure, ref channel_id, ..
6238                         }) => {
6239                                 log_trace!(
6240                                         WithContext::from(&self.logger, None, Some(*channel_id), Some(*payment_hash)),
6241                                         "Failing {}HTLC with payment_hash {} backwards from us: {:?}",
6242                                         if blinded_failure.is_some() { "blinded " } else { "" }, &payment_hash, onion_error
6243                                 );
6244                                 let failure = match blinded_failure {
6245                                         Some(BlindedFailure::FromIntroductionNode) => {
6246                                                 let blinded_onion_error = HTLCFailReason::reason(INVALID_ONION_BLINDING, vec![0; 32]);
6247                                                 let err_packet = blinded_onion_error.get_encrypted_failure_packet(
6248                                                         incoming_packet_shared_secret, phantom_shared_secret
6249                                                 );
6250                                                 HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet }
6251                                         },
6252                                         Some(BlindedFailure::FromBlindedNode) => {
6253                                                 HTLCForwardInfo::FailMalformedHTLC {
6254                                                         htlc_id: *htlc_id,
6255                                                         failure_code: INVALID_ONION_BLINDING,
6256                                                         sha256_of_onion: [0; 32]
6257                                                 }
6258                                         },
6259                                         None => {
6260                                                 let err_packet = onion_error.get_encrypted_failure_packet(
6261                                                         incoming_packet_shared_secret, phantom_shared_secret
6262                                                 );
6263                                                 HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet }
6264                                         }
6265                                 };
6266
6267                                 push_forward_event = self.decode_update_add_htlcs.lock().unwrap().is_empty();
6268                                 let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
6269                                 push_forward_event &= forward_htlcs.is_empty();
6270                                 match forward_htlcs.entry(*short_channel_id) {
6271                                         hash_map::Entry::Occupied(mut entry) => {
6272                                                 entry.get_mut().push(failure);
6273                                         },
6274                                         hash_map::Entry::Vacant(entry) => {
6275                                                 entry.insert(vec!(failure));
6276                                         }
6277                                 }
6278                                 mem::drop(forward_htlcs);
6279                                 let mut pending_events = self.pending_events.lock().unwrap();
6280                                 pending_events.push_back((events::Event::HTLCHandlingFailed {
6281                                         prev_channel_id: *channel_id,
6282                                         failed_next_destination: destination,
6283                                 }, None));
6284                         },
6285                 }
6286                 push_forward_event
6287         }
6288
6289         /// Provides a payment preimage in response to [`Event::PaymentClaimable`], generating any
6290         /// [`MessageSendEvent`]s needed to claim the payment.
6291         ///
6292         /// This method is guaranteed to ensure the payment has been claimed but only if the current
6293         /// height is strictly below [`Event::PaymentClaimable::claim_deadline`]. To avoid race
6294         /// conditions, you should wait for an [`Event::PaymentClaimed`] before considering the payment
6295         /// successful. It will generally be available in the next [`process_pending_events`] call.
6296         ///
6297         /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
6298         /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentClaimable`
6299         /// event matches your expectation. If you fail to do so and call this method, you may provide
6300         /// the sender "proof-of-payment" when they did not fulfill the full expected payment.
6301         ///
6302         /// This function will fail the payment if it has custom TLVs with even type numbers, as we
6303         /// will assume they are unknown. If you intend to accept even custom TLVs, you should use
6304         /// [`claim_funds_with_known_custom_tlvs`].
6305         ///
6306         /// [`Event::PaymentClaimable`]: crate::events::Event::PaymentClaimable
6307         /// [`Event::PaymentClaimable::claim_deadline`]: crate::events::Event::PaymentClaimable::claim_deadline
6308         /// [`Event::PaymentClaimed`]: crate::events::Event::PaymentClaimed
6309         /// [`process_pending_events`]: EventsProvider::process_pending_events
6310         /// [`create_inbound_payment`]: Self::create_inbound_payment
6311         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
6312         /// [`claim_funds_with_known_custom_tlvs`]: Self::claim_funds_with_known_custom_tlvs
6313         pub fn claim_funds(&self, payment_preimage: PaymentPreimage) {
6314                 self.claim_payment_internal(payment_preimage, false);
6315         }
6316
6317         /// This is a variant of [`claim_funds`] that allows accepting a payment with custom TLVs with
6318         /// even type numbers.
6319         ///
6320         /// # Note
6321         ///
6322         /// You MUST check you've understood all even TLVs before using this to
6323         /// claim, otherwise you may unintentionally agree to some protocol you do not understand.
6324         ///
6325         /// [`claim_funds`]: Self::claim_funds
6326         pub fn claim_funds_with_known_custom_tlvs(&self, payment_preimage: PaymentPreimage) {
6327                 self.claim_payment_internal(payment_preimage, true);
6328         }
6329
6330         fn claim_payment_internal(&self, payment_preimage: PaymentPreimage, custom_tlvs_known: bool) {
6331                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).to_byte_array());
6332
6333                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6334
6335                 let mut sources = {
6336                         let mut claimable_payments = self.claimable_payments.lock().unwrap();
6337                         if let Some(payment) = claimable_payments.claimable_payments.remove(&payment_hash) {
6338                                 let mut receiver_node_id = self.our_network_pubkey;
6339                                 for htlc in payment.htlcs.iter() {
6340                                         if htlc.prev_hop.phantom_shared_secret.is_some() {
6341                                                 let phantom_pubkey = self.node_signer.get_node_id(Recipient::PhantomNode)
6342                                                         .expect("Failed to get node_id for phantom node recipient");
6343                                                 receiver_node_id = phantom_pubkey;
6344                                                 break;
6345                                         }
6346                                 }
6347
6348                                 let claiming_payment = claimable_payments.pending_claiming_payments
6349                                         .entry(payment_hash)
6350                                         .and_modify(|_| {
6351                                                 debug_assert!(false, "Shouldn't get a duplicate pending claim event ever");
6352                                                 log_error!(self.logger, "Got a duplicate pending claimable event on payment hash {}! Please report this bug",
6353                                                         &payment_hash);
6354                                         })
6355                                         .or_insert_with(|| {
6356                                                 let htlcs = payment.htlcs.iter().map(events::ClaimedHTLC::from).collect();
6357                                                 let sender_intended_value = payment.htlcs.first().map(|htlc| htlc.total_msat);
6358                                                 ClaimingPayment {
6359                                                         amount_msat: payment.htlcs.iter().map(|source| source.value).sum(),
6360                                                         payment_purpose: payment.purpose,
6361                                                         receiver_node_id,
6362                                                         htlcs,
6363                                                         sender_intended_value,
6364                                                         onion_fields: payment.onion_fields,
6365                                                 }
6366                                         });
6367
6368                                 if let Some(RecipientOnionFields { ref custom_tlvs, .. }) = claiming_payment.onion_fields {
6369                                         if !custom_tlvs_known && custom_tlvs.iter().any(|(typ, _)| typ % 2 == 0) {
6370                                                 log_info!(self.logger, "Rejecting payment with payment hash {} as we cannot accept payment with unknown even TLVs: {}",
6371                                                         &payment_hash, log_iter!(custom_tlvs.iter().map(|(typ, _)| typ).filter(|typ| *typ % 2 == 0)));
6372                                                 claimable_payments.pending_claiming_payments.remove(&payment_hash);
6373                                                 mem::drop(claimable_payments);
6374                                                 for htlc in payment.htlcs {
6375                                                         let reason = self.get_htlc_fail_reason_from_failure_code(FailureCode::InvalidOnionPayload(None), &htlc);
6376                                                         let source = HTLCSource::PreviousHopData(htlc.prev_hop);
6377                                                         let receiver = HTLCDestination::FailedPayment { payment_hash };
6378                                                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
6379                                                 }
6380                                                 return;
6381                                         }
6382                                 }
6383
6384                                 payment.htlcs
6385                         } else { return; }
6386                 };
6387                 debug_assert!(!sources.is_empty());
6388
6389                 // Just in case one HTLC has been failed between when we generated the `PaymentClaimable`
6390                 // and when we got here we need to check that the amount we're about to claim matches the
6391                 // amount we told the user in the last `PaymentClaimable`. We also do a sanity-check that
6392                 // the MPP parts all have the same `total_msat`.
6393                 let mut claimable_amt_msat = 0;
6394                 let mut prev_total_msat = None;
6395                 let mut expected_amt_msat = None;
6396                 let mut valid_mpp = true;
6397                 let mut errs = Vec::new();
6398                 let per_peer_state = self.per_peer_state.read().unwrap();
6399                 for htlc in sources.iter() {
6400                         if prev_total_msat.is_some() && prev_total_msat != Some(htlc.total_msat) {
6401                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different expected total amounts - this should not be reachable!");
6402                                 debug_assert!(false);
6403                                 valid_mpp = false;
6404                                 break;
6405                         }
6406                         prev_total_msat = Some(htlc.total_msat);
6407
6408                         if expected_amt_msat.is_some() && expected_amt_msat != htlc.total_value_received {
6409                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different received total amounts - this should not be reachable!");
6410                                 debug_assert!(false);
6411                                 valid_mpp = false;
6412                                 break;
6413                         }
6414                         expected_amt_msat = htlc.total_value_received;
6415                         claimable_amt_msat += htlc.value;
6416                 }
6417                 mem::drop(per_peer_state);
6418                 if sources.is_empty() || expected_amt_msat.is_none() {
6419                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
6420                         log_info!(self.logger, "Attempted to claim an incomplete payment which no longer had any available HTLCs!");
6421                         return;
6422                 }
6423                 if claimable_amt_msat != expected_amt_msat.unwrap() {
6424                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
6425                         log_info!(self.logger, "Attempted to claim an incomplete payment, expected {} msat, had {} available to claim.",
6426                                 expected_amt_msat.unwrap(), claimable_amt_msat);
6427                         return;
6428                 }
6429                 if valid_mpp {
6430                         for htlc in sources.drain(..) {
6431                                 let prev_hop_chan_id = htlc.prev_hop.channel_id;
6432                                 if let Err((pk, err)) = self.claim_funds_from_hop(
6433                                         htlc.prev_hop, payment_preimage,
6434                                         |_, definitely_duplicate| {
6435                                                 debug_assert!(!definitely_duplicate, "We shouldn't claim duplicatively from a payment");
6436                                                 Some(MonitorUpdateCompletionAction::PaymentClaimed { payment_hash })
6437                                         }
6438                                 ) {
6439                                         if let msgs::ErrorAction::IgnoreError = err.err.action {
6440                                                 // We got a temporary failure updating monitor, but will claim the
6441                                                 // HTLC when the monitor updating is restored (or on chain).
6442                                                 let logger = WithContext::from(&self.logger, None, Some(prev_hop_chan_id), Some(payment_hash));
6443                                                 log_error!(logger, "Temporary failure claiming HTLC, treating as success: {}", err.err.err);
6444                                         } else { errs.push((pk, err)); }
6445                                 }
6446                         }
6447                 }
6448                 if !valid_mpp {
6449                         for htlc in sources.drain(..) {
6450                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
6451                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height.to_be_bytes());
6452                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
6453                                 let reason = HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data);
6454                                 let receiver = HTLCDestination::FailedPayment { payment_hash };
6455                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
6456                         }
6457                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
6458                 }
6459
6460                 // Now we can handle any errors which were generated.
6461                 for (counterparty_node_id, err) in errs.drain(..) {
6462                         let res: Result<(), _> = Err(err);
6463                         let _ = handle_error!(self, res, counterparty_node_id);
6464                 }
6465         }
6466
6467         fn claim_funds_from_hop<ComplFunc: FnOnce(Option<u64>, bool) -> Option<MonitorUpdateCompletionAction>>(&self,
6468                 prev_hop: HTLCPreviousHopData, payment_preimage: PaymentPreimage, completion_action: ComplFunc)
6469         -> Result<(), (PublicKey, MsgHandleErrInternal)> {
6470                 //TODO: Delay the claimed_funds relaying just like we do outbound relay!
6471
6472                 // If we haven't yet run background events assume we're still deserializing and shouldn't
6473                 // actually pass `ChannelMonitorUpdate`s to users yet. Instead, queue them up as
6474                 // `BackgroundEvent`s.
6475                 let during_init = !self.background_events_processed_since_startup.load(Ordering::Acquire);
6476
6477                 // As we may call handle_monitor_update_completion_actions in rather rare cases, check that
6478                 // the required mutexes are not held before we start.
6479                 debug_assert_ne!(self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
6480                 debug_assert_ne!(self.claimable_payments.held_by_thread(), LockHeldState::HeldByThread);
6481
6482                 {
6483                         let per_peer_state = self.per_peer_state.read().unwrap();
6484                         let chan_id = prev_hop.channel_id;
6485                         let counterparty_node_id_opt = match self.short_to_chan_info.read().unwrap().get(&prev_hop.short_channel_id) {
6486                                 Some((cp_id, _dup_chan_id)) => Some(cp_id.clone()),
6487                                 None => None
6488                         };
6489
6490                         let peer_state_opt = counterparty_node_id_opt.as_ref().map(
6491                                 |counterparty_node_id| per_peer_state.get(counterparty_node_id)
6492                                         .map(|peer_mutex| peer_mutex.lock().unwrap())
6493                         ).unwrap_or(None);
6494
6495                         if peer_state_opt.is_some() {
6496                                 let mut peer_state_lock = peer_state_opt.unwrap();
6497                                 let peer_state = &mut *peer_state_lock;
6498                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(chan_id) {
6499                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6500                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
6501                                                 let logger = WithChannelContext::from(&self.logger, &chan.context, None);
6502                                                 let fulfill_res = chan.get_update_fulfill_htlc_and_commit(prev_hop.htlc_id, payment_preimage, &&logger);
6503
6504                                                 match fulfill_res {
6505                                                         UpdateFulfillCommitFetch::NewClaim { htlc_value_msat, monitor_update } => {
6506                                                                 if let Some(action) = completion_action(Some(htlc_value_msat), false) {
6507                                                                         log_trace!(logger, "Tracking monitor update completion action for channel {}: {:?}",
6508                                                                                 chan_id, action);
6509                                                                         peer_state.monitor_update_blocked_actions.entry(chan_id).or_insert(Vec::new()).push(action);
6510                                                                 }
6511                                                                 if !during_init {
6512                                                                         handle_new_monitor_update!(self, prev_hop.outpoint, monitor_update, peer_state_lock,
6513                                                                                 peer_state, per_peer_state, chan);
6514                                                                 } else {
6515                                                                         // If we're running during init we cannot update a monitor directly -
6516                                                                         // they probably haven't actually been loaded yet. Instead, push the
6517                                                                         // monitor update as a background event.
6518                                                                         self.pending_background_events.lock().unwrap().push(
6519                                                                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
6520                                                                                         counterparty_node_id,
6521                                                                                         funding_txo: prev_hop.outpoint,
6522                                                                                         channel_id: prev_hop.channel_id,
6523                                                                                         update: monitor_update.clone(),
6524                                                                                 });
6525                                                                 }
6526                                                         }
6527                                                         UpdateFulfillCommitFetch::DuplicateClaim {} => {
6528                                                                 let action = if let Some(action) = completion_action(None, true) {
6529                                                                         action
6530                                                                 } else {
6531                                                                         return Ok(());
6532                                                                 };
6533                                                                 mem::drop(peer_state_lock);
6534
6535                                                                 log_trace!(logger, "Completing monitor update completion action for channel {} as claim was redundant: {:?}",
6536                                                                         chan_id, action);
6537                                                                 let (node_id, _funding_outpoint, channel_id, blocker) =
6538                                                                 if let MonitorUpdateCompletionAction::FreeOtherChannelImmediately {
6539                                                                         downstream_counterparty_node_id: node_id,
6540                                                                         downstream_funding_outpoint: funding_outpoint,
6541                                                                         blocking_action: blocker, downstream_channel_id: channel_id,
6542                                                                 } = action {
6543                                                                         (node_id, funding_outpoint, channel_id, blocker)
6544                                                                 } else {
6545                                                                         debug_assert!(false,
6546                                                                                 "Duplicate claims should always free another channel immediately");
6547                                                                         return Ok(());
6548                                                                 };
6549                                                                 if let Some(peer_state_mtx) = per_peer_state.get(&node_id) {
6550                                                                         let mut peer_state = peer_state_mtx.lock().unwrap();
6551                                                                         if let Some(blockers) = peer_state
6552                                                                                 .actions_blocking_raa_monitor_updates
6553                                                                                 .get_mut(&channel_id)
6554                                                                         {
6555                                                                                 let mut found_blocker = false;
6556                                                                                 blockers.retain(|iter| {
6557                                                                                         // Note that we could actually be blocked, in
6558                                                                                         // which case we need to only remove the one
6559                                                                                         // blocker which was added duplicatively.
6560                                                                                         let first_blocker = !found_blocker;
6561                                                                                         if *iter == blocker { found_blocker = true; }
6562                                                                                         *iter != blocker || !first_blocker
6563                                                                                 });
6564                                                                                 debug_assert!(found_blocker);
6565                                                                         }
6566                                                                 } else {
6567                                                                         debug_assert!(false);
6568                                                                 }
6569                                                         }
6570                                                 }
6571                                         }
6572                                         return Ok(());
6573                                 }
6574                         }
6575                 }
6576                 let preimage_update = ChannelMonitorUpdate {
6577                         update_id: CLOSED_CHANNEL_UPDATE_ID,
6578                         counterparty_node_id: None,
6579                         updates: vec![ChannelMonitorUpdateStep::PaymentPreimage {
6580                                 payment_preimage,
6581                         }],
6582                         channel_id: Some(prev_hop.channel_id),
6583                 };
6584
6585                 if !during_init {
6586                         // We update the ChannelMonitor on the backward link, after
6587                         // receiving an `update_fulfill_htlc` from the forward link.
6588                         let update_res = self.chain_monitor.update_channel(prev_hop.outpoint, &preimage_update);
6589                         if update_res != ChannelMonitorUpdateStatus::Completed {
6590                                 // TODO: This needs to be handled somehow - if we receive a monitor update
6591                                 // with a preimage we *must* somehow manage to propagate it to the upstream
6592                                 // channel, or we must have an ability to receive the same event and try
6593                                 // again on restart.
6594                                 log_error!(WithContext::from(&self.logger, None, Some(prev_hop.channel_id), None),
6595                                         "Critical error: failed to update channel monitor with preimage {:?}: {:?}",
6596                                         payment_preimage, update_res);
6597                         }
6598                 } else {
6599                         // If we're running during init we cannot update a monitor directly - they probably
6600                         // haven't actually been loaded yet. Instead, push the monitor update as a background
6601                         // event.
6602                         // Note that while it's safe to use `ClosedMonitorUpdateRegeneratedOnStartup` here (the
6603                         // channel is already closed) we need to ultimately handle the monitor update
6604                         // completion action only after we've completed the monitor update. This is the only
6605                         // way to guarantee this update *will* be regenerated on startup (otherwise if this was
6606                         // from a forwarded HTLC the downstream preimage may be deleted before we claim
6607                         // upstream). Thus, we need to transition to some new `BackgroundEvent` type which will
6608                         // complete the monitor update completion action from `completion_action`.
6609                         self.pending_background_events.lock().unwrap().push(
6610                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((
6611                                         prev_hop.outpoint, prev_hop.channel_id, preimage_update,
6612                                 )));
6613                 }
6614                 // Note that we do process the completion action here. This totally could be a
6615                 // duplicate claim, but we have no way of knowing without interrogating the
6616                 // `ChannelMonitor` we've provided the above update to. Instead, note that `Event`s are
6617                 // generally always allowed to be duplicative (and it's specifically noted in
6618                 // `PaymentForwarded`).
6619                 self.handle_monitor_update_completion_actions(completion_action(None, false));
6620                 Ok(())
6621         }
6622
6623         fn finalize_claims(&self, sources: Vec<HTLCSource>) {
6624                 self.pending_outbound_payments.finalize_claims(sources, &self.pending_events);
6625         }
6626
6627         fn claim_funds_internal(&self, source: HTLCSource, payment_preimage: PaymentPreimage,
6628                 forwarded_htlc_value_msat: Option<u64>, skimmed_fee_msat: Option<u64>, from_onchain: bool,
6629                 startup_replay: bool, next_channel_counterparty_node_id: Option<PublicKey>,
6630                 next_channel_outpoint: OutPoint, next_channel_id: ChannelId, next_user_channel_id: Option<u128>,
6631         ) {
6632                 match source {
6633                         HTLCSource::OutboundRoute { session_priv, payment_id, path, .. } => {
6634                                 debug_assert!(self.background_events_processed_since_startup.load(Ordering::Acquire),
6635                                         "We don't support claim_htlc claims during startup - monitors may not be available yet");
6636                                 if let Some(pubkey) = next_channel_counterparty_node_id {
6637                                         debug_assert_eq!(pubkey, path.hops[0].pubkey);
6638                                 }
6639                                 let ev_completion_action = EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
6640                                         channel_funding_outpoint: next_channel_outpoint, channel_id: next_channel_id,
6641                                         counterparty_node_id: path.hops[0].pubkey,
6642                                 };
6643                                 self.pending_outbound_payments.claim_htlc(payment_id, payment_preimage,
6644                                         session_priv, path, from_onchain, ev_completion_action, &self.pending_events,
6645                                         &self.logger);
6646                         },
6647                         HTLCSource::PreviousHopData(hop_data) => {
6648                                 let prev_channel_id = hop_data.channel_id;
6649                                 let prev_user_channel_id = hop_data.user_channel_id;
6650                                 let completed_blocker = RAAMonitorUpdateBlockingAction::from_prev_hop_data(&hop_data);
6651                                 #[cfg(debug_assertions)]
6652                                 let claiming_chan_funding_outpoint = hop_data.outpoint;
6653                                 let res = self.claim_funds_from_hop(hop_data, payment_preimage,
6654                                         |htlc_claim_value_msat, definitely_duplicate| {
6655                                                 let chan_to_release =
6656                                                         if let Some(node_id) = next_channel_counterparty_node_id {
6657                                                                 Some((node_id, next_channel_outpoint, next_channel_id, completed_blocker))
6658                                                         } else {
6659                                                                 // We can only get `None` here if we are processing a
6660                                                                 // `ChannelMonitor`-originated event, in which case we
6661                                                                 // don't care about ensuring we wake the downstream
6662                                                                 // channel's monitor updating - the channel is already
6663                                                                 // closed.
6664                                                                 None
6665                                                         };
6666
6667                                                 if definitely_duplicate && startup_replay {
6668                                                         // On startup we may get redundant claims which are related to
6669                                                         // monitor updates still in flight. In that case, we shouldn't
6670                                                         // immediately free, but instead let that monitor update complete
6671                                                         // in the background.
6672                                                         #[cfg(debug_assertions)] {
6673                                                                 let background_events = self.pending_background_events.lock().unwrap();
6674                                                                 // There should be a `BackgroundEvent` pending...
6675                                                                 assert!(background_events.iter().any(|ev| {
6676                                                                         match ev {
6677                                                                                 // to apply a monitor update that blocked the claiming channel,
6678                                                                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
6679                                                                                         funding_txo, update, ..
6680                                                                                 } => {
6681                                                                                         if *funding_txo == claiming_chan_funding_outpoint {
6682                                                                                                 assert!(update.updates.iter().any(|upd|
6683                                                                                                         if let ChannelMonitorUpdateStep::PaymentPreimage {
6684                                                                                                                 payment_preimage: update_preimage
6685                                                                                                         } = upd {
6686                                                                                                                 payment_preimage == *update_preimage
6687                                                                                                         } else { false }
6688                                                                                                 ), "{:?}", update);
6689                                                                                                 true
6690                                                                                         } else { false }
6691                                                                                 },
6692                                                                                 // or the channel we'd unblock is already closed,
6693                                                                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup(
6694                                                                                         (funding_txo, _channel_id, monitor_update)
6695                                                                                 ) => {
6696                                                                                         if *funding_txo == next_channel_outpoint {
6697                                                                                                 assert_eq!(monitor_update.updates.len(), 1);
6698                                                                                                 assert!(matches!(
6699                                                                                                         monitor_update.updates[0],
6700                                                                                                         ChannelMonitorUpdateStep::ChannelForceClosed { .. }
6701                                                                                                 ));
6702                                                                                                 true
6703                                                                                         } else { false }
6704                                                                                 },
6705                                                                                 // or the monitor update has completed and will unblock
6706                                                                                 // immediately once we get going.
6707                                                                                 BackgroundEvent::MonitorUpdatesComplete {
6708                                                                                         channel_id, ..
6709                                                                                 } =>
6710                                                                                         *channel_id == prev_channel_id,
6711                                                                         }
6712                                                                 }), "{:?}", *background_events);
6713                                                         }
6714                                                         None
6715                                                 } else if definitely_duplicate {
6716                                                         if let Some(other_chan) = chan_to_release {
6717                                                                 Some(MonitorUpdateCompletionAction::FreeOtherChannelImmediately {
6718                                                                         downstream_counterparty_node_id: other_chan.0,
6719                                                                         downstream_funding_outpoint: other_chan.1,
6720                                                                         downstream_channel_id: other_chan.2,
6721                                                                         blocking_action: other_chan.3,
6722                                                                 })
6723                                                         } else { None }
6724                                                 } else {
6725                                                         let total_fee_earned_msat = if let Some(forwarded_htlc_value) = forwarded_htlc_value_msat {
6726                                                                 if let Some(claimed_htlc_value) = htlc_claim_value_msat {
6727                                                                         Some(claimed_htlc_value - forwarded_htlc_value)
6728                                                                 } else { None }
6729                                                         } else { None };
6730                                                         debug_assert!(skimmed_fee_msat <= total_fee_earned_msat,
6731                                                                 "skimmed_fee_msat must always be included in total_fee_earned_msat");
6732                                                         Some(MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
6733                                                                 event: events::Event::PaymentForwarded {
6734                                                                         prev_channel_id: Some(prev_channel_id),
6735                                                                         next_channel_id: Some(next_channel_id),
6736                                                                         prev_user_channel_id,
6737                                                                         next_user_channel_id,
6738                                                                         total_fee_earned_msat,
6739                                                                         skimmed_fee_msat,
6740                                                                         claim_from_onchain_tx: from_onchain,
6741                                                                         outbound_amount_forwarded_msat: forwarded_htlc_value_msat,
6742                                                                 },
6743                                                                 downstream_counterparty_and_funding_outpoint: chan_to_release,
6744                                                         })
6745                                                 }
6746                                         });
6747                                 if let Err((pk, err)) = res {
6748                                         let result: Result<(), _> = Err(err);
6749                                         let _ = handle_error!(self, result, pk);
6750                                 }
6751                         },
6752                 }
6753         }
6754
6755         /// Gets the node_id held by this ChannelManager
6756         pub fn get_our_node_id(&self) -> PublicKey {
6757                 self.our_network_pubkey.clone()
6758         }
6759
6760         fn handle_monitor_update_completion_actions<I: IntoIterator<Item=MonitorUpdateCompletionAction>>(&self, actions: I) {
6761                 debug_assert_ne!(self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
6762                 debug_assert_ne!(self.claimable_payments.held_by_thread(), LockHeldState::HeldByThread);
6763                 debug_assert_ne!(self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
6764
6765                 for action in actions.into_iter() {
6766                         match action {
6767                                 MonitorUpdateCompletionAction::PaymentClaimed { payment_hash } => {
6768                                         let payment = self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
6769                                         if let Some(ClaimingPayment {
6770                                                 amount_msat,
6771                                                 payment_purpose: purpose,
6772                                                 receiver_node_id,
6773                                                 htlcs,
6774                                                 sender_intended_value: sender_intended_total_msat,
6775                                                 onion_fields,
6776                                         }) = payment {
6777                                                 self.pending_events.lock().unwrap().push_back((events::Event::PaymentClaimed {
6778                                                         payment_hash,
6779                                                         purpose,
6780                                                         amount_msat,
6781                                                         receiver_node_id: Some(receiver_node_id),
6782                                                         htlcs,
6783                                                         sender_intended_total_msat,
6784                                                         onion_fields,
6785                                                 }, None));
6786                                         }
6787                                 },
6788                                 MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
6789                                         event, downstream_counterparty_and_funding_outpoint
6790                                 } => {
6791                                         self.pending_events.lock().unwrap().push_back((event, None));
6792                                         if let Some((node_id, funding_outpoint, channel_id, blocker)) = downstream_counterparty_and_funding_outpoint {
6793                                                 self.handle_monitor_update_release(node_id, funding_outpoint, channel_id, Some(blocker));
6794                                         }
6795                                 },
6796                                 MonitorUpdateCompletionAction::FreeOtherChannelImmediately {
6797                                         downstream_counterparty_node_id, downstream_funding_outpoint, downstream_channel_id, blocking_action,
6798                                 } => {
6799                                         self.handle_monitor_update_release(
6800                                                 downstream_counterparty_node_id,
6801                                                 downstream_funding_outpoint,
6802                                                 downstream_channel_id,
6803                                                 Some(blocking_action),
6804                                         );
6805                                 },
6806                         }
6807                 }
6808         }
6809
6810         /// Handles a channel reentering a functional state, either due to reconnect or a monitor
6811         /// update completion.
6812         fn handle_channel_resumption(&self, pending_msg_events: &mut Vec<MessageSendEvent>,
6813                 channel: &mut Channel<SP>, raa: Option<msgs::RevokeAndACK>,
6814                 commitment_update: Option<msgs::CommitmentUpdate>, order: RAACommitmentOrder,
6815                 pending_forwards: Vec<(PendingHTLCInfo, u64)>, pending_update_adds: Vec<msgs::UpdateAddHTLC>,
6816                 funding_broadcastable: Option<Transaction>,
6817                 channel_ready: Option<msgs::ChannelReady>, announcement_sigs: Option<msgs::AnnouncementSignatures>)
6818         -> (Option<(u64, OutPoint, ChannelId, u128, Vec<(PendingHTLCInfo, u64)>)>, Option<(u64, Vec<msgs::UpdateAddHTLC>)>) {
6819                 let logger = WithChannelContext::from(&self.logger, &channel.context, None);
6820                 log_trace!(logger, "Handling channel resumption for channel {} with {} RAA, {} commitment update, {} pending forwards, {} pending update_add_htlcs, {}broadcasting funding, {} channel ready, {} announcement",
6821                         &channel.context.channel_id(),
6822                         if raa.is_some() { "an" } else { "no" },
6823                         if commitment_update.is_some() { "a" } else { "no" },
6824                         pending_forwards.len(), pending_update_adds.len(),
6825                         if funding_broadcastable.is_some() { "" } else { "not " },
6826                         if channel_ready.is_some() { "sending" } else { "without" },
6827                         if announcement_sigs.is_some() { "sending" } else { "without" });
6828
6829                 let counterparty_node_id = channel.context.get_counterparty_node_id();
6830                 let short_channel_id = channel.context.get_short_channel_id().unwrap_or(channel.context.outbound_scid_alias());
6831
6832                 let mut htlc_forwards = None;
6833                 if !pending_forwards.is_empty() {
6834                         htlc_forwards = Some((short_channel_id, channel.context.get_funding_txo().unwrap(),
6835                                 channel.context.channel_id(), channel.context.get_user_id(), pending_forwards));
6836                 }
6837                 let mut decode_update_add_htlcs = None;
6838                 if !pending_update_adds.is_empty() {
6839                         decode_update_add_htlcs = Some((short_channel_id, pending_update_adds));
6840                 }
6841
6842                 if let Some(msg) = channel_ready {
6843                         send_channel_ready!(self, pending_msg_events, channel, msg);
6844                 }
6845                 if let Some(msg) = announcement_sigs {
6846                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
6847                                 node_id: counterparty_node_id,
6848                                 msg,
6849                         });
6850                 }
6851
6852                 macro_rules! handle_cs { () => {
6853                         if let Some(update) = commitment_update {
6854                                 pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
6855                                         node_id: counterparty_node_id,
6856                                         updates: update,
6857                                 });
6858                         }
6859                 } }
6860                 macro_rules! handle_raa { () => {
6861                         if let Some(revoke_and_ack) = raa {
6862                                 pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
6863                                         node_id: counterparty_node_id,
6864                                         msg: revoke_and_ack,
6865                                 });
6866                         }
6867                 } }
6868                 match order {
6869                         RAACommitmentOrder::CommitmentFirst => {
6870                                 handle_cs!();
6871                                 handle_raa!();
6872                         },
6873                         RAACommitmentOrder::RevokeAndACKFirst => {
6874                                 handle_raa!();
6875                                 handle_cs!();
6876                         },
6877                 }
6878
6879                 if let Some(tx) = funding_broadcastable {
6880                         log_info!(logger, "Broadcasting funding transaction with txid {}", tx.txid());
6881                         self.tx_broadcaster.broadcast_transactions(&[&tx]);
6882                 }
6883
6884                 {
6885                         let mut pending_events = self.pending_events.lock().unwrap();
6886                         emit_channel_pending_event!(pending_events, channel);
6887                         emit_channel_ready_event!(pending_events, channel);
6888                 }
6889
6890                 (htlc_forwards, decode_update_add_htlcs)
6891         }
6892
6893         fn channel_monitor_updated(&self, funding_txo: &OutPoint, channel_id: &ChannelId, highest_applied_update_id: u64, counterparty_node_id: Option<&PublicKey>) {
6894                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
6895
6896                 let counterparty_node_id = match counterparty_node_id {
6897                         Some(cp_id) => cp_id.clone(),
6898                         None => {
6899                                 // TODO: Once we can rely on the counterparty_node_id from the
6900                                 // monitor event, this and the outpoint_to_peer map should be removed.
6901                                 let outpoint_to_peer = self.outpoint_to_peer.lock().unwrap();
6902                                 match outpoint_to_peer.get(funding_txo) {
6903                                         Some(cp_id) => cp_id.clone(),
6904                                         None => return,
6905                                 }
6906                         }
6907                 };
6908                 let per_peer_state = self.per_peer_state.read().unwrap();
6909                 let mut peer_state_lock;
6910                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
6911                 if peer_state_mutex_opt.is_none() { return }
6912                 peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
6913                 let peer_state = &mut *peer_state_lock;
6914                 let channel =
6915                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(channel_id) {
6916                                 chan
6917                         } else {
6918                                 let update_actions = peer_state.monitor_update_blocked_actions
6919                                         .remove(&channel_id).unwrap_or(Vec::new());
6920                                 mem::drop(peer_state_lock);
6921                                 mem::drop(per_peer_state);
6922                                 self.handle_monitor_update_completion_actions(update_actions);
6923                                 return;
6924                         };
6925                 let remaining_in_flight =
6926                         if let Some(pending) = peer_state.in_flight_monitor_updates.get_mut(funding_txo) {
6927                                 pending.retain(|upd| upd.update_id > highest_applied_update_id);
6928                                 pending.len()
6929                         } else { 0 };
6930                 let logger = WithChannelContext::from(&self.logger, &channel.context, None);
6931                 log_trace!(logger, "ChannelMonitor updated to {}. Current highest is {}. {} pending in-flight updates.",
6932                         highest_applied_update_id, channel.context.get_latest_monitor_update_id(),
6933                         remaining_in_flight);
6934                 if !channel.is_awaiting_monitor_update() || channel.context.get_latest_monitor_update_id() != highest_applied_update_id {
6935                         return;
6936                 }
6937                 handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, channel);
6938         }
6939
6940         /// Accepts a request to open a channel after a [`Event::OpenChannelRequest`].
6941         ///
6942         /// The `temporary_channel_id` parameter indicates which inbound channel should be accepted,
6943         /// and the `counterparty_node_id` parameter is the id of the peer which has requested to open
6944         /// the channel.
6945         ///
6946         /// The `user_channel_id` parameter will be provided back in
6947         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
6948         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
6949         ///
6950         /// Note that this method will return an error and reject the channel, if it requires support
6951         /// for zero confirmations. Instead, `accept_inbound_channel_from_trusted_peer_0conf` must be
6952         /// used to accept such channels.
6953         ///
6954         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
6955         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
6956         pub fn accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
6957                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, false, user_channel_id)
6958         }
6959
6960         /// Accepts a request to open a channel after a [`events::Event::OpenChannelRequest`], treating
6961         /// it as confirmed immediately.
6962         ///
6963         /// The `user_channel_id` parameter will be provided back in
6964         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
6965         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
6966         ///
6967         /// Unlike [`ChannelManager::accept_inbound_channel`], this method accepts the incoming channel
6968         /// and (if the counterparty agrees), enables forwarding of payments immediately.
6969         ///
6970         /// This fully trusts that the counterparty has honestly and correctly constructed the funding
6971         /// transaction and blindly assumes that it will eventually confirm.
6972         ///
6973         /// If it does not confirm before we decide to close the channel, or if the funding transaction
6974         /// does not pay to the correct script the correct amount, *you will lose funds*.
6975         ///
6976         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
6977         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
6978         pub fn accept_inbound_channel_from_trusted_peer_0conf(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
6979                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, true, user_channel_id)
6980         }
6981
6982         fn do_accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, accept_0conf: bool, user_channel_id: u128) -> Result<(), APIError> {
6983
6984                 let logger = WithContext::from(&self.logger, Some(*counterparty_node_id), Some(*temporary_channel_id), None);
6985                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6986
6987                 let peers_without_funded_channels =
6988                         self.peers_without_funded_channels(|peer| { peer.total_channel_count() > 0 });
6989                 let per_peer_state = self.per_peer_state.read().unwrap();
6990                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6991                 .ok_or_else(|| {
6992                         let err_str = format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id);
6993                         log_error!(logger, "{}", err_str);
6994
6995                         APIError::ChannelUnavailable { err: err_str }
6996                 })?;
6997                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6998                 let peer_state = &mut *peer_state_lock;
6999                 let is_only_peer_channel = peer_state.total_channel_count() == 1;
7000
7001                 // Find (and remove) the channel in the unaccepted table. If it's not there, something weird is
7002                 // happening and return an error. N.B. that we create channel with an outbound SCID of zero so
7003                 // that we can delay allocating the SCID until after we're sure that the checks below will
7004                 // succeed.
7005                 let res = match peer_state.inbound_channel_request_by_id.remove(temporary_channel_id) {
7006                         Some(unaccepted_channel) => {
7007                                 let best_block_height = self.best_block.read().unwrap().height;
7008                                 InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
7009                                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features,
7010                                         &unaccepted_channel.open_channel_msg, user_channel_id, &self.default_configuration, best_block_height,
7011                                         &self.logger, accept_0conf).map_err(|err| MsgHandleErrInternal::from_chan_no_close(err, *temporary_channel_id))
7012                         },
7013                         _ => {
7014                                 let err_str = "No such channel awaiting to be accepted.".to_owned();
7015                                 log_error!(logger, "{}", err_str);
7016
7017                                 return Err(APIError::APIMisuseError { err: err_str });
7018                         }
7019                 };
7020
7021                 match res {
7022                         Err(err) => {
7023                                 mem::drop(peer_state_lock);
7024                                 mem::drop(per_peer_state);
7025                                 match handle_error!(self, Result::<(), MsgHandleErrInternal>::Err(err), *counterparty_node_id) {
7026                                         Ok(_) => unreachable!("`handle_error` only returns Err as we've passed in an Err"),
7027                                         Err(e) => {
7028                                                 return Err(APIError::ChannelUnavailable { err: e.err });
7029                                         },
7030                                 }
7031                         }
7032                         Ok(mut channel) => {
7033                                 if accept_0conf {
7034                                         // This should have been correctly configured by the call to InboundV1Channel::new.
7035                                         debug_assert!(channel.context.minimum_depth().unwrap() == 0);
7036                                 } else if channel.context.get_channel_type().requires_zero_conf() {
7037                                         let send_msg_err_event = events::MessageSendEvent::HandleError {
7038                                                 node_id: channel.context.get_counterparty_node_id(),
7039                                                 action: msgs::ErrorAction::SendErrorMessage{
7040                                                         msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "No zero confirmation channels accepted".to_owned(), }
7041                                                 }
7042                                         };
7043                                         peer_state.pending_msg_events.push(send_msg_err_event);
7044                                         let err_str = "Please use accept_inbound_channel_from_trusted_peer_0conf to accept channels with zero confirmations.".to_owned();
7045                                         log_error!(logger, "{}", err_str);
7046
7047                                         return Err(APIError::APIMisuseError { err: err_str });
7048                                 } else {
7049                                         // If this peer already has some channels, a new channel won't increase our number of peers
7050                                         // with unfunded channels, so as long as we aren't over the maximum number of unfunded
7051                                         // channels per-peer we can accept channels from a peer with existing ones.
7052                                         if is_only_peer_channel && peers_without_funded_channels >= MAX_UNFUNDED_CHANNEL_PEERS {
7053                                                 let send_msg_err_event = events::MessageSendEvent::HandleError {
7054                                                         node_id: channel.context.get_counterparty_node_id(),
7055                                                         action: msgs::ErrorAction::SendErrorMessage{
7056                                                                 msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "Have too many peers with unfunded channels, not accepting new ones".to_owned(), }
7057                                                         }
7058                                                 };
7059                                                 peer_state.pending_msg_events.push(send_msg_err_event);
7060                                                 let err_str = "Too many peers with unfunded channels, refusing to accept new ones".to_owned();
7061                                                 log_error!(logger, "{}", err_str);
7062
7063                                                 return Err(APIError::APIMisuseError { err: err_str });
7064                                         }
7065                                 }
7066
7067                                 // Now that we know we have a channel, assign an outbound SCID alias.
7068                                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
7069                                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
7070
7071                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
7072                                         node_id: channel.context.get_counterparty_node_id(),
7073                                         msg: channel.accept_inbound_channel(),
7074                                 });
7075
7076                                 peer_state.channel_by_id.insert(temporary_channel_id.clone(), ChannelPhase::UnfundedInboundV1(channel));
7077
7078                                 Ok(())
7079                         },
7080                 }
7081         }
7082
7083         /// Gets the number of peers which match the given filter and do not have any funded, outbound,
7084         /// or 0-conf channels.
7085         ///
7086         /// The filter is called for each peer and provided with the number of unfunded, inbound, and
7087         /// non-0-conf channels we have with the peer.
7088         fn peers_without_funded_channels<Filter>(&self, maybe_count_peer: Filter) -> usize
7089         where Filter: Fn(&PeerState<SP>) -> bool {
7090                 let mut peers_without_funded_channels = 0;
7091                 let best_block_height = self.best_block.read().unwrap().height;
7092                 {
7093                         let peer_state_lock = self.per_peer_state.read().unwrap();
7094                         for (_, peer_mtx) in peer_state_lock.iter() {
7095                                 let peer = peer_mtx.lock().unwrap();
7096                                 if !maybe_count_peer(&*peer) { continue; }
7097                                 let num_unfunded_channels = Self::unfunded_channel_count(&peer, best_block_height);
7098                                 if num_unfunded_channels == peer.total_channel_count() {
7099                                         peers_without_funded_channels += 1;
7100                                 }
7101                         }
7102                 }
7103                 return peers_without_funded_channels;
7104         }
7105
7106         fn unfunded_channel_count(
7107                 peer: &PeerState<SP>, best_block_height: u32
7108         ) -> usize {
7109                 let mut num_unfunded_channels = 0;
7110                 for (_, phase) in peer.channel_by_id.iter() {
7111                         match phase {
7112                                 ChannelPhase::Funded(chan) => {
7113                                         // This covers non-zero-conf inbound `Channel`s that we are currently monitoring, but those
7114                                         // which have not yet had any confirmations on-chain.
7115                                         if !chan.context.is_outbound() && chan.context.minimum_depth().unwrap_or(1) != 0 &&
7116                                                 chan.context.get_funding_tx_confirmations(best_block_height) == 0
7117                                         {
7118                                                 num_unfunded_channels += 1;
7119                                         }
7120                                 },
7121                                 ChannelPhase::UnfundedInboundV1(chan) => {
7122                                         if chan.context.minimum_depth().unwrap_or(1) != 0 {
7123                                                 num_unfunded_channels += 1;
7124                                         }
7125                                 },
7126                                 // TODO(dual_funding): Combine this match arm with above once #[cfg(any(dual_funding, splicing))] is removed.
7127                                 #[cfg(any(dual_funding, splicing))]
7128                                 ChannelPhase::UnfundedInboundV2(chan) => {
7129                                         // Only inbound V2 channels that are not 0conf and that we do not contribute to will be
7130                                         // included in the unfunded count.
7131                                         if chan.context.minimum_depth().unwrap_or(1) != 0 &&
7132                                                 chan.dual_funding_context.our_funding_satoshis == 0 {
7133                                                 num_unfunded_channels += 1;
7134                                         }
7135                                 },
7136                                 ChannelPhase::UnfundedOutboundV1(_) => {
7137                                         // Outbound channels don't contribute to the unfunded count in the DoS context.
7138                                         continue;
7139                                 },
7140                                 // TODO(dual_funding): Combine this match arm with above once #[cfg(any(dual_funding, splicing))] is removed.
7141                                 #[cfg(any(dual_funding, splicing))]
7142                                 ChannelPhase::UnfundedOutboundV2(_) => {
7143                                         // Outbound channels don't contribute to the unfunded count in the DoS context.
7144                                         continue;
7145                                 }
7146                         }
7147                 }
7148                 num_unfunded_channels + peer.inbound_channel_request_by_id.len()
7149         }
7150
7151         fn internal_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) -> Result<(), MsgHandleErrInternal> {
7152                 // Note that the ChannelManager is NOT re-persisted on disk after this, so any changes are
7153                 // likely to be lost on restart!
7154                 if msg.common_fields.chain_hash != self.chain_hash {
7155                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Unknown genesis block hash".to_owned(),
7156                                  msg.common_fields.temporary_channel_id.clone()));
7157                 }
7158
7159                 if !self.default_configuration.accept_inbound_channels {
7160                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No inbound channels accepted".to_owned(),
7161                                  msg.common_fields.temporary_channel_id.clone()));
7162                 }
7163
7164                 // Get the number of peers with channels, but without funded ones. We don't care too much
7165                 // about peers that never open a channel, so we filter by peers that have at least one
7166                 // channel, and then limit the number of those with unfunded channels.
7167                 let channeled_peers_without_funding =
7168                         self.peers_without_funded_channels(|node| node.total_channel_count() > 0);
7169
7170                 let per_peer_state = self.per_peer_state.read().unwrap();
7171                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7172                     .ok_or_else(|| {
7173                                 debug_assert!(false);
7174                                 MsgHandleErrInternal::send_err_msg_no_close(
7175                                         format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id),
7176                                         msg.common_fields.temporary_channel_id.clone())
7177                         })?;
7178                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7179                 let peer_state = &mut *peer_state_lock;
7180
7181                 // If this peer already has some channels, a new channel won't increase our number of peers
7182                 // with unfunded channels, so as long as we aren't over the maximum number of unfunded
7183                 // channels per-peer we can accept channels from a peer with existing ones.
7184                 if peer_state.total_channel_count() == 0 &&
7185                         channeled_peers_without_funding >= MAX_UNFUNDED_CHANNEL_PEERS &&
7186                         !self.default_configuration.manually_accept_inbound_channels
7187                 {
7188                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
7189                                 "Have too many peers with unfunded channels, not accepting new ones".to_owned(),
7190                                 msg.common_fields.temporary_channel_id.clone()));
7191                 }
7192
7193                 let best_block_height = self.best_block.read().unwrap().height;
7194                 if Self::unfunded_channel_count(peer_state, best_block_height) >= MAX_UNFUNDED_CHANS_PER_PEER {
7195                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
7196                                 format!("Refusing more than {} unfunded channels.", MAX_UNFUNDED_CHANS_PER_PEER),
7197                                 msg.common_fields.temporary_channel_id.clone()));
7198                 }
7199
7200                 let channel_id = msg.common_fields.temporary_channel_id;
7201                 let channel_exists = peer_state.has_channel(&channel_id);
7202                 if channel_exists {
7203                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
7204                                 "temporary_channel_id collision for the same peer!".to_owned(),
7205                                 msg.common_fields.temporary_channel_id.clone()));
7206                 }
7207
7208                 // If we're doing manual acceptance checks on the channel, then defer creation until we're sure we want to accept.
7209                 if self.default_configuration.manually_accept_inbound_channels {
7210                         let channel_type = channel::channel_type_from_open_channel(
7211                                         &msg.common_fields, &peer_state.latest_features, &self.channel_type_features()
7212                                 ).map_err(|e|
7213                                         MsgHandleErrInternal::from_chan_no_close(e, msg.common_fields.temporary_channel_id)
7214                                 )?;
7215                         let mut pending_events = self.pending_events.lock().unwrap();
7216                         pending_events.push_back((events::Event::OpenChannelRequest {
7217                                 temporary_channel_id: msg.common_fields.temporary_channel_id.clone(),
7218                                 counterparty_node_id: counterparty_node_id.clone(),
7219                                 funding_satoshis: msg.common_fields.funding_satoshis,
7220                                 push_msat: msg.push_msat,
7221                                 channel_type,
7222                         }, None));
7223                         peer_state.inbound_channel_request_by_id.insert(channel_id, InboundChannelRequest {
7224                                 open_channel_msg: msg.clone(),
7225                                 ticks_remaining: UNACCEPTED_INBOUND_CHANNEL_AGE_LIMIT_TICKS,
7226                         });
7227                         return Ok(());
7228                 }
7229
7230                 // Otherwise create the channel right now.
7231                 let mut random_bytes = [0u8; 16];
7232                 random_bytes.copy_from_slice(&self.entropy_source.get_secure_random_bytes()[..16]);
7233                 let user_channel_id = u128::from_be_bytes(random_bytes);
7234                 let mut channel = match InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
7235                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features, msg, user_channel_id,
7236                         &self.default_configuration, best_block_height, &self.logger, /*is_0conf=*/false)
7237                 {
7238                         Err(e) => {
7239                                 return Err(MsgHandleErrInternal::from_chan_no_close(e, msg.common_fields.temporary_channel_id));
7240                         },
7241                         Ok(res) => res
7242                 };
7243
7244                 let channel_type = channel.context.get_channel_type();
7245                 if channel_type.requires_zero_conf() {
7246                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
7247                                 "No zero confirmation channels accepted".to_owned(),
7248                                 msg.common_fields.temporary_channel_id.clone()));
7249                 }
7250                 if channel_type.requires_anchors_zero_fee_htlc_tx() {
7251                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
7252                                 "No channels with anchor outputs accepted".to_owned(),
7253                                 msg.common_fields.temporary_channel_id.clone()));
7254                 }
7255
7256                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
7257                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
7258
7259                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
7260                         node_id: counterparty_node_id.clone(),
7261                         msg: channel.accept_inbound_channel(),
7262                 });
7263                 peer_state.channel_by_id.insert(channel_id, ChannelPhase::UnfundedInboundV1(channel));
7264                 Ok(())
7265         }
7266
7267         fn internal_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) -> Result<(), MsgHandleErrInternal> {
7268                 // Note that the ChannelManager is NOT re-persisted on disk after this, so any changes are
7269                 // likely to be lost on restart!
7270                 let (value, output_script, user_id) = {
7271                         let per_peer_state = self.per_peer_state.read().unwrap();
7272                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7273                                 .ok_or_else(|| {
7274                                         debug_assert!(false);
7275                                         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)
7276                                 })?;
7277                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7278                         let peer_state = &mut *peer_state_lock;
7279                         match peer_state.channel_by_id.entry(msg.common_fields.temporary_channel_id) {
7280                                 hash_map::Entry::Occupied(mut phase) => {
7281                                         match phase.get_mut() {
7282                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
7283                                                         try_chan_phase_entry!(self, chan.accept_channel(&msg, &self.default_configuration.channel_handshake_limits, &peer_state.latest_features), phase);
7284                                                         (chan.context.get_value_satoshis(), chan.context.get_funding_redeemscript().to_p2wsh(), chan.context.get_user_id())
7285                                                 },
7286                                                 _ => {
7287                                                         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));
7288                                                 }
7289                                         }
7290                                 },
7291                                 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))
7292                         }
7293                 };
7294                 let mut pending_events = self.pending_events.lock().unwrap();
7295                 pending_events.push_back((events::Event::FundingGenerationReady {
7296                         temporary_channel_id: msg.common_fields.temporary_channel_id,
7297                         counterparty_node_id: *counterparty_node_id,
7298                         channel_value_satoshis: value,
7299                         output_script,
7300                         user_channel_id: user_id,
7301                 }, None));
7302                 Ok(())
7303         }
7304
7305         fn internal_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) -> Result<(), MsgHandleErrInternal> {
7306                 let best_block = *self.best_block.read().unwrap();
7307
7308                 let per_peer_state = self.per_peer_state.read().unwrap();
7309                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7310                         .ok_or_else(|| {
7311                                 debug_assert!(false);
7312                                 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)
7313                         })?;
7314
7315                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7316                 let peer_state = &mut *peer_state_lock;
7317                 let (mut chan, funding_msg_opt, monitor) =
7318                         match peer_state.channel_by_id.remove(&msg.temporary_channel_id) {
7319                                 Some(ChannelPhase::UnfundedInboundV1(inbound_chan)) => {
7320                                         let logger = WithChannelContext::from(&self.logger, &inbound_chan.context, None);
7321                                         match inbound_chan.funding_created(msg, best_block, &self.signer_provider, &&logger) {
7322                                                 Ok(res) => res,
7323                                                 Err((inbound_chan, err)) => {
7324                                                         // We've already removed this inbound channel from the map in `PeerState`
7325                                                         // above so at this point we just need to clean up any lingering entries
7326                                                         // concerning this channel as it is safe to do so.
7327                                                         debug_assert!(matches!(err, ChannelError::Close(_)));
7328                                                         // Really we should be returning the channel_id the peer expects based
7329                                                         // on their funding info here, but they're horribly confused anyway, so
7330                                                         // there's not a lot we can do to save them.
7331                                                         return Err(convert_chan_phase_err!(self, err, &mut ChannelPhase::UnfundedInboundV1(inbound_chan), &msg.temporary_channel_id).1);
7332                                                 },
7333                                         }
7334                                 },
7335                                 Some(mut phase) => {
7336                                         let err_msg = format!("Got an unexpected funding_created message from peer with counterparty_node_id {}", counterparty_node_id);
7337                                         let err = ChannelError::Close(err_msg);
7338                                         return Err(convert_chan_phase_err!(self, err, &mut phase, &msg.temporary_channel_id).1);
7339                                 },
7340                                 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))
7341                         };
7342
7343                 let funded_channel_id = chan.context.channel_id();
7344
7345                 macro_rules! fail_chan { ($err: expr) => { {
7346                         // Note that at this point we've filled in the funding outpoint on our
7347                         // channel, but its actually in conflict with another channel. Thus, if
7348                         // we call `convert_chan_phase_err` immediately (thus calling
7349                         // `update_maps_on_chan_removal`), we'll remove the existing channel
7350                         // from `outpoint_to_peer`. Thus, we must first unset the funding outpoint
7351                         // on the channel.
7352                         let err = ChannelError::Close($err.to_owned());
7353                         chan.unset_funding_info(msg.temporary_channel_id);
7354                         return Err(convert_chan_phase_err!(self, err, chan, &funded_channel_id, UNFUNDED_CHANNEL).1);
7355                 } } }
7356
7357                 match peer_state.channel_by_id.entry(funded_channel_id) {
7358                         hash_map::Entry::Occupied(_) => {
7359                                 fail_chan!("Already had channel with the new channel_id");
7360                         },
7361                         hash_map::Entry::Vacant(e) => {
7362                                 let mut outpoint_to_peer_lock = self.outpoint_to_peer.lock().unwrap();
7363                                 match outpoint_to_peer_lock.entry(monitor.get_funding_txo().0) {
7364                                         hash_map::Entry::Occupied(_) => {
7365                                                 fail_chan!("The funding_created message had the same funding_txid as an existing channel - funding is not possible");
7366                                         },
7367                                         hash_map::Entry::Vacant(i_e) => {
7368                                                 let monitor_res = self.chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor);
7369                                                 if let Ok(persist_state) = monitor_res {
7370                                                         i_e.insert(chan.context.get_counterparty_node_id());
7371                                                         mem::drop(outpoint_to_peer_lock);
7372
7373                                                         // There's no problem signing a counterparty's funding transaction if our monitor
7374                                                         // hasn't persisted to disk yet - we can't lose money on a transaction that we haven't
7375                                                         // accepted payment from yet. We do, however, need to wait to send our channel_ready
7376                                                         // until we have persisted our monitor.
7377                                                         if let Some(msg) = funding_msg_opt {
7378                                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
7379                                                                         node_id: counterparty_node_id.clone(),
7380                                                                         msg,
7381                                                                 });
7382                                                         }
7383
7384                                                         if let ChannelPhase::Funded(chan) = e.insert(ChannelPhase::Funded(chan)) {
7385                                                                 handle_new_monitor_update!(self, persist_state, peer_state_lock, peer_state,
7386                                                                         per_peer_state, chan, INITIAL_MONITOR);
7387                                                         } else {
7388                                                                 unreachable!("This must be a funded channel as we just inserted it.");
7389                                                         }
7390                                                         Ok(())
7391                                                 } else {
7392                                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
7393                                                         log_error!(logger, "Persisting initial ChannelMonitor failed, implying the funding outpoint was duplicated");
7394                                                         fail_chan!("Duplicate funding outpoint");
7395                                                 }
7396                                         }
7397                                 }
7398                         }
7399                 }
7400         }
7401
7402         fn internal_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) -> Result<(), MsgHandleErrInternal> {
7403                 let best_block = *self.best_block.read().unwrap();
7404                 let per_peer_state = self.per_peer_state.read().unwrap();
7405                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7406                         .ok_or_else(|| {
7407                                 debug_assert!(false);
7408                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7409                         })?;
7410
7411                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7412                 let peer_state = &mut *peer_state_lock;
7413                 match peer_state.channel_by_id.entry(msg.channel_id) {
7414                         hash_map::Entry::Occupied(chan_phase_entry) => {
7415                                 if matches!(chan_phase_entry.get(), ChannelPhase::UnfundedOutboundV1(_)) {
7416                                         let chan = if let ChannelPhase::UnfundedOutboundV1(chan) = chan_phase_entry.remove() { chan } else { unreachable!() };
7417                                         let logger = WithContext::from(
7418                                                 &self.logger,
7419                                                 Some(chan.context.get_counterparty_node_id()),
7420                                                 Some(chan.context.channel_id()),
7421                                                 None
7422                                         );
7423                                         let res =
7424                                                 chan.funding_signed(&msg, best_block, &self.signer_provider, &&logger);
7425                                         match res {
7426                                                 Ok((mut chan, monitor)) => {
7427                                                         if let Ok(persist_status) = self.chain_monitor.watch_channel(chan.context.get_funding_txo().unwrap(), monitor) {
7428                                                                 // We really should be able to insert here without doing a second
7429                                                                 // lookup, but sadly rust stdlib doesn't currently allow keeping
7430                                                                 // the original Entry around with the value removed.
7431                                                                 let mut chan = peer_state.channel_by_id.entry(msg.channel_id).or_insert(ChannelPhase::Funded(chan));
7432                                                                 if let ChannelPhase::Funded(ref mut chan) = &mut chan {
7433                                                                         handle_new_monitor_update!(self, persist_status, peer_state_lock, peer_state, per_peer_state, chan, INITIAL_MONITOR);
7434                                                                 } else { unreachable!(); }
7435                                                                 Ok(())
7436                                                         } else {
7437                                                                 let e = ChannelError::Close("Channel funding outpoint was a duplicate".to_owned());
7438                                                                 // We weren't able to watch the channel to begin with, so no
7439                                                                 // updates should be made on it. Previously, full_stack_target
7440                                                                 // found an (unreachable) panic when the monitor update contained
7441                                                                 // within `shutdown_finish` was applied.
7442                                                                 chan.unset_funding_info(msg.channel_id);
7443                                                                 return Err(convert_chan_phase_err!(self, e, &mut ChannelPhase::Funded(chan), &msg.channel_id).1);
7444                                                         }
7445                                                 },
7446                                                 Err((chan, e)) => {
7447                                                         debug_assert!(matches!(e, ChannelError::Close(_)),
7448                                                                 "We don't have a channel anymore, so the error better have expected close");
7449                                                         // We've already removed this outbound channel from the map in
7450                                                         // `PeerState` above so at this point we just need to clean up any
7451                                                         // lingering entries concerning this channel as it is safe to do so.
7452                                                         return Err(convert_chan_phase_err!(self, e, &mut ChannelPhase::UnfundedOutboundV1(chan), &msg.channel_id).1);
7453                                                 }
7454                                         }
7455                                 } else {
7456                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id));
7457                                 }
7458                         },
7459                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
7460                 }
7461         }
7462
7463         fn internal_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) -> Result<(), MsgHandleErrInternal> {
7464                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
7465                 // closing a channel), so any changes are likely to be lost on restart!
7466                 let per_peer_state = self.per_peer_state.read().unwrap();
7467                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7468                         .ok_or_else(|| {
7469                                 debug_assert!(false);
7470                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7471                         })?;
7472                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7473                 let peer_state = &mut *peer_state_lock;
7474                 match peer_state.channel_by_id.entry(msg.channel_id) {
7475                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
7476                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7477                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
7478                                         let announcement_sigs_opt = try_chan_phase_entry!(self, chan.channel_ready(&msg, &self.node_signer,
7479                                                 self.chain_hash, &self.default_configuration, &self.best_block.read().unwrap(), &&logger), chan_phase_entry);
7480                                         if let Some(announcement_sigs) = announcement_sigs_opt {
7481                                                 log_trace!(logger, "Sending announcement_signatures for channel {}", chan.context.channel_id());
7482                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
7483                                                         node_id: counterparty_node_id.clone(),
7484                                                         msg: announcement_sigs,
7485                                                 });
7486                                         } else if chan.context.is_usable() {
7487                                                 // If we're sending an announcement_signatures, we'll send the (public)
7488                                                 // channel_update after sending a channel_announcement when we receive our
7489                                                 // counterparty's announcement_signatures. Thus, we only bother to send a
7490                                                 // channel_update here if the channel is not public, i.e. we're not sending an
7491                                                 // announcement_signatures.
7492                                                 log_trace!(logger, "Sending private initial channel_update for our counterparty on channel {}", chan.context.channel_id());
7493                                                 if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
7494                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
7495                                                                 node_id: counterparty_node_id.clone(),
7496                                                                 msg,
7497                                                         });
7498                                                 }
7499                                         }
7500
7501                                         {
7502                                                 let mut pending_events = self.pending_events.lock().unwrap();
7503                                                 emit_channel_ready_event!(pending_events, chan);
7504                                         }
7505
7506                                         Ok(())
7507                                 } else {
7508                                         try_chan_phase_entry!(self, Err(ChannelError::Close(
7509                                                 "Got a channel_ready message for an unfunded channel!".into())), chan_phase_entry)
7510                                 }
7511                         },
7512                         hash_map::Entry::Vacant(_) => {
7513                                 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))
7514                         }
7515                 }
7516         }
7517
7518         fn internal_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) -> Result<(), MsgHandleErrInternal> {
7519                 let mut dropped_htlcs: Vec<(HTLCSource, PaymentHash)> = Vec::new();
7520                 let mut finish_shutdown = None;
7521                 {
7522                         let per_peer_state = self.per_peer_state.read().unwrap();
7523                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7524                                 .ok_or_else(|| {
7525                                         debug_assert!(false);
7526                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7527                                 })?;
7528                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7529                         let peer_state = &mut *peer_state_lock;
7530                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(msg.channel_id.clone()) {
7531                                 let phase = chan_phase_entry.get_mut();
7532                                 match phase {
7533                                         ChannelPhase::Funded(chan) => {
7534                                                 if !chan.received_shutdown() {
7535                                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
7536                                                         log_info!(logger, "Received a shutdown message from our counterparty for channel {}{}.",
7537                                                                 msg.channel_id,
7538                                                                 if chan.sent_shutdown() { " after we initiated shutdown" } else { "" });
7539                                                 }
7540
7541                                                 let funding_txo_opt = chan.context.get_funding_txo();
7542                                                 let (shutdown, monitor_update_opt, htlcs) = try_chan_phase_entry!(self,
7543                                                         chan.shutdown(&self.signer_provider, &peer_state.latest_features, &msg), chan_phase_entry);
7544                                                 dropped_htlcs = htlcs;
7545
7546                                                 if let Some(msg) = shutdown {
7547                                                         // We can send the `shutdown` message before updating the `ChannelMonitor`
7548                                                         // here as we don't need the monitor update to complete until we send a
7549                                                         // `shutdown_signed`, which we'll delay if we're pending a monitor update.
7550                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
7551                                                                 node_id: *counterparty_node_id,
7552                                                                 msg,
7553                                                         });
7554                                                 }
7555                                                 // Update the monitor with the shutdown script if necessary.
7556                                                 if let Some(monitor_update) = monitor_update_opt {
7557                                                         handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
7558                                                                 peer_state_lock, peer_state, per_peer_state, chan);
7559                                                 }
7560                                         },
7561                                         ChannelPhase::UnfundedInboundV1(_) | ChannelPhase::UnfundedOutboundV1(_) => {
7562                                                 let context = phase.context_mut();
7563                                                 let logger = WithChannelContext::from(&self.logger, context, None);
7564                                                 log_error!(logger, "Immediately closing unfunded channel {} as peer asked to cooperatively shut it down (which is unnecessary)", &msg.channel_id);
7565                                                 let mut chan = remove_channel_phase!(self, chan_phase_entry);
7566                                                 finish_shutdown = Some(chan.context_mut().force_shutdown(false, ClosureReason::CounterpartyCoopClosedUnfundedChannel));
7567                                         },
7568                                         // TODO(dual_funding): Combine this match arm with above.
7569                                         #[cfg(any(dual_funding, splicing))]
7570                                         ChannelPhase::UnfundedInboundV2(_) | ChannelPhase::UnfundedOutboundV2(_) => {
7571                                                 let context = phase.context_mut();
7572                                                 log_error!(self.logger, "Immediately closing unfunded channel {} as peer asked to cooperatively shut it down (which is unnecessary)", &msg.channel_id);
7573                                                 let mut chan = remove_channel_phase!(self, chan_phase_entry);
7574                                                 finish_shutdown = Some(chan.context_mut().force_shutdown(false, ClosureReason::CounterpartyCoopClosedUnfundedChannel));
7575                                         },
7576                                 }
7577                         } else {
7578                                 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))
7579                         }
7580                 }
7581                 for htlc_source in dropped_htlcs.drain(..) {
7582                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id: msg.channel_id };
7583                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
7584                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
7585                 }
7586                 if let Some(shutdown_res) = finish_shutdown {
7587                         self.finish_close_channel(shutdown_res);
7588                 }
7589
7590                 Ok(())
7591         }
7592
7593         fn internal_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) -> Result<(), MsgHandleErrInternal> {
7594                 let per_peer_state = self.per_peer_state.read().unwrap();
7595                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7596                         .ok_or_else(|| {
7597                                 debug_assert!(false);
7598                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7599                         })?;
7600                 let (tx, chan_option, shutdown_result) = {
7601                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7602                         let peer_state = &mut *peer_state_lock;
7603                         match peer_state.channel_by_id.entry(msg.channel_id.clone()) {
7604                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
7605                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7606                                                 let (closing_signed, tx, shutdown_result) = try_chan_phase_entry!(self, chan.closing_signed(&self.fee_estimator, &msg), chan_phase_entry);
7607                                                 debug_assert_eq!(shutdown_result.is_some(), chan.is_shutdown());
7608                                                 if let Some(msg) = closing_signed {
7609                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
7610                                                                 node_id: counterparty_node_id.clone(),
7611                                                                 msg,
7612                                                         });
7613                                                 }
7614                                                 if tx.is_some() {
7615                                                         // We're done with this channel, we've got a signed closing transaction and
7616                                                         // will send the closing_signed back to the remote peer upon return. This
7617                                                         // also implies there are no pending HTLCs left on the channel, so we can
7618                                                         // fully delete it from tracking (the channel monitor is still around to
7619                                                         // watch for old state broadcasts)!
7620                                                         (tx, Some(remove_channel_phase!(self, chan_phase_entry)), shutdown_result)
7621                                                 } else { (tx, None, shutdown_result) }
7622                                         } else {
7623                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
7624                                                         "Got a closing_signed message for an unfunded channel!".into())), chan_phase_entry);
7625                                         }
7626                                 },
7627                                 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))
7628                         }
7629                 };
7630                 if let Some(broadcast_tx) = tx {
7631                         let channel_id = chan_option.as_ref().map(|channel| channel.context().channel_id());
7632                         log_info!(WithContext::from(&self.logger, Some(*counterparty_node_id), channel_id, None), "Broadcasting {}", log_tx!(broadcast_tx));
7633                         self.tx_broadcaster.broadcast_transactions(&[&broadcast_tx]);
7634                 }
7635                 if let Some(ChannelPhase::Funded(chan)) = chan_option {
7636                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
7637                                 let mut pending_broadcast_messages = self.pending_broadcast_messages.lock().unwrap();
7638                                 pending_broadcast_messages.push(events::MessageSendEvent::BroadcastChannelUpdate {
7639                                         msg: update
7640                                 });
7641                         }
7642                 }
7643                 mem::drop(per_peer_state);
7644                 if let Some(shutdown_result) = shutdown_result {
7645                         self.finish_close_channel(shutdown_result);
7646                 }
7647                 Ok(())
7648         }
7649
7650         fn internal_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) -> Result<(), MsgHandleErrInternal> {
7651                 //TODO: BOLT 4 points out a specific attack where a peer may re-send an onion packet and
7652                 //determine the state of the payment based on our response/if we forward anything/the time
7653                 //we take to respond. We should take care to avoid allowing such an attack.
7654                 //
7655                 //TODO: There exists a further attack where a node may garble the onion data, forward it to
7656                 //us repeatedly garbled in different ways, and compare our error messages, which are
7657                 //encrypted with the same key. It's not immediately obvious how to usefully exploit that,
7658                 //but we should prevent it anyway.
7659
7660                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
7661                 // closing a channel), so any changes are likely to be lost on restart!
7662
7663                 let decoded_hop_res = self.decode_update_add_htlc_onion(msg, counterparty_node_id);
7664                 let per_peer_state = self.per_peer_state.read().unwrap();
7665                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7666                         .ok_or_else(|| {
7667                                 debug_assert!(false);
7668                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7669                         })?;
7670                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7671                 let peer_state = &mut *peer_state_lock;
7672                 match peer_state.channel_by_id.entry(msg.channel_id) {
7673                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
7674                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7675                                         let mut pending_forward_info = match decoded_hop_res {
7676                                                 Ok((next_hop, shared_secret, next_packet_pk_opt)) =>
7677                                                         self.construct_pending_htlc_status(
7678                                                                 msg, counterparty_node_id, shared_secret, next_hop,
7679                                                                 chan.context.config().accept_underpaying_htlcs, next_packet_pk_opt,
7680                                                         ),
7681                                                 Err(e) => PendingHTLCStatus::Fail(e)
7682                                         };
7683                                         let logger = WithChannelContext::from(&self.logger, &chan.context, Some(msg.payment_hash));
7684                                         // If the update_add is completely bogus, the call will Err and we will close,
7685                                         // but if we've sent a shutdown and they haven't acknowledged it yet, we just
7686                                         // want to reject the new HTLC and fail it backwards instead of forwarding.
7687                                         if let Err((_, error_code)) = chan.can_accept_incoming_htlc(&msg, &self.fee_estimator, &logger) {
7688                                                 if msg.blinding_point.is_some() {
7689                                                         pending_forward_info = PendingHTLCStatus::Fail(HTLCFailureMsg::Malformed(
7690                                                                 msgs::UpdateFailMalformedHTLC {
7691                                                                         channel_id: msg.channel_id,
7692                                                                         htlc_id: msg.htlc_id,
7693                                                                         sha256_of_onion: [0; 32],
7694                                                                         failure_code: INVALID_ONION_BLINDING,
7695                                                                 }
7696                                                         ))
7697                                                 } else {
7698                                                         match pending_forward_info {
7699                                                                 PendingHTLCStatus::Forward(PendingHTLCInfo {
7700                                                                         ref incoming_shared_secret, ref routing, ..
7701                                                                 }) => {
7702                                                                         let reason = if routing.blinded_failure().is_some() {
7703                                                                                 HTLCFailReason::reason(INVALID_ONION_BLINDING, vec![0; 32])
7704                                                                         } else if (error_code & 0x1000) != 0 {
7705                                                                                 let (real_code, error_data) = self.get_htlc_inbound_temp_fail_err_and_data(error_code, chan);
7706                                                                                 HTLCFailReason::reason(real_code, error_data)
7707                                                                         } else {
7708                                                                                 HTLCFailReason::from_failure_code(error_code)
7709                                                                         }.get_encrypted_failure_packet(incoming_shared_secret, &None);
7710                                                                         let msg = msgs::UpdateFailHTLC {
7711                                                                                 channel_id: msg.channel_id,
7712                                                                                 htlc_id: msg.htlc_id,
7713                                                                                 reason
7714                                                                         };
7715                                                                         pending_forward_info = PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msg));
7716                                                                 },
7717                                                                 _ => {},
7718                                                         }
7719                                                 }
7720                                         }
7721                                         try_chan_phase_entry!(self, chan.update_add_htlc(&msg, pending_forward_info, &self.fee_estimator), chan_phase_entry);
7722                                 } else {
7723                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
7724                                                 "Got an update_add_htlc message for an unfunded channel!".into())), chan_phase_entry);
7725                                 }
7726                         },
7727                         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))
7728                 }
7729                 Ok(())
7730         }
7731
7732         fn internal_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) -> Result<(), MsgHandleErrInternal> {
7733                 let funding_txo;
7734                 let next_user_channel_id;
7735                 let (htlc_source, forwarded_htlc_value, skimmed_fee_msat) = {
7736                         let per_peer_state = self.per_peer_state.read().unwrap();
7737                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7738                                 .ok_or_else(|| {
7739                                         debug_assert!(false);
7740                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7741                                 })?;
7742                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7743                         let peer_state = &mut *peer_state_lock;
7744                         match peer_state.channel_by_id.entry(msg.channel_id) {
7745                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
7746                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7747                                                 let res = try_chan_phase_entry!(self, chan.update_fulfill_htlc(&msg), chan_phase_entry);
7748                                                 if let HTLCSource::PreviousHopData(prev_hop) = &res.0 {
7749                                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
7750                                                         log_trace!(logger,
7751                                                                 "Holding the next revoke_and_ack from {} until the preimage is durably persisted in the inbound edge's ChannelMonitor",
7752                                                                 msg.channel_id);
7753                                                         peer_state.actions_blocking_raa_monitor_updates.entry(msg.channel_id)
7754                                                                 .or_insert_with(Vec::new)
7755                                                                 .push(RAAMonitorUpdateBlockingAction::from_prev_hop_data(&prev_hop));
7756                                                 }
7757                                                 // Note that we do not need to push an `actions_blocking_raa_monitor_updates`
7758                                                 // entry here, even though we *do* need to block the next RAA monitor update.
7759                                                 // We do this instead in the `claim_funds_internal` by attaching a
7760                                                 // `ReleaseRAAChannelMonitorUpdate` action to the event generated when the
7761                                                 // outbound HTLC is claimed. This is guaranteed to all complete before we
7762                                                 // process the RAA as messages are processed from single peers serially.
7763                                                 funding_txo = chan.context.get_funding_txo().expect("We won't accept a fulfill until funded");
7764                                                 next_user_channel_id = chan.context.get_user_id();
7765                                                 res
7766                                         } else {
7767                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
7768                                                         "Got an update_fulfill_htlc message for an unfunded channel!".into())), chan_phase_entry);
7769                                         }
7770                                 },
7771                                 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))
7772                         }
7773                 };
7774                 self.claim_funds_internal(htlc_source, msg.payment_preimage.clone(),
7775                         Some(forwarded_htlc_value), skimmed_fee_msat, false, false, Some(*counterparty_node_id),
7776                         funding_txo, msg.channel_id, Some(next_user_channel_id),
7777                 );
7778
7779                 Ok(())
7780         }
7781
7782         fn internal_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) -> Result<(), MsgHandleErrInternal> {
7783                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
7784                 // closing a channel), so any changes are likely to be lost on restart!
7785                 let per_peer_state = self.per_peer_state.read().unwrap();
7786                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7787                         .ok_or_else(|| {
7788                                 debug_assert!(false);
7789                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7790                         })?;
7791                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7792                 let peer_state = &mut *peer_state_lock;
7793                 match peer_state.channel_by_id.entry(msg.channel_id) {
7794                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
7795                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7796                                         try_chan_phase_entry!(self, chan.update_fail_htlc(&msg, HTLCFailReason::from_msg(msg)), chan_phase_entry);
7797                                 } else {
7798                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
7799                                                 "Got an update_fail_htlc message for an unfunded channel!".into())), chan_phase_entry);
7800                                 }
7801                         },
7802                         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))
7803                 }
7804                 Ok(())
7805         }
7806
7807         fn internal_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) -> Result<(), MsgHandleErrInternal> {
7808                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
7809                 // closing a channel), so any changes are likely to be lost on restart!
7810                 let per_peer_state = self.per_peer_state.read().unwrap();
7811                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7812                         .ok_or_else(|| {
7813                                 debug_assert!(false);
7814                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7815                         })?;
7816                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7817                 let peer_state = &mut *peer_state_lock;
7818                 match peer_state.channel_by_id.entry(msg.channel_id) {
7819                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
7820                                 if (msg.failure_code & 0x8000) == 0 {
7821                                         let chan_err: ChannelError = ChannelError::Close("Got update_fail_malformed_htlc with BADONION not set".to_owned());
7822                                         try_chan_phase_entry!(self, Err(chan_err), chan_phase_entry);
7823                                 }
7824                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7825                                         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);
7826                                 } else {
7827                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
7828                                                 "Got an update_fail_malformed_htlc message for an unfunded channel!".into())), chan_phase_entry);
7829                                 }
7830                                 Ok(())
7831                         },
7832                         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))
7833                 }
7834         }
7835
7836         fn internal_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) -> Result<(), MsgHandleErrInternal> {
7837                 let per_peer_state = self.per_peer_state.read().unwrap();
7838                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
7839                         .ok_or_else(|| {
7840                                 debug_assert!(false);
7841                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
7842                         })?;
7843                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7844                 let peer_state = &mut *peer_state_lock;
7845                 match peer_state.channel_by_id.entry(msg.channel_id) {
7846                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
7847                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7848                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
7849                                         let funding_txo = chan.context.get_funding_txo();
7850                                         let monitor_update_opt = try_chan_phase_entry!(self, chan.commitment_signed(&msg, &&logger), chan_phase_entry);
7851                                         if let Some(monitor_update) = monitor_update_opt {
7852                                                 handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update, peer_state_lock,
7853                                                         peer_state, per_peer_state, chan);
7854                                         }
7855                                         Ok(())
7856                                 } else {
7857                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
7858                                                 "Got a commitment_signed message for an unfunded channel!".into())), chan_phase_entry);
7859                                 }
7860                         },
7861                         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))
7862                 }
7863         }
7864
7865         fn push_decode_update_add_htlcs(&self, mut update_add_htlcs: (u64, Vec<msgs::UpdateAddHTLC>)) {
7866                 let mut push_forward_event = self.forward_htlcs.lock().unwrap().is_empty();
7867                 let mut decode_update_add_htlcs = self.decode_update_add_htlcs.lock().unwrap();
7868                 push_forward_event &= decode_update_add_htlcs.is_empty();
7869                 let scid = update_add_htlcs.0;
7870                 match decode_update_add_htlcs.entry(scid) {
7871                         hash_map::Entry::Occupied(mut e) => { e.get_mut().append(&mut update_add_htlcs.1); },
7872                         hash_map::Entry::Vacant(e) => { e.insert(update_add_htlcs.1); },
7873                 }
7874                 if push_forward_event { self.push_pending_forwards_ev(); }
7875         }
7876
7877         #[inline]
7878         fn forward_htlcs(&self, per_source_pending_forwards: &mut [(u64, OutPoint, ChannelId, u128, Vec<(PendingHTLCInfo, u64)>)]) {
7879                 let push_forward_event = self.forward_htlcs_without_forward_event(per_source_pending_forwards);
7880                 if push_forward_event { self.push_pending_forwards_ev() }
7881         }
7882
7883         #[inline]
7884         fn forward_htlcs_without_forward_event(&self, per_source_pending_forwards: &mut [(u64, OutPoint, ChannelId, u128, Vec<(PendingHTLCInfo, u64)>)]) -> bool {
7885                 let mut push_forward_event = false;
7886                 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 {
7887                         let mut new_intercept_events = VecDeque::new();
7888                         let mut failed_intercept_forwards = Vec::new();
7889                         if !pending_forwards.is_empty() {
7890                                 for (forward_info, prev_htlc_id) in pending_forwards.drain(..) {
7891                                         let scid = match forward_info.routing {
7892                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
7893                                                 PendingHTLCRouting::Receive { .. } => 0,
7894                                                 PendingHTLCRouting::ReceiveKeysend { .. } => 0,
7895                                         };
7896                                         // Pull this now to avoid introducing a lock order with `forward_htlcs`.
7897                                         let is_our_scid = self.short_to_chan_info.read().unwrap().contains_key(&scid);
7898
7899                                         let decode_update_add_htlcs_empty = self.decode_update_add_htlcs.lock().unwrap().is_empty();
7900                                         let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
7901                                         let forward_htlcs_empty = forward_htlcs.is_empty();
7902                                         match forward_htlcs.entry(scid) {
7903                                                 hash_map::Entry::Occupied(mut entry) => {
7904                                                         entry.get_mut().push(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
7905                                                                 prev_short_channel_id, prev_funding_outpoint, prev_channel_id, prev_htlc_id, prev_user_channel_id, forward_info }));
7906                                                 },
7907                                                 hash_map::Entry::Vacant(entry) => {
7908                                                         if !is_our_scid && forward_info.incoming_amt_msat.is_some() &&
7909                                                            fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, scid, &self.chain_hash)
7910                                                         {
7911                                                                 let intercept_id = InterceptId(Sha256::hash(&forward_info.incoming_shared_secret).to_byte_array());
7912                                                                 let mut pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
7913                                                                 match pending_intercepts.entry(intercept_id) {
7914                                                                         hash_map::Entry::Vacant(entry) => {
7915                                                                                 new_intercept_events.push_back((events::Event::HTLCIntercepted {
7916                                                                                         requested_next_hop_scid: scid,
7917                                                                                         payment_hash: forward_info.payment_hash,
7918                                                                                         inbound_amount_msat: forward_info.incoming_amt_msat.unwrap(),
7919                                                                                         expected_outbound_amount_msat: forward_info.outgoing_amt_msat,
7920                                                                                         intercept_id
7921                                                                                 }, None));
7922                                                                                 entry.insert(PendingAddHTLCInfo {
7923                                                                                         prev_short_channel_id, prev_funding_outpoint, prev_channel_id, prev_htlc_id, prev_user_channel_id, forward_info });
7924                                                                         },
7925                                                                         hash_map::Entry::Occupied(_) => {
7926                                                                                 let logger = WithContext::from(&self.logger, None, Some(prev_channel_id), Some(forward_info.payment_hash));
7927                                                                                 log_info!(logger, "Failed to forward incoming HTLC: detected duplicate intercepted payment over short channel id {}", scid);
7928                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
7929                                                                                         short_channel_id: prev_short_channel_id,
7930                                                                                         user_channel_id: Some(prev_user_channel_id),
7931                                                                                         outpoint: prev_funding_outpoint,
7932                                                                                         channel_id: prev_channel_id,
7933                                                                                         htlc_id: prev_htlc_id,
7934                                                                                         incoming_packet_shared_secret: forward_info.incoming_shared_secret,
7935                                                                                         phantom_shared_secret: None,
7936                                                                                         blinded_failure: forward_info.routing.blinded_failure(),
7937                                                                                 });
7938
7939                                                                                 failed_intercept_forwards.push((htlc_source, forward_info.payment_hash,
7940                                                                                                 HTLCFailReason::from_failure_code(0x4000 | 10),
7941                                                                                                 HTLCDestination::InvalidForward { requested_forward_scid: scid },
7942                                                                                 ));
7943                                                                         }
7944                                                                 }
7945                                                         } else {
7946                                                                 // We don't want to generate a PendingHTLCsForwardable event if only intercepted
7947                                                                 // payments are being processed.
7948                                                                 push_forward_event |= forward_htlcs_empty && decode_update_add_htlcs_empty;
7949                                                                 entry.insert(vec!(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
7950                                                                         prev_short_channel_id, prev_funding_outpoint, prev_channel_id, prev_htlc_id, prev_user_channel_id, forward_info })));
7951                                                         }
7952                                                 }
7953                                         }
7954                                 }
7955                         }
7956
7957                         for (htlc_source, payment_hash, failure_reason, destination) in failed_intercept_forwards.drain(..) {
7958                                 push_forward_event |= self.fail_htlc_backwards_internal_without_forward_event(&htlc_source, &payment_hash, &failure_reason, destination);
7959                         }
7960
7961                         if !new_intercept_events.is_empty() {
7962                                 let mut events = self.pending_events.lock().unwrap();
7963                                 events.append(&mut new_intercept_events);
7964                         }
7965                 }
7966                 push_forward_event
7967         }
7968
7969         fn push_pending_forwards_ev(&self) {
7970                 let mut pending_events = self.pending_events.lock().unwrap();
7971                 let is_processing_events = self.pending_events_processor.load(Ordering::Acquire);
7972                 let num_forward_events = pending_events.iter().filter(|(ev, _)|
7973                         if let events::Event::PendingHTLCsForwardable { .. } = ev { true } else { false }
7974                 ).count();
7975                 // We only want to push a PendingHTLCsForwardable event if no others are queued. Processing
7976                 // events is done in batches and they are not removed until we're done processing each
7977                 // batch. Since handling a `PendingHTLCsForwardable` event will call back into the
7978                 // `ChannelManager`, we'll still see the original forwarding event not removed. Phantom
7979                 // payments will need an additional forwarding event before being claimed to make them look
7980                 // real by taking more time.
7981                 if (is_processing_events && num_forward_events <= 1) || num_forward_events < 1 {
7982                         pending_events.push_back((Event::PendingHTLCsForwardable {
7983                                 time_forwardable: Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS),
7984                         }, None));
7985                 }
7986         }
7987
7988         /// Checks whether [`ChannelMonitorUpdate`]s generated by the receipt of a remote
7989         /// [`msgs::RevokeAndACK`] should be held for the given channel until some other action
7990         /// completes. Note that this needs to happen in the same [`PeerState`] mutex as any release of
7991         /// the [`ChannelMonitorUpdate`] in question.
7992         fn raa_monitor_updates_held(&self,
7993                 actions_blocking_raa_monitor_updates: &BTreeMap<ChannelId, Vec<RAAMonitorUpdateBlockingAction>>,
7994                 channel_funding_outpoint: OutPoint, channel_id: ChannelId, counterparty_node_id: PublicKey
7995         ) -> bool {
7996                 actions_blocking_raa_monitor_updates
7997                         .get(&channel_id).map(|v| !v.is_empty()).unwrap_or(false)
7998                 || self.pending_events.lock().unwrap().iter().any(|(_, action)| {
7999                         action == &Some(EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
8000                                 channel_funding_outpoint,
8001                                 channel_id,
8002                                 counterparty_node_id,
8003                         })
8004                 })
8005         }
8006
8007         #[cfg(any(test, feature = "_test_utils"))]
8008         pub(crate) fn test_raa_monitor_updates_held(&self,
8009                 counterparty_node_id: PublicKey, channel_id: ChannelId
8010         ) -> bool {
8011                 let per_peer_state = self.per_peer_state.read().unwrap();
8012                 if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
8013                         let mut peer_state_lck = peer_state_mtx.lock().unwrap();
8014                         let peer_state = &mut *peer_state_lck;
8015
8016                         if let Some(chan) = peer_state.channel_by_id.get(&channel_id) {
8017                                 return self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
8018                                         chan.context().get_funding_txo().unwrap(), channel_id, counterparty_node_id);
8019                         }
8020                 }
8021                 false
8022         }
8023
8024         fn internal_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) -> Result<(), MsgHandleErrInternal> {
8025                 let htlcs_to_fail = {
8026                         let per_peer_state = self.per_peer_state.read().unwrap();
8027                         let mut peer_state_lock = per_peer_state.get(counterparty_node_id)
8028                                 .ok_or_else(|| {
8029                                         debug_assert!(false);
8030                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
8031                                 }).map(|mtx| mtx.lock().unwrap())?;
8032                         let peer_state = &mut *peer_state_lock;
8033                         match peer_state.channel_by_id.entry(msg.channel_id) {
8034                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
8035                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
8036                                                 let logger = WithChannelContext::from(&self.logger, &chan.context, None);
8037                                                 let funding_txo_opt = chan.context.get_funding_txo();
8038                                                 let mon_update_blocked = if let Some(funding_txo) = funding_txo_opt {
8039                                                         self.raa_monitor_updates_held(
8040                                                                 &peer_state.actions_blocking_raa_monitor_updates, funding_txo, msg.channel_id,
8041                                                                 *counterparty_node_id)
8042                                                 } else { false };
8043                                                 let (htlcs_to_fail, monitor_update_opt) = try_chan_phase_entry!(self,
8044                                                         chan.revoke_and_ack(&msg, &self.fee_estimator, &&logger, mon_update_blocked), chan_phase_entry);
8045                                                 if let Some(monitor_update) = monitor_update_opt {
8046                                                         let funding_txo = funding_txo_opt
8047                                                                 .expect("Funding outpoint must have been set for RAA handling to succeed");
8048                                                         handle_new_monitor_update!(self, funding_txo, monitor_update,
8049                                                                 peer_state_lock, peer_state, per_peer_state, chan);
8050                                                 }
8051                                                 htlcs_to_fail
8052                                         } else {
8053                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
8054                                                         "Got a revoke_and_ack message for an unfunded channel!".into())), chan_phase_entry);
8055                                         }
8056                                 },
8057                                 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))
8058                         }
8059                 };
8060                 self.fail_holding_cell_htlcs(htlcs_to_fail, msg.channel_id, counterparty_node_id);
8061                 Ok(())
8062         }
8063
8064         fn internal_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) -> Result<(), MsgHandleErrInternal> {
8065                 let per_peer_state = self.per_peer_state.read().unwrap();
8066                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
8067                         .ok_or_else(|| {
8068                                 debug_assert!(false);
8069                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
8070                         })?;
8071                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8072                 let peer_state = &mut *peer_state_lock;
8073                 match peer_state.channel_by_id.entry(msg.channel_id) {
8074                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
8075                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
8076                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
8077                                         try_chan_phase_entry!(self, chan.update_fee(&self.fee_estimator, &msg, &&logger), chan_phase_entry);
8078                                 } else {
8079                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
8080                                                 "Got an update_fee message for an unfunded channel!".into())), chan_phase_entry);
8081                                 }
8082                         },
8083                         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))
8084                 }
8085                 Ok(())
8086         }
8087
8088         fn internal_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) -> Result<(), MsgHandleErrInternal> {
8089                 let per_peer_state = self.per_peer_state.read().unwrap();
8090                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
8091                         .ok_or_else(|| {
8092                                 debug_assert!(false);
8093                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
8094                         })?;
8095                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8096                 let peer_state = &mut *peer_state_lock;
8097                 match peer_state.channel_by_id.entry(msg.channel_id) {
8098                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
8099                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
8100                                         if !chan.context.is_usable() {
8101                                                 return Err(MsgHandleErrInternal::from_no_close(LightningError{err: "Got an announcement_signatures before we were ready for it".to_owned(), action: msgs::ErrorAction::IgnoreError}));
8102                                         }
8103
8104                                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
8105                                                 msg: try_chan_phase_entry!(self, chan.announcement_signatures(
8106                                                         &self.node_signer, self.chain_hash, self.best_block.read().unwrap().height,
8107                                                         msg, &self.default_configuration
8108                                                 ), chan_phase_entry),
8109                                                 // Note that announcement_signatures fails if the channel cannot be announced,
8110                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
8111                                                 update_msg: Some(self.get_channel_update_for_broadcast(chan).unwrap()),
8112                                         });
8113                                 } else {
8114                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
8115                                                 "Got an announcement_signatures message for an unfunded channel!".into())), chan_phase_entry);
8116                                 }
8117                         },
8118                         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))
8119                 }
8120                 Ok(())
8121         }
8122
8123         /// Returns DoPersist if anything changed, otherwise either SkipPersistNoEvents or an Err.
8124         fn internal_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) -> Result<NotifyOption, MsgHandleErrInternal> {
8125                 let (chan_counterparty_node_id, chan_id) = match self.short_to_chan_info.read().unwrap().get(&msg.contents.short_channel_id) {
8126                         Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
8127                         None => {
8128                                 // It's not a local channel
8129                                 return Ok(NotifyOption::SkipPersistNoEvents)
8130                         }
8131                 };
8132                 let per_peer_state = self.per_peer_state.read().unwrap();
8133                 let peer_state_mutex_opt = per_peer_state.get(&chan_counterparty_node_id);
8134                 if peer_state_mutex_opt.is_none() {
8135                         return Ok(NotifyOption::SkipPersistNoEvents)
8136                 }
8137                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
8138                 let peer_state = &mut *peer_state_lock;
8139                 match peer_state.channel_by_id.entry(chan_id) {
8140                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
8141                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
8142                                         if chan.context.get_counterparty_node_id() != *counterparty_node_id {
8143                                                 if chan.context.should_announce() {
8144                                                         // If the announcement is about a channel of ours which is public, some
8145                                                         // other peer may simply be forwarding all its gossip to us. Don't provide
8146                                                         // a scary-looking error message and return Ok instead.
8147                                                         return Ok(NotifyOption::SkipPersistNoEvents);
8148                                                 }
8149                                                 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));
8150                                         }
8151                                         let were_node_one = self.get_our_node_id().serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
8152                                         let msg_from_node_one = msg.contents.flags & 1 == 0;
8153                                         if were_node_one == msg_from_node_one {
8154                                                 return Ok(NotifyOption::SkipPersistNoEvents);
8155                                         } else {
8156                                                 let logger = WithChannelContext::from(&self.logger, &chan.context, None);
8157                                                 log_debug!(logger, "Received channel_update {:?} for channel {}.", msg, chan_id);
8158                                                 let did_change = try_chan_phase_entry!(self, chan.channel_update(&msg), chan_phase_entry);
8159                                                 // If nothing changed after applying their update, we don't need to bother
8160                                                 // persisting.
8161                                                 if !did_change {
8162                                                         return Ok(NotifyOption::SkipPersistNoEvents);
8163                                                 }
8164                                         }
8165                                 } else {
8166                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
8167                                                 "Got a channel_update for an unfunded channel!".into())), chan_phase_entry);
8168                                 }
8169                         },
8170                         hash_map::Entry::Vacant(_) => return Ok(NotifyOption::SkipPersistNoEvents)
8171                 }
8172                 Ok(NotifyOption::DoPersist)
8173         }
8174
8175         fn internal_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) -> Result<NotifyOption, MsgHandleErrInternal> {
8176                 let need_lnd_workaround = {
8177                         let per_peer_state = self.per_peer_state.read().unwrap();
8178
8179                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
8180                                 .ok_or_else(|| {
8181                                         debug_assert!(false);
8182                                         MsgHandleErrInternal::send_err_msg_no_close(
8183                                                 format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id),
8184                                                 msg.channel_id
8185                                         )
8186                                 })?;
8187                         let logger = WithContext::from(&self.logger, Some(*counterparty_node_id), Some(msg.channel_id), None);
8188                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8189                         let peer_state = &mut *peer_state_lock;
8190                         match peer_state.channel_by_id.entry(msg.channel_id) {
8191                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
8192                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
8193                                                 // Currently, we expect all holding cell update_adds to be dropped on peer
8194                                                 // disconnect, so Channel's reestablish will never hand us any holding cell
8195                                                 // freed HTLCs to fail backwards. If in the future we no longer drop pending
8196                                                 // add-HTLCs on disconnect, we may be handed HTLCs to fail backwards here.
8197                                                 let responses = try_chan_phase_entry!(self, chan.channel_reestablish(
8198                                                         msg, &&logger, &self.node_signer, self.chain_hash,
8199                                                         &self.default_configuration, &*self.best_block.read().unwrap()), chan_phase_entry);
8200                                                 let mut channel_update = None;
8201                                                 if let Some(msg) = responses.shutdown_msg {
8202                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
8203                                                                 node_id: counterparty_node_id.clone(),
8204                                                                 msg,
8205                                                         });
8206                                                 } else if chan.context.is_usable() {
8207                                                         // If the channel is in a usable state (ie the channel is not being shut
8208                                                         // down), send a unicast channel_update to our counterparty to make sure
8209                                                         // they have the latest channel parameters.
8210                                                         if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
8211                                                                 channel_update = Some(events::MessageSendEvent::SendChannelUpdate {
8212                                                                         node_id: chan.context.get_counterparty_node_id(),
8213                                                                         msg,
8214                                                                 });
8215                                                         }
8216                                                 }
8217                                                 let need_lnd_workaround = chan.context.workaround_lnd_bug_4006.take();
8218                                                 let (htlc_forwards, decode_update_add_htlcs) = self.handle_channel_resumption(
8219                                                         &mut peer_state.pending_msg_events, chan, responses.raa, responses.commitment_update, responses.order,
8220                                                         Vec::new(), Vec::new(), None, responses.channel_ready, responses.announcement_sigs);
8221                                                 debug_assert!(htlc_forwards.is_none());
8222                                                 debug_assert!(decode_update_add_htlcs.is_none());
8223                                                 if let Some(upd) = channel_update {
8224                                                         peer_state.pending_msg_events.push(upd);
8225                                                 }
8226                                                 need_lnd_workaround
8227                                         } else {
8228                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
8229                                                         "Got a channel_reestablish message for an unfunded channel!".into())), chan_phase_entry);
8230                                         }
8231                                 },
8232                                 hash_map::Entry::Vacant(_) => {
8233                                         log_debug!(logger, "Sending bogus ChannelReestablish for unknown channel {} to force channel closure",
8234                                                 msg.channel_id);
8235                                         // Unfortunately, lnd doesn't force close on errors
8236                                         // (https://github.com/lightningnetwork/lnd/blob/abb1e3463f3a83bbb843d5c399869dbe930ad94f/htlcswitch/link.go#L2119).
8237                                         // One of the few ways to get an lnd counterparty to force close is by
8238                                         // replicating what they do when restoring static channel backups (SCBs). They
8239                                         // send an invalid `ChannelReestablish` with `0` commitment numbers and an
8240                                         // invalid `your_last_per_commitment_secret`.
8241                                         //
8242                                         // Since we received a `ChannelReestablish` for a channel that doesn't exist, we
8243                                         // can assume it's likely the channel closed from our point of view, but it
8244                                         // remains open on the counterparty's side. By sending this bogus
8245                                         // `ChannelReestablish` message now as a response to theirs, we trigger them to
8246                                         // force close broadcasting their latest state. If the closing transaction from
8247                                         // our point of view remains unconfirmed, it'll enter a race with the
8248                                         // counterparty's to-be-broadcast latest commitment transaction.
8249                                         peer_state.pending_msg_events.push(MessageSendEvent::SendChannelReestablish {
8250                                                 node_id: *counterparty_node_id,
8251                                                 msg: msgs::ChannelReestablish {
8252                                                         channel_id: msg.channel_id,
8253                                                         next_local_commitment_number: 0,
8254                                                         next_remote_commitment_number: 0,
8255                                                         your_last_per_commitment_secret: [1u8; 32],
8256                                                         my_current_per_commitment_point: PublicKey::from_slice(&[2u8; 33]).unwrap(),
8257                                                         next_funding_txid: None,
8258                                                 },
8259                                         });
8260                                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
8261                                                 format!("Got a message for a channel from the wrong node! No such channel for the passed counterparty_node_id {}",
8262                                                         counterparty_node_id), msg.channel_id)
8263                                         )
8264                                 }
8265                         }
8266                 };
8267
8268                 if let Some(channel_ready_msg) = need_lnd_workaround {
8269                         self.internal_channel_ready(counterparty_node_id, &channel_ready_msg)?;
8270                 }
8271                 Ok(NotifyOption::SkipPersistHandleEvents)
8272         }
8273
8274         /// Process pending events from the [`chain::Watch`], returning whether any events were processed.
8275         fn process_pending_monitor_events(&self) -> bool {
8276                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
8277
8278                 let mut failed_channels = Vec::new();
8279                 let mut pending_monitor_events = self.chain_monitor.release_pending_monitor_events();
8280                 let has_pending_monitor_events = !pending_monitor_events.is_empty();
8281                 for (funding_outpoint, channel_id, mut monitor_events, counterparty_node_id) in pending_monitor_events.drain(..) {
8282                         for monitor_event in monitor_events.drain(..) {
8283                                 match monitor_event {
8284                                         MonitorEvent::HTLCEvent(htlc_update) => {
8285                                                 let logger = WithContext::from(&self.logger, counterparty_node_id, Some(channel_id), Some(htlc_update.payment_hash));
8286                                                 if let Some(preimage) = htlc_update.payment_preimage {
8287                                                         log_trace!(logger, "Claiming HTLC with preimage {} from our monitor", preimage);
8288                                                         self.claim_funds_internal(htlc_update.source, preimage,
8289                                                                 htlc_update.htlc_value_satoshis.map(|v| v * 1000), None, true,
8290                                                                 false, counterparty_node_id, funding_outpoint, channel_id, None);
8291                                                 } else {
8292                                                         log_trace!(logger, "Failing HTLC with hash {} from our monitor", &htlc_update.payment_hash);
8293                                                         let receiver = HTLCDestination::NextHopChannel { node_id: counterparty_node_id, channel_id };
8294                                                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
8295                                                         self.fail_htlc_backwards_internal(&htlc_update.source, &htlc_update.payment_hash, &reason, receiver);
8296                                                 }
8297                                         },
8298                                         MonitorEvent::HolderForceClosed(_) | MonitorEvent::HolderForceClosedWithInfo { .. } => {
8299                                                 let counterparty_node_id_opt = match counterparty_node_id {
8300                                                         Some(cp_id) => Some(cp_id),
8301                                                         None => {
8302                                                                 // TODO: Once we can rely on the counterparty_node_id from the
8303                                                                 // monitor event, this and the outpoint_to_peer map should be removed.
8304                                                                 let outpoint_to_peer = self.outpoint_to_peer.lock().unwrap();
8305                                                                 outpoint_to_peer.get(&funding_outpoint).cloned()
8306                                                         }
8307                                                 };
8308                                                 if let Some(counterparty_node_id) = counterparty_node_id_opt {
8309                                                         let per_peer_state = self.per_peer_state.read().unwrap();
8310                                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
8311                                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8312                                                                 let peer_state = &mut *peer_state_lock;
8313                                                                 let pending_msg_events = &mut peer_state.pending_msg_events;
8314                                                                 if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(channel_id) {
8315                                                                         if let ChannelPhase::Funded(mut chan) = remove_channel_phase!(self, chan_phase_entry) {
8316                                                                                 let reason = if let MonitorEvent::HolderForceClosedWithInfo { reason, .. } = monitor_event {
8317                                                                                         reason
8318                                                                                 } else {
8319                                                                                         ClosureReason::HolderForceClosed
8320                                                                                 };
8321                                                                                 failed_channels.push(chan.context.force_shutdown(false, reason.clone()));
8322                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
8323                                                                                         let mut pending_broadcast_messages = self.pending_broadcast_messages.lock().unwrap();
8324                                                                                         pending_broadcast_messages.push(events::MessageSendEvent::BroadcastChannelUpdate {
8325                                                                                                 msg: update
8326                                                                                         });
8327                                                                                 }
8328                                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
8329                                                                                         node_id: chan.context.get_counterparty_node_id(),
8330                                                                                         action: msgs::ErrorAction::DisconnectPeer {
8331                                                                                                 msg: Some(msgs::ErrorMessage { channel_id: chan.context.channel_id(), data: reason.to_string() })
8332                                                                                         },
8333                                                                                 });
8334                                                                         }
8335                                                                 }
8336                                                         }
8337                                                 }
8338                                         },
8339                                         MonitorEvent::Completed { funding_txo, channel_id, monitor_update_id } => {
8340                                                 self.channel_monitor_updated(&funding_txo, &channel_id, monitor_update_id, counterparty_node_id.as_ref());
8341                                         },
8342                                 }
8343                         }
8344                 }
8345
8346                 for failure in failed_channels.drain(..) {
8347                         self.finish_close_channel(failure);
8348                 }
8349
8350                 has_pending_monitor_events
8351         }
8352
8353         /// In chanmon_consistency_target, we'd like to be able to restore monitor updating without
8354         /// handling all pending events (i.e. not PendingHTLCsForwardable). Thus, we expose monitor
8355         /// update events as a separate process method here.
8356         #[cfg(fuzzing)]
8357         pub fn process_monitor_events(&self) {
8358                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8359                 self.process_pending_monitor_events();
8360         }
8361
8362         /// Check the holding cell in each channel and free any pending HTLCs in them if possible.
8363         /// Returns whether there were any updates such as if pending HTLCs were freed or a monitor
8364         /// update was applied.
8365         fn check_free_holding_cells(&self) -> bool {
8366                 let mut has_monitor_update = false;
8367                 let mut failed_htlcs = Vec::new();
8368
8369                 // Walk our list of channels and find any that need to update. Note that when we do find an
8370                 // update, if it includes actions that must be taken afterwards, we have to drop the
8371                 // per-peer state lock as well as the top level per_peer_state lock. Thus, we loop until we
8372                 // manage to go through all our peers without finding a single channel to update.
8373                 'peer_loop: loop {
8374                         let per_peer_state = self.per_peer_state.read().unwrap();
8375                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
8376                                 'chan_loop: loop {
8377                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8378                                         let peer_state: &mut PeerState<_> = &mut *peer_state_lock;
8379                                         for (channel_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
8380                                                 |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
8381                                         ) {
8382                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
8383                                                 let funding_txo = chan.context.get_funding_txo();
8384                                                 let (monitor_opt, holding_cell_failed_htlcs) =
8385                                                         chan.maybe_free_holding_cell_htlcs(&self.fee_estimator, &&WithChannelContext::from(&self.logger, &chan.context, None));
8386                                                 if !holding_cell_failed_htlcs.is_empty() {
8387                                                         failed_htlcs.push((holding_cell_failed_htlcs, *channel_id, counterparty_node_id));
8388                                                 }
8389                                                 if let Some(monitor_update) = monitor_opt {
8390                                                         has_monitor_update = true;
8391
8392                                                         handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update,
8393                                                                 peer_state_lock, peer_state, per_peer_state, chan);
8394                                                         continue 'peer_loop;
8395                                                 }
8396                                         }
8397                                         break 'chan_loop;
8398                                 }
8399                         }
8400                         break 'peer_loop;
8401                 }
8402
8403                 let has_update = has_monitor_update || !failed_htlcs.is_empty();
8404                 for (failures, channel_id, counterparty_node_id) in failed_htlcs.drain(..) {
8405                         self.fail_holding_cell_htlcs(failures, channel_id, &counterparty_node_id);
8406                 }
8407
8408                 has_update
8409         }
8410
8411         /// When a call to a [`ChannelSigner`] method returns an error, this indicates that the signer
8412         /// is (temporarily) unavailable, and the operation should be retried later.
8413         ///
8414         /// This method allows for that retry - either checking for any signer-pending messages to be
8415         /// attempted in every channel, or in the specifically provided channel.
8416         ///
8417         /// [`ChannelSigner`]: crate::sign::ChannelSigner
8418         #[cfg(async_signing)]
8419         pub fn signer_unblocked(&self, channel_opt: Option<(PublicKey, ChannelId)>) {
8420                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8421
8422                 let unblock_chan = |phase: &mut ChannelPhase<SP>, pending_msg_events: &mut Vec<MessageSendEvent>| {
8423                         let node_id = phase.context().get_counterparty_node_id();
8424                         match phase {
8425                                 ChannelPhase::Funded(chan) => {
8426                                         let msgs = chan.signer_maybe_unblocked(&self.logger);
8427                                         if let Some(updates) = msgs.commitment_update {
8428                                                 pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
8429                                                         node_id,
8430                                                         updates,
8431                                                 });
8432                                         }
8433                                         if let Some(msg) = msgs.funding_signed {
8434                                                 pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
8435                                                         node_id,
8436                                                         msg,
8437                                                 });
8438                                         }
8439                                         if let Some(msg) = msgs.channel_ready {
8440                                                 send_channel_ready!(self, pending_msg_events, chan, msg);
8441                                         }
8442                                 }
8443                                 ChannelPhase::UnfundedOutboundV1(chan) => {
8444                                         if let Some(msg) = chan.signer_maybe_unblocked(&self.logger) {
8445                                                 pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
8446                                                         node_id,
8447                                                         msg,
8448                                                 });
8449                                         }
8450                                 }
8451                                 ChannelPhase::UnfundedInboundV1(_) => {},
8452                         }
8453                 };
8454
8455                 let per_peer_state = self.per_peer_state.read().unwrap();
8456                 if let Some((counterparty_node_id, channel_id)) = channel_opt {
8457                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
8458                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8459                                 let peer_state = &mut *peer_state_lock;
8460                                 if let Some(chan) = peer_state.channel_by_id.get_mut(&channel_id) {
8461                                         unblock_chan(chan, &mut peer_state.pending_msg_events);
8462                                 }
8463                         }
8464                 } else {
8465                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
8466                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8467                                 let peer_state = &mut *peer_state_lock;
8468                                 for (_, chan) in peer_state.channel_by_id.iter_mut() {
8469                                         unblock_chan(chan, &mut peer_state.pending_msg_events);
8470                                 }
8471                         }
8472                 }
8473         }
8474
8475         /// Check whether any channels have finished removing all pending updates after a shutdown
8476         /// exchange and can now send a closing_signed.
8477         /// Returns whether any closing_signed messages were generated.
8478         fn maybe_generate_initial_closing_signed(&self) -> bool {
8479                 let mut handle_errors: Vec<(PublicKey, Result<(), _>)> = Vec::new();
8480                 let mut has_update = false;
8481                 let mut shutdown_results = Vec::new();
8482                 {
8483                         let per_peer_state = self.per_peer_state.read().unwrap();
8484
8485                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
8486                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8487                                 let peer_state = &mut *peer_state_lock;
8488                                 let pending_msg_events = &mut peer_state.pending_msg_events;
8489                                 peer_state.channel_by_id.retain(|channel_id, phase| {
8490                                         match phase {
8491                                                 ChannelPhase::Funded(chan) => {
8492                                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
8493                                                         match chan.maybe_propose_closing_signed(&self.fee_estimator, &&logger) {
8494                                                                 Ok((msg_opt, tx_opt, shutdown_result_opt)) => {
8495                                                                         if let Some(msg) = msg_opt {
8496                                                                                 has_update = true;
8497                                                                                 pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
8498                                                                                         node_id: chan.context.get_counterparty_node_id(), msg,
8499                                                                                 });
8500                                                                         }
8501                                                                         debug_assert_eq!(shutdown_result_opt.is_some(), chan.is_shutdown());
8502                                                                         if let Some(shutdown_result) = shutdown_result_opt {
8503                                                                                 shutdown_results.push(shutdown_result);
8504                                                                         }
8505                                                                         if let Some(tx) = tx_opt {
8506                                                                                 // We're done with this channel. We got a closing_signed and sent back
8507                                                                                 // a closing_signed with a closing transaction to broadcast.
8508                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
8509                                                                                         let mut pending_broadcast_messages = self.pending_broadcast_messages.lock().unwrap();
8510                                                                                         pending_broadcast_messages.push(events::MessageSendEvent::BroadcastChannelUpdate {
8511                                                                                                 msg: update
8512                                                                                         });
8513                                                                                 }
8514
8515                                                                                 log_info!(logger, "Broadcasting {}", log_tx!(tx));
8516                                                                                 self.tx_broadcaster.broadcast_transactions(&[&tx]);
8517                                                                                 update_maps_on_chan_removal!(self, &chan.context);
8518                                                                                 false
8519                                                                         } else { true }
8520                                                                 },
8521                                                                 Err(e) => {
8522                                                                         has_update = true;
8523                                                                         let (close_channel, res) = convert_chan_phase_err!(self, e, chan, channel_id, FUNDED_CHANNEL);
8524                                                                         handle_errors.push((chan.context.get_counterparty_node_id(), Err(res)));
8525                                                                         !close_channel
8526                                                                 }
8527                                                         }
8528                                                 },
8529                                                 _ => true, // Retain unfunded channels if present.
8530                                         }
8531                                 });
8532                         }
8533                 }
8534
8535                 for (counterparty_node_id, err) in handle_errors.drain(..) {
8536                         let _ = handle_error!(self, err, counterparty_node_id);
8537                 }
8538
8539                 for shutdown_result in shutdown_results.drain(..) {
8540                         self.finish_close_channel(shutdown_result);
8541                 }
8542
8543                 has_update
8544         }
8545
8546         /// Handle a list of channel failures during a block_connected or block_disconnected call,
8547         /// pushing the channel monitor update (if any) to the background events queue and removing the
8548         /// Channel object.
8549         fn handle_init_event_channel_failures(&self, mut failed_channels: Vec<ShutdownResult>) {
8550                 for mut failure in failed_channels.drain(..) {
8551                         // Either a commitment transactions has been confirmed on-chain or
8552                         // Channel::block_disconnected detected that the funding transaction has been
8553                         // reorganized out of the main chain.
8554                         // We cannot broadcast our latest local state via monitor update (as
8555                         // Channel::force_shutdown tries to make us do) as we may still be in initialization,
8556                         // so we track the update internally and handle it when the user next calls
8557                         // timer_tick_occurred, guaranteeing we're running normally.
8558                         if let Some((counterparty_node_id, funding_txo, channel_id, update)) = failure.monitor_update.take() {
8559                                 assert_eq!(update.updates.len(), 1);
8560                                 if let ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } = update.updates[0] {
8561                                         assert!(should_broadcast);
8562                                 } else { unreachable!(); }
8563                                 self.pending_background_events.lock().unwrap().push(
8564                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
8565                                                 counterparty_node_id, funding_txo, update, channel_id,
8566                                         });
8567                         }
8568                         self.finish_close_channel(failure);
8569                 }
8570         }
8571 }
8572
8573 macro_rules! create_offer_builder { ($self: ident, $builder: ty) => {
8574         /// Creates an [`OfferBuilder`] such that the [`Offer`] it builds is recognized by the
8575         /// [`ChannelManager`] when handling [`InvoiceRequest`] messages for the offer. The offer will
8576         /// not have an expiration unless otherwise set on the builder.
8577         ///
8578         /// # Privacy
8579         ///
8580         /// Uses [`MessageRouter::create_blinded_paths`] to construct a [`BlindedPath`] for the offer.
8581         /// However, if one is not found, uses a one-hop [`BlindedPath`] with
8582         /// [`ChannelManager::get_our_node_id`] as the introduction node instead. In the latter case,
8583         /// the node must be announced, otherwise, there is no way to find a path to the introduction in
8584         /// order to send the [`InvoiceRequest`].
8585         ///
8586         /// Also, uses a derived signing pubkey in the offer for recipient privacy.
8587         ///
8588         /// # Limitations
8589         ///
8590         /// Requires a direct connection to the introduction node in the responding [`InvoiceRequest`]'s
8591         /// reply path.
8592         ///
8593         /// # Errors
8594         ///
8595         /// Errors if the parameterized [`Router`] is unable to create a blinded path for the offer.
8596         ///
8597         /// [`Offer`]: crate::offers::offer::Offer
8598         /// [`InvoiceRequest`]: crate::offers::invoice_request::InvoiceRequest
8599         pub fn create_offer_builder(&$self) -> Result<$builder, Bolt12SemanticError> {
8600                 let node_id = $self.get_our_node_id();
8601                 let expanded_key = &$self.inbound_payment_key;
8602                 let entropy = &*$self.entropy_source;
8603                 let secp_ctx = &$self.secp_ctx;
8604
8605                 let path = $self.create_blinded_path().map_err(|_| Bolt12SemanticError::MissingPaths)?;
8606                 let builder = OfferBuilder::deriving_signing_pubkey(
8607                         node_id, expanded_key, entropy, secp_ctx
8608                 )
8609                         .chain_hash($self.chain_hash)
8610                         .path(path);
8611
8612                 Ok(builder.into())
8613         }
8614 } }
8615
8616 macro_rules! create_refund_builder { ($self: ident, $builder: ty) => {
8617         /// Creates a [`RefundBuilder`] such that the [`Refund`] it builds is recognized by the
8618         /// [`ChannelManager`] when handling [`Bolt12Invoice`] messages for the refund.
8619         ///
8620         /// # Payment
8621         ///
8622         /// The provided `payment_id` is used to ensure that only one invoice is paid for the refund.
8623         /// See [Avoiding Duplicate Payments] for other requirements once the payment has been sent.
8624         ///
8625         /// The builder will have the provided expiration set. Any changes to the expiration on the
8626         /// returned builder will not be honored by [`ChannelManager`]. For `no-std`, the highest seen
8627         /// block time minus two hours is used for the current time when determining if the refund has
8628         /// expired.
8629         ///
8630         /// To revoke the refund, use [`ChannelManager::abandon_payment`] prior to receiving the
8631         /// invoice. If abandoned, or an invoice isn't received before expiration, the payment will fail
8632         /// with an [`Event::InvoiceRequestFailed`].
8633         ///
8634         /// If `max_total_routing_fee_msat` is not specified, The default from
8635         /// [`RouteParameters::from_payment_params_and_value`] is applied.
8636         ///
8637         /// # Privacy
8638         ///
8639         /// Uses [`MessageRouter::create_blinded_paths`] to construct a [`BlindedPath`] for the refund.
8640         /// However, if one is not found, uses a one-hop [`BlindedPath`] with
8641         /// [`ChannelManager::get_our_node_id`] as the introduction node instead. In the latter case,
8642         /// the node must be announced, otherwise, there is no way to find a path to the introduction in
8643         /// order to send the [`Bolt12Invoice`].
8644         ///
8645         /// Also, uses a derived payer id in the refund for payer privacy.
8646         ///
8647         /// # Limitations
8648         ///
8649         /// Requires a direct connection to an introduction node in the responding
8650         /// [`Bolt12Invoice::payment_paths`].
8651         ///
8652         /// # Errors
8653         ///
8654         /// Errors if:
8655         /// - a duplicate `payment_id` is provided given the caveats in the aforementioned link,
8656         /// - `amount_msats` is invalid, or
8657         /// - the parameterized [`Router`] is unable to create a blinded path for the refund.
8658         ///
8659         /// [`Refund`]: crate::offers::refund::Refund
8660         /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
8661         /// [`Bolt12Invoice::payment_paths`]: crate::offers::invoice::Bolt12Invoice::payment_paths
8662         /// [Avoiding Duplicate Payments]: #avoiding-duplicate-payments
8663         pub fn create_refund_builder(
8664                 &$self, amount_msats: u64, absolute_expiry: Duration, payment_id: PaymentId,
8665                 retry_strategy: Retry, max_total_routing_fee_msat: Option<u64>
8666         ) -> Result<$builder, Bolt12SemanticError> {
8667                 let node_id = $self.get_our_node_id();
8668                 let expanded_key = &$self.inbound_payment_key;
8669                 let entropy = &*$self.entropy_source;
8670                 let secp_ctx = &$self.secp_ctx;
8671
8672                 let path = $self.create_blinded_path().map_err(|_| Bolt12SemanticError::MissingPaths)?;
8673                 let builder = RefundBuilder::deriving_payer_id(
8674                         node_id, expanded_key, entropy, secp_ctx, amount_msats, payment_id
8675                 )?
8676                         .chain_hash($self.chain_hash)
8677                         .absolute_expiry(absolute_expiry)
8678                         .path(path);
8679
8680                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop($self);
8681
8682                 let expiration = StaleExpiration::AbsoluteTimeout(absolute_expiry);
8683                 $self.pending_outbound_payments
8684                         .add_new_awaiting_invoice(
8685                                 payment_id, expiration, retry_strategy, max_total_routing_fee_msat,
8686                         )
8687                         .map_err(|_| Bolt12SemanticError::DuplicatePaymentId)?;
8688
8689                 Ok(builder.into())
8690         }
8691 } }
8692
8693 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>
8694 where
8695         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
8696         T::Target: BroadcasterInterface,
8697         ES::Target: EntropySource,
8698         NS::Target: NodeSigner,
8699         SP::Target: SignerProvider,
8700         F::Target: FeeEstimator,
8701         R::Target: Router,
8702         L::Target: Logger,
8703 {
8704         #[cfg(not(c_bindings))]
8705         create_offer_builder!(self, OfferBuilder<DerivedMetadata, secp256k1::All>);
8706         #[cfg(not(c_bindings))]
8707         create_refund_builder!(self, RefundBuilder<secp256k1::All>);
8708
8709         #[cfg(c_bindings)]
8710         create_offer_builder!(self, OfferWithDerivedMetadataBuilder);
8711         #[cfg(c_bindings)]
8712         create_refund_builder!(self, RefundMaybeWithDerivedMetadataBuilder);
8713
8714         /// Pays for an [`Offer`] using the given parameters by creating an [`InvoiceRequest`] and
8715         /// enqueuing it to be sent via an onion message. [`ChannelManager`] will pay the actual
8716         /// [`Bolt12Invoice`] once it is received.
8717         ///
8718         /// Uses [`InvoiceRequestBuilder`] such that the [`InvoiceRequest`] it builds is recognized by
8719         /// the [`ChannelManager`] when handling a [`Bolt12Invoice`] message in response to the request.
8720         /// The optional parameters are used in the builder, if `Some`:
8721         /// - `quantity` for [`InvoiceRequest::quantity`] which must be set if
8722         ///   [`Offer::expects_quantity`] is `true`.
8723         /// - `amount_msats` if overpaying what is required for the given `quantity` is desired, and
8724         /// - `payer_note` for [`InvoiceRequest::payer_note`].
8725         ///
8726         /// If `max_total_routing_fee_msat` is not specified, The default from
8727         /// [`RouteParameters::from_payment_params_and_value`] is applied.
8728         ///
8729         /// # Payment
8730         ///
8731         /// The provided `payment_id` is used to ensure that only one invoice is paid for the request
8732         /// when received. See [Avoiding Duplicate Payments] for other requirements once the payment has
8733         /// been sent.
8734         ///
8735         /// To revoke the request, use [`ChannelManager::abandon_payment`] prior to receiving the
8736         /// invoice. If abandoned, or an invoice isn't received in a reasonable amount of time, the
8737         /// payment will fail with an [`Event::InvoiceRequestFailed`].
8738         ///
8739         /// # Privacy
8740         ///
8741         /// Uses a one-hop [`BlindedPath`] for the reply path with [`ChannelManager::get_our_node_id`]
8742         /// as the introduction node and a derived payer id for payer privacy. As such, currently, the
8743         /// node must be announced. Otherwise, there is no way to find a path to the introduction node
8744         /// in order to send the [`Bolt12Invoice`].
8745         ///
8746         /// # Limitations
8747         ///
8748         /// Requires a direct connection to an introduction node in [`Offer::paths`] or to
8749         /// [`Offer::signing_pubkey`], if empty. A similar restriction applies to the responding
8750         /// [`Bolt12Invoice::payment_paths`].
8751         ///
8752         /// # Errors
8753         ///
8754         /// Errors if:
8755         /// - a duplicate `payment_id` is provided given the caveats in the aforementioned link,
8756         /// - the provided parameters are invalid for the offer,
8757         /// - the offer is for an unsupported chain, or
8758         /// - the parameterized [`Router`] is unable to create a blinded reply path for the invoice
8759         ///   request.
8760         ///
8761         /// [`InvoiceRequest`]: crate::offers::invoice_request::InvoiceRequest
8762         /// [`InvoiceRequest::quantity`]: crate::offers::invoice_request::InvoiceRequest::quantity
8763         /// [`InvoiceRequest::payer_note`]: crate::offers::invoice_request::InvoiceRequest::payer_note
8764         /// [`InvoiceRequestBuilder`]: crate::offers::invoice_request::InvoiceRequestBuilder
8765         /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
8766         /// [`Bolt12Invoice::payment_paths`]: crate::offers::invoice::Bolt12Invoice::payment_paths
8767         /// [Avoiding Duplicate Payments]: #avoiding-duplicate-payments
8768         pub fn pay_for_offer(
8769                 &self, offer: &Offer, quantity: Option<u64>, amount_msats: Option<u64>,
8770                 payer_note: Option<String>, payment_id: PaymentId, retry_strategy: Retry,
8771                 max_total_routing_fee_msat: Option<u64>
8772         ) -> Result<(), Bolt12SemanticError> {
8773                 let expanded_key = &self.inbound_payment_key;
8774                 let entropy = &*self.entropy_source;
8775                 let secp_ctx = &self.secp_ctx;
8776
8777                 let builder: InvoiceRequestBuilder<DerivedPayerId, secp256k1::All> = offer
8778                         .request_invoice_deriving_payer_id(expanded_key, entropy, secp_ctx, payment_id)?
8779                         .into();
8780                 let builder = builder.chain_hash(self.chain_hash)?;
8781
8782                 let builder = match quantity {
8783                         None => builder,
8784                         Some(quantity) => builder.quantity(quantity)?,
8785                 };
8786                 let builder = match amount_msats {
8787                         None => builder,
8788                         Some(amount_msats) => builder.amount_msats(amount_msats)?,
8789                 };
8790                 let builder = match payer_note {
8791                         None => builder,
8792                         Some(payer_note) => builder.payer_note(payer_note),
8793                 };
8794                 let invoice_request = builder.build_and_sign()?;
8795                 let reply_path = self.create_blinded_path().map_err(|_| Bolt12SemanticError::MissingPaths)?;
8796
8797                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8798
8799                 let expiration = StaleExpiration::TimerTicks(1);
8800                 self.pending_outbound_payments
8801                         .add_new_awaiting_invoice(
8802                                 payment_id, expiration, retry_strategy, max_total_routing_fee_msat
8803                         )
8804                         .map_err(|_| Bolt12SemanticError::DuplicatePaymentId)?;
8805
8806                 let mut pending_offers_messages = self.pending_offers_messages.lock().unwrap();
8807                 if !offer.paths().is_empty() {
8808                         // Send as many invoice requests as there are paths in the offer (with an upper bound).
8809                         // Using only one path could result in a failure if the path no longer exists. But only
8810                         // one invoice for a given payment id will be paid, even if more than one is received.
8811                         const REQUEST_LIMIT: usize = 10;
8812                         for path in offer.paths().into_iter().take(REQUEST_LIMIT) {
8813                                 let message = new_pending_onion_message(
8814                                         OffersMessage::InvoiceRequest(invoice_request.clone()),
8815                                         Destination::BlindedPath(path.clone()),
8816                                         Some(reply_path.clone()),
8817                                 );
8818                                 pending_offers_messages.push(message);
8819                         }
8820                 } else if let Some(signing_pubkey) = offer.signing_pubkey() {
8821                         let message = new_pending_onion_message(
8822                                 OffersMessage::InvoiceRequest(invoice_request),
8823                                 Destination::Node(signing_pubkey),
8824                                 Some(reply_path),
8825                         );
8826                         pending_offers_messages.push(message);
8827                 } else {
8828                         debug_assert!(false);
8829                         return Err(Bolt12SemanticError::MissingSigningPubkey);
8830                 }
8831
8832                 Ok(())
8833         }
8834
8835         /// Creates a [`Bolt12Invoice`] for a [`Refund`] and enqueues it to be sent via an onion
8836         /// message.
8837         ///
8838         /// The resulting invoice uses a [`PaymentHash`] recognized by the [`ChannelManager`] and a
8839         /// [`BlindedPath`] containing the [`PaymentSecret`] needed to reconstruct the corresponding
8840         /// [`PaymentPreimage`]. It is returned purely for informational purposes.
8841         ///
8842         /// # Limitations
8843         ///
8844         /// Requires a direct connection to an introduction node in [`Refund::paths`] or to
8845         /// [`Refund::payer_id`], if empty. This request is best effort; an invoice will be sent to each
8846         /// node meeting the aforementioned criteria, but there's no guarantee that they will be
8847         /// received and no retries will be made.
8848         ///
8849         /// # Errors
8850         ///
8851         /// Errors if:
8852         /// - the refund is for an unsupported chain, or
8853         /// - the parameterized [`Router`] is unable to create a blinded payment path or reply path for
8854         ///   the invoice.
8855         ///
8856         /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
8857         pub fn request_refund_payment(
8858                 &self, refund: &Refund
8859         ) -> Result<Bolt12Invoice, Bolt12SemanticError> {
8860                 let expanded_key = &self.inbound_payment_key;
8861                 let entropy = &*self.entropy_source;
8862                 let secp_ctx = &self.secp_ctx;
8863
8864                 let amount_msats = refund.amount_msats();
8865                 let relative_expiry = DEFAULT_RELATIVE_EXPIRY.as_secs() as u32;
8866
8867                 if refund.chain() != self.chain_hash {
8868                         return Err(Bolt12SemanticError::UnsupportedChain);
8869                 }
8870
8871                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8872
8873                 match self.create_inbound_payment(Some(amount_msats), relative_expiry, None) {
8874                         Ok((payment_hash, payment_secret)) => {
8875                                 let payment_context = PaymentContext::Bolt12Refund(Bolt12RefundContext {});
8876                                 let payment_paths = self.create_blinded_payment_paths(
8877                                         amount_msats, payment_secret, payment_context
8878                                 )
8879                                         .map_err(|_| Bolt12SemanticError::MissingPaths)?;
8880
8881                                 #[cfg(feature = "std")]
8882                                 let builder = refund.respond_using_derived_keys(
8883                                         payment_paths, payment_hash, expanded_key, entropy
8884                                 )?;
8885                                 #[cfg(not(feature = "std"))]
8886                                 let created_at = Duration::from_secs(
8887                                         self.highest_seen_timestamp.load(Ordering::Acquire) as u64
8888                                 );
8889                                 #[cfg(not(feature = "std"))]
8890                                 let builder = refund.respond_using_derived_keys_no_std(
8891                                         payment_paths, payment_hash, created_at, expanded_key, entropy
8892                                 )?;
8893                                 let builder: InvoiceBuilder<DerivedSigningPubkey> = builder.into();
8894                                 let invoice = builder.allow_mpp().build_and_sign(secp_ctx)?;
8895                                 let reply_path = self.create_blinded_path()
8896                                         .map_err(|_| Bolt12SemanticError::MissingPaths)?;
8897
8898                                 let mut pending_offers_messages = self.pending_offers_messages.lock().unwrap();
8899                                 if refund.paths().is_empty() {
8900                                         let message = new_pending_onion_message(
8901                                                 OffersMessage::Invoice(invoice.clone()),
8902                                                 Destination::Node(refund.payer_id()),
8903                                                 Some(reply_path),
8904                                         );
8905                                         pending_offers_messages.push(message);
8906                                 } else {
8907                                         for path in refund.paths() {
8908                                                 let message = new_pending_onion_message(
8909                                                         OffersMessage::Invoice(invoice.clone()),
8910                                                         Destination::BlindedPath(path.clone()),
8911                                                         Some(reply_path.clone()),
8912                                                 );
8913                                                 pending_offers_messages.push(message);
8914                                         }
8915                                 }
8916
8917                                 Ok(invoice)
8918                         },
8919                         Err(()) => Err(Bolt12SemanticError::InvalidAmount),
8920                 }
8921         }
8922
8923         /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
8924         /// to pay us.
8925         ///
8926         /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
8927         /// [`PaymentHash`] and [`PaymentPreimage`] for you.
8928         ///
8929         /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentClaimable`] event, which
8930         /// will have the [`PaymentClaimable::purpose`] return `Some` for [`PaymentPurpose::preimage`]. That
8931         /// should then be passed directly to [`claim_funds`].
8932         ///
8933         /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
8934         ///
8935         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
8936         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
8937         ///
8938         /// # Note
8939         ///
8940         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
8941         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
8942         ///
8943         /// Errors if `min_value_msat` is greater than total bitcoin supply.
8944         ///
8945         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
8946         /// on versions of LDK prior to 0.0.114.
8947         ///
8948         /// [`claim_funds`]: Self::claim_funds
8949         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
8950         /// [`PaymentClaimable::purpose`]: events::Event::PaymentClaimable::purpose
8951         /// [`PaymentPurpose::preimage`]: events::PaymentPurpose::preimage
8952         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
8953         pub fn create_inbound_payment(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32,
8954                 min_final_cltv_expiry_delta: Option<u16>) -> Result<(PaymentHash, PaymentSecret), ()> {
8955                 inbound_payment::create(&self.inbound_payment_key, min_value_msat, invoice_expiry_delta_secs,
8956                         &self.entropy_source, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
8957                         min_final_cltv_expiry_delta)
8958         }
8959
8960         /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
8961         /// stored external to LDK.
8962         ///
8963         /// A [`PaymentClaimable`] event will only be generated if the [`PaymentSecret`] matches a
8964         /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
8965         /// the `min_value_msat` provided here, if one is provided.
8966         ///
8967         /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) should be globally unique, though
8968         /// note that LDK will not stop you from registering duplicate payment hashes for inbound
8969         /// payments.
8970         ///
8971         /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
8972         /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
8973         /// before a [`PaymentClaimable`] event will be generated, ensuring that we do not provide the
8974         /// sender "proof-of-payment" unless they have paid the required amount.
8975         ///
8976         /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
8977         /// in excess of the current time. This should roughly match the expiry time set in the invoice.
8978         /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
8979         /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
8980         /// invoices when no timeout is set.
8981         ///
8982         /// Note that we use block header time to time-out pending inbound payments (with some margin
8983         /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
8984         /// accept a payment and generate a [`PaymentClaimable`] event for some time after the expiry.
8985         /// If you need exact expiry semantics, you should enforce them upon receipt of
8986         /// [`PaymentClaimable`].
8987         ///
8988         /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry_delta`
8989         /// set to at least [`MIN_FINAL_CLTV_EXPIRY_DELTA`].
8990         ///
8991         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
8992         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
8993         ///
8994         /// # Note
8995         ///
8996         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
8997         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
8998         ///
8999         /// Errors if `min_value_msat` is greater than total bitcoin supply.
9000         ///
9001         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
9002         /// on versions of LDK prior to 0.0.114.
9003         ///
9004         /// [`create_inbound_payment`]: Self::create_inbound_payment
9005         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
9006         pub fn create_inbound_payment_for_hash(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>,
9007                 invoice_expiry_delta_secs: u32, min_final_cltv_expiry: Option<u16>) -> Result<PaymentSecret, ()> {
9008                 inbound_payment::create_from_hash(&self.inbound_payment_key, min_value_msat, payment_hash,
9009                         invoice_expiry_delta_secs, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
9010                         min_final_cltv_expiry)
9011         }
9012
9013         /// Gets an LDK-generated payment preimage from a payment hash and payment secret that were
9014         /// previously returned from [`create_inbound_payment`].
9015         ///
9016         /// [`create_inbound_payment`]: Self::create_inbound_payment
9017         pub fn get_payment_preimage(&self, payment_hash: PaymentHash, payment_secret: PaymentSecret) -> Result<PaymentPreimage, APIError> {
9018                 inbound_payment::get_payment_preimage(payment_hash, payment_secret, &self.inbound_payment_key)
9019         }
9020
9021         /// Creates a blinded path by delegating to [`MessageRouter::create_blinded_paths`].
9022         ///
9023         /// Errors if the `MessageRouter` errors or returns an empty `Vec`.
9024         fn create_blinded_path(&self) -> Result<BlindedPath, ()> {
9025                 let recipient = self.get_our_node_id();
9026                 let secp_ctx = &self.secp_ctx;
9027
9028                 let peers = self.per_peer_state.read().unwrap()
9029                         .iter()
9030                         .map(|(node_id, peer_state)| (node_id, peer_state.lock().unwrap()))
9031                         .filter(|(_, peer)| peer.latest_features.supports_onion_messages())
9032                         .map(|(node_id, peer)| ForwardNode {
9033                                 node_id: *node_id,
9034                                 short_channel_id: peer.channel_by_id
9035                                         .iter()
9036                                         .filter(|(_, channel)| channel.context().is_usable())
9037                                         .min_by_key(|(_, channel)| channel.context().channel_creation_height)
9038                                         .and_then(|(_, channel)| channel.context().get_short_channel_id()),
9039                         })
9040                         .collect::<Vec<_>>();
9041
9042                 self.router
9043                         .create_blinded_paths(recipient, peers, secp_ctx)
9044                         .and_then(|paths| paths.into_iter().next().ok_or(()))
9045         }
9046
9047         /// Creates multi-hop blinded payment paths for the given `amount_msats` by delegating to
9048         /// [`Router::create_blinded_payment_paths`].
9049         fn create_blinded_payment_paths(
9050                 &self, amount_msats: u64, payment_secret: PaymentSecret, payment_context: PaymentContext
9051         ) -> Result<Vec<(BlindedPayInfo, BlindedPath)>, ()> {
9052                 let secp_ctx = &self.secp_ctx;
9053
9054                 let first_hops = self.list_usable_channels();
9055                 let payee_node_id = self.get_our_node_id();
9056                 let max_cltv_expiry = self.best_block.read().unwrap().height + CLTV_FAR_FAR_AWAY
9057                         + LATENCY_GRACE_PERIOD_BLOCKS;
9058                 let payee_tlvs = ReceiveTlvs {
9059                         payment_secret,
9060                         payment_constraints: PaymentConstraints {
9061                                 max_cltv_expiry,
9062                                 htlc_minimum_msat: 1,
9063                         },
9064                         payment_context,
9065                 };
9066                 self.router.create_blinded_payment_paths(
9067                         payee_node_id, first_hops, payee_tlvs, amount_msats, secp_ctx
9068                 )
9069         }
9070
9071         /// Gets a fake short channel id for use in receiving [phantom node payments]. These fake scids
9072         /// are used when constructing the phantom invoice's route hints.
9073         ///
9074         /// [phantom node payments]: crate::sign::PhantomKeysManager
9075         pub fn get_phantom_scid(&self) -> u64 {
9076                 let best_block_height = self.best_block.read().unwrap().height;
9077                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
9078                 loop {
9079                         let scid_candidate = fake_scid::Namespace::Phantom.get_fake_scid(best_block_height, &self.chain_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
9080                         // Ensure the generated scid doesn't conflict with a real channel.
9081                         match short_to_chan_info.get(&scid_candidate) {
9082                                 Some(_) => continue,
9083                                 None => return scid_candidate
9084                         }
9085                 }
9086         }
9087
9088         /// Gets route hints for use in receiving [phantom node payments].
9089         ///
9090         /// [phantom node payments]: crate::sign::PhantomKeysManager
9091         pub fn get_phantom_route_hints(&self) -> PhantomRouteHints {
9092                 PhantomRouteHints {
9093                         channels: self.list_usable_channels(),
9094                         phantom_scid: self.get_phantom_scid(),
9095                         real_node_pubkey: self.get_our_node_id(),
9096                 }
9097         }
9098
9099         /// Gets a fake short channel id for use in receiving intercepted payments. These fake scids are
9100         /// used when constructing the route hints for HTLCs intended to be intercepted. See
9101         /// [`ChannelManager::forward_intercepted_htlc`].
9102         ///
9103         /// Note that this method is not guaranteed to return unique values, you may need to call it a few
9104         /// times to get a unique scid.
9105         pub fn get_intercept_scid(&self) -> u64 {
9106                 let best_block_height = self.best_block.read().unwrap().height;
9107                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
9108                 loop {
9109                         let scid_candidate = fake_scid::Namespace::Intercept.get_fake_scid(best_block_height, &self.chain_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
9110                         // Ensure the generated scid doesn't conflict with a real channel.
9111                         if short_to_chan_info.contains_key(&scid_candidate) { continue }
9112                         return scid_candidate
9113                 }
9114         }
9115
9116         /// Gets inflight HTLC information by processing pending outbound payments that are in
9117         /// our channels. May be used during pathfinding to account for in-use channel liquidity.
9118         pub fn compute_inflight_htlcs(&self) -> InFlightHtlcs {
9119                 let mut inflight_htlcs = InFlightHtlcs::new();
9120
9121                 let per_peer_state = self.per_peer_state.read().unwrap();
9122                 for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
9123                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9124                         let peer_state = &mut *peer_state_lock;
9125                         for chan in peer_state.channel_by_id.values().filter_map(
9126                                 |phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }
9127                         ) {
9128                                 for (htlc_source, _) in chan.inflight_htlc_sources() {
9129                                         if let HTLCSource::OutboundRoute { path, .. } = htlc_source {
9130                                                 inflight_htlcs.process_path(path, self.get_our_node_id());
9131                                         }
9132                                 }
9133                         }
9134                 }
9135
9136                 inflight_htlcs
9137         }
9138
9139         #[cfg(any(test, feature = "_test_utils"))]
9140         pub fn get_and_clear_pending_events(&self) -> Vec<events::Event> {
9141                 let events = core::cell::RefCell::new(Vec::new());
9142                 let event_handler = |event: events::Event| events.borrow_mut().push(event);
9143                 self.process_pending_events(&event_handler);
9144                 events.into_inner()
9145         }
9146
9147         #[cfg(feature = "_test_utils")]
9148         pub fn push_pending_event(&self, event: events::Event) {
9149                 let mut events = self.pending_events.lock().unwrap();
9150                 events.push_back((event, None));
9151         }
9152
9153         #[cfg(test)]
9154         pub fn pop_pending_event(&self) -> Option<events::Event> {
9155                 let mut events = self.pending_events.lock().unwrap();
9156                 events.pop_front().map(|(e, _)| e)
9157         }
9158
9159         #[cfg(test)]
9160         pub fn has_pending_payments(&self) -> bool {
9161                 self.pending_outbound_payments.has_pending_payments()
9162         }
9163
9164         #[cfg(test)]
9165         pub fn clear_pending_payments(&self) {
9166                 self.pending_outbound_payments.clear_pending_payments()
9167         }
9168
9169         /// When something which was blocking a channel from updating its [`ChannelMonitor`] (e.g. an
9170         /// [`Event`] being handled) completes, this should be called to restore the channel to normal
9171         /// operation. It will double-check that nothing *else* is also blocking the same channel from
9172         /// making progress and then let any blocked [`ChannelMonitorUpdate`]s fly.
9173         fn handle_monitor_update_release(&self, counterparty_node_id: PublicKey,
9174                 channel_funding_outpoint: OutPoint, channel_id: ChannelId,
9175                 mut completed_blocker: Option<RAAMonitorUpdateBlockingAction>) {
9176
9177                 let logger = WithContext::from(
9178                         &self.logger, Some(counterparty_node_id), Some(channel_id), None
9179                 );
9180                 loop {
9181                         let per_peer_state = self.per_peer_state.read().unwrap();
9182                         if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
9183                                 let mut peer_state_lck = peer_state_mtx.lock().unwrap();
9184                                 let peer_state = &mut *peer_state_lck;
9185                                 if let Some(blocker) = completed_blocker.take() {
9186                                         // Only do this on the first iteration of the loop.
9187                                         if let Some(blockers) = peer_state.actions_blocking_raa_monitor_updates
9188                                                 .get_mut(&channel_id)
9189                                         {
9190                                                 blockers.retain(|iter| iter != &blocker);
9191                                         }
9192                                 }
9193
9194                                 if self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
9195                                         channel_funding_outpoint, channel_id, counterparty_node_id) {
9196                                         // Check that, while holding the peer lock, we don't have anything else
9197                                         // blocking monitor updates for this channel. If we do, release the monitor
9198                                         // update(s) when those blockers complete.
9199                                         log_trace!(logger, "Delaying monitor unlock for channel {} as another channel's mon update needs to complete first",
9200                                                 &channel_id);
9201                                         break;
9202                                 }
9203
9204                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(
9205                                         channel_id) {
9206                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
9207                                                 debug_assert_eq!(chan.context.get_funding_txo().unwrap(), channel_funding_outpoint);
9208                                                 if let Some((monitor_update, further_update_exists)) = chan.unblock_next_blocked_monitor_update() {
9209                                                         log_debug!(logger, "Unlocking monitor updating for channel {} and updating monitor",
9210                                                                 channel_id);
9211                                                         handle_new_monitor_update!(self, channel_funding_outpoint, monitor_update,
9212                                                                 peer_state_lck, peer_state, per_peer_state, chan);
9213                                                         if further_update_exists {
9214                                                                 // If there are more `ChannelMonitorUpdate`s to process, restart at the
9215                                                                 // top of the loop.
9216                                                                 continue;
9217                                                         }
9218                                                 } else {
9219                                                         log_trace!(logger, "Unlocked monitor updating for channel {} without monitors to update",
9220                                                                 channel_id);
9221                                                 }
9222                                         }
9223                                 }
9224                         } else {
9225                                 log_debug!(logger,
9226                                         "Got a release post-RAA monitor update for peer {} but the channel is gone",
9227                                         log_pubkey!(counterparty_node_id));
9228                         }
9229                         break;
9230                 }
9231         }
9232
9233         fn handle_post_event_actions(&self, actions: Vec<EventCompletionAction>) {
9234                 for action in actions {
9235                         match action {
9236                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
9237                                         channel_funding_outpoint, channel_id, counterparty_node_id
9238                                 } => {
9239                                         self.handle_monitor_update_release(counterparty_node_id, channel_funding_outpoint, channel_id, None);
9240                                 }
9241                         }
9242                 }
9243         }
9244
9245         /// Processes any events asynchronously in the order they were generated since the last call
9246         /// using the given event handler.
9247         ///
9248         /// See the trait-level documentation of [`EventsProvider`] for requirements.
9249         pub async fn process_pending_events_async<Future: core::future::Future, H: Fn(Event) -> Future>(
9250                 &self, handler: H
9251         ) {
9252                 let mut ev;
9253                 process_events_body!(self, ev, { handler(ev).await });
9254         }
9255 }
9256
9257 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>
9258 where
9259         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
9260         T::Target: BroadcasterInterface,
9261         ES::Target: EntropySource,
9262         NS::Target: NodeSigner,
9263         SP::Target: SignerProvider,
9264         F::Target: FeeEstimator,
9265         R::Target: Router,
9266         L::Target: Logger,
9267 {
9268         /// Returns `MessageSendEvent`s strictly ordered per-peer, in the order they were generated.
9269         /// The returned array will contain `MessageSendEvent`s for different peers if
9270         /// `MessageSendEvent`s to more than one peer exists, but `MessageSendEvent`s to the same peer
9271         /// is always placed next to each other.
9272         ///
9273         /// Note that that while `MessageSendEvent`s are strictly ordered per-peer, the peer order for
9274         /// the chunks of `MessageSendEvent`s for different peers is random. I.e. if the array contains
9275         /// `MessageSendEvent`s  for both `node_a` and `node_b`, the `MessageSendEvent`s for `node_a`
9276         /// will randomly be placed first or last in the returned array.
9277         ///
9278         /// Note that even though `BroadcastChannelAnnouncement` and `BroadcastChannelUpdate`
9279         /// `MessageSendEvent`s are intended to be broadcasted to all peers, they will be placed among
9280         /// the `MessageSendEvent`s to the specific peer they were generated under.
9281         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent> {
9282                 let events = RefCell::new(Vec::new());
9283                 PersistenceNotifierGuard::optionally_notify(self, || {
9284                         let mut result = NotifyOption::SkipPersistNoEvents;
9285
9286                         // TODO: This behavior should be documented. It's unintuitive that we query
9287                         // ChannelMonitors when clearing other events.
9288                         if self.process_pending_monitor_events() {
9289                                 result = NotifyOption::DoPersist;
9290                         }
9291
9292                         if self.check_free_holding_cells() {
9293                                 result = NotifyOption::DoPersist;
9294                         }
9295                         if self.maybe_generate_initial_closing_signed() {
9296                                 result = NotifyOption::DoPersist;
9297                         }
9298
9299                         let mut is_any_peer_connected = false;
9300                         let mut pending_events = Vec::new();
9301                         let per_peer_state = self.per_peer_state.read().unwrap();
9302                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
9303                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9304                                 let peer_state = &mut *peer_state_lock;
9305                                 if peer_state.pending_msg_events.len() > 0 {
9306                                         pending_events.append(&mut peer_state.pending_msg_events);
9307                                 }
9308                                 if peer_state.is_connected {
9309                                         is_any_peer_connected = true
9310                                 }
9311                         }
9312
9313                         // Ensure that we are connected to some peers before getting broadcast messages.
9314                         if is_any_peer_connected {
9315                                 let mut broadcast_msgs = self.pending_broadcast_messages.lock().unwrap();
9316                                 pending_events.append(&mut broadcast_msgs);
9317                         }
9318
9319                         if !pending_events.is_empty() {
9320                                 events.replace(pending_events);
9321                         }
9322
9323                         result
9324                 });
9325                 events.into_inner()
9326         }
9327 }
9328
9329 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>
9330 where
9331         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
9332         T::Target: BroadcasterInterface,
9333         ES::Target: EntropySource,
9334         NS::Target: NodeSigner,
9335         SP::Target: SignerProvider,
9336         F::Target: FeeEstimator,
9337         R::Target: Router,
9338         L::Target: Logger,
9339 {
9340         /// Processes events that must be periodically handled.
9341         ///
9342         /// An [`EventHandler`] may safely call back to the provider in order to handle an event.
9343         /// However, it must not call [`Writeable::write`] as doing so would result in a deadlock.
9344         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler {
9345                 let mut ev;
9346                 process_events_body!(self, ev, handler.handle_event(ev));
9347         }
9348 }
9349
9350 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>
9351 where
9352         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
9353         T::Target: BroadcasterInterface,
9354         ES::Target: EntropySource,
9355         NS::Target: NodeSigner,
9356         SP::Target: SignerProvider,
9357         F::Target: FeeEstimator,
9358         R::Target: Router,
9359         L::Target: Logger,
9360 {
9361         fn filtered_block_connected(&self, header: &Header, txdata: &TransactionData, height: u32) {
9362                 {
9363                         let best_block = self.best_block.read().unwrap();
9364                         assert_eq!(best_block.block_hash, header.prev_blockhash,
9365                                 "Blocks must be connected in chain-order - the connected header must build on the last connected header");
9366                         assert_eq!(best_block.height, height - 1,
9367                                 "Blocks must be connected in chain-order - the connected block height must be one greater than the previous height");
9368                 }
9369
9370                 self.transactions_confirmed(header, txdata, height);
9371                 self.best_block_updated(header, height);
9372         }
9373
9374         fn block_disconnected(&self, header: &Header, height: u32) {
9375                 let _persistence_guard =
9376                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
9377                                 self, || -> NotifyOption { NotifyOption::DoPersist });
9378                 let new_height = height - 1;
9379                 {
9380                         let mut best_block = self.best_block.write().unwrap();
9381                         assert_eq!(best_block.block_hash, header.block_hash(),
9382                                 "Blocks must be disconnected in chain-order - the disconnected header must be the last connected header");
9383                         assert_eq!(best_block.height, height,
9384                                 "Blocks must be disconnected in chain-order - the disconnected block must have the correct height");
9385                         *best_block = BestBlock::new(header.prev_blockhash, new_height)
9386                 }
9387
9388                 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)));
9389         }
9390 }
9391
9392 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>
9393 where
9394         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
9395         T::Target: BroadcasterInterface,
9396         ES::Target: EntropySource,
9397         NS::Target: NodeSigner,
9398         SP::Target: SignerProvider,
9399         F::Target: FeeEstimator,
9400         R::Target: Router,
9401         L::Target: Logger,
9402 {
9403         fn transactions_confirmed(&self, header: &Header, txdata: &TransactionData, height: u32) {
9404                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
9405                 // during initialization prior to the chain_monitor being fully configured in some cases.
9406                 // See the docs for `ChannelManagerReadArgs` for more.
9407
9408                 let block_hash = header.block_hash();
9409                 log_trace!(self.logger, "{} transactions included in block {} at height {} provided", txdata.len(), block_hash, height);
9410
9411                 let _persistence_guard =
9412                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
9413                                 self, || -> NotifyOption { NotifyOption::DoPersist });
9414                 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))
9415                         .map(|(a, b)| (a, Vec::new(), b)));
9416
9417                 let last_best_block_height = self.best_block.read().unwrap().height;
9418                 if height < last_best_block_height {
9419                         let timestamp = self.highest_seen_timestamp.load(Ordering::Acquire);
9420                         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)));
9421                 }
9422         }
9423
9424         fn best_block_updated(&self, header: &Header, height: u32) {
9425                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
9426                 // during initialization prior to the chain_monitor being fully configured in some cases.
9427                 // See the docs for `ChannelManagerReadArgs` for more.
9428
9429                 let block_hash = header.block_hash();
9430                 log_trace!(self.logger, "New best block: {} at height {}", block_hash, height);
9431
9432                 let _persistence_guard =
9433                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
9434                                 self, || -> NotifyOption { NotifyOption::DoPersist });
9435                 *self.best_block.write().unwrap() = BestBlock::new(block_hash, height);
9436
9437                 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)));
9438
9439                 macro_rules! max_time {
9440                         ($timestamp: expr) => {
9441                                 loop {
9442                                         // Update $timestamp to be the max of its current value and the block
9443                                         // timestamp. This should keep us close to the current time without relying on
9444                                         // having an explicit local time source.
9445                                         // Just in case we end up in a race, we loop until we either successfully
9446                                         // update $timestamp or decide we don't need to.
9447                                         let old_serial = $timestamp.load(Ordering::Acquire);
9448                                         if old_serial >= header.time as usize { break; }
9449                                         if $timestamp.compare_exchange(old_serial, header.time as usize, Ordering::AcqRel, Ordering::Relaxed).is_ok() {
9450                                                 break;
9451                                         }
9452                                 }
9453                         }
9454                 }
9455                 max_time!(self.highest_seen_timestamp);
9456                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
9457                 payment_secrets.retain(|_, inbound_payment| {
9458                         inbound_payment.expiry_time > header.time as u64
9459                 });
9460         }
9461
9462         fn get_relevant_txids(&self) -> Vec<(Txid, u32, Option<BlockHash>)> {
9463                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
9464                 for (_cp_id, peer_state_mutex) in self.per_peer_state.read().unwrap().iter() {
9465                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9466                         let peer_state = &mut *peer_state_lock;
9467                         for chan in peer_state.channel_by_id.values().filter_map(|phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }) {
9468                                 let txid_opt = chan.context.get_funding_txo();
9469                                 let height_opt = chan.context.get_funding_tx_confirmation_height();
9470                                 let hash_opt = chan.context.get_funding_tx_confirmed_in();
9471                                 if let (Some(funding_txo), Some(conf_height), Some(block_hash)) = (txid_opt, height_opt, hash_opt) {
9472                                         res.push((funding_txo.txid, conf_height, Some(block_hash)));
9473                                 }
9474                         }
9475                 }
9476                 res
9477         }
9478
9479         fn transaction_unconfirmed(&self, txid: &Txid) {
9480                 let _persistence_guard =
9481                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
9482                                 self, || -> NotifyOption { NotifyOption::DoPersist });
9483                 self.do_chain_event(None, |channel| {
9484                         if let Some(funding_txo) = channel.context.get_funding_txo() {
9485                                 if funding_txo.txid == *txid {
9486                                         channel.funding_transaction_unconfirmed(&&WithChannelContext::from(&self.logger, &channel.context, None)).map(|()| (None, Vec::new(), None))
9487                                 } else { Ok((None, Vec::new(), None)) }
9488                         } else { Ok((None, Vec::new(), None)) }
9489                 });
9490         }
9491 }
9492
9493 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>
9494 where
9495         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
9496         T::Target: BroadcasterInterface,
9497         ES::Target: EntropySource,
9498         NS::Target: NodeSigner,
9499         SP::Target: SignerProvider,
9500         F::Target: FeeEstimator,
9501         R::Target: Router,
9502         L::Target: Logger,
9503 {
9504         /// Calls a function which handles an on-chain event (blocks dis/connected, transactions
9505         /// un/confirmed, etc) on each channel, handling any resulting errors or messages generated by
9506         /// the function.
9507         fn do_chain_event<FN: Fn(&mut Channel<SP>) -> Result<(Option<msgs::ChannelReady>, Vec<(HTLCSource, PaymentHash)>, Option<msgs::AnnouncementSignatures>), ClosureReason>>
9508                         (&self, height_opt: Option<u32>, f: FN) {
9509                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
9510                 // during initialization prior to the chain_monitor being fully configured in some cases.
9511                 // See the docs for `ChannelManagerReadArgs` for more.
9512
9513                 let mut failed_channels = Vec::new();
9514                 let mut timed_out_htlcs = Vec::new();
9515                 {
9516                         let per_peer_state = self.per_peer_state.read().unwrap();
9517                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
9518                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9519                                 let peer_state = &mut *peer_state_lock;
9520                                 let pending_msg_events = &mut peer_state.pending_msg_events;
9521
9522                                 peer_state.channel_by_id.retain(|_, phase| {
9523                                         match phase {
9524                                                 // Retain unfunded channels.
9525                                                 ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => true,
9526                                                 // TODO(dual_funding): Combine this match arm with above.
9527                                                 #[cfg(any(dual_funding, splicing))]
9528                                                 ChannelPhase::UnfundedOutboundV2(_) | ChannelPhase::UnfundedInboundV2(_) => true,
9529                                                 ChannelPhase::Funded(channel) => {
9530                                                         let res = f(channel);
9531                                                         if let Ok((channel_ready_opt, mut timed_out_pending_htlcs, announcement_sigs)) = res {
9532                                                                 for (source, payment_hash) in timed_out_pending_htlcs.drain(..) {
9533                                                                         let (failure_code, data) = self.get_htlc_inbound_temp_fail_err_and_data(0x1000|14 /* expiry_too_soon */, &channel);
9534                                                                         timed_out_htlcs.push((source, payment_hash, HTLCFailReason::reason(failure_code, data),
9535                                                                                 HTLCDestination::NextHopChannel { node_id: Some(channel.context.get_counterparty_node_id()), channel_id: channel.context.channel_id() }));
9536                                                                 }
9537                                                                 let logger = WithChannelContext::from(&self.logger, &channel.context, None);
9538                                                                 if let Some(channel_ready) = channel_ready_opt {
9539                                                                         send_channel_ready!(self, pending_msg_events, channel, channel_ready);
9540                                                                         if channel.context.is_usable() {
9541                                                                                 log_trace!(logger, "Sending channel_ready with private initial channel_update for our counterparty on channel {}", channel.context.channel_id());
9542                                                                                 if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
9543                                                                                         pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
9544                                                                                                 node_id: channel.context.get_counterparty_node_id(),
9545                                                                                                 msg,
9546                                                                                         });
9547                                                                                 }
9548                                                                         } else {
9549                                                                                 log_trace!(logger, "Sending channel_ready WITHOUT channel_update for {}", channel.context.channel_id());
9550                                                                         }
9551                                                                 }
9552
9553                                                                 {
9554                                                                         let mut pending_events = self.pending_events.lock().unwrap();
9555                                                                         emit_channel_ready_event!(pending_events, channel);
9556                                                                 }
9557
9558                                                                 if let Some(announcement_sigs) = announcement_sigs {
9559                                                                         log_trace!(logger, "Sending announcement_signatures for channel {}", channel.context.channel_id());
9560                                                                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
9561                                                                                 node_id: channel.context.get_counterparty_node_id(),
9562                                                                                 msg: announcement_sigs,
9563                                                                         });
9564                                                                         if let Some(height) = height_opt {
9565                                                                                 if let Some(announcement) = channel.get_signed_channel_announcement(&self.node_signer, self.chain_hash, height, &self.default_configuration) {
9566                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
9567                                                                                                 msg: announcement,
9568                                                                                                 // Note that announcement_signatures fails if the channel cannot be announced,
9569                                                                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
9570                                                                                                 update_msg: Some(self.get_channel_update_for_broadcast(channel).unwrap()),
9571                                                                                         });
9572                                                                                 }
9573                                                                         }
9574                                                                 }
9575                                                                 if channel.is_our_channel_ready() {
9576                                                                         if let Some(real_scid) = channel.context.get_short_channel_id() {
9577                                                                                 // If we sent a 0conf channel_ready, and now have an SCID, we add it
9578                                                                                 // to the short_to_chan_info map here. Note that we check whether we
9579                                                                                 // can relay using the real SCID at relay-time (i.e.
9580                                                                                 // enforce option_scid_alias then), and if the funding tx is ever
9581                                                                                 // un-confirmed we force-close the channel, ensuring short_to_chan_info
9582                                                                                 // is always consistent.
9583                                                                                 let mut short_to_chan_info = self.short_to_chan_info.write().unwrap();
9584                                                                                 let scid_insert = short_to_chan_info.insert(real_scid, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
9585                                                                                 assert!(scid_insert.is_none() || scid_insert.unwrap() == (channel.context.get_counterparty_node_id(), channel.context.channel_id()),
9586                                                                                         "SCIDs should never collide - ensure you weren't behind by a full {} blocks when creating channels",
9587                                                                                         fake_scid::MAX_SCID_BLOCKS_FROM_NOW);
9588                                                                         }
9589                                                                 }
9590                                                         } else if let Err(reason) = res {
9591                                                                 update_maps_on_chan_removal!(self, &channel.context);
9592                                                                 // It looks like our counterparty went on-chain or funding transaction was
9593                                                                 // reorged out of the main chain. Close the channel.
9594                                                                 let reason_message = format!("{}", reason);
9595                                                                 failed_channels.push(channel.context.force_shutdown(true, reason));
9596                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&channel) {
9597                                                                         let mut pending_broadcast_messages = self.pending_broadcast_messages.lock().unwrap();
9598                                                                         pending_broadcast_messages.push(events::MessageSendEvent::BroadcastChannelUpdate {
9599                                                                                 msg: update
9600                                                                         });
9601                                                                 }
9602                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
9603                                                                         node_id: channel.context.get_counterparty_node_id(),
9604                                                                         action: msgs::ErrorAction::DisconnectPeer {
9605                                                                                 msg: Some(msgs::ErrorMessage {
9606                                                                                         channel_id: channel.context.channel_id(),
9607                                                                                         data: reason_message,
9608                                                                                 })
9609                                                                         },
9610                                                                 });
9611                                                                 return false;
9612                                                         }
9613                                                         true
9614                                                 }
9615                                         }
9616                                 });
9617                         }
9618                 }
9619
9620                 if let Some(height) = height_opt {
9621                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
9622                                 payment.htlcs.retain(|htlc| {
9623                                         // If height is approaching the number of blocks we think it takes us to get
9624                                         // our commitment transaction confirmed before the HTLC expires, plus the
9625                                         // number of blocks we generally consider it to take to do a commitment update,
9626                                         // just give up on it and fail the HTLC.
9627                                         if height >= htlc.cltv_expiry - HTLC_FAIL_BACK_BUFFER {
9628                                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
9629                                                 htlc_msat_height_data.extend_from_slice(&height.to_be_bytes());
9630
9631                                                 timed_out_htlcs.push((HTLCSource::PreviousHopData(htlc.prev_hop.clone()), payment_hash.clone(),
9632                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
9633                                                         HTLCDestination::FailedPayment { payment_hash: payment_hash.clone() }));
9634                                                 false
9635                                         } else { true }
9636                                 });
9637                                 !payment.htlcs.is_empty() // Only retain this entry if htlcs has at least one entry.
9638                         });
9639
9640                         let mut intercepted_htlcs = self.pending_intercepted_htlcs.lock().unwrap();
9641                         intercepted_htlcs.retain(|_, htlc| {
9642                                 if height >= htlc.forward_info.outgoing_cltv_value - HTLC_FAIL_BACK_BUFFER {
9643                                         let prev_hop_data = HTLCSource::PreviousHopData(HTLCPreviousHopData {
9644                                                 short_channel_id: htlc.prev_short_channel_id,
9645                                                 user_channel_id: Some(htlc.prev_user_channel_id),
9646                                                 htlc_id: htlc.prev_htlc_id,
9647                                                 incoming_packet_shared_secret: htlc.forward_info.incoming_shared_secret,
9648                                                 phantom_shared_secret: None,
9649                                                 outpoint: htlc.prev_funding_outpoint,
9650                                                 channel_id: htlc.prev_channel_id,
9651                                                 blinded_failure: htlc.forward_info.routing.blinded_failure(),
9652                                         });
9653
9654                                         let requested_forward_scid /* intercept scid */ = match htlc.forward_info.routing {
9655                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
9656                                                 _ => unreachable!(),
9657                                         };
9658                                         timed_out_htlcs.push((prev_hop_data, htlc.forward_info.payment_hash,
9659                                                         HTLCFailReason::from_failure_code(0x2000 | 2),
9660                                                         HTLCDestination::InvalidForward { requested_forward_scid }));
9661                                         let logger = WithContext::from(
9662                                                 &self.logger, None, Some(htlc.prev_channel_id), Some(htlc.forward_info.payment_hash)
9663                                         );
9664                                         log_trace!(logger, "Timing out intercepted HTLC with requested forward scid {}", requested_forward_scid);
9665                                         false
9666                                 } else { true }
9667                         });
9668                 }
9669
9670                 self.handle_init_event_channel_failures(failed_channels);
9671
9672                 for (source, payment_hash, reason, destination) in timed_out_htlcs.drain(..) {
9673                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, destination);
9674                 }
9675         }
9676
9677         /// Gets a [`Future`] that completes when this [`ChannelManager`] may need to be persisted or
9678         /// may have events that need processing.
9679         ///
9680         /// In order to check if this [`ChannelManager`] needs persisting, call
9681         /// [`Self::get_and_clear_needs_persistence`].
9682         ///
9683         /// Note that callbacks registered on the [`Future`] MUST NOT call back into this
9684         /// [`ChannelManager`] and should instead register actions to be taken later.
9685         pub fn get_event_or_persistence_needed_future(&self) -> Future {
9686                 self.event_persist_notifier.get_future()
9687         }
9688
9689         /// Returns true if this [`ChannelManager`] needs to be persisted.
9690         ///
9691         /// See [`Self::get_event_or_persistence_needed_future`] for retrieving a [`Future`] that
9692         /// indicates this should be checked.
9693         pub fn get_and_clear_needs_persistence(&self) -> bool {
9694                 self.needs_persist_flag.swap(false, Ordering::AcqRel)
9695         }
9696
9697         #[cfg(any(test, feature = "_test_utils"))]
9698         pub fn get_event_or_persist_condvar_value(&self) -> bool {
9699                 self.event_persist_notifier.notify_pending()
9700         }
9701
9702         /// Gets the latest best block which was connected either via the [`chain::Listen`] or
9703         /// [`chain::Confirm`] interfaces.
9704         pub fn current_best_block(&self) -> BestBlock {
9705                 self.best_block.read().unwrap().clone()
9706         }
9707
9708         /// Fetches the set of [`NodeFeatures`] flags that are provided by or required by
9709         /// [`ChannelManager`].
9710         pub fn node_features(&self) -> NodeFeatures {
9711                 provided_node_features(&self.default_configuration)
9712         }
9713
9714         /// Fetches the set of [`Bolt11InvoiceFeatures`] flags that are provided by or required by
9715         /// [`ChannelManager`].
9716         ///
9717         /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
9718         /// or not. Thus, this method is not public.
9719         #[cfg(any(feature = "_test_utils", test))]
9720         pub fn bolt11_invoice_features(&self) -> Bolt11InvoiceFeatures {
9721                 provided_bolt11_invoice_features(&self.default_configuration)
9722         }
9723
9724         /// Fetches the set of [`Bolt12InvoiceFeatures`] flags that are provided by or required by
9725         /// [`ChannelManager`].
9726         fn bolt12_invoice_features(&self) -> Bolt12InvoiceFeatures {
9727                 provided_bolt12_invoice_features(&self.default_configuration)
9728         }
9729
9730         /// Fetches the set of [`ChannelFeatures`] flags that are provided by or required by
9731         /// [`ChannelManager`].
9732         pub fn channel_features(&self) -> ChannelFeatures {
9733                 provided_channel_features(&self.default_configuration)
9734         }
9735
9736         /// Fetches the set of [`ChannelTypeFeatures`] flags that are provided by or required by
9737         /// [`ChannelManager`].
9738         pub fn channel_type_features(&self) -> ChannelTypeFeatures {
9739                 provided_channel_type_features(&self.default_configuration)
9740         }
9741
9742         /// Fetches the set of [`InitFeatures`] flags that are provided by or required by
9743         /// [`ChannelManager`].
9744         pub fn init_features(&self) -> InitFeatures {
9745                 provided_init_features(&self.default_configuration)
9746         }
9747 }
9748
9749 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
9750         ChannelMessageHandler for ChannelManager<M, T, ES, NS, SP, F, R, L>
9751 where
9752         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
9753         T::Target: BroadcasterInterface,
9754         ES::Target: EntropySource,
9755         NS::Target: NodeSigner,
9756         SP::Target: SignerProvider,
9757         F::Target: FeeEstimator,
9758         R::Target: Router,
9759         L::Target: Logger,
9760 {
9761         fn handle_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) {
9762                 // Note that we never need to persist the updated ChannelManager for an inbound
9763                 // open_channel message - pre-funded channels are never written so there should be no
9764                 // change to the contents.
9765                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
9766                         let res = self.internal_open_channel(counterparty_node_id, msg);
9767                         let persist = match &res {
9768                                 Err(e) if e.closes_channel() => {
9769                                         debug_assert!(false, "We shouldn't close a new channel");
9770                                         NotifyOption::DoPersist
9771                                 },
9772                                 _ => NotifyOption::SkipPersistHandleEvents,
9773                         };
9774                         let _ = handle_error!(self, res, *counterparty_node_id);
9775                         persist
9776                 });
9777         }
9778
9779         fn handle_open_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannelV2) {
9780                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9781                         "Dual-funded channels not supported".to_owned(),
9782                          msg.common_fields.temporary_channel_id.clone())), *counterparty_node_id);
9783         }
9784
9785         fn handle_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) {
9786                 // Note that we never need to persist the updated ChannelManager for an inbound
9787                 // accept_channel message - pre-funded channels are never written so there should be no
9788                 // change to the contents.
9789                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
9790                         let _ = handle_error!(self, self.internal_accept_channel(counterparty_node_id, msg), *counterparty_node_id);
9791                         NotifyOption::SkipPersistHandleEvents
9792                 });
9793         }
9794
9795         fn handle_accept_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannelV2) {
9796                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9797                         "Dual-funded channels not supported".to_owned(),
9798                          msg.common_fields.temporary_channel_id.clone())), *counterparty_node_id);
9799         }
9800
9801         fn handle_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) {
9802                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
9803                 let _ = handle_error!(self, self.internal_funding_created(counterparty_node_id, msg), *counterparty_node_id);
9804         }
9805
9806         fn handle_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) {
9807                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
9808                 let _ = handle_error!(self, self.internal_funding_signed(counterparty_node_id, msg), *counterparty_node_id);
9809         }
9810
9811         fn handle_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) {
9812                 // Note that we never need to persist the updated ChannelManager for an inbound
9813                 // channel_ready message - while the channel's state will change, any channel_ready message
9814                 // will ultimately be re-sent on startup and the `ChannelMonitor` won't be updated so we
9815                 // will not force-close the channel on startup.
9816                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
9817                         let res = self.internal_channel_ready(counterparty_node_id, msg);
9818                         let persist = match &res {
9819                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
9820                                 _ => NotifyOption::SkipPersistHandleEvents,
9821                         };
9822                         let _ = handle_error!(self, res, *counterparty_node_id);
9823                         persist
9824                 });
9825         }
9826
9827         fn handle_stfu(&self, counterparty_node_id: &PublicKey, msg: &msgs::Stfu) {
9828                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9829                         "Quiescence not supported".to_owned(),
9830                          msg.channel_id.clone())), *counterparty_node_id);
9831         }
9832
9833         #[cfg(splicing)]
9834         fn handle_splice(&self, counterparty_node_id: &PublicKey, msg: &msgs::Splice) {
9835                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9836                         "Splicing not supported".to_owned(),
9837                          msg.channel_id.clone())), *counterparty_node_id);
9838         }
9839
9840         #[cfg(splicing)]
9841         fn handle_splice_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::SpliceAck) {
9842                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9843                         "Splicing not supported (splice_ack)".to_owned(),
9844                          msg.channel_id.clone())), *counterparty_node_id);
9845         }
9846
9847         #[cfg(splicing)]
9848         fn handle_splice_locked(&self, counterparty_node_id: &PublicKey, msg: &msgs::SpliceLocked) {
9849                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9850                         "Splicing not supported (splice_locked)".to_owned(),
9851                          msg.channel_id.clone())), *counterparty_node_id);
9852         }
9853
9854         fn handle_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) {
9855                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
9856                 let _ = handle_error!(self, self.internal_shutdown(counterparty_node_id, msg), *counterparty_node_id);
9857         }
9858
9859         fn handle_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) {
9860                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
9861                 let _ = handle_error!(self, self.internal_closing_signed(counterparty_node_id, msg), *counterparty_node_id);
9862         }
9863
9864         fn handle_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) {
9865                 // Note that we never need to persist the updated ChannelManager for an inbound
9866                 // update_add_htlc message - the message itself doesn't change our channel state only the
9867                 // `commitment_signed` message afterwards will.
9868                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
9869                         let res = self.internal_update_add_htlc(counterparty_node_id, msg);
9870                         let persist = match &res {
9871                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
9872                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
9873                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
9874                         };
9875                         let _ = handle_error!(self, res, *counterparty_node_id);
9876                         persist
9877                 });
9878         }
9879
9880         fn handle_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) {
9881                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
9882                 let _ = handle_error!(self, self.internal_update_fulfill_htlc(counterparty_node_id, msg), *counterparty_node_id);
9883         }
9884
9885         fn handle_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) {
9886                 // Note that we never need to persist the updated ChannelManager for an inbound
9887                 // update_fail_htlc message - the message itself doesn't change our channel state only the
9888                 // `commitment_signed` message afterwards will.
9889                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
9890                         let res = self.internal_update_fail_htlc(counterparty_node_id, msg);
9891                         let persist = match &res {
9892                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
9893                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
9894                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
9895                         };
9896                         let _ = handle_error!(self, res, *counterparty_node_id);
9897                         persist
9898                 });
9899         }
9900
9901         fn handle_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) {
9902                 // Note that we never need to persist the updated ChannelManager for an inbound
9903                 // update_fail_malformed_htlc message - the message itself doesn't change our channel state
9904                 // only the `commitment_signed` message afterwards will.
9905                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
9906                         let res = self.internal_update_fail_malformed_htlc(counterparty_node_id, msg);
9907                         let persist = match &res {
9908                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
9909                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
9910                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
9911                         };
9912                         let _ = handle_error!(self, res, *counterparty_node_id);
9913                         persist
9914                 });
9915         }
9916
9917         fn handle_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) {
9918                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
9919                 let _ = handle_error!(self, self.internal_commitment_signed(counterparty_node_id, msg), *counterparty_node_id);
9920         }
9921
9922         fn handle_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) {
9923                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
9924                 let _ = handle_error!(self, self.internal_revoke_and_ack(counterparty_node_id, msg), *counterparty_node_id);
9925         }
9926
9927         fn handle_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) {
9928                 // Note that we never need to persist the updated ChannelManager for an inbound
9929                 // update_fee message - the message itself doesn't change our channel state only the
9930                 // `commitment_signed` message afterwards will.
9931                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
9932                         let res = self.internal_update_fee(counterparty_node_id, msg);
9933                         let persist = match &res {
9934                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
9935                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
9936                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
9937                         };
9938                         let _ = handle_error!(self, res, *counterparty_node_id);
9939                         persist
9940                 });
9941         }
9942
9943         fn handle_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) {
9944                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
9945                 let _ = handle_error!(self, self.internal_announcement_signatures(counterparty_node_id, msg), *counterparty_node_id);
9946         }
9947
9948         fn handle_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) {
9949                 PersistenceNotifierGuard::optionally_notify(self, || {
9950                         if let Ok(persist) = handle_error!(self, self.internal_channel_update(counterparty_node_id, msg), *counterparty_node_id) {
9951                                 persist
9952                         } else {
9953                                 NotifyOption::DoPersist
9954                         }
9955                 });
9956         }
9957
9958         fn handle_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) {
9959                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
9960                         let res = self.internal_channel_reestablish(counterparty_node_id, msg);
9961                         let persist = match &res {
9962                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
9963                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
9964                                 Ok(persist) => *persist,
9965                         };
9966                         let _ = handle_error!(self, res, *counterparty_node_id);
9967                         persist
9968                 });
9969         }
9970
9971         fn peer_disconnected(&self, counterparty_node_id: &PublicKey) {
9972                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(
9973                         self, || NotifyOption::SkipPersistHandleEvents);
9974                 let mut failed_channels = Vec::new();
9975                 let mut per_peer_state = self.per_peer_state.write().unwrap();
9976                 let remove_peer = {
9977                         log_debug!(
9978                                 WithContext::from(&self.logger, Some(*counterparty_node_id), None, None),
9979                                 "Marking channels with {} disconnected and generating channel_updates.",
9980                                 log_pubkey!(counterparty_node_id)
9981                         );
9982                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
9983                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9984                                 let peer_state = &mut *peer_state_lock;
9985                                 let pending_msg_events = &mut peer_state.pending_msg_events;
9986                                 peer_state.channel_by_id.retain(|_, phase| {
9987                                         let context = match phase {
9988                                                 ChannelPhase::Funded(chan) => {
9989                                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
9990                                                         if chan.remove_uncommitted_htlcs_and_mark_paused(&&logger).is_ok() {
9991                                                                 // We only retain funded channels that are not shutdown.
9992                                                                 return true;
9993                                                         }
9994                                                         &mut chan.context
9995                                                 },
9996                                                 // If we get disconnected and haven't yet committed to a funding
9997                                                 // transaction, we can replay the `open_channel` on reconnection, so don't
9998                                                 // bother dropping the channel here. However, if we already committed to
9999                                                 // the funding transaction we don't yet support replaying the funding
10000                                                 // handshake (and bailing if the peer rejects it), so we force-close in
10001                                                 // that case.
10002                                                 ChannelPhase::UnfundedOutboundV1(chan) if chan.is_resumable() => return true,
10003                                                 ChannelPhase::UnfundedOutboundV1(chan) => &mut chan.context,
10004                                                 // Unfunded inbound channels will always be removed.
10005                                                 ChannelPhase::UnfundedInboundV1(chan) => {
10006                                                         &mut chan.context
10007                                                 },
10008                                                 #[cfg(any(dual_funding, splicing))]
10009                                                 ChannelPhase::UnfundedOutboundV2(chan) => {
10010                                                         &mut chan.context
10011                                                 },
10012                                                 #[cfg(any(dual_funding, splicing))]
10013                                                 ChannelPhase::UnfundedInboundV2(chan) => {
10014                                                         &mut chan.context
10015                                                 },
10016                                         };
10017                                         // Clean up for removal.
10018                                         update_maps_on_chan_removal!(self, &context);
10019                                         failed_channels.push(context.force_shutdown(false, ClosureReason::DisconnectedPeer));
10020                                         false
10021                                 });
10022                                 // Note that we don't bother generating any events for pre-accept channels -
10023                                 // they're not considered "channels" yet from the PoV of our events interface.
10024                                 peer_state.inbound_channel_request_by_id.clear();
10025                                 pending_msg_events.retain(|msg| {
10026                                         match msg {
10027                                                 // V1 Channel Establishment
10028                                                 &events::MessageSendEvent::SendAcceptChannel { .. } => false,
10029                                                 &events::MessageSendEvent::SendOpenChannel { .. } => false,
10030                                                 &events::MessageSendEvent::SendFundingCreated { .. } => false,
10031                                                 &events::MessageSendEvent::SendFundingSigned { .. } => false,
10032                                                 // V2 Channel Establishment
10033                                                 &events::MessageSendEvent::SendAcceptChannelV2 { .. } => false,
10034                                                 &events::MessageSendEvent::SendOpenChannelV2 { .. } => false,
10035                                                 // Common Channel Establishment
10036                                                 &events::MessageSendEvent::SendChannelReady { .. } => false,
10037                                                 &events::MessageSendEvent::SendAnnouncementSignatures { .. } => false,
10038                                                 // Quiescence
10039                                                 &events::MessageSendEvent::SendStfu { .. } => false,
10040                                                 // Splicing
10041                                                 &events::MessageSendEvent::SendSplice { .. } => false,
10042                                                 &events::MessageSendEvent::SendSpliceAck { .. } => false,
10043                                                 &events::MessageSendEvent::SendSpliceLocked { .. } => false,
10044                                                 // Interactive Transaction Construction
10045                                                 &events::MessageSendEvent::SendTxAddInput { .. } => false,
10046                                                 &events::MessageSendEvent::SendTxAddOutput { .. } => false,
10047                                                 &events::MessageSendEvent::SendTxRemoveInput { .. } => false,
10048                                                 &events::MessageSendEvent::SendTxRemoveOutput { .. } => false,
10049                                                 &events::MessageSendEvent::SendTxComplete { .. } => false,
10050                                                 &events::MessageSendEvent::SendTxSignatures { .. } => false,
10051                                                 &events::MessageSendEvent::SendTxInitRbf { .. } => false,
10052                                                 &events::MessageSendEvent::SendTxAckRbf { .. } => false,
10053                                                 &events::MessageSendEvent::SendTxAbort { .. } => false,
10054                                                 // Channel Operations
10055                                                 &events::MessageSendEvent::UpdateHTLCs { .. } => false,
10056                                                 &events::MessageSendEvent::SendRevokeAndACK { .. } => false,
10057                                                 &events::MessageSendEvent::SendClosingSigned { .. } => false,
10058                                                 &events::MessageSendEvent::SendShutdown { .. } => false,
10059                                                 &events::MessageSendEvent::SendChannelReestablish { .. } => false,
10060                                                 &events::MessageSendEvent::HandleError { .. } => false,
10061                                                 // Gossip
10062                                                 &events::MessageSendEvent::SendChannelAnnouncement { .. } => false,
10063                                                 &events::MessageSendEvent::BroadcastChannelAnnouncement { .. } => true,
10064                                                 // [`ChannelManager::pending_broadcast_events`] holds the [`BroadcastChannelUpdate`]
10065                                                 // This check here is to ensure exhaustivity.
10066                                                 &events::MessageSendEvent::BroadcastChannelUpdate { .. } => {
10067                                                         debug_assert!(false, "This event shouldn't have been here");
10068                                                         false
10069                                                 },
10070                                                 &events::MessageSendEvent::BroadcastNodeAnnouncement { .. } => true,
10071                                                 &events::MessageSendEvent::SendChannelUpdate { .. } => false,
10072                                                 &events::MessageSendEvent::SendChannelRangeQuery { .. } => false,
10073                                                 &events::MessageSendEvent::SendShortIdsQuery { .. } => false,
10074                                                 &events::MessageSendEvent::SendReplyChannelRange { .. } => false,
10075                                                 &events::MessageSendEvent::SendGossipTimestampFilter { .. } => false,
10076                                         }
10077                                 });
10078                                 debug_assert!(peer_state.is_connected, "A disconnected peer cannot disconnect");
10079                                 peer_state.is_connected = false;
10080                                 peer_state.ok_to_remove(true)
10081                         } else { debug_assert!(false, "Unconnected peer disconnected"); true }
10082                 };
10083                 if remove_peer {
10084                         per_peer_state.remove(counterparty_node_id);
10085                 }
10086                 mem::drop(per_peer_state);
10087
10088                 for failure in failed_channels.drain(..) {
10089                         self.finish_close_channel(failure);
10090                 }
10091         }
10092
10093         fn peer_connected(&self, counterparty_node_id: &PublicKey, init_msg: &msgs::Init, inbound: bool) -> Result<(), ()> {
10094                 let logger = WithContext::from(&self.logger, Some(*counterparty_node_id), None, None);
10095                 if !init_msg.features.supports_static_remote_key() {
10096                         log_debug!(logger, "Peer {} does not support static remote key, disconnecting", log_pubkey!(counterparty_node_id));
10097                         return Err(());
10098                 }
10099
10100                 let mut res = Ok(());
10101
10102                 PersistenceNotifierGuard::optionally_notify(self, || {
10103                         // If we have too many peers connected which don't have funded channels, disconnect the
10104                         // peer immediately (as long as it doesn't have funded channels). If we have a bunch of
10105                         // unfunded channels taking up space in memory for disconnected peers, we still let new
10106                         // peers connect, but we'll reject new channels from them.
10107                         let connected_peers_without_funded_channels = self.peers_without_funded_channels(|node| node.is_connected);
10108                         let inbound_peer_limited = inbound && connected_peers_without_funded_channels >= MAX_NO_CHANNEL_PEERS;
10109
10110                         {
10111                                 let mut peer_state_lock = self.per_peer_state.write().unwrap();
10112                                 match peer_state_lock.entry(counterparty_node_id.clone()) {
10113                                         hash_map::Entry::Vacant(e) => {
10114                                                 if inbound_peer_limited {
10115                                                         res = Err(());
10116                                                         return NotifyOption::SkipPersistNoEvents;
10117                                                 }
10118                                                 e.insert(Mutex::new(PeerState {
10119                                                         channel_by_id: new_hash_map(),
10120                                                         inbound_channel_request_by_id: new_hash_map(),
10121                                                         latest_features: init_msg.features.clone(),
10122                                                         pending_msg_events: Vec::new(),
10123                                                         in_flight_monitor_updates: BTreeMap::new(),
10124                                                         monitor_update_blocked_actions: BTreeMap::new(),
10125                                                         actions_blocking_raa_monitor_updates: BTreeMap::new(),
10126                                                         is_connected: true,
10127                                                 }));
10128                                         },
10129                                         hash_map::Entry::Occupied(e) => {
10130                                                 let mut peer_state = e.get().lock().unwrap();
10131                                                 peer_state.latest_features = init_msg.features.clone();
10132
10133                                                 let best_block_height = self.best_block.read().unwrap().height;
10134                                                 if inbound_peer_limited &&
10135                                                         Self::unfunded_channel_count(&*peer_state, best_block_height) ==
10136                                                         peer_state.channel_by_id.len()
10137                                                 {
10138                                                         res = Err(());
10139                                                         return NotifyOption::SkipPersistNoEvents;
10140                                                 }
10141
10142                                                 debug_assert!(!peer_state.is_connected, "A peer shouldn't be connected twice");
10143                                                 peer_state.is_connected = true;
10144                                         },
10145                                 }
10146                         }
10147
10148                         log_debug!(logger, "Generating channel_reestablish events for {}", log_pubkey!(counterparty_node_id));
10149
10150                         let per_peer_state = self.per_peer_state.read().unwrap();
10151                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
10152                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
10153                                 let peer_state = &mut *peer_state_lock;
10154                                 let pending_msg_events = &mut peer_state.pending_msg_events;
10155
10156                                 for (_, phase) in peer_state.channel_by_id.iter_mut() {
10157                                         match phase {
10158                                                 ChannelPhase::Funded(chan) => {
10159                                                         let logger = WithChannelContext::from(&self.logger, &chan.context, None);
10160                                                         pending_msg_events.push(events::MessageSendEvent::SendChannelReestablish {
10161                                                                 node_id: chan.context.get_counterparty_node_id(),
10162                                                                 msg: chan.get_channel_reestablish(&&logger),
10163                                                         });
10164                                                 }
10165
10166                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
10167                                                         pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
10168                                                                 node_id: chan.context.get_counterparty_node_id(),
10169                                                                 msg: chan.get_open_channel(self.chain_hash),
10170                                                         });
10171                                                 }
10172
10173                                                 // TODO(dual_funding): Combine this match arm with above once #[cfg(any(dual_funding, splicing))] is removed.
10174                                                 #[cfg(any(dual_funding, splicing))]
10175                                                 ChannelPhase::UnfundedOutboundV2(chan) => {
10176                                                         pending_msg_events.push(events::MessageSendEvent::SendOpenChannelV2 {
10177                                                                 node_id: chan.context.get_counterparty_node_id(),
10178                                                                 msg: chan.get_open_channel_v2(self.chain_hash),
10179                                                         });
10180                                                 },
10181
10182                                                 ChannelPhase::UnfundedInboundV1(_) => {
10183                                                         // Since unfunded inbound channel maps are cleared upon disconnecting a peer,
10184                                                         // they are not persisted and won't be recovered after a crash.
10185                                                         // Therefore, they shouldn't exist at this point.
10186                                                         debug_assert!(false);
10187                                                 }
10188
10189                                                 // TODO(dual_funding): Combine this match arm with above once #[cfg(any(dual_funding, splicing))] is removed.
10190                                                 #[cfg(any(dual_funding, splicing))]
10191                                                 ChannelPhase::UnfundedInboundV2(channel) => {
10192                                                         // Since unfunded inbound channel maps are cleared upon disconnecting a peer,
10193                                                         // they are not persisted and won't be recovered after a crash.
10194                                                         // Therefore, they shouldn't exist at this point.
10195                                                         debug_assert!(false);
10196                                                 },
10197                                         }
10198                                 }
10199                         }
10200
10201                         return NotifyOption::SkipPersistHandleEvents;
10202                         //TODO: Also re-broadcast announcement_signatures
10203                 });
10204                 res
10205         }
10206
10207         fn handle_error(&self, counterparty_node_id: &PublicKey, msg: &msgs::ErrorMessage) {
10208                 match &msg.data as &str {
10209                         "cannot co-op close channel w/ active htlcs"|
10210                         "link failed to shutdown" =>
10211                         {
10212                                 // LND hasn't properly handled shutdown messages ever, and force-closes any time we
10213                                 // send one while HTLCs are still present. The issue is tracked at
10214                                 // https://github.com/lightningnetwork/lnd/issues/6039 and has had multiple patches
10215                                 // to fix it but none so far have managed to land upstream. The issue appears to be
10216                                 // very low priority for the LND team despite being marked "P1".
10217                                 // We're not going to bother handling this in a sensible way, instead simply
10218                                 // repeating the Shutdown message on repeat until morale improves.
10219                                 if !msg.channel_id.is_zero() {
10220                                         PersistenceNotifierGuard::optionally_notify(
10221                                                 self,
10222                                                 || -> NotifyOption {
10223                                                         let per_peer_state = self.per_peer_state.read().unwrap();
10224                                                         let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
10225                                                         if peer_state_mutex_opt.is_none() { return NotifyOption::SkipPersistNoEvents; }
10226                                                         let mut peer_state = peer_state_mutex_opt.unwrap().lock().unwrap();
10227                                                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get(&msg.channel_id) {
10228                                                                 if let Some(msg) = chan.get_outbound_shutdown() {
10229                                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
10230                                                                                 node_id: *counterparty_node_id,
10231                                                                                 msg,
10232                                                                         });
10233                                                                 }
10234                                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::HandleError {
10235                                                                         node_id: *counterparty_node_id,
10236                                                                         action: msgs::ErrorAction::SendWarningMessage {
10237                                                                                 msg: msgs::WarningMessage {
10238                                                                                         channel_id: msg.channel_id,
10239                                                                                         data: "You appear to be exhibiting LND bug 6039, we'll keep sending you shutdown messages until you handle them correctly".to_owned()
10240                                                                                 },
10241                                                                                 log_level: Level::Trace,
10242                                                                         }
10243                                                                 });
10244                                                                 // This can happen in a fairly tight loop, so we absolutely cannot trigger
10245                                                                 // a `ChannelManager` write here.
10246                                                                 return NotifyOption::SkipPersistHandleEvents;
10247                                                         }
10248                                                         NotifyOption::SkipPersistNoEvents
10249                                                 }
10250                                         );
10251                                 }
10252                                 return;
10253                         }
10254                         _ => {}
10255                 }
10256
10257                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
10258
10259                 if msg.channel_id.is_zero() {
10260                         let channel_ids: Vec<ChannelId> = {
10261                                 let per_peer_state = self.per_peer_state.read().unwrap();
10262                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
10263                                 if peer_state_mutex_opt.is_none() { return; }
10264                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
10265                                 let peer_state = &mut *peer_state_lock;
10266                                 // Note that we don't bother generating any events for pre-accept channels -
10267                                 // they're not considered "channels" yet from the PoV of our events interface.
10268                                 peer_state.inbound_channel_request_by_id.clear();
10269                                 peer_state.channel_by_id.keys().cloned().collect()
10270                         };
10271                         for channel_id in channel_ids {
10272                                 // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
10273                                 let _ = self.force_close_channel_with_peer(&channel_id, counterparty_node_id, Some(&msg.data), true);
10274                         }
10275                 } else {
10276                         {
10277                                 // First check if we can advance the channel type and try again.
10278                                 let per_peer_state = self.per_peer_state.read().unwrap();
10279                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
10280                                 if peer_state_mutex_opt.is_none() { return; }
10281                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
10282                                 let peer_state = &mut *peer_state_lock;
10283                                 match peer_state.channel_by_id.get_mut(&msg.channel_id) {
10284                                         Some(ChannelPhase::UnfundedOutboundV1(ref mut chan)) => {
10285                                                 if let Ok(msg) = chan.maybe_handle_error_without_close(self.chain_hash, &self.fee_estimator) {
10286                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
10287                                                                 node_id: *counterparty_node_id,
10288                                                                 msg,
10289                                                         });
10290                                                         return;
10291                                                 }
10292                                         },
10293                                         #[cfg(any(dual_funding, splicing))]
10294                                         Some(ChannelPhase::UnfundedOutboundV2(ref mut chan)) => {
10295                                                 if let Ok(msg) = chan.maybe_handle_error_without_close(self.chain_hash, &self.fee_estimator) {
10296                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannelV2 {
10297                                                                 node_id: *counterparty_node_id,
10298                                                                 msg,
10299                                                         });
10300                                                         return;
10301                                                 }
10302                                         },
10303                                         None | Some(ChannelPhase::UnfundedInboundV1(_) | ChannelPhase::Funded(_)) => (),
10304                                         #[cfg(any(dual_funding, splicing))]
10305                                         Some(ChannelPhase::UnfundedInboundV2(_)) => (),
10306                                 }
10307                         }
10308
10309                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
10310                         let _ = self.force_close_channel_with_peer(&msg.channel_id, counterparty_node_id, Some(&msg.data), true);
10311                 }
10312         }
10313
10314         fn provided_node_features(&self) -> NodeFeatures {
10315                 provided_node_features(&self.default_configuration)
10316         }
10317
10318         fn provided_init_features(&self, _their_init_features: &PublicKey) -> InitFeatures {
10319                 provided_init_features(&self.default_configuration)
10320         }
10321
10322         fn get_chain_hashes(&self) -> Option<Vec<ChainHash>> {
10323                 Some(vec![self.chain_hash])
10324         }
10325
10326         fn handle_tx_add_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddInput) {
10327                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
10328                         "Dual-funded channels not supported".to_owned(),
10329                          msg.channel_id.clone())), *counterparty_node_id);
10330         }
10331
10332         fn handle_tx_add_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddOutput) {
10333                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
10334                         "Dual-funded channels not supported".to_owned(),
10335                          msg.channel_id.clone())), *counterparty_node_id);
10336         }
10337
10338         fn handle_tx_remove_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveInput) {
10339                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
10340                         "Dual-funded channels not supported".to_owned(),
10341                          msg.channel_id.clone())), *counterparty_node_id);
10342         }
10343
10344         fn handle_tx_remove_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveOutput) {
10345                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
10346                         "Dual-funded channels not supported".to_owned(),
10347                          msg.channel_id.clone())), *counterparty_node_id);
10348         }
10349
10350         fn handle_tx_complete(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxComplete) {
10351                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
10352                         "Dual-funded channels not supported".to_owned(),
10353                          msg.channel_id.clone())), *counterparty_node_id);
10354         }
10355
10356         fn handle_tx_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxSignatures) {
10357                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
10358                         "Dual-funded channels not supported".to_owned(),
10359                          msg.channel_id.clone())), *counterparty_node_id);
10360         }
10361
10362         fn handle_tx_init_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxInitRbf) {
10363                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
10364                         "Dual-funded channels not supported".to_owned(),
10365                          msg.channel_id.clone())), *counterparty_node_id);
10366         }
10367
10368         fn handle_tx_ack_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAckRbf) {
10369                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
10370                         "Dual-funded channels not supported".to_owned(),
10371                          msg.channel_id.clone())), *counterparty_node_id);
10372         }
10373
10374         fn handle_tx_abort(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAbort) {
10375                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
10376                         "Dual-funded channels not supported".to_owned(),
10377                          msg.channel_id.clone())), *counterparty_node_id);
10378         }
10379 }
10380
10381 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
10382 OffersMessageHandler for ChannelManager<M, T, ES, NS, SP, F, R, L>
10383 where
10384         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
10385         T::Target: BroadcasterInterface,
10386         ES::Target: EntropySource,
10387         NS::Target: NodeSigner,
10388         SP::Target: SignerProvider,
10389         F::Target: FeeEstimator,
10390         R::Target: Router,
10391         L::Target: Logger,
10392 {
10393         fn handle_message(&self, message: OffersMessage, responder: Option<Responder>) -> ResponseInstruction<OffersMessage> {
10394                 let secp_ctx = &self.secp_ctx;
10395                 let expanded_key = &self.inbound_payment_key;
10396
10397                 match message {
10398                         OffersMessage::InvoiceRequest(invoice_request) => {
10399                                 let responder = match responder {
10400                                         Some(responder) => responder,
10401                                         None => return ResponseInstruction::NoResponse,
10402                                 };
10403                                 let amount_msats = match InvoiceBuilder::<DerivedSigningPubkey>::amount_msats(
10404                                         &invoice_request
10405                                 ) {
10406                                         Ok(amount_msats) => amount_msats,
10407                                         Err(error) => return responder.respond(OffersMessage::InvoiceError(error.into())),
10408                                 };
10409                                 let invoice_request = match invoice_request.verify(expanded_key, secp_ctx) {
10410                                         Ok(invoice_request) => invoice_request,
10411                                         Err(()) => {
10412                                                 let error = Bolt12SemanticError::InvalidMetadata;
10413                                                 return responder.respond(OffersMessage::InvoiceError(error.into()));
10414                                         },
10415                                 };
10416
10417                                 let relative_expiry = DEFAULT_RELATIVE_EXPIRY.as_secs() as u32;
10418                                 let (payment_hash, payment_secret) = match self.create_inbound_payment(
10419                                         Some(amount_msats), relative_expiry, None
10420                                 ) {
10421                                         Ok((payment_hash, payment_secret)) => (payment_hash, payment_secret),
10422                                         Err(()) => {
10423                                                 let error = Bolt12SemanticError::InvalidAmount;
10424                                                 return responder.respond(OffersMessage::InvoiceError(error.into()));
10425                                         },
10426                                 };
10427
10428                                 let payment_context = PaymentContext::Bolt12Offer(Bolt12OfferContext {
10429                                         offer_id: invoice_request.offer_id,
10430                                         invoice_request: invoice_request.fields(),
10431                                 });
10432                                 let payment_paths = match self.create_blinded_payment_paths(
10433                                         amount_msats, payment_secret, payment_context
10434                                 ) {
10435                                         Ok(payment_paths) => payment_paths,
10436                                         Err(()) => {
10437                                                 let error = Bolt12SemanticError::MissingPaths;
10438                                                 return responder.respond(OffersMessage::InvoiceError(error.into()));
10439                                         },
10440                                 };
10441
10442                                 #[cfg(not(feature = "std"))]
10443                                 let created_at = Duration::from_secs(
10444                                         self.highest_seen_timestamp.load(Ordering::Acquire) as u64
10445                                 );
10446
10447                                 let response = if invoice_request.keys.is_some() {
10448                                         #[cfg(feature = "std")]
10449                                         let builder = invoice_request.respond_using_derived_keys(
10450                                                 payment_paths, payment_hash
10451                                         );
10452                                         #[cfg(not(feature = "std"))]
10453                                         let builder = invoice_request.respond_using_derived_keys_no_std(
10454                                                 payment_paths, payment_hash, created_at
10455                                         );
10456                                         builder
10457                                                 .map(InvoiceBuilder::<DerivedSigningPubkey>::from)
10458                                                 .and_then(|builder| builder.allow_mpp().build_and_sign(secp_ctx))
10459                                                 .map_err(InvoiceError::from)
10460                                 } else {
10461                                         #[cfg(feature = "std")]
10462                                         let builder = invoice_request.respond_with(payment_paths, payment_hash);
10463                                         #[cfg(not(feature = "std"))]
10464                                         let builder = invoice_request.respond_with_no_std(
10465                                                 payment_paths, payment_hash, created_at
10466                                         );
10467                                         builder
10468                                                 .map(InvoiceBuilder::<ExplicitSigningPubkey>::from)
10469                                                 .and_then(|builder| builder.allow_mpp().build())
10470                                                 .map_err(InvoiceError::from)
10471                                                 .and_then(|invoice| {
10472                                                         #[cfg(c_bindings)]
10473                                                         let mut invoice = invoice;
10474                                                         invoice
10475                                                                 .sign(|invoice: &UnsignedBolt12Invoice|
10476                                                                         self.node_signer.sign_bolt12_invoice(invoice)
10477                                                                 )
10478                                                                 .map_err(InvoiceError::from)
10479                                                 })
10480                                 };
10481
10482                                 match response {
10483                                         Ok(invoice) => return responder.respond(OffersMessage::Invoice(invoice)),
10484                                         Err(error) => return responder.respond(OffersMessage::InvoiceError(error.into())),
10485                                 }
10486                         },
10487                         OffersMessage::Invoice(invoice) => {
10488                                 let response = invoice
10489                                         .verify(expanded_key, secp_ctx)
10490                                         .map_err(|()| InvoiceError::from_string("Unrecognized invoice".to_owned()))
10491                                         .and_then(|payment_id| {
10492                                                 let features = self.bolt12_invoice_features();
10493                                                 if invoice.invoice_features().requires_unknown_bits_from(&features) {
10494                                                         Err(InvoiceError::from(Bolt12SemanticError::UnknownRequiredFeatures))
10495                                                 } else {
10496                                                         self.send_payment_for_bolt12_invoice(&invoice, payment_id)
10497                                                                 .map_err(|e| {
10498                                                                         log_trace!(self.logger, "Failed paying invoice: {:?}", e);
10499                                                                         InvoiceError::from_string(format!("{:?}", e))
10500                                                                 })
10501                                                 }
10502                                         });
10503
10504                                 match (responder, response) {
10505                                         (Some(responder), Err(e)) => responder.respond(OffersMessage::InvoiceError(e)),
10506                                         (None, Err(_)) => {
10507                                                 log_trace!(
10508                                                         self.logger,
10509                                                         "A response was generated, but there is no reply_path specified for sending the response."
10510                                                 );
10511                                                 return ResponseInstruction::NoResponse;
10512                                         }
10513                                         _ => return ResponseInstruction::NoResponse,
10514                                 }
10515                         },
10516                         OffersMessage::InvoiceError(invoice_error) => {
10517                                 log_trace!(self.logger, "Received invoice_error: {}", invoice_error);
10518                                 return ResponseInstruction::NoResponse;
10519                         },
10520                 }
10521         }
10522
10523         fn release_pending_messages(&self) -> Vec<PendingOnionMessage<OffersMessage>> {
10524                 core::mem::take(&mut self.pending_offers_messages.lock().unwrap())
10525         }
10526 }
10527
10528 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
10529 NodeIdLookUp for ChannelManager<M, T, ES, NS, SP, F, R, L>
10530 where
10531         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
10532         T::Target: BroadcasterInterface,
10533         ES::Target: EntropySource,
10534         NS::Target: NodeSigner,
10535         SP::Target: SignerProvider,
10536         F::Target: FeeEstimator,
10537         R::Target: Router,
10538         L::Target: Logger,
10539 {
10540         fn next_node_id(&self, short_channel_id: u64) -> Option<PublicKey> {
10541                 self.short_to_chan_info.read().unwrap().get(&short_channel_id).map(|(pubkey, _)| *pubkey)
10542         }
10543 }
10544
10545 /// Fetches the set of [`NodeFeatures`] flags that are provided by or required by
10546 /// [`ChannelManager`].
10547 pub(crate) fn provided_node_features(config: &UserConfig) -> NodeFeatures {
10548         let mut node_features = provided_init_features(config).to_context();
10549         node_features.set_keysend_optional();
10550         node_features
10551 }
10552
10553 /// Fetches the set of [`Bolt11InvoiceFeatures`] flags that are provided by or required by
10554 /// [`ChannelManager`].
10555 ///
10556 /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
10557 /// or not. Thus, this method is not public.
10558 #[cfg(any(feature = "_test_utils", test))]
10559 pub(crate) fn provided_bolt11_invoice_features(config: &UserConfig) -> Bolt11InvoiceFeatures {
10560         provided_init_features(config).to_context()
10561 }
10562
10563 /// Fetches the set of [`Bolt12InvoiceFeatures`] flags that are provided by or required by
10564 /// [`ChannelManager`].
10565 pub(crate) fn provided_bolt12_invoice_features(config: &UserConfig) -> Bolt12InvoiceFeatures {
10566         provided_init_features(config).to_context()
10567 }
10568
10569 /// Fetches the set of [`ChannelFeatures`] flags that are provided by or required by
10570 /// [`ChannelManager`].
10571 pub(crate) fn provided_channel_features(config: &UserConfig) -> ChannelFeatures {
10572         provided_init_features(config).to_context()
10573 }
10574
10575 /// Fetches the set of [`ChannelTypeFeatures`] flags that are provided by or required by
10576 /// [`ChannelManager`].
10577 pub(crate) fn provided_channel_type_features(config: &UserConfig) -> ChannelTypeFeatures {
10578         ChannelTypeFeatures::from_init(&provided_init_features(config))
10579 }
10580
10581 /// Fetches the set of [`InitFeatures`] flags that are provided by or required by
10582 /// [`ChannelManager`].
10583 pub fn provided_init_features(config: &UserConfig) -> InitFeatures {
10584         // Note that if new features are added here which other peers may (eventually) require, we
10585         // should also add the corresponding (optional) bit to the [`ChannelMessageHandler`] impl for
10586         // [`ErroringMessageHandler`].
10587         let mut features = InitFeatures::empty();
10588         features.set_data_loss_protect_required();
10589         features.set_upfront_shutdown_script_optional();
10590         features.set_variable_length_onion_required();
10591         features.set_static_remote_key_required();
10592         features.set_payment_secret_required();
10593         features.set_basic_mpp_optional();
10594         features.set_wumbo_optional();
10595         features.set_shutdown_any_segwit_optional();
10596         features.set_channel_type_optional();
10597         features.set_scid_privacy_optional();
10598         features.set_zero_conf_optional();
10599         features.set_route_blinding_optional();
10600         if config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx {
10601                 features.set_anchors_zero_fee_htlc_tx_optional();
10602         }
10603         features
10604 }
10605
10606 const SERIALIZATION_VERSION: u8 = 1;
10607 const MIN_SERIALIZATION_VERSION: u8 = 1;
10608
10609 impl_writeable_tlv_based!(CounterpartyForwardingInfo, {
10610         (2, fee_base_msat, required),
10611         (4, fee_proportional_millionths, required),
10612         (6, cltv_expiry_delta, required),
10613 });
10614
10615 impl_writeable_tlv_based!(ChannelCounterparty, {
10616         (2, node_id, required),
10617         (4, features, required),
10618         (6, unspendable_punishment_reserve, required),
10619         (8, forwarding_info, option),
10620         (9, outbound_htlc_minimum_msat, option),
10621         (11, outbound_htlc_maximum_msat, option),
10622 });
10623
10624 impl Writeable for ChannelDetails {
10625         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
10626                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
10627                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
10628                 let user_channel_id_low = self.user_channel_id as u64;
10629                 let user_channel_id_high_opt = Some((self.user_channel_id >> 64) as u64);
10630                 write_tlv_fields!(writer, {
10631                         (1, self.inbound_scid_alias, option),
10632                         (2, self.channel_id, required),
10633                         (3, self.channel_type, option),
10634                         (4, self.counterparty, required),
10635                         (5, self.outbound_scid_alias, option),
10636                         (6, self.funding_txo, option),
10637                         (7, self.config, option),
10638                         (8, self.short_channel_id, option),
10639                         (9, self.confirmations, option),
10640                         (10, self.channel_value_satoshis, required),
10641                         (12, self.unspendable_punishment_reserve, option),
10642                         (14, user_channel_id_low, required),
10643                         (16, self.balance_msat, required),
10644                         (18, self.outbound_capacity_msat, required),
10645                         (19, self.next_outbound_htlc_limit_msat, required),
10646                         (20, self.inbound_capacity_msat, required),
10647                         (21, self.next_outbound_htlc_minimum_msat, required),
10648                         (22, self.confirmations_required, option),
10649                         (24, self.force_close_spend_delay, option),
10650                         (26, self.is_outbound, required),
10651                         (28, self.is_channel_ready, required),
10652                         (30, self.is_usable, required),
10653                         (32, self.is_public, required),
10654                         (33, self.inbound_htlc_minimum_msat, option),
10655                         (35, self.inbound_htlc_maximum_msat, option),
10656                         (37, user_channel_id_high_opt, option),
10657                         (39, self.feerate_sat_per_1000_weight, option),
10658                         (41, self.channel_shutdown_state, option),
10659                         (43, self.pending_inbound_htlcs, optional_vec),
10660                         (45, self.pending_outbound_htlcs, optional_vec),
10661                 });
10662                 Ok(())
10663         }
10664 }
10665
10666 impl Readable for ChannelDetails {
10667         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
10668                 _init_and_read_len_prefixed_tlv_fields!(reader, {
10669                         (1, inbound_scid_alias, option),
10670                         (2, channel_id, required),
10671                         (3, channel_type, option),
10672                         (4, counterparty, required),
10673                         (5, outbound_scid_alias, option),
10674                         (6, funding_txo, option),
10675                         (7, config, option),
10676                         (8, short_channel_id, option),
10677                         (9, confirmations, option),
10678                         (10, channel_value_satoshis, required),
10679                         (12, unspendable_punishment_reserve, option),
10680                         (14, user_channel_id_low, required),
10681                         (16, balance_msat, required),
10682                         (18, outbound_capacity_msat, required),
10683                         // Note that by the time we get past the required read above, outbound_capacity_msat will be
10684                         // filled in, so we can safely unwrap it here.
10685                         (19, next_outbound_htlc_limit_msat, (default_value, outbound_capacity_msat.0.unwrap() as u64)),
10686                         (20, inbound_capacity_msat, required),
10687                         (21, next_outbound_htlc_minimum_msat, (default_value, 0)),
10688                         (22, confirmations_required, option),
10689                         (24, force_close_spend_delay, option),
10690                         (26, is_outbound, required),
10691                         (28, is_channel_ready, required),
10692                         (30, is_usable, required),
10693                         (32, is_public, required),
10694                         (33, inbound_htlc_minimum_msat, option),
10695                         (35, inbound_htlc_maximum_msat, option),
10696                         (37, user_channel_id_high_opt, option),
10697                         (39, feerate_sat_per_1000_weight, option),
10698                         (41, channel_shutdown_state, option),
10699                         (43, pending_inbound_htlcs, optional_vec),
10700                         (45, pending_outbound_htlcs, optional_vec),
10701                 });
10702
10703                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
10704                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
10705                 let user_channel_id_low: u64 = user_channel_id_low.0.unwrap();
10706                 let user_channel_id = user_channel_id_low as u128 +
10707                         ((user_channel_id_high_opt.unwrap_or(0 as u64) as u128) << 64);
10708
10709                 Ok(Self {
10710                         inbound_scid_alias,
10711                         channel_id: channel_id.0.unwrap(),
10712                         channel_type,
10713                         counterparty: counterparty.0.unwrap(),
10714                         outbound_scid_alias,
10715                         funding_txo,
10716                         config,
10717                         short_channel_id,
10718                         channel_value_satoshis: channel_value_satoshis.0.unwrap(),
10719                         unspendable_punishment_reserve,
10720                         user_channel_id,
10721                         balance_msat: balance_msat.0.unwrap(),
10722                         outbound_capacity_msat: outbound_capacity_msat.0.unwrap(),
10723                         next_outbound_htlc_limit_msat: next_outbound_htlc_limit_msat.0.unwrap(),
10724                         next_outbound_htlc_minimum_msat: next_outbound_htlc_minimum_msat.0.unwrap(),
10725                         inbound_capacity_msat: inbound_capacity_msat.0.unwrap(),
10726                         confirmations_required,
10727                         confirmations,
10728                         force_close_spend_delay,
10729                         is_outbound: is_outbound.0.unwrap(),
10730                         is_channel_ready: is_channel_ready.0.unwrap(),
10731                         is_usable: is_usable.0.unwrap(),
10732                         is_public: is_public.0.unwrap(),
10733                         inbound_htlc_minimum_msat,
10734                         inbound_htlc_maximum_msat,
10735                         feerate_sat_per_1000_weight,
10736                         channel_shutdown_state,
10737                         pending_inbound_htlcs: pending_inbound_htlcs.unwrap_or(Vec::new()),
10738                         pending_outbound_htlcs: pending_outbound_htlcs.unwrap_or(Vec::new()),
10739                 })
10740         }
10741 }
10742
10743 impl_writeable_tlv_based!(PhantomRouteHints, {
10744         (2, channels, required_vec),
10745         (4, phantom_scid, required),
10746         (6, real_node_pubkey, required),
10747 });
10748
10749 impl_writeable_tlv_based!(BlindedForward, {
10750         (0, inbound_blinding_point, required),
10751         (1, failure, (default_value, BlindedFailure::FromIntroductionNode)),
10752 });
10753
10754 impl_writeable_tlv_based_enum!(PendingHTLCRouting,
10755         (0, Forward) => {
10756                 (0, onion_packet, required),
10757                 (1, blinded, option),
10758                 (2, short_channel_id, required),
10759         },
10760         (1, Receive) => {
10761                 (0, payment_data, required),
10762                 (1, phantom_shared_secret, option),
10763                 (2, incoming_cltv_expiry, required),
10764                 (3, payment_metadata, option),
10765                 (5, custom_tlvs, optional_vec),
10766                 (7, requires_blinded_error, (default_value, false)),
10767                 (9, payment_context, option),
10768         },
10769         (2, ReceiveKeysend) => {
10770                 (0, payment_preimage, required),
10771                 (1, requires_blinded_error, (default_value, false)),
10772                 (2, incoming_cltv_expiry, required),
10773                 (3, payment_metadata, option),
10774                 (4, payment_data, option), // Added in 0.0.116
10775                 (5, custom_tlvs, optional_vec),
10776         },
10777 ;);
10778
10779 impl_writeable_tlv_based!(PendingHTLCInfo, {
10780         (0, routing, required),
10781         (2, incoming_shared_secret, required),
10782         (4, payment_hash, required),
10783         (6, outgoing_amt_msat, required),
10784         (8, outgoing_cltv_value, required),
10785         (9, incoming_amt_msat, option),
10786         (10, skimmed_fee_msat, option),
10787 });
10788
10789
10790 impl Writeable for HTLCFailureMsg {
10791         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
10792                 match self {
10793                         HTLCFailureMsg::Relay(msgs::UpdateFailHTLC { channel_id, htlc_id, reason }) => {
10794                                 0u8.write(writer)?;
10795                                 channel_id.write(writer)?;
10796                                 htlc_id.write(writer)?;
10797                                 reason.write(writer)?;
10798                         },
10799                         HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
10800                                 channel_id, htlc_id, sha256_of_onion, failure_code
10801                         }) => {
10802                                 1u8.write(writer)?;
10803                                 channel_id.write(writer)?;
10804                                 htlc_id.write(writer)?;
10805                                 sha256_of_onion.write(writer)?;
10806                                 failure_code.write(writer)?;
10807                         },
10808                 }
10809                 Ok(())
10810         }
10811 }
10812
10813 impl Readable for HTLCFailureMsg {
10814         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
10815                 let id: u8 = Readable::read(reader)?;
10816                 match id {
10817                         0 => {
10818                                 Ok(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
10819                                         channel_id: Readable::read(reader)?,
10820                                         htlc_id: Readable::read(reader)?,
10821                                         reason: Readable::read(reader)?,
10822                                 }))
10823                         },
10824                         1 => {
10825                                 Ok(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
10826                                         channel_id: Readable::read(reader)?,
10827                                         htlc_id: Readable::read(reader)?,
10828                                         sha256_of_onion: Readable::read(reader)?,
10829                                         failure_code: Readable::read(reader)?,
10830                                 }))
10831                         },
10832                         // In versions prior to 0.0.101, HTLCFailureMsg objects were written with type 0 or 1 but
10833                         // weren't length-prefixed and thus didn't support reading the TLV stream suffix of the network
10834                         // messages contained in the variants.
10835                         // In version 0.0.101, support for reading the variants with these types was added, and
10836                         // we should migrate to writing these variants when UpdateFailHTLC or
10837                         // UpdateFailMalformedHTLC get TLV fields.
10838                         2 => {
10839                                 let length: BigSize = Readable::read(reader)?;
10840                                 let mut s = FixedLengthReader::new(reader, length.0);
10841                                 let res = Readable::read(&mut s)?;
10842                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
10843                                 Ok(HTLCFailureMsg::Relay(res))
10844                         },
10845                         3 => {
10846                                 let length: BigSize = Readable::read(reader)?;
10847                                 let mut s = FixedLengthReader::new(reader, length.0);
10848                                 let res = Readable::read(&mut s)?;
10849                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
10850                                 Ok(HTLCFailureMsg::Malformed(res))
10851                         },
10852                         _ => Err(DecodeError::UnknownRequiredFeature),
10853                 }
10854         }
10855 }
10856
10857 impl_writeable_tlv_based_enum!(PendingHTLCStatus, ;
10858         (0, Forward),
10859         (1, Fail),
10860 );
10861
10862 impl_writeable_tlv_based_enum!(BlindedFailure,
10863         (0, FromIntroductionNode) => {},
10864         (2, FromBlindedNode) => {}, ;
10865 );
10866
10867 impl_writeable_tlv_based!(HTLCPreviousHopData, {
10868         (0, short_channel_id, required),
10869         (1, phantom_shared_secret, option),
10870         (2, outpoint, required),
10871         (3, blinded_failure, option),
10872         (4, htlc_id, required),
10873         (6, incoming_packet_shared_secret, required),
10874         (7, user_channel_id, option),
10875         // Note that by the time we get past the required read for type 2 above, outpoint will be
10876         // filled in, so we can safely unwrap it here.
10877         (9, channel_id, (default_value, ChannelId::v1_from_funding_outpoint(outpoint.0.unwrap()))),
10878 });
10879
10880 impl Writeable for ClaimableHTLC {
10881         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
10882                 let (payment_data, keysend_preimage) = match &self.onion_payload {
10883                         OnionPayload::Invoice { _legacy_hop_data } => {
10884                                 (_legacy_hop_data.as_ref(), None)
10885                         },
10886                         OnionPayload::Spontaneous(preimage) => (None, Some(preimage)),
10887                 };
10888                 write_tlv_fields!(writer, {
10889                         (0, self.prev_hop, required),
10890                         (1, self.total_msat, required),
10891                         (2, self.value, required),
10892                         (3, self.sender_intended_value, required),
10893                         (4, payment_data, option),
10894                         (5, self.total_value_received, option),
10895                         (6, self.cltv_expiry, required),
10896                         (8, keysend_preimage, option),
10897                         (10, self.counterparty_skimmed_fee_msat, option),
10898                 });
10899                 Ok(())
10900         }
10901 }
10902
10903 impl Readable for ClaimableHTLC {
10904         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
10905                 _init_and_read_len_prefixed_tlv_fields!(reader, {
10906                         (0, prev_hop, required),
10907                         (1, total_msat, option),
10908                         (2, value_ser, required),
10909                         (3, sender_intended_value, option),
10910                         (4, payment_data_opt, option),
10911                         (5, total_value_received, option),
10912                         (6, cltv_expiry, required),
10913                         (8, keysend_preimage, option),
10914                         (10, counterparty_skimmed_fee_msat, option),
10915                 });
10916                 let payment_data: Option<msgs::FinalOnionHopData> = payment_data_opt;
10917                 let value = value_ser.0.unwrap();
10918                 let onion_payload = match keysend_preimage {
10919                         Some(p) => {
10920                                 if payment_data.is_some() {
10921                                         return Err(DecodeError::InvalidValue)
10922                                 }
10923                                 if total_msat.is_none() {
10924                                         total_msat = Some(value);
10925                                 }
10926                                 OnionPayload::Spontaneous(p)
10927                         },
10928                         None => {
10929                                 if total_msat.is_none() {
10930                                         if payment_data.is_none() {
10931                                                 return Err(DecodeError::InvalidValue)
10932                                         }
10933                                         total_msat = Some(payment_data.as_ref().unwrap().total_msat);
10934                                 }
10935                                 OnionPayload::Invoice { _legacy_hop_data: payment_data }
10936                         },
10937                 };
10938                 Ok(Self {
10939                         prev_hop: prev_hop.0.unwrap(),
10940                         timer_ticks: 0,
10941                         value,
10942                         sender_intended_value: sender_intended_value.unwrap_or(value),
10943                         total_value_received,
10944                         total_msat: total_msat.unwrap(),
10945                         onion_payload,
10946                         cltv_expiry: cltv_expiry.0.unwrap(),
10947                         counterparty_skimmed_fee_msat,
10948                 })
10949         }
10950 }
10951
10952 impl Readable for HTLCSource {
10953         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
10954                 let id: u8 = Readable::read(reader)?;
10955                 match id {
10956                         0 => {
10957                                 let mut session_priv: crate::util::ser::RequiredWrapper<SecretKey> = crate::util::ser::RequiredWrapper(None);
10958                                 let mut first_hop_htlc_msat: u64 = 0;
10959                                 let mut path_hops = Vec::new();
10960                                 let mut payment_id = None;
10961                                 let mut payment_params: Option<PaymentParameters> = None;
10962                                 let mut blinded_tail: Option<BlindedTail> = None;
10963                                 read_tlv_fields!(reader, {
10964                                         (0, session_priv, required),
10965                                         (1, payment_id, option),
10966                                         (2, first_hop_htlc_msat, required),
10967                                         (4, path_hops, required_vec),
10968                                         (5, payment_params, (option: ReadableArgs, 0)),
10969                                         (6, blinded_tail, option),
10970                                 });
10971                                 if payment_id.is_none() {
10972                                         // For backwards compat, if there was no payment_id written, use the session_priv bytes
10973                                         // instead.
10974                                         payment_id = Some(PaymentId(*session_priv.0.unwrap().as_ref()));
10975                                 }
10976                                 let path = Path { hops: path_hops, blinded_tail };
10977                                 if path.hops.len() == 0 {
10978                                         return Err(DecodeError::InvalidValue);
10979                                 }
10980                                 if let Some(params) = payment_params.as_mut() {
10981                                         if let Payee::Clear { ref mut final_cltv_expiry_delta, .. } = params.payee {
10982                                                 if final_cltv_expiry_delta == &0 {
10983                                                         *final_cltv_expiry_delta = path.final_cltv_expiry_delta().ok_or(DecodeError::InvalidValue)?;
10984                                                 }
10985                                         }
10986                                 }
10987                                 Ok(HTLCSource::OutboundRoute {
10988                                         session_priv: session_priv.0.unwrap(),
10989                                         first_hop_htlc_msat,
10990                                         path,
10991                                         payment_id: payment_id.unwrap(),
10992                                 })
10993                         }
10994                         1 => Ok(HTLCSource::PreviousHopData(Readable::read(reader)?)),
10995                         _ => Err(DecodeError::UnknownRequiredFeature),
10996                 }
10997         }
10998 }
10999
11000 impl Writeable for HTLCSource {
11001         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), crate::io::Error> {
11002                 match self {
11003                         HTLCSource::OutboundRoute { ref session_priv, ref first_hop_htlc_msat, ref path, payment_id } => {
11004                                 0u8.write(writer)?;
11005                                 let payment_id_opt = Some(payment_id);
11006                                 write_tlv_fields!(writer, {
11007                                         (0, session_priv, required),
11008                                         (1, payment_id_opt, option),
11009                                         (2, first_hop_htlc_msat, required),
11010                                         // 3 was previously used to write a PaymentSecret for the payment.
11011                                         (4, path.hops, required_vec),
11012                                         (5, None::<PaymentParameters>, option), // payment_params in LDK versions prior to 0.0.115
11013                                         (6, path.blinded_tail, option),
11014                                  });
11015                         }
11016                         HTLCSource::PreviousHopData(ref field) => {
11017                                 1u8.write(writer)?;
11018                                 field.write(writer)?;
11019                         }
11020                 }
11021                 Ok(())
11022         }
11023 }
11024
11025 impl_writeable_tlv_based!(PendingAddHTLCInfo, {
11026         (0, forward_info, required),
11027         (1, prev_user_channel_id, (default_value, 0)),
11028         (2, prev_short_channel_id, required),
11029         (4, prev_htlc_id, required),
11030         (6, prev_funding_outpoint, required),
11031         // Note that by the time we get past the required read for type 6 above, prev_funding_outpoint will be
11032         // filled in, so we can safely unwrap it here.
11033         (7, prev_channel_id, (default_value, ChannelId::v1_from_funding_outpoint(prev_funding_outpoint.0.unwrap()))),
11034 });
11035
11036 impl Writeable for HTLCForwardInfo {
11037         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
11038                 const FAIL_HTLC_VARIANT_ID: u8 = 1;
11039                 match self {
11040                         Self::AddHTLC(info) => {
11041                                 0u8.write(w)?;
11042                                 info.write(w)?;
11043                         },
11044                         Self::FailHTLC { htlc_id, err_packet } => {
11045                                 FAIL_HTLC_VARIANT_ID.write(w)?;
11046                                 write_tlv_fields!(w, {
11047                                         (0, htlc_id, required),
11048                                         (2, err_packet, required),
11049                                 });
11050                         },
11051                         Self::FailMalformedHTLC { htlc_id, failure_code, sha256_of_onion } => {
11052                                 // Since this variant was added in 0.0.119, write this as `::FailHTLC` with an empty error
11053                                 // packet so older versions have something to fail back with, but serialize the real data as
11054                                 // optional TLVs for the benefit of newer versions.
11055                                 FAIL_HTLC_VARIANT_ID.write(w)?;
11056                                 let dummy_err_packet = msgs::OnionErrorPacket { data: Vec::new() };
11057                                 write_tlv_fields!(w, {
11058                                         (0, htlc_id, required),
11059                                         (1, failure_code, required),
11060                                         (2, dummy_err_packet, required),
11061                                         (3, sha256_of_onion, required),
11062                                 });
11063                         },
11064                 }
11065                 Ok(())
11066         }
11067 }
11068
11069 impl Readable for HTLCForwardInfo {
11070         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
11071                 let id: u8 = Readable::read(r)?;
11072                 Ok(match id {
11073                         0 => Self::AddHTLC(Readable::read(r)?),
11074                         1 => {
11075                                 _init_and_read_len_prefixed_tlv_fields!(r, {
11076                                         (0, htlc_id, required),
11077                                         (1, malformed_htlc_failure_code, option),
11078                                         (2, err_packet, required),
11079                                         (3, sha256_of_onion, option),
11080                                 });
11081                                 if let Some(failure_code) = malformed_htlc_failure_code {
11082                                         Self::FailMalformedHTLC {
11083                                                 htlc_id: _init_tlv_based_struct_field!(htlc_id, required),
11084                                                 failure_code,
11085                                                 sha256_of_onion: sha256_of_onion.ok_or(DecodeError::InvalidValue)?,
11086                                         }
11087                                 } else {
11088                                         Self::FailHTLC {
11089                                                 htlc_id: _init_tlv_based_struct_field!(htlc_id, required),
11090                                                 err_packet: _init_tlv_based_struct_field!(err_packet, required),
11091                                         }
11092                                 }
11093                         },
11094                         _ => return Err(DecodeError::InvalidValue),
11095                 })
11096         }
11097 }
11098
11099 impl_writeable_tlv_based!(PendingInboundPayment, {
11100         (0, payment_secret, required),
11101         (2, expiry_time, required),
11102         (4, user_payment_id, required),
11103         (6, payment_preimage, required),
11104         (8, min_value_msat, required),
11105 });
11106
11107 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>
11108 where
11109         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
11110         T::Target: BroadcasterInterface,
11111         ES::Target: EntropySource,
11112         NS::Target: NodeSigner,
11113         SP::Target: SignerProvider,
11114         F::Target: FeeEstimator,
11115         R::Target: Router,
11116         L::Target: Logger,
11117 {
11118         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
11119                 let _consistency_lock = self.total_consistency_lock.write().unwrap();
11120
11121                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
11122
11123                 self.chain_hash.write(writer)?;
11124                 {
11125                         let best_block = self.best_block.read().unwrap();
11126                         best_block.height.write(writer)?;
11127                         best_block.block_hash.write(writer)?;
11128                 }
11129
11130                 let per_peer_state = self.per_peer_state.write().unwrap();
11131
11132                 let mut serializable_peer_count: u64 = 0;
11133                 {
11134                         let mut number_of_funded_channels = 0;
11135                         for (_, peer_state_mutex) in per_peer_state.iter() {
11136                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
11137                                 let peer_state = &mut *peer_state_lock;
11138                                 if !peer_state.ok_to_remove(false) {
11139                                         serializable_peer_count += 1;
11140                                 }
11141
11142                                 number_of_funded_channels += peer_state.channel_by_id.iter().filter(
11143                                         |(_, phase)| if let ChannelPhase::Funded(chan) = phase { chan.context.is_funding_broadcast() } else { false }
11144                                 ).count();
11145                         }
11146
11147                         (number_of_funded_channels as u64).write(writer)?;
11148
11149                         for (_, peer_state_mutex) in per_peer_state.iter() {
11150                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
11151                                 let peer_state = &mut *peer_state_lock;
11152                                 for channel in peer_state.channel_by_id.iter().filter_map(
11153                                         |(_, phase)| if let ChannelPhase::Funded(channel) = phase {
11154                                                 if channel.context.is_funding_broadcast() { Some(channel) } else { None }
11155                                         } else { None }
11156                                 ) {
11157                                         channel.write(writer)?;
11158                                 }
11159                         }
11160                 }
11161
11162                 {
11163                         let forward_htlcs = self.forward_htlcs.lock().unwrap();
11164                         (forward_htlcs.len() as u64).write(writer)?;
11165                         for (short_channel_id, pending_forwards) in forward_htlcs.iter() {
11166                                 short_channel_id.write(writer)?;
11167                                 (pending_forwards.len() as u64).write(writer)?;
11168                                 for forward in pending_forwards {
11169                                         forward.write(writer)?;
11170                                 }
11171                         }
11172                 }
11173
11174                 let mut decode_update_add_htlcs_opt = None;
11175                 let decode_update_add_htlcs = self.decode_update_add_htlcs.lock().unwrap();
11176                 if !decode_update_add_htlcs.is_empty() {
11177                         decode_update_add_htlcs_opt = Some(decode_update_add_htlcs);
11178                 }
11179
11180                 let pending_inbound_payments = self.pending_inbound_payments.lock().unwrap();
11181                 let claimable_payments = self.claimable_payments.lock().unwrap();
11182                 let pending_outbound_payments = self.pending_outbound_payments.pending_outbound_payments.lock().unwrap();
11183
11184                 let mut htlc_purposes: Vec<&events::PaymentPurpose> = Vec::new();
11185                 let mut htlc_onion_fields: Vec<&_> = Vec::new();
11186                 (claimable_payments.claimable_payments.len() as u64).write(writer)?;
11187                 for (payment_hash, payment) in claimable_payments.claimable_payments.iter() {
11188                         payment_hash.write(writer)?;
11189                         (payment.htlcs.len() as u64).write(writer)?;
11190                         for htlc in payment.htlcs.iter() {
11191                                 htlc.write(writer)?;
11192                         }
11193                         htlc_purposes.push(&payment.purpose);
11194                         htlc_onion_fields.push(&payment.onion_fields);
11195                 }
11196
11197                 let mut monitor_update_blocked_actions_per_peer = None;
11198                 let mut peer_states = Vec::new();
11199                 for (_, peer_state_mutex) in per_peer_state.iter() {
11200                         // Because we're holding the owning `per_peer_state` write lock here there's no chance
11201                         // of a lockorder violation deadlock - no other thread can be holding any
11202                         // per_peer_state lock at all.
11203                         peer_states.push(peer_state_mutex.unsafe_well_ordered_double_lock_self());
11204                 }
11205
11206                 (serializable_peer_count).write(writer)?;
11207                 for ((peer_pubkey, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
11208                         // Peers which we have no channels to should be dropped once disconnected. As we
11209                         // disconnect all peers when shutting down and serializing the ChannelManager, we
11210                         // consider all peers as disconnected here. There's therefore no need write peers with
11211                         // no channels.
11212                         if !peer_state.ok_to_remove(false) {
11213                                 peer_pubkey.write(writer)?;
11214                                 peer_state.latest_features.write(writer)?;
11215                                 if !peer_state.monitor_update_blocked_actions.is_empty() {
11216                                         monitor_update_blocked_actions_per_peer
11217                                                 .get_or_insert_with(Vec::new)
11218                                                 .push((*peer_pubkey, &peer_state.monitor_update_blocked_actions));
11219                                 }
11220                         }
11221                 }
11222
11223                 let events = self.pending_events.lock().unwrap();
11224                 // LDK versions prior to 0.0.115 don't support post-event actions, thus if there's no
11225                 // actions at all, skip writing the required TLV. Otherwise, pre-0.0.115 versions will
11226                 // refuse to read the new ChannelManager.
11227                 let events_not_backwards_compatible = events.iter().any(|(_, action)| action.is_some());
11228                 if events_not_backwards_compatible {
11229                         // If we're gonna write a even TLV that will overwrite our events anyway we might as
11230                         // well save the space and not write any events here.
11231                         0u64.write(writer)?;
11232                 } else {
11233                         (events.len() as u64).write(writer)?;
11234                         for (event, _) in events.iter() {
11235                                 event.write(writer)?;
11236                         }
11237                 }
11238
11239                 // LDK versions prior to 0.0.116 wrote the `pending_background_events`
11240                 // `MonitorUpdateRegeneratedOnStartup`s here, however there was never a reason to do so -
11241                 // the closing monitor updates were always effectively replayed on startup (either directly
11242                 // by calling `broadcast_latest_holder_commitment_txn` on a `ChannelMonitor` during
11243                 // deserialization or, in 0.0.115, by regenerating the monitor update itself).
11244                 0u64.write(writer)?;
11245
11246                 // Prior to 0.0.111 we tracked node_announcement serials here, however that now happens in
11247                 // `PeerManager`, and thus we simply write the `highest_seen_timestamp` twice, which is
11248                 // likely to be identical.
11249                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
11250                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
11251
11252                 (pending_inbound_payments.len() as u64).write(writer)?;
11253                 for (hash, pending_payment) in pending_inbound_payments.iter() {
11254                         hash.write(writer)?;
11255                         pending_payment.write(writer)?;
11256                 }
11257
11258                 // For backwards compat, write the session privs and their total length.
11259                 let mut num_pending_outbounds_compat: u64 = 0;
11260                 for (_, outbound) in pending_outbound_payments.iter() {
11261                         if !outbound.is_fulfilled() && !outbound.abandoned() {
11262                                 num_pending_outbounds_compat += outbound.remaining_parts() as u64;
11263                         }
11264                 }
11265                 num_pending_outbounds_compat.write(writer)?;
11266                 for (_, outbound) in pending_outbound_payments.iter() {
11267                         match outbound {
11268                                 PendingOutboundPayment::Legacy { session_privs } |
11269                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
11270                                         for session_priv in session_privs.iter() {
11271                                                 session_priv.write(writer)?;
11272                                         }
11273                                 }
11274                                 PendingOutboundPayment::AwaitingInvoice { .. } => {},
11275                                 PendingOutboundPayment::InvoiceReceived { .. } => {},
11276                                 PendingOutboundPayment::Fulfilled { .. } => {},
11277                                 PendingOutboundPayment::Abandoned { .. } => {},
11278                         }
11279                 }
11280
11281                 // Encode without retry info for 0.0.101 compatibility.
11282                 let mut pending_outbound_payments_no_retry: HashMap<PaymentId, HashSet<[u8; 32]>> = new_hash_map();
11283                 for (id, outbound) in pending_outbound_payments.iter() {
11284                         match outbound {
11285                                 PendingOutboundPayment::Legacy { session_privs } |
11286                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
11287                                         pending_outbound_payments_no_retry.insert(*id, session_privs.clone());
11288                                 },
11289                                 _ => {},
11290                         }
11291                 }
11292
11293                 let mut pending_intercepted_htlcs = None;
11294                 let our_pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
11295                 if our_pending_intercepts.len() != 0 {
11296                         pending_intercepted_htlcs = Some(our_pending_intercepts);
11297                 }
11298
11299                 let mut pending_claiming_payments = Some(&claimable_payments.pending_claiming_payments);
11300                 if pending_claiming_payments.as_ref().unwrap().is_empty() {
11301                         // LDK versions prior to 0.0.113 do not know how to read the pending claimed payments
11302                         // map. Thus, if there are no entries we skip writing a TLV for it.
11303                         pending_claiming_payments = None;
11304                 }
11305
11306                 let mut in_flight_monitor_updates: Option<HashMap<(&PublicKey, &OutPoint), &Vec<ChannelMonitorUpdate>>> = None;
11307                 for ((counterparty_id, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
11308                         for (funding_outpoint, updates) in peer_state.in_flight_monitor_updates.iter() {
11309                                 if !updates.is_empty() {
11310                                         if in_flight_monitor_updates.is_none() { in_flight_monitor_updates = Some(new_hash_map()); }
11311                                         in_flight_monitor_updates.as_mut().unwrap().insert((counterparty_id, funding_outpoint), updates);
11312                                 }
11313                         }
11314                 }
11315
11316                 write_tlv_fields!(writer, {
11317                         (1, pending_outbound_payments_no_retry, required),
11318                         (2, pending_intercepted_htlcs, option),
11319                         (3, pending_outbound_payments, required),
11320                         (4, pending_claiming_payments, option),
11321                         (5, self.our_network_pubkey, required),
11322                         (6, monitor_update_blocked_actions_per_peer, option),
11323                         (7, self.fake_scid_rand_bytes, required),
11324                         (8, if events_not_backwards_compatible { Some(&*events) } else { None }, option),
11325                         (9, htlc_purposes, required_vec),
11326                         (10, in_flight_monitor_updates, option),
11327                         (11, self.probing_cookie_secret, required),
11328                         (13, htlc_onion_fields, optional_vec),
11329                         (14, decode_update_add_htlcs_opt, option),
11330                 });
11331
11332                 Ok(())
11333         }
11334 }
11335
11336 impl Writeable for VecDeque<(Event, Option<EventCompletionAction>)> {
11337         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
11338                 (self.len() as u64).write(w)?;
11339                 for (event, action) in self.iter() {
11340                         event.write(w)?;
11341                         action.write(w)?;
11342                         #[cfg(debug_assertions)] {
11343                                 // Events are MaybeReadable, in some cases indicating that they shouldn't actually
11344                                 // be persisted and are regenerated on restart. However, if such an event has a
11345                                 // post-event-handling action we'll write nothing for the event and would have to
11346                                 // either forget the action or fail on deserialization (which we do below). Thus,
11347                                 // check that the event is sane here.
11348                                 let event_encoded = event.encode();
11349                                 let event_read: Option<Event> =
11350                                         MaybeReadable::read(&mut &event_encoded[..]).unwrap();
11351                                 if action.is_some() { assert!(event_read.is_some()); }
11352                         }
11353                 }
11354                 Ok(())
11355         }
11356 }
11357 impl Readable for VecDeque<(Event, Option<EventCompletionAction>)> {
11358         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
11359                 let len: u64 = Readable::read(reader)?;
11360                 const MAX_ALLOC_SIZE: u64 = 1024 * 16;
11361                 let mut events: Self = VecDeque::with_capacity(cmp::min(
11362                         MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>() as u64,
11363                         len) as usize);
11364                 for _ in 0..len {
11365                         let ev_opt = MaybeReadable::read(reader)?;
11366                         let action = Readable::read(reader)?;
11367                         if let Some(ev) = ev_opt {
11368                                 events.push_back((ev, action));
11369                         } else if action.is_some() {
11370                                 return Err(DecodeError::InvalidValue);
11371                         }
11372                 }
11373                 Ok(events)
11374         }
11375 }
11376
11377 impl_writeable_tlv_based_enum!(ChannelShutdownState,
11378         (0, NotShuttingDown) => {},
11379         (2, ShutdownInitiated) => {},
11380         (4, ResolvingHTLCs) => {},
11381         (6, NegotiatingClosingFee) => {},
11382         (8, ShutdownComplete) => {}, ;
11383 );
11384
11385 /// Arguments for the creation of a ChannelManager that are not deserialized.
11386 ///
11387 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
11388 /// is:
11389 /// 1) Deserialize all stored [`ChannelMonitor`]s.
11390 /// 2) Deserialize the [`ChannelManager`] by filling in this struct and calling:
11391 ///    `<(BlockHash, ChannelManager)>::read(reader, args)`
11392 ///    This may result in closing some channels if the [`ChannelMonitor`] is newer than the stored
11393 ///    [`ChannelManager`] state to ensure no loss of funds. Thus, transactions may be broadcasted.
11394 /// 3) If you are not fetching full blocks, register all relevant [`ChannelMonitor`] outpoints the
11395 ///    same way you would handle a [`chain::Filter`] call using
11396 ///    [`ChannelMonitor::get_outputs_to_watch`] and [`ChannelMonitor::get_funding_txo`].
11397 /// 4) Reconnect blocks on your [`ChannelMonitor`]s.
11398 /// 5) Disconnect/connect blocks on the [`ChannelManager`].
11399 /// 6) Re-persist the [`ChannelMonitor`]s to ensure the latest state is on disk.
11400 ///    Note that if you're using a [`ChainMonitor`] for your [`chain::Watch`] implementation, you
11401 ///    will likely accomplish this as a side-effect of calling [`chain::Watch::watch_channel`] in
11402 ///    the next step.
11403 /// 7) Move the [`ChannelMonitor`]s into your local [`chain::Watch`]. If you're using a
11404 ///    [`ChainMonitor`], this is done by calling [`chain::Watch::watch_channel`].
11405 ///
11406 /// Note that the ordering of #4-7 is not of importance, however all four must occur before you
11407 /// call any other methods on the newly-deserialized [`ChannelManager`].
11408 ///
11409 /// Note that because some channels may be closed during deserialization, it is critical that you
11410 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
11411 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
11412 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
11413 /// not force-close the same channels but consider them live), you may end up revoking a state for
11414 /// which you've already broadcasted the transaction.
11415 ///
11416 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
11417 pub struct ChannelManagerReadArgs<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
11418 where
11419         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
11420         T::Target: BroadcasterInterface,
11421         ES::Target: EntropySource,
11422         NS::Target: NodeSigner,
11423         SP::Target: SignerProvider,
11424         F::Target: FeeEstimator,
11425         R::Target: Router,
11426         L::Target: Logger,
11427 {
11428         /// A cryptographically secure source of entropy.
11429         pub entropy_source: ES,
11430
11431         /// A signer that is able to perform node-scoped cryptographic operations.
11432         pub node_signer: NS,
11433
11434         /// The keys provider which will give us relevant keys. Some keys will be loaded during
11435         /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
11436         /// signing data.
11437         pub signer_provider: SP,
11438
11439         /// The fee_estimator for use in the ChannelManager in the future.
11440         ///
11441         /// No calls to the FeeEstimator will be made during deserialization.
11442         pub fee_estimator: F,
11443         /// The chain::Watch for use in the ChannelManager in the future.
11444         ///
11445         /// No calls to the chain::Watch will be made during deserialization. It is assumed that
11446         /// you have deserialized ChannelMonitors separately and will add them to your
11447         /// chain::Watch after deserializing this ChannelManager.
11448         pub chain_monitor: M,
11449
11450         /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
11451         /// used to broadcast the latest local commitment transactions of channels which must be
11452         /// force-closed during deserialization.
11453         pub tx_broadcaster: T,
11454         /// The router which will be used in the ChannelManager in the future for finding routes
11455         /// on-the-fly for trampoline payments. Absent in private nodes that don't support forwarding.
11456         ///
11457         /// No calls to the router will be made during deserialization.
11458         pub router: R,
11459         /// The Logger for use in the ChannelManager and which may be used to log information during
11460         /// deserialization.
11461         pub logger: L,
11462         /// Default settings used for new channels. Any existing channels will continue to use the
11463         /// runtime settings which were stored when the ChannelManager was serialized.
11464         pub default_config: UserConfig,
11465
11466         /// A map from channel funding outpoints to ChannelMonitors for those channels (ie
11467         /// value.context.get_funding_txo() should be the key).
11468         ///
11469         /// If a monitor is inconsistent with the channel state during deserialization the channel will
11470         /// be force-closed using the data in the ChannelMonitor and the channel will be dropped. This
11471         /// is true for missing channels as well. If there is a monitor missing for which we find
11472         /// channel data Err(DecodeError::InvalidValue) will be returned.
11473         ///
11474         /// In such cases the latest local transactions will be sent to the tx_broadcaster included in
11475         /// this struct.
11476         ///
11477         /// This is not exported to bindings users because we have no HashMap bindings
11478         pub channel_monitors: HashMap<OutPoint, &'a mut ChannelMonitor<<SP::Target as SignerProvider>::EcdsaSigner>>,
11479 }
11480
11481 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
11482                 ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>
11483 where
11484         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
11485         T::Target: BroadcasterInterface,
11486         ES::Target: EntropySource,
11487         NS::Target: NodeSigner,
11488         SP::Target: SignerProvider,
11489         F::Target: FeeEstimator,
11490         R::Target: Router,
11491         L::Target: Logger,
11492 {
11493         /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
11494         /// HashMap for you. This is primarily useful for C bindings where it is not practical to
11495         /// populate a HashMap directly from C.
11496         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,
11497                         mut channel_monitors: Vec<&'a mut ChannelMonitor<<SP::Target as SignerProvider>::EcdsaSigner>>) -> Self {
11498                 Self {
11499                         entropy_source, node_signer, signer_provider, fee_estimator, chain_monitor, tx_broadcaster, router, logger, default_config,
11500                         channel_monitors: hash_map_from_iter(
11501                                 channel_monitors.drain(..).map(|monitor| { (monitor.get_funding_txo().0, monitor) })
11502                         ),
11503                 }
11504         }
11505 }
11506
11507 // Implement ReadableArgs for an Arc'd ChannelManager to make it a bit easier to work with the
11508 // SipmleArcChannelManager type:
11509 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
11510         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, Arc<ChannelManager<M, T, ES, NS, SP, F, R, L>>)
11511 where
11512         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
11513         T::Target: BroadcasterInterface,
11514         ES::Target: EntropySource,
11515         NS::Target: NodeSigner,
11516         SP::Target: SignerProvider,
11517         F::Target: FeeEstimator,
11518         R::Target: Router,
11519         L::Target: Logger,
11520 {
11521         fn read<Reader: io::Read>(reader: &mut Reader, args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
11522                 let (blockhash, chan_manager) = <(BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)>::read(reader, args)?;
11523                 Ok((blockhash, Arc::new(chan_manager)))
11524         }
11525 }
11526
11527 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
11528         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)
11529 where
11530         M::Target: chain::Watch<<SP::Target as SignerProvider>::EcdsaSigner>,
11531         T::Target: BroadcasterInterface,
11532         ES::Target: EntropySource,
11533         NS::Target: NodeSigner,
11534         SP::Target: SignerProvider,
11535         F::Target: FeeEstimator,
11536         R::Target: Router,
11537         L::Target: Logger,
11538 {
11539         fn read<Reader: io::Read>(reader: &mut Reader, mut args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
11540                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
11541
11542                 let chain_hash: ChainHash = Readable::read(reader)?;
11543                 let best_block_height: u32 = Readable::read(reader)?;
11544                 let best_block_hash: BlockHash = Readable::read(reader)?;
11545
11546                 let mut failed_htlcs = Vec::new();
11547
11548                 let channel_count: u64 = Readable::read(reader)?;
11549                 let mut funding_txo_set = hash_set_with_capacity(cmp::min(channel_count as usize, 128));
11550                 let mut funded_peer_channels: HashMap<PublicKey, HashMap<ChannelId, ChannelPhase<SP>>> = hash_map_with_capacity(cmp::min(channel_count as usize, 128));
11551                 let mut outpoint_to_peer = hash_map_with_capacity(cmp::min(channel_count as usize, 128));
11552                 let mut short_to_chan_info = hash_map_with_capacity(cmp::min(channel_count as usize, 128));
11553                 let mut channel_closures = VecDeque::new();
11554                 let mut close_background_events = Vec::new();
11555                 let mut funding_txo_to_channel_id = hash_map_with_capacity(channel_count as usize);
11556                 for _ in 0..channel_count {
11557                         let mut channel: Channel<SP> = Channel::read(reader, (
11558                                 &args.entropy_source, &args.signer_provider, best_block_height, &provided_channel_type_features(&args.default_config)
11559                         ))?;
11560                         let logger = WithChannelContext::from(&args.logger, &channel.context, None);
11561                         let funding_txo = channel.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
11562                         funding_txo_to_channel_id.insert(funding_txo, channel.context.channel_id());
11563                         funding_txo_set.insert(funding_txo.clone());
11564                         if let Some(ref mut monitor) = args.channel_monitors.get_mut(&funding_txo) {
11565                                 if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() ||
11566                                                 channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() ||
11567                                                 channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() ||
11568                                                 channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
11569                                         // But if the channel is behind of the monitor, close the channel:
11570                                         log_error!(logger, "A ChannelManager is stale compared to the current ChannelMonitor!");
11571                                         log_error!(logger, " The channel will be force-closed and the latest commitment transaction from the ChannelMonitor broadcast.");
11572                                         if channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
11573                                                 log_error!(logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
11574                                                         &channel.context.channel_id(), monitor.get_latest_update_id(), channel.context.get_latest_monitor_update_id());
11575                                         }
11576                                         if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() {
11577                                                 log_error!(logger, " The ChannelMonitor for channel {} is at holder commitment number {} but the ChannelManager is at holder commitment number {}.",
11578                                                         &channel.context.channel_id(), monitor.get_cur_holder_commitment_number(), channel.get_cur_holder_commitment_transaction_number());
11579                                         }
11580                                         if channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() {
11581                                                 log_error!(logger, " The ChannelMonitor for channel {} is at revoked counterparty transaction number {} but the ChannelManager is at revoked counterparty transaction number {}.",
11582                                                         &channel.context.channel_id(), monitor.get_min_seen_secret(), channel.get_revoked_counterparty_commitment_transaction_number());
11583                                         }
11584                                         if channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() {
11585                                                 log_error!(logger, " The ChannelMonitor for channel {} is at counterparty commitment transaction number {} but the ChannelManager is at counterparty commitment transaction number {}.",
11586                                                         &channel.context.channel_id(), monitor.get_cur_counterparty_commitment_number(), channel.get_cur_counterparty_commitment_transaction_number());
11587                                         }
11588                                         let mut shutdown_result = channel.context.force_shutdown(true, ClosureReason::OutdatedChannelManager);
11589                                         if shutdown_result.unbroadcasted_batch_funding_txid.is_some() {
11590                                                 return Err(DecodeError::InvalidValue);
11591                                         }
11592                                         if let Some((counterparty_node_id, funding_txo, channel_id, update)) = shutdown_result.monitor_update {
11593                                                 close_background_events.push(BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
11594                                                         counterparty_node_id, funding_txo, channel_id, update
11595                                                 });
11596                                         }
11597                                         failed_htlcs.append(&mut shutdown_result.dropped_outbound_htlcs);
11598                                         channel_closures.push_back((events::Event::ChannelClosed {
11599                                                 channel_id: channel.context.channel_id(),
11600                                                 user_channel_id: channel.context.get_user_id(),
11601                                                 reason: ClosureReason::OutdatedChannelManager,
11602                                                 counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
11603                                                 channel_capacity_sats: Some(channel.context.get_value_satoshis()),
11604                                                 channel_funding_txo: channel.context.get_funding_txo(),
11605                                         }, None));
11606                                         for (channel_htlc_source, payment_hash) in channel.inflight_htlc_sources() {
11607                                                 let mut found_htlc = false;
11608                                                 for (monitor_htlc_source, _) in monitor.get_all_current_outbound_htlcs() {
11609                                                         if *channel_htlc_source == monitor_htlc_source { found_htlc = true; break; }
11610                                                 }
11611                                                 if !found_htlc {
11612                                                         // If we have some HTLCs in the channel which are not present in the newer
11613                                                         // ChannelMonitor, they have been removed and should be failed back to
11614                                                         // ensure we don't forget them entirely. Note that if the missing HTLC(s)
11615                                                         // were actually claimed we'd have generated and ensured the previous-hop
11616                                                         // claim update ChannelMonitor updates were persisted prior to persising
11617                                                         // the ChannelMonitor update for the forward leg, so attempting to fail the
11618                                                         // backwards leg of the HTLC will simply be rejected.
11619                                                         let logger = WithChannelContext::from(&args.logger, &channel.context, Some(*payment_hash));
11620                                                         log_info!(logger,
11621                                                                 "Failing HTLC with hash {} as it is missing in the ChannelMonitor for channel {} but was present in the (stale) ChannelManager",
11622                                                                 &channel.context.channel_id(), &payment_hash);
11623                                                         failed_htlcs.push((channel_htlc_source.clone(), *payment_hash, channel.context.get_counterparty_node_id(), channel.context.channel_id()));
11624                                                 }
11625                                         }
11626                                 } else {
11627                                         channel.on_startup_drop_completed_blocked_mon_updates_through(&logger, monitor.get_latest_update_id());
11628                                         log_info!(logger, "Successfully loaded channel {} at update_id {} against monitor at update id {} with {} blocked updates",
11629                                                 &channel.context.channel_id(), channel.context.get_latest_monitor_update_id(),
11630                                                 monitor.get_latest_update_id(), channel.blocked_monitor_updates_pending());
11631                                         if let Some(short_channel_id) = channel.context.get_short_channel_id() {
11632                                                 short_to_chan_info.insert(short_channel_id, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
11633                                         }
11634                                         if let Some(funding_txo) = channel.context.get_funding_txo() {
11635                                                 outpoint_to_peer.insert(funding_txo, channel.context.get_counterparty_node_id());
11636                                         }
11637                                         match funded_peer_channels.entry(channel.context.get_counterparty_node_id()) {
11638                                                 hash_map::Entry::Occupied(mut entry) => {
11639                                                         let by_id_map = entry.get_mut();
11640                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
11641                                                 },
11642                                                 hash_map::Entry::Vacant(entry) => {
11643                                                         let mut by_id_map = new_hash_map();
11644                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
11645                                                         entry.insert(by_id_map);
11646                                                 }
11647                                         }
11648                                 }
11649                         } else if channel.is_awaiting_initial_mon_persist() {
11650                                 // If we were persisted and shut down while the initial ChannelMonitor persistence
11651                                 // was in-progress, we never broadcasted the funding transaction and can still
11652                                 // safely discard the channel.
11653                                 let _ = channel.context.force_shutdown(false, ClosureReason::DisconnectedPeer);
11654                                 channel_closures.push_back((events::Event::ChannelClosed {
11655                                         channel_id: channel.context.channel_id(),
11656                                         user_channel_id: channel.context.get_user_id(),
11657                                         reason: ClosureReason::DisconnectedPeer,
11658                                         counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
11659                                         channel_capacity_sats: Some(channel.context.get_value_satoshis()),
11660                                         channel_funding_txo: channel.context.get_funding_txo(),
11661                                 }, None));
11662                         } else {
11663                                 log_error!(logger, "Missing ChannelMonitor for channel {} needed by ChannelManager.", &channel.context.channel_id());
11664                                 log_error!(logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
11665                                 log_error!(logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
11666                                 log_error!(logger, " Without the ChannelMonitor we cannot continue without risking funds.");
11667                                 log_error!(logger, " Please ensure the chain::Watch API requirements are met and file a bug report at https://github.com/lightningdevkit/rust-lightning");
11668                                 return Err(DecodeError::InvalidValue);
11669                         }
11670                 }
11671
11672                 for (funding_txo, monitor) in args.channel_monitors.iter() {
11673                         if !funding_txo_set.contains(funding_txo) {
11674                                 let logger = WithChannelMonitor::from(&args.logger, monitor, None);
11675                                 let channel_id = monitor.channel_id();
11676                                 log_info!(logger, "Queueing monitor update to ensure missing channel {} is force closed",
11677                                         &channel_id);
11678                                 let monitor_update = ChannelMonitorUpdate {
11679                                         update_id: CLOSED_CHANNEL_UPDATE_ID,
11680                                         counterparty_node_id: None,
11681                                         updates: vec![ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast: true }],
11682                                         channel_id: Some(monitor.channel_id()),
11683                                 };
11684                                 close_background_events.push(BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((*funding_txo, channel_id, monitor_update)));
11685                         }
11686                 }
11687
11688                 const MAX_ALLOC_SIZE: usize = 1024 * 64;
11689                 let forward_htlcs_count: u64 = Readable::read(reader)?;
11690                 let mut forward_htlcs = hash_map_with_capacity(cmp::min(forward_htlcs_count as usize, 128));
11691                 for _ in 0..forward_htlcs_count {
11692                         let short_channel_id = Readable::read(reader)?;
11693                         let pending_forwards_count: u64 = Readable::read(reader)?;
11694                         let mut pending_forwards = Vec::with_capacity(cmp::min(pending_forwards_count as usize, MAX_ALLOC_SIZE/mem::size_of::<HTLCForwardInfo>()));
11695                         for _ in 0..pending_forwards_count {
11696                                 pending_forwards.push(Readable::read(reader)?);
11697                         }
11698                         forward_htlcs.insert(short_channel_id, pending_forwards);
11699                 }
11700
11701                 let claimable_htlcs_count: u64 = Readable::read(reader)?;
11702                 let mut claimable_htlcs_list = Vec::with_capacity(cmp::min(claimable_htlcs_count as usize, 128));
11703                 for _ in 0..claimable_htlcs_count {
11704                         let payment_hash = Readable::read(reader)?;
11705                         let previous_hops_len: u64 = Readable::read(reader)?;
11706                         let mut previous_hops = Vec::with_capacity(cmp::min(previous_hops_len as usize, MAX_ALLOC_SIZE/mem::size_of::<ClaimableHTLC>()));
11707                         for _ in 0..previous_hops_len {
11708                                 previous_hops.push(<ClaimableHTLC as Readable>::read(reader)?);
11709                         }
11710                         claimable_htlcs_list.push((payment_hash, previous_hops));
11711                 }
11712
11713                 let peer_state_from_chans = |channel_by_id| {
11714                         PeerState {
11715                                 channel_by_id,
11716                                 inbound_channel_request_by_id: new_hash_map(),
11717                                 latest_features: InitFeatures::empty(),
11718                                 pending_msg_events: Vec::new(),
11719                                 in_flight_monitor_updates: BTreeMap::new(),
11720                                 monitor_update_blocked_actions: BTreeMap::new(),
11721                                 actions_blocking_raa_monitor_updates: BTreeMap::new(),
11722                                 is_connected: false,
11723                         }
11724                 };
11725
11726                 let peer_count: u64 = Readable::read(reader)?;
11727                 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>>)>()));
11728                 for _ in 0..peer_count {
11729                         let peer_pubkey = Readable::read(reader)?;
11730                         let peer_chans = funded_peer_channels.remove(&peer_pubkey).unwrap_or(new_hash_map());
11731                         let mut peer_state = peer_state_from_chans(peer_chans);
11732                         peer_state.latest_features = Readable::read(reader)?;
11733                         per_peer_state.insert(peer_pubkey, Mutex::new(peer_state));
11734                 }
11735
11736                 let event_count: u64 = Readable::read(reader)?;
11737                 let mut pending_events_read: VecDeque<(events::Event, Option<EventCompletionAction>)> =
11738                         VecDeque::with_capacity(cmp::min(event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>()));
11739                 for _ in 0..event_count {
11740                         match MaybeReadable::read(reader)? {
11741                                 Some(event) => pending_events_read.push_back((event, None)),
11742                                 None => continue,
11743                         }
11744                 }
11745
11746                 let background_event_count: u64 = Readable::read(reader)?;
11747                 for _ in 0..background_event_count {
11748                         match <u8 as Readable>::read(reader)? {
11749                                 0 => {
11750                                         // LDK versions prior to 0.0.116 wrote pending `MonitorUpdateRegeneratedOnStartup`s here,
11751                                         // however we really don't (and never did) need them - we regenerate all
11752                                         // on-startup monitor updates.
11753                                         let _: OutPoint = Readable::read(reader)?;
11754                                         let _: ChannelMonitorUpdate = Readable::read(reader)?;
11755                                 }
11756                                 _ => return Err(DecodeError::InvalidValue),
11757                         }
11758                 }
11759
11760                 let _last_node_announcement_serial: u32 = Readable::read(reader)?; // Only used < 0.0.111
11761                 let highest_seen_timestamp: u32 = Readable::read(reader)?;
11762
11763                 let pending_inbound_payment_count: u64 = Readable::read(reader)?;
11764                 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)));
11765                 for _ in 0..pending_inbound_payment_count {
11766                         if pending_inbound_payments.insert(Readable::read(reader)?, Readable::read(reader)?).is_some() {
11767                                 return Err(DecodeError::InvalidValue);
11768                         }
11769                 }
11770
11771                 let pending_outbound_payments_count_compat: u64 = Readable::read(reader)?;
11772                 let mut pending_outbound_payments_compat: HashMap<PaymentId, PendingOutboundPayment> =
11773                         hash_map_with_capacity(cmp::min(pending_outbound_payments_count_compat as usize, MAX_ALLOC_SIZE/32));
11774                 for _ in 0..pending_outbound_payments_count_compat {
11775                         let session_priv = Readable::read(reader)?;
11776                         let payment = PendingOutboundPayment::Legacy {
11777                                 session_privs: hash_set_from_iter([session_priv]),
11778                         };
11779                         if pending_outbound_payments_compat.insert(PaymentId(session_priv), payment).is_some() {
11780                                 return Err(DecodeError::InvalidValue)
11781                         };
11782                 }
11783
11784                 // pending_outbound_payments_no_retry is for compatibility with 0.0.101 clients.
11785                 let mut pending_outbound_payments_no_retry: Option<HashMap<PaymentId, HashSet<[u8; 32]>>> = None;
11786                 let mut pending_outbound_payments = None;
11787                 let mut pending_intercepted_htlcs: Option<HashMap<InterceptId, PendingAddHTLCInfo>> = Some(new_hash_map());
11788                 let mut received_network_pubkey: Option<PublicKey> = None;
11789                 let mut fake_scid_rand_bytes: Option<[u8; 32]> = None;
11790                 let mut probing_cookie_secret: Option<[u8; 32]> = None;
11791                 let mut claimable_htlc_purposes = None;
11792                 let mut claimable_htlc_onion_fields = None;
11793                 let mut pending_claiming_payments = Some(new_hash_map());
11794                 let mut monitor_update_blocked_actions_per_peer: Option<Vec<(_, BTreeMap<_, Vec<_>>)>> = Some(Vec::new());
11795                 let mut events_override = None;
11796                 let mut in_flight_monitor_updates: Option<HashMap<(PublicKey, OutPoint), Vec<ChannelMonitorUpdate>>> = None;
11797                 let mut decode_update_add_htlcs: Option<HashMap<u64, Vec<msgs::UpdateAddHTLC>>> = None;
11798                 read_tlv_fields!(reader, {
11799                         (1, pending_outbound_payments_no_retry, option),
11800                         (2, pending_intercepted_htlcs, option),
11801                         (3, pending_outbound_payments, option),
11802                         (4, pending_claiming_payments, option),
11803                         (5, received_network_pubkey, option),
11804                         (6, monitor_update_blocked_actions_per_peer, option),
11805                         (7, fake_scid_rand_bytes, option),
11806                         (8, events_override, option),
11807                         (9, claimable_htlc_purposes, optional_vec),
11808                         (10, in_flight_monitor_updates, option),
11809                         (11, probing_cookie_secret, option),
11810                         (13, claimable_htlc_onion_fields, optional_vec),
11811                         (14, decode_update_add_htlcs, option),
11812                 });
11813                 let mut decode_update_add_htlcs = decode_update_add_htlcs.unwrap_or_else(|| new_hash_map());
11814                 if fake_scid_rand_bytes.is_none() {
11815                         fake_scid_rand_bytes = Some(args.entropy_source.get_secure_random_bytes());
11816                 }
11817
11818                 if probing_cookie_secret.is_none() {
11819                         probing_cookie_secret = Some(args.entropy_source.get_secure_random_bytes());
11820                 }
11821
11822                 if let Some(events) = events_override {
11823                         pending_events_read = events;
11824                 }
11825
11826                 if !channel_closures.is_empty() {
11827                         pending_events_read.append(&mut channel_closures);
11828                 }
11829
11830                 if pending_outbound_payments.is_none() && pending_outbound_payments_no_retry.is_none() {
11831                         pending_outbound_payments = Some(pending_outbound_payments_compat);
11832                 } else if pending_outbound_payments.is_none() {
11833                         let mut outbounds = new_hash_map();
11834                         for (id, session_privs) in pending_outbound_payments_no_retry.unwrap().drain() {
11835                                 outbounds.insert(id, PendingOutboundPayment::Legacy { session_privs });
11836                         }
11837                         pending_outbound_payments = Some(outbounds);
11838                 }
11839                 let pending_outbounds = OutboundPayments {
11840                         pending_outbound_payments: Mutex::new(pending_outbound_payments.unwrap()),
11841                         retry_lock: Mutex::new(())
11842                 };
11843
11844                 // We have to replay (or skip, if they were completed after we wrote the `ChannelManager`)
11845                 // each `ChannelMonitorUpdate` in `in_flight_monitor_updates`. After doing so, we have to
11846                 // check that each channel we have isn't newer than the latest `ChannelMonitorUpdate`(s) we
11847                 // replayed, and for each monitor update we have to replay we have to ensure there's a
11848                 // `ChannelMonitor` for it.
11849                 //
11850                 // In order to do so we first walk all of our live channels (so that we can check their
11851                 // state immediately after doing the update replays, when we have the `update_id`s
11852                 // available) and then walk any remaining in-flight updates.
11853                 //
11854                 // Because the actual handling of the in-flight updates is the same, it's macro'ized here:
11855                 let mut pending_background_events = Vec::new();
11856                 macro_rules! handle_in_flight_updates {
11857                         ($counterparty_node_id: expr, $chan_in_flight_upds: expr, $funding_txo: expr,
11858                          $monitor: expr, $peer_state: expr, $logger: expr, $channel_info_log: expr
11859                         ) => { {
11860                                 let mut max_in_flight_update_id = 0;
11861                                 $chan_in_flight_upds.retain(|upd| upd.update_id > $monitor.get_latest_update_id());
11862                                 for update in $chan_in_flight_upds.iter() {
11863                                         log_trace!($logger, "Replaying ChannelMonitorUpdate {} for {}channel {}",
11864                                                 update.update_id, $channel_info_log, &$monitor.channel_id());
11865                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id, update.update_id);
11866                                         pending_background_events.push(
11867                                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
11868                                                         counterparty_node_id: $counterparty_node_id,
11869                                                         funding_txo: $funding_txo,
11870                                                         channel_id: $monitor.channel_id(),
11871                                                         update: update.clone(),
11872                                                 });
11873                                 }
11874                                 if $chan_in_flight_upds.is_empty() {
11875                                         // We had some updates to apply, but it turns out they had completed before we
11876                                         // were serialized, we just weren't notified of that. Thus, we may have to run
11877                                         // the completion actions for any monitor updates, but otherwise are done.
11878                                         pending_background_events.push(
11879                                                 BackgroundEvent::MonitorUpdatesComplete {
11880                                                         counterparty_node_id: $counterparty_node_id,
11881                                                         channel_id: $monitor.channel_id(),
11882                                                 });
11883                                 }
11884                                 if $peer_state.in_flight_monitor_updates.insert($funding_txo, $chan_in_flight_upds).is_some() {
11885                                         log_error!($logger, "Duplicate in-flight monitor update set for the same channel!");
11886                                         return Err(DecodeError::InvalidValue);
11887                                 }
11888                                 max_in_flight_update_id
11889                         } }
11890                 }
11891
11892                 for (counterparty_id, peer_state_mtx) in per_peer_state.iter_mut() {
11893                         let mut peer_state_lock = peer_state_mtx.lock().unwrap();
11894                         let peer_state = &mut *peer_state_lock;
11895                         for phase in peer_state.channel_by_id.values() {
11896                                 if let ChannelPhase::Funded(chan) = phase {
11897                                         let logger = WithChannelContext::from(&args.logger, &chan.context, None);
11898
11899                                         // Channels that were persisted have to be funded, otherwise they should have been
11900                                         // discarded.
11901                                         let funding_txo = chan.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
11902                                         let monitor = args.channel_monitors.get(&funding_txo)
11903                                                 .expect("We already checked for monitor presence when loading channels");
11904                                         let mut max_in_flight_update_id = monitor.get_latest_update_id();
11905                                         if let Some(in_flight_upds) = &mut in_flight_monitor_updates {
11906                                                 if let Some(mut chan_in_flight_upds) = in_flight_upds.remove(&(*counterparty_id, funding_txo)) {
11907                                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id,
11908                                                                 handle_in_flight_updates!(*counterparty_id, chan_in_flight_upds,
11909                                                                         funding_txo, monitor, peer_state, logger, ""));
11910                                                 }
11911                                         }
11912                                         if chan.get_latest_unblocked_monitor_update_id() > max_in_flight_update_id {
11913                                                 // If the channel is ahead of the monitor, return DangerousValue:
11914                                                 log_error!(logger, "A ChannelMonitor is stale compared to the current ChannelManager! This indicates a potentially-critical violation of the chain::Watch API!");
11915                                                 log_error!(logger, " The ChannelMonitor for channel {} is at update_id {} with update_id through {} in-flight",
11916                                                         chan.context.channel_id(), monitor.get_latest_update_id(), max_in_flight_update_id);
11917                                                 log_error!(logger, " but the ChannelManager is at update_id {}.", chan.get_latest_unblocked_monitor_update_id());
11918                                                 log_error!(logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
11919                                                 log_error!(logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
11920                                                 log_error!(logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
11921                                                 log_error!(logger, " Please ensure the chain::Watch API requirements are met and file a bug report at https://github.com/lightningdevkit/rust-lightning");
11922                                                 return Err(DecodeError::DangerousValue);
11923                                         }
11924                                 } else {
11925                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
11926                                         // created in this `channel_by_id` map.
11927                                         debug_assert!(false);
11928                                         return Err(DecodeError::InvalidValue);
11929                                 }
11930                         }
11931                 }
11932
11933                 if let Some(in_flight_upds) = in_flight_monitor_updates {
11934                         for ((counterparty_id, funding_txo), mut chan_in_flight_updates) in in_flight_upds {
11935                                 let channel_id = funding_txo_to_channel_id.get(&funding_txo).copied();
11936                                 let logger = WithContext::from(&args.logger, Some(counterparty_id), channel_id, None);
11937                                 if let Some(monitor) = args.channel_monitors.get(&funding_txo) {
11938                                         // Now that we've removed all the in-flight monitor updates for channels that are
11939                                         // still open, we need to replay any monitor updates that are for closed channels,
11940                                         // creating the neccessary peer_state entries as we go.
11941                                         let peer_state_mutex = per_peer_state.entry(counterparty_id).or_insert_with(|| {
11942                                                 Mutex::new(peer_state_from_chans(new_hash_map()))
11943                                         });
11944                                         let mut peer_state = peer_state_mutex.lock().unwrap();
11945                                         handle_in_flight_updates!(counterparty_id, chan_in_flight_updates,
11946                                                 funding_txo, monitor, peer_state, logger, "closed ");
11947                                 } else {
11948                                         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!");
11949                                         log_error!(logger, " The ChannelMonitor for channel {} is missing.", if let Some(channel_id) =
11950                                                 channel_id { channel_id.to_string() } else { format!("with outpoint {}", funding_txo) } );
11951                                         log_error!(logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
11952                                         log_error!(logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
11953                                         log_error!(logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
11954                                         log_error!(logger, " Please ensure the chain::Watch API requirements are met and file a bug report at https://github.com/lightningdevkit/rust-lightning");
11955                                         log_error!(logger, " Pending in-flight updates are: {:?}", chan_in_flight_updates);
11956                                         return Err(DecodeError::InvalidValue);
11957                                 }
11958                         }
11959                 }
11960
11961                 // Note that we have to do the above replays before we push new monitor updates.
11962                 pending_background_events.append(&mut close_background_events);
11963
11964                 // If there's any preimages for forwarded HTLCs hanging around in ChannelMonitors we
11965                 // should ensure we try them again on the inbound edge. We put them here and do so after we
11966                 // have a fully-constructed `ChannelManager` at the end.
11967                 let mut pending_claims_to_replay = Vec::new();
11968
11969                 {
11970                         // If we're tracking pending payments, ensure we haven't lost any by looking at the
11971                         // ChannelMonitor data for any channels for which we do not have authorative state
11972                         // (i.e. those for which we just force-closed above or we otherwise don't have a
11973                         // corresponding `Channel` at all).
11974                         // This avoids several edge-cases where we would otherwise "forget" about pending
11975                         // payments which are still in-flight via their on-chain state.
11976                         // We only rebuild the pending payments map if we were most recently serialized by
11977                         // 0.0.102+
11978                         for (_, monitor) in args.channel_monitors.iter() {
11979                                 let counterparty_opt = outpoint_to_peer.get(&monitor.get_funding_txo().0);
11980                                 if counterparty_opt.is_none() {
11981                                         for (htlc_source, (htlc, _)) in monitor.get_pending_or_resolved_outbound_htlcs() {
11982                                                 let logger = WithChannelMonitor::from(&args.logger, monitor, Some(htlc.payment_hash));
11983                                                 if let HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } = htlc_source {
11984                                                         if path.hops.is_empty() {
11985                                                                 log_error!(logger, "Got an empty path for a pending payment");
11986                                                                 return Err(DecodeError::InvalidValue);
11987                                                         }
11988
11989                                                         let path_amt = path.final_value_msat();
11990                                                         let mut session_priv_bytes = [0; 32];
11991                                                         session_priv_bytes[..].copy_from_slice(&session_priv[..]);
11992                                                         match pending_outbounds.pending_outbound_payments.lock().unwrap().entry(payment_id) {
11993                                                                 hash_map::Entry::Occupied(mut entry) => {
11994                                                                         let newly_added = entry.get_mut().insert(session_priv_bytes, &path);
11995                                                                         log_info!(logger, "{} a pending payment path for {} msat for session priv {} on an existing pending payment with payment hash {}",
11996                                                                                 if newly_added { "Added" } else { "Had" }, path_amt, log_bytes!(session_priv_bytes), htlc.payment_hash);
11997                                                                 },
11998                                                                 hash_map::Entry::Vacant(entry) => {
11999                                                                         let path_fee = path.fee_msat();
12000                                                                         entry.insert(PendingOutboundPayment::Retryable {
12001                                                                                 retry_strategy: None,
12002                                                                                 attempts: PaymentAttempts::new(),
12003                                                                                 payment_params: None,
12004                                                                                 session_privs: hash_set_from_iter([session_priv_bytes]),
12005                                                                                 payment_hash: htlc.payment_hash,
12006                                                                                 payment_secret: None, // only used for retries, and we'll never retry on startup
12007                                                                                 payment_metadata: None, // only used for retries, and we'll never retry on startup
12008                                                                                 keysend_preimage: None, // only used for retries, and we'll never retry on startup
12009                                                                                 custom_tlvs: Vec::new(), // only used for retries, and we'll never retry on startup
12010                                                                                 pending_amt_msat: path_amt,
12011                                                                                 pending_fee_msat: Some(path_fee),
12012                                                                                 total_msat: path_amt,
12013                                                                                 starting_block_height: best_block_height,
12014                                                                                 remaining_max_total_routing_fee_msat: None, // only used for retries, and we'll never retry on startup
12015                                                                         });
12016                                                                         log_info!(logger, "Added a pending payment for {} msat with payment hash {} for path with session priv {}",
12017                                                                                 path_amt, &htlc.payment_hash,  log_bytes!(session_priv_bytes));
12018                                                                 }
12019                                                         }
12020                                                 }
12021                                         }
12022                                         for (htlc_source, (htlc, preimage_opt)) in monitor.get_all_current_outbound_htlcs() {
12023                                                 let logger = WithChannelMonitor::from(&args.logger, monitor, Some(htlc.payment_hash));
12024                                                 match htlc_source {
12025                                                         HTLCSource::PreviousHopData(prev_hop_data) => {
12026                                                                 let pending_forward_matches_htlc = |info: &PendingAddHTLCInfo| {
12027                                                                         info.prev_funding_outpoint == prev_hop_data.outpoint &&
12028                                                                                 info.prev_htlc_id == prev_hop_data.htlc_id
12029                                                                 };
12030                                                                 // The ChannelMonitor is now responsible for this HTLC's
12031                                                                 // failure/success and will let us know what its outcome is. If we
12032                                                                 // still have an entry for this HTLC in `forward_htlcs` or
12033                                                                 // `pending_intercepted_htlcs`, we were apparently not persisted after
12034                                                                 // the monitor was when forwarding the payment.
12035                                                                 decode_update_add_htlcs.retain(|scid, update_add_htlcs| {
12036                                                                         update_add_htlcs.retain(|update_add_htlc| {
12037                                                                                 let matches = *scid == prev_hop_data.short_channel_id &&
12038                                                                                         update_add_htlc.htlc_id == prev_hop_data.htlc_id;
12039                                                                                 if matches {
12040                                                                                         log_info!(logger, "Removing pending to-decode HTLC with hash {} as it was forwarded to the closed channel {}",
12041                                                                                                 &htlc.payment_hash, &monitor.channel_id());
12042                                                                                 }
12043                                                                                 !matches
12044                                                                         });
12045                                                                         !update_add_htlcs.is_empty()
12046                                                                 });
12047                                                                 forward_htlcs.retain(|_, forwards| {
12048                                                                         forwards.retain(|forward| {
12049                                                                                 if let HTLCForwardInfo::AddHTLC(htlc_info) = forward {
12050                                                                                         if pending_forward_matches_htlc(&htlc_info) {
12051                                                                                                 log_info!(logger, "Removing pending to-forward HTLC with hash {} as it was forwarded to the closed channel {}",
12052                                                                                                         &htlc.payment_hash, &monitor.channel_id());
12053                                                                                                 false
12054                                                                                         } else { true }
12055                                                                                 } else { true }
12056                                                                         });
12057                                                                         !forwards.is_empty()
12058                                                                 });
12059                                                                 pending_intercepted_htlcs.as_mut().unwrap().retain(|intercepted_id, htlc_info| {
12060                                                                         if pending_forward_matches_htlc(&htlc_info) {
12061                                                                                 log_info!(logger, "Removing pending intercepted HTLC with hash {} as it was forwarded to the closed channel {}",
12062                                                                                         &htlc.payment_hash, &monitor.channel_id());
12063                                                                                 pending_events_read.retain(|(event, _)| {
12064                                                                                         if let Event::HTLCIntercepted { intercept_id: ev_id, .. } = event {
12065                                                                                                 intercepted_id != ev_id
12066                                                                                         } else { true }
12067                                                                                 });
12068                                                                                 false
12069                                                                         } else { true }
12070                                                                 });
12071                                                         },
12072                                                         HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } => {
12073                                                                 if let Some(preimage) = preimage_opt {
12074                                                                         let pending_events = Mutex::new(pending_events_read);
12075                                                                         // Note that we set `from_onchain` to "false" here,
12076                                                                         // deliberately keeping the pending payment around forever.
12077                                                                         // Given it should only occur when we have a channel we're
12078                                                                         // force-closing for being stale that's okay.
12079                                                                         // The alternative would be to wipe the state when claiming,
12080                                                                         // generating a `PaymentPathSuccessful` event but regenerating
12081                                                                         // it and the `PaymentSent` on every restart until the
12082                                                                         // `ChannelMonitor` is removed.
12083                                                                         let compl_action =
12084                                                                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
12085                                                                                         channel_funding_outpoint: monitor.get_funding_txo().0,
12086                                                                                         channel_id: monitor.channel_id(),
12087                                                                                         counterparty_node_id: path.hops[0].pubkey,
12088                                                                                 };
12089                                                                         pending_outbounds.claim_htlc(payment_id, preimage, session_priv,
12090                                                                                 path, false, compl_action, &pending_events, &&logger);
12091                                                                         pending_events_read = pending_events.into_inner().unwrap();
12092                                                                 }
12093                                                         },
12094                                                 }
12095                                         }
12096                                 }
12097
12098                                 // Whether the downstream channel was closed or not, try to re-apply any payment
12099                                 // preimages from it which may be needed in upstream channels for forwarded
12100                                 // payments.
12101                                 let outbound_claimed_htlcs_iter = monitor.get_all_current_outbound_htlcs()
12102                                         .into_iter()
12103                                         .filter_map(|(htlc_source, (htlc, preimage_opt))| {
12104                                                 if let HTLCSource::PreviousHopData(_) = htlc_source {
12105                                                         if let Some(payment_preimage) = preimage_opt {
12106                                                                 Some((htlc_source, payment_preimage, htlc.amount_msat,
12107                                                                         // Check if `counterparty_opt.is_none()` to see if the
12108                                                                         // downstream chan is closed (because we don't have a
12109                                                                         // channel_id -> peer map entry).
12110                                                                         counterparty_opt.is_none(),
12111                                                                         counterparty_opt.cloned().or(monitor.get_counterparty_node_id()),
12112                                                                         monitor.get_funding_txo().0, monitor.channel_id()))
12113                                                         } else { None }
12114                                                 } else {
12115                                                         // If it was an outbound payment, we've handled it above - if a preimage
12116                                                         // came in and we persisted the `ChannelManager` we either handled it and
12117                                                         // are good to go or the channel force-closed - we don't have to handle the
12118                                                         // channel still live case here.
12119                                                         None
12120                                                 }
12121                                         });
12122                                 for tuple in outbound_claimed_htlcs_iter {
12123                                         pending_claims_to_replay.push(tuple);
12124                                 }
12125                         }
12126                 }
12127
12128                 if !forward_htlcs.is_empty() || !decode_update_add_htlcs.is_empty() || pending_outbounds.needs_abandon() {
12129                         // If we have pending HTLCs to forward, assume we either dropped a
12130                         // `PendingHTLCsForwardable` or the user received it but never processed it as they
12131                         // shut down before the timer hit. Either way, set the time_forwardable to a small
12132                         // constant as enough time has likely passed that we should simply handle the forwards
12133                         // now, or at least after the user gets a chance to reconnect to our peers.
12134                         pending_events_read.push_back((events::Event::PendingHTLCsForwardable {
12135                                 time_forwardable: Duration::from_secs(2),
12136                         }, None));
12137                 }
12138
12139                 let inbound_pmt_key_material = args.node_signer.get_inbound_payment_key_material();
12140                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
12141
12142                 let mut claimable_payments = hash_map_with_capacity(claimable_htlcs_list.len());
12143                 if let Some(purposes) = claimable_htlc_purposes {
12144                         if purposes.len() != claimable_htlcs_list.len() {
12145                                 return Err(DecodeError::InvalidValue);
12146                         }
12147                         if let Some(onion_fields) = claimable_htlc_onion_fields {
12148                                 if onion_fields.len() != claimable_htlcs_list.len() {
12149                                         return Err(DecodeError::InvalidValue);
12150                                 }
12151                                 for (purpose, (onion, (payment_hash, htlcs))) in
12152                                         purposes.into_iter().zip(onion_fields.into_iter().zip(claimable_htlcs_list.into_iter()))
12153                                 {
12154                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
12155                                                 purpose, htlcs, onion_fields: onion,
12156                                         });
12157                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
12158                                 }
12159                         } else {
12160                                 for (purpose, (payment_hash, htlcs)) in purposes.into_iter().zip(claimable_htlcs_list.into_iter()) {
12161                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
12162                                                 purpose, htlcs, onion_fields: None,
12163                                         });
12164                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
12165                                 }
12166                         }
12167                 } else {
12168                         // LDK versions prior to 0.0.107 did not write a `pending_htlc_purposes`, but do
12169                         // include a `_legacy_hop_data` in the `OnionPayload`.
12170                         for (payment_hash, htlcs) in claimable_htlcs_list.drain(..) {
12171                                 if htlcs.is_empty() {
12172                                         return Err(DecodeError::InvalidValue);
12173                                 }
12174                                 let purpose = match &htlcs[0].onion_payload {
12175                                         OnionPayload::Invoice { _legacy_hop_data } => {
12176                                                 if let Some(hop_data) = _legacy_hop_data {
12177                                                         events::PaymentPurpose::Bolt11InvoicePayment {
12178                                                                 payment_preimage: match pending_inbound_payments.get(&payment_hash) {
12179                                                                         Some(inbound_payment) => inbound_payment.payment_preimage,
12180                                                                         None => match inbound_payment::verify(payment_hash, &hop_data, 0, &expanded_inbound_key, &args.logger) {
12181                                                                                 Ok((payment_preimage, _)) => payment_preimage,
12182                                                                                 Err(()) => {
12183                                                                                         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);
12184                                                                                         return Err(DecodeError::InvalidValue);
12185                                                                                 }
12186                                                                         }
12187                                                                 },
12188                                                                 payment_secret: hop_data.payment_secret,
12189                                                         }
12190                                                 } else { return Err(DecodeError::InvalidValue); }
12191                                         },
12192                                         OnionPayload::Spontaneous(payment_preimage) =>
12193                                                 events::PaymentPurpose::SpontaneousPayment(*payment_preimage),
12194                                 };
12195                                 claimable_payments.insert(payment_hash, ClaimablePayment {
12196                                         purpose, htlcs, onion_fields: None,
12197                                 });
12198                         }
12199                 }
12200
12201                 let mut secp_ctx = Secp256k1::new();
12202                 secp_ctx.seeded_randomize(&args.entropy_source.get_secure_random_bytes());
12203
12204                 let our_network_pubkey = match args.node_signer.get_node_id(Recipient::Node) {
12205                         Ok(key) => key,
12206                         Err(()) => return Err(DecodeError::InvalidValue)
12207                 };
12208                 if let Some(network_pubkey) = received_network_pubkey {
12209                         if network_pubkey != our_network_pubkey {
12210                                 log_error!(args.logger, "Key that was generated does not match the existing key.");
12211                                 return Err(DecodeError::InvalidValue);
12212                         }
12213                 }
12214
12215                 let mut outbound_scid_aliases = new_hash_set();
12216                 for (_peer_node_id, peer_state_mutex) in per_peer_state.iter_mut() {
12217                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
12218                         let peer_state = &mut *peer_state_lock;
12219                         for (chan_id, phase) in peer_state.channel_by_id.iter_mut() {
12220                                 if let ChannelPhase::Funded(chan) = phase {
12221                                         let logger = WithChannelContext::from(&args.logger, &chan.context, None);
12222                                         if chan.context.outbound_scid_alias() == 0 {
12223                                                 let mut outbound_scid_alias;
12224                                                 loop {
12225                                                         outbound_scid_alias = fake_scid::Namespace::OutboundAlias
12226                                                                 .get_fake_scid(best_block_height, &chain_hash, fake_scid_rand_bytes.as_ref().unwrap(), &args.entropy_source);
12227                                                         if outbound_scid_aliases.insert(outbound_scid_alias) { break; }
12228                                                 }
12229                                                 chan.context.set_outbound_scid_alias(outbound_scid_alias);
12230                                         } else if !outbound_scid_aliases.insert(chan.context.outbound_scid_alias()) {
12231                                                 // Note that in rare cases its possible to hit this while reading an older
12232                                                 // channel if we just happened to pick a colliding outbound alias above.
12233                                                 log_error!(logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
12234                                                 return Err(DecodeError::InvalidValue);
12235                                         }
12236                                         if chan.context.is_usable() {
12237                                                 if short_to_chan_info.insert(chan.context.outbound_scid_alias(), (chan.context.get_counterparty_node_id(), *chan_id)).is_some() {
12238                                                         // Note that in rare cases its possible to hit this while reading an older
12239                                                         // channel if we just happened to pick a colliding outbound alias above.
12240                                                         log_error!(logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
12241                                                         return Err(DecodeError::InvalidValue);
12242                                                 }
12243                                         }
12244                                 } else {
12245                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
12246                                         // created in this `channel_by_id` map.
12247                                         debug_assert!(false);
12248                                         return Err(DecodeError::InvalidValue);
12249                                 }
12250                         }
12251                 }
12252
12253                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(args.fee_estimator);
12254
12255                 for (_, monitor) in args.channel_monitors.iter() {
12256                         for (payment_hash, payment_preimage) in monitor.get_stored_preimages() {
12257                                 if let Some(payment) = claimable_payments.remove(&payment_hash) {
12258                                         log_info!(args.logger, "Re-claiming HTLCs with payment hash {} as we've released the preimage to a ChannelMonitor!", &payment_hash);
12259                                         let mut claimable_amt_msat = 0;
12260                                         let mut receiver_node_id = Some(our_network_pubkey);
12261                                         let phantom_shared_secret = payment.htlcs[0].prev_hop.phantom_shared_secret;
12262                                         if phantom_shared_secret.is_some() {
12263                                                 let phantom_pubkey = args.node_signer.get_node_id(Recipient::PhantomNode)
12264                                                         .expect("Failed to get node_id for phantom node recipient");
12265                                                 receiver_node_id = Some(phantom_pubkey)
12266                                         }
12267                                         for claimable_htlc in &payment.htlcs {
12268                                                 claimable_amt_msat += claimable_htlc.value;
12269
12270                                                 // Add a holding-cell claim of the payment to the Channel, which should be
12271                                                 // applied ~immediately on peer reconnection. Because it won't generate a
12272                                                 // new commitment transaction we can just provide the payment preimage to
12273                                                 // the corresponding ChannelMonitor and nothing else.
12274                                                 //
12275                                                 // We do so directly instead of via the normal ChannelMonitor update
12276                                                 // procedure as the ChainMonitor hasn't yet been initialized, implying
12277                                                 // we're not allowed to call it directly yet. Further, we do the update
12278                                                 // without incrementing the ChannelMonitor update ID as there isn't any
12279                                                 // reason to.
12280                                                 // If we were to generate a new ChannelMonitor update ID here and then
12281                                                 // crash before the user finishes block connect we'd end up force-closing
12282                                                 // this channel as well. On the flip side, there's no harm in restarting
12283                                                 // without the new monitor persisted - we'll end up right back here on
12284                                                 // restart.
12285                                                 let previous_channel_id = claimable_htlc.prev_hop.channel_id;
12286                                                 if let Some(peer_node_id) = outpoint_to_peer.get(&claimable_htlc.prev_hop.outpoint) {
12287                                                         let peer_state_mutex = per_peer_state.get(peer_node_id).unwrap();
12288                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
12289                                                         let peer_state = &mut *peer_state_lock;
12290                                                         if let Some(ChannelPhase::Funded(channel)) = peer_state.channel_by_id.get_mut(&previous_channel_id) {
12291                                                                 let logger = WithChannelContext::from(&args.logger, &channel.context, Some(payment_hash));
12292                                                                 channel.claim_htlc_while_disconnected_dropping_mon_update(claimable_htlc.prev_hop.htlc_id, payment_preimage, &&logger);
12293                                                         }
12294                                                 }
12295                                                 if let Some(previous_hop_monitor) = args.channel_monitors.get(&claimable_htlc.prev_hop.outpoint) {
12296                                                         previous_hop_monitor.provide_payment_preimage(&payment_hash, &payment_preimage, &args.tx_broadcaster, &bounded_fee_estimator, &args.logger);
12297                                                 }
12298                                         }
12299                                         pending_events_read.push_back((events::Event::PaymentClaimed {
12300                                                 receiver_node_id,
12301                                                 payment_hash,
12302                                                 purpose: payment.purpose,
12303                                                 amount_msat: claimable_amt_msat,
12304                                                 htlcs: payment.htlcs.iter().map(events::ClaimedHTLC::from).collect(),
12305                                                 sender_intended_total_msat: payment.htlcs.first().map(|htlc| htlc.total_msat),
12306                                                 onion_fields: payment.onion_fields,
12307                                         }, None));
12308                                 }
12309                         }
12310                 }
12311
12312                 for (node_id, monitor_update_blocked_actions) in monitor_update_blocked_actions_per_peer.unwrap() {
12313                         if let Some(peer_state) = per_peer_state.get(&node_id) {
12314                                 for (channel_id, actions) in monitor_update_blocked_actions.iter() {
12315                                         let logger = WithContext::from(&args.logger, Some(node_id), Some(*channel_id), None);
12316                                         for action in actions.iter() {
12317                                                 if let MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
12318                                                         downstream_counterparty_and_funding_outpoint:
12319                                                                 Some((blocked_node_id, _blocked_channel_outpoint, blocked_channel_id, blocking_action)), ..
12320                                                 } = action {
12321                                                         if let Some(blocked_peer_state) = per_peer_state.get(blocked_node_id) {
12322                                                                 log_trace!(logger,
12323                                                                         "Holding the next revoke_and_ack from {} until the preimage is durably persisted in the inbound edge's ChannelMonitor",
12324                                                                         blocked_channel_id);
12325                                                                 blocked_peer_state.lock().unwrap().actions_blocking_raa_monitor_updates
12326                                                                         .entry(*blocked_channel_id)
12327                                                                         .or_insert_with(Vec::new).push(blocking_action.clone());
12328                                                         } else {
12329                                                                 // If the channel we were blocking has closed, we don't need to
12330                                                                 // worry about it - the blocked monitor update should never have
12331                                                                 // been released from the `Channel` object so it can't have
12332                                                                 // completed, and if the channel closed there's no reason to bother
12333                                                                 // anymore.
12334                                                         }
12335                                                 }
12336                                                 if let MonitorUpdateCompletionAction::FreeOtherChannelImmediately { .. } = action {
12337                                                         debug_assert!(false, "Non-event-generating channel freeing should not appear in our queue");
12338                                                 }
12339                                         }
12340                                 }
12341                                 peer_state.lock().unwrap().monitor_update_blocked_actions = monitor_update_blocked_actions;
12342                         } else {
12343                                 log_error!(WithContext::from(&args.logger, Some(node_id), None, None), "Got blocked actions without a per-peer-state for {}", node_id);
12344                                 return Err(DecodeError::InvalidValue);
12345                         }
12346                 }
12347
12348                 let channel_manager = ChannelManager {
12349                         chain_hash,
12350                         fee_estimator: bounded_fee_estimator,
12351                         chain_monitor: args.chain_monitor,
12352                         tx_broadcaster: args.tx_broadcaster,
12353                         router: args.router,
12354
12355                         best_block: RwLock::new(BestBlock::new(best_block_hash, best_block_height)),
12356
12357                         inbound_payment_key: expanded_inbound_key,
12358                         pending_inbound_payments: Mutex::new(pending_inbound_payments),
12359                         pending_outbound_payments: pending_outbounds,
12360                         pending_intercepted_htlcs: Mutex::new(pending_intercepted_htlcs.unwrap()),
12361
12362                         forward_htlcs: Mutex::new(forward_htlcs),
12363                         decode_update_add_htlcs: Mutex::new(decode_update_add_htlcs),
12364                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments, pending_claiming_payments: pending_claiming_payments.unwrap() }),
12365                         outbound_scid_aliases: Mutex::new(outbound_scid_aliases),
12366                         outpoint_to_peer: Mutex::new(outpoint_to_peer),
12367                         short_to_chan_info: FairRwLock::new(short_to_chan_info),
12368                         fake_scid_rand_bytes: fake_scid_rand_bytes.unwrap(),
12369
12370                         probing_cookie_secret: probing_cookie_secret.unwrap(),
12371
12372                         our_network_pubkey,
12373                         secp_ctx,
12374
12375                         highest_seen_timestamp: AtomicUsize::new(highest_seen_timestamp as usize),
12376
12377                         per_peer_state: FairRwLock::new(per_peer_state),
12378
12379                         pending_events: Mutex::new(pending_events_read),
12380                         pending_events_processor: AtomicBool::new(false),
12381                         pending_background_events: Mutex::new(pending_background_events),
12382                         total_consistency_lock: RwLock::new(()),
12383                         background_events_processed_since_startup: AtomicBool::new(false),
12384
12385                         event_persist_notifier: Notifier::new(),
12386                         needs_persist_flag: AtomicBool::new(false),
12387
12388                         funding_batch_states: Mutex::new(BTreeMap::new()),
12389
12390                         pending_offers_messages: Mutex::new(Vec::new()),
12391
12392                         pending_broadcast_messages: Mutex::new(Vec::new()),
12393
12394                         entropy_source: args.entropy_source,
12395                         node_signer: args.node_signer,
12396                         signer_provider: args.signer_provider,
12397
12398                         logger: args.logger,
12399                         default_configuration: args.default_config,
12400                 };
12401
12402                 for htlc_source in failed_htlcs.drain(..) {
12403                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
12404                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
12405                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
12406                         channel_manager.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
12407                 }
12408
12409                 for (source, preimage, downstream_value, downstream_closed, downstream_node_id, downstream_funding, downstream_channel_id) in pending_claims_to_replay {
12410                         // We use `downstream_closed` in place of `from_onchain` here just as a guess - we
12411                         // don't remember in the `ChannelMonitor` where we got a preimage from, but if the
12412                         // channel is closed we just assume that it probably came from an on-chain claim.
12413                         channel_manager.claim_funds_internal(source, preimage, Some(downstream_value), None,
12414                                 downstream_closed, true, downstream_node_id, downstream_funding,
12415                                 downstream_channel_id, None
12416                         );
12417                 }
12418
12419                 //TODO: Broadcast channel update for closed channels, but only after we've made a
12420                 //connection or two.
12421
12422                 Ok((best_block_hash.clone(), channel_manager))
12423         }
12424 }
12425
12426 #[cfg(test)]
12427 mod tests {
12428         use bitcoin::hashes::Hash;
12429         use bitcoin::hashes::sha256::Hash as Sha256;
12430         use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
12431         use core::sync::atomic::Ordering;
12432         use crate::events::{Event, HTLCDestination, MessageSendEvent, MessageSendEventsProvider, ClosureReason};
12433         use crate::ln::types::{ChannelId, PaymentPreimage, PaymentHash, PaymentSecret};
12434         use crate::ln::channelmanager::{create_recv_pending_htlc_info, HTLCForwardInfo, inbound_payment, PaymentId, PaymentSendFailure, RecipientOnionFields, InterceptId};
12435         use crate::ln::functional_test_utils::*;
12436         use crate::ln::msgs::{self, ErrorAction};
12437         use crate::ln::msgs::ChannelMessageHandler;
12438         use crate::prelude::*;
12439         use crate::routing::router::{PaymentParameters, RouteParameters, find_route};
12440         use crate::util::errors::APIError;
12441         use crate::util::ser::Writeable;
12442         use crate::util::test_utils;
12443         use crate::util::config::{ChannelConfig, ChannelConfigUpdate};
12444         use crate::sign::EntropySource;
12445
12446         #[test]
12447         fn test_notify_limits() {
12448                 // Check that a few cases which don't require the persistence of a new ChannelManager,
12449                 // indeed, do not cause the persistence of a new ChannelManager.
12450                 let chanmon_cfgs = create_chanmon_cfgs(3);
12451                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
12452                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
12453                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
12454
12455                 // All nodes start with a persistable update pending as `create_network` connects each node
12456                 // with all other nodes to make most tests simpler.
12457                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
12458                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
12459                 assert!(nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
12460
12461                 let mut chan = create_announced_chan_between_nodes(&nodes, 0, 1);
12462
12463                 // We check that the channel info nodes have doesn't change too early, even though we try
12464                 // to connect messages with new values
12465                 chan.0.contents.fee_base_msat *= 2;
12466                 chan.1.contents.fee_base_msat *= 2;
12467                 let node_a_chan_info = nodes[0].node.list_channels_with_counterparty(
12468                         &nodes[1].node.get_our_node_id()).pop().unwrap();
12469                 let node_b_chan_info = nodes[1].node.list_channels_with_counterparty(
12470                         &nodes[0].node.get_our_node_id()).pop().unwrap();
12471
12472                 // The first two nodes (which opened a channel) should now require fresh persistence
12473                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
12474                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
12475                 // ... but the last node should not.
12476                 assert!(!nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
12477                 // After persisting the first two nodes they should no longer need fresh persistence.
12478                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
12479                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
12480
12481                 // Node 3, unrelated to the only channel, shouldn't care if it receives a channel_update
12482                 // about the channel.
12483                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.0);
12484                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.1);
12485                 assert!(!nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
12486
12487                 // The nodes which are a party to the channel should also ignore messages from unrelated
12488                 // parties.
12489                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
12490                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
12491                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
12492                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
12493                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
12494                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
12495
12496                 // At this point the channel info given by peers should still be the same.
12497                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
12498                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
12499
12500                 // An earlier version of handle_channel_update didn't check the directionality of the
12501                 // update message and would always update the local fee info, even if our peer was
12502                 // (spuriously) forwarding us our own channel_update.
12503                 let as_node_one = nodes[0].node.get_our_node_id().serialize()[..] < nodes[1].node.get_our_node_id().serialize()[..];
12504                 let as_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.0 } else { &chan.1 };
12505                 let bs_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.1 } else { &chan.0 };
12506
12507                 // First deliver each peers' own message, checking that the node doesn't need to be
12508                 // persisted and that its channel info remains the same.
12509                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &as_update);
12510                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &bs_update);
12511                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
12512                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
12513                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
12514                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
12515
12516                 // Finally, deliver the other peers' message, ensuring each node needs to be persisted and
12517                 // the channel info has updated.
12518                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &bs_update);
12519                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &as_update);
12520                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
12521                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
12522                 assert_ne!(nodes[0].node.list_channels()[0], node_a_chan_info);
12523                 assert_ne!(nodes[1].node.list_channels()[0], node_b_chan_info);
12524         }
12525
12526         #[test]
12527         fn test_keysend_dup_hash_partial_mpp() {
12528                 // Test that a keysend payment with a duplicate hash to an existing partial MPP payment fails as
12529                 // expected.
12530                 let chanmon_cfgs = create_chanmon_cfgs(2);
12531                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
12532                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
12533                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
12534                 create_announced_chan_between_nodes(&nodes, 0, 1);
12535
12536                 // First, send a partial MPP payment.
12537                 let (route, our_payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100_000);
12538                 let mut mpp_route = route.clone();
12539                 mpp_route.paths.push(mpp_route.paths[0].clone());
12540
12541                 let payment_id = PaymentId([42; 32]);
12542                 // Use the utility function send_payment_along_path to send the payment with MPP data which
12543                 // indicates there are more HTLCs coming.
12544                 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.
12545                 let session_privs = nodes[0].node.test_add_new_pending_payment(our_payment_hash,
12546                         RecipientOnionFields::secret_only(payment_secret), payment_id, &mpp_route).unwrap();
12547                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[0], &our_payment_hash,
12548                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[0]).unwrap();
12549                 check_added_monitors!(nodes[0], 1);
12550                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
12551                 assert_eq!(events.len(), 1);
12552                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), false, None);
12553
12554                 // Next, send a keysend payment with the same payment_hash and make sure it fails.
12555                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
12556                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
12557                 check_added_monitors!(nodes[0], 1);
12558                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
12559                 assert_eq!(events.len(), 1);
12560                 let ev = events.drain(..).next().unwrap();
12561                 let payment_event = SendEvent::from_event(ev);
12562                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
12563                 check_added_monitors!(nodes[1], 0);
12564                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
12565                 expect_pending_htlcs_forwardable!(nodes[1]);
12566                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
12567                 check_added_monitors!(nodes[1], 1);
12568                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
12569                 assert!(updates.update_add_htlcs.is_empty());
12570                 assert!(updates.update_fulfill_htlcs.is_empty());
12571                 assert_eq!(updates.update_fail_htlcs.len(), 1);
12572                 assert!(updates.update_fail_malformed_htlcs.is_empty());
12573                 assert!(updates.update_fee.is_none());
12574                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
12575                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
12576                 expect_payment_failed!(nodes[0], our_payment_hash, true);
12577
12578                 // Send the second half of the original MPP payment.
12579                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[1], &our_payment_hash,
12580                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[1]).unwrap();
12581                 check_added_monitors!(nodes[0], 1);
12582                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
12583                 assert_eq!(events.len(), 1);
12584                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), true, None);
12585
12586                 // Claim the full MPP payment. Note that we can't use a test utility like
12587                 // claim_funds_along_route because the ordering of the messages causes the second half of the
12588                 // payment to be put in the holding cell, which confuses the test utilities. So we exchange the
12589                 // lightning messages manually.
12590                 nodes[1].node.claim_funds(payment_preimage);
12591                 expect_payment_claimed!(nodes[1], our_payment_hash, 200_000);
12592                 check_added_monitors!(nodes[1], 2);
12593
12594                 let bs_first_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
12595                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_first_updates.update_fulfill_htlcs[0]);
12596                 expect_payment_sent(&nodes[0], payment_preimage, None, false, false);
12597                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_first_updates.commitment_signed);
12598                 check_added_monitors!(nodes[0], 1);
12599                 let (as_first_raa, as_first_cs) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
12600                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_first_raa);
12601                 check_added_monitors!(nodes[1], 1);
12602                 let bs_second_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
12603                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_first_cs);
12604                 check_added_monitors!(nodes[1], 1);
12605                 let bs_first_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
12606                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_second_updates.update_fulfill_htlcs[0]);
12607                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_second_updates.commitment_signed);
12608                 check_added_monitors!(nodes[0], 1);
12609                 let as_second_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
12610                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_first_raa);
12611                 let as_second_updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
12612                 check_added_monitors!(nodes[0], 1);
12613                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_second_raa);
12614                 check_added_monitors!(nodes[1], 1);
12615                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_second_updates.commitment_signed);
12616                 check_added_monitors!(nodes[1], 1);
12617                 let bs_third_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
12618                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_third_raa);
12619                 check_added_monitors!(nodes[0], 1);
12620
12621                 // Note that successful MPP payments will generate a single PaymentSent event upon the first
12622                 // path's success and a PaymentPathSuccessful event for each path's success.
12623                 let events = nodes[0].node.get_and_clear_pending_events();
12624                 assert_eq!(events.len(), 2);
12625                 match events[0] {
12626                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
12627                                 assert_eq!(payment_id, *actual_payment_id);
12628                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
12629                                 assert_eq!(route.paths[0], *path);
12630                         },
12631                         _ => panic!("Unexpected event"),
12632                 }
12633                 match events[1] {
12634                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
12635                                 assert_eq!(payment_id, *actual_payment_id);
12636                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
12637                                 assert_eq!(route.paths[0], *path);
12638                         },
12639                         _ => panic!("Unexpected event"),
12640                 }
12641         }
12642
12643         #[test]
12644         fn test_keysend_dup_payment_hash() {
12645                 do_test_keysend_dup_payment_hash(false);
12646                 do_test_keysend_dup_payment_hash(true);
12647         }
12648
12649         fn do_test_keysend_dup_payment_hash(accept_mpp_keysend: bool) {
12650                 // (1): Test that a keysend payment with a duplicate payment hash to an existing pending
12651                 //      outbound regular payment fails as expected.
12652                 // (2): Test that a regular payment with a duplicate payment hash to an existing keysend payment
12653                 //      fails as expected.
12654                 // (3): Test that a keysend payment with a duplicate payment hash to an existing keysend
12655                 //      payment fails as expected. When `accept_mpp_keysend` is false, this tests that we
12656                 //      reject MPP keysend payments, since in this case where the payment has no payment
12657                 //      secret, a keysend payment with a duplicate hash is basically an MPP keysend. If
12658                 //      `accept_mpp_keysend` is true, this tests that we only accept MPP keysends with
12659                 //      payment secrets and reject otherwise.
12660                 let chanmon_cfgs = create_chanmon_cfgs(2);
12661                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
12662                 let mut mpp_keysend_cfg = test_default_channel_config();
12663                 mpp_keysend_cfg.accept_mpp_keysend = accept_mpp_keysend;
12664                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(mpp_keysend_cfg)]);
12665                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
12666                 create_announced_chan_between_nodes(&nodes, 0, 1);
12667                 let scorer = test_utils::TestScorer::new();
12668                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
12669
12670                 // To start (1), send a regular payment but don't claim it.
12671                 let expected_route = [&nodes[1]];
12672                 let (payment_preimage, payment_hash, ..) = route_payment(&nodes[0], &expected_route, 100_000);
12673
12674                 // Next, attempt a keysend payment and make sure it fails.
12675                 let route_params = RouteParameters::from_payment_params_and_value(
12676                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(),
12677                         TEST_FINAL_CLTV, false), 100_000);
12678                 let route = find_route(
12679                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
12680                         None, nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
12681                 ).unwrap();
12682                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
12683                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
12684                 check_added_monitors!(nodes[0], 1);
12685                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
12686                 assert_eq!(events.len(), 1);
12687                 let ev = events.drain(..).next().unwrap();
12688                 let payment_event = SendEvent::from_event(ev);
12689                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
12690                 check_added_monitors!(nodes[1], 0);
12691                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
12692                 // We have to forward pending HTLCs twice - once tries to forward the payment forward (and
12693                 // fails), the second will process the resulting failure and fail the HTLC backward
12694                 expect_pending_htlcs_forwardable!(nodes[1]);
12695                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
12696                 check_added_monitors!(nodes[1], 1);
12697                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
12698                 assert!(updates.update_add_htlcs.is_empty());
12699                 assert!(updates.update_fulfill_htlcs.is_empty());
12700                 assert_eq!(updates.update_fail_htlcs.len(), 1);
12701                 assert!(updates.update_fail_malformed_htlcs.is_empty());
12702                 assert!(updates.update_fee.is_none());
12703                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
12704                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
12705                 expect_payment_failed!(nodes[0], payment_hash, true);
12706
12707                 // Finally, claim the original payment.
12708                 claim_payment(&nodes[0], &expected_route, payment_preimage);
12709
12710                 // To start (2), send a keysend payment but don't claim it.
12711                 let payment_preimage = PaymentPreimage([42; 32]);
12712                 let route = find_route(
12713                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
12714                         None, nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
12715                 ).unwrap();
12716                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
12717                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
12718                 check_added_monitors!(nodes[0], 1);
12719                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
12720                 assert_eq!(events.len(), 1);
12721                 let event = events.pop().unwrap();
12722                 let path = vec![&nodes[1]];
12723                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
12724
12725                 // Next, attempt a regular payment and make sure it fails.
12726                 let payment_secret = PaymentSecret([43; 32]);
12727                 nodes[0].node.send_payment_with_route(&route, payment_hash,
12728                         RecipientOnionFields::secret_only(payment_secret), PaymentId(payment_hash.0)).unwrap();
12729                 check_added_monitors!(nodes[0], 1);
12730                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
12731                 assert_eq!(events.len(), 1);
12732                 let ev = events.drain(..).next().unwrap();
12733                 let payment_event = SendEvent::from_event(ev);
12734                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
12735                 check_added_monitors!(nodes[1], 0);
12736                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
12737                 expect_pending_htlcs_forwardable!(nodes[1]);
12738                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
12739                 check_added_monitors!(nodes[1], 1);
12740                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
12741                 assert!(updates.update_add_htlcs.is_empty());
12742                 assert!(updates.update_fulfill_htlcs.is_empty());
12743                 assert_eq!(updates.update_fail_htlcs.len(), 1);
12744                 assert!(updates.update_fail_malformed_htlcs.is_empty());
12745                 assert!(updates.update_fee.is_none());
12746                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
12747                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
12748                 expect_payment_failed!(nodes[0], payment_hash, true);
12749
12750                 // Finally, succeed the keysend payment.
12751                 claim_payment(&nodes[0], &expected_route, payment_preimage);
12752
12753                 // To start (3), send a keysend payment but don't claim it.
12754                 let payment_id_1 = PaymentId([44; 32]);
12755                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
12756                         RecipientOnionFields::spontaneous_empty(), payment_id_1).unwrap();
12757                 check_added_monitors!(nodes[0], 1);
12758                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
12759                 assert_eq!(events.len(), 1);
12760                 let event = events.pop().unwrap();
12761                 let path = vec![&nodes[1]];
12762                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
12763
12764                 // Next, attempt a keysend payment and make sure it fails.
12765                 let route_params = RouteParameters::from_payment_params_and_value(
12766                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(), TEST_FINAL_CLTV, false),
12767                         100_000
12768                 );
12769                 let route = find_route(
12770                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
12771                         None, nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
12772                 ).unwrap();
12773                 let payment_id_2 = PaymentId([45; 32]);
12774                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
12775                         RecipientOnionFields::spontaneous_empty(), payment_id_2).unwrap();
12776                 check_added_monitors!(nodes[0], 1);
12777                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
12778                 assert_eq!(events.len(), 1);
12779                 let ev = events.drain(..).next().unwrap();
12780                 let payment_event = SendEvent::from_event(ev);
12781                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
12782                 check_added_monitors!(nodes[1], 0);
12783                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
12784                 expect_pending_htlcs_forwardable!(nodes[1]);
12785                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
12786                 check_added_monitors!(nodes[1], 1);
12787                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
12788                 assert!(updates.update_add_htlcs.is_empty());
12789                 assert!(updates.update_fulfill_htlcs.is_empty());
12790                 assert_eq!(updates.update_fail_htlcs.len(), 1);
12791                 assert!(updates.update_fail_malformed_htlcs.is_empty());
12792                 assert!(updates.update_fee.is_none());
12793                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
12794                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
12795                 expect_payment_failed!(nodes[0], payment_hash, true);
12796
12797                 // Finally, claim the original payment.
12798                 claim_payment(&nodes[0], &expected_route, payment_preimage);
12799         }
12800
12801         #[test]
12802         fn test_keysend_hash_mismatch() {
12803                 // Test that if we receive a keysend `update_add_htlc` msg, we fail as expected if the keysend
12804                 // preimage doesn't match the msg's payment hash.
12805                 let chanmon_cfgs = create_chanmon_cfgs(2);
12806                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
12807                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
12808                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
12809
12810                 let payer_pubkey = nodes[0].node.get_our_node_id();
12811                 let payee_pubkey = nodes[1].node.get_our_node_id();
12812
12813                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
12814                 let route_params = RouteParameters::from_payment_params_and_value(
12815                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
12816                 let network_graph = nodes[0].network_graph;
12817                 let first_hops = nodes[0].node.list_usable_channels();
12818                 let scorer = test_utils::TestScorer::new();
12819                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
12820                 let route = find_route(
12821                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
12822                         nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
12823                 ).unwrap();
12824
12825                 let test_preimage = PaymentPreimage([42; 32]);
12826                 let mismatch_payment_hash = PaymentHash([43; 32]);
12827                 let session_privs = nodes[0].node.test_add_new_pending_payment(mismatch_payment_hash,
12828                         RecipientOnionFields::spontaneous_empty(), PaymentId(mismatch_payment_hash.0), &route).unwrap();
12829                 nodes[0].node.test_send_payment_internal(&route, mismatch_payment_hash,
12830                         RecipientOnionFields::spontaneous_empty(), Some(test_preimage), PaymentId(mismatch_payment_hash.0), None, session_privs).unwrap();
12831                 check_added_monitors!(nodes[0], 1);
12832
12833                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
12834                 assert_eq!(updates.update_add_htlcs.len(), 1);
12835                 assert!(updates.update_fulfill_htlcs.is_empty());
12836                 assert!(updates.update_fail_htlcs.is_empty());
12837                 assert!(updates.update_fail_malformed_htlcs.is_empty());
12838                 assert!(updates.update_fee.is_none());
12839                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
12840
12841                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "Payment preimage didn't match payment hash", 1);
12842         }
12843
12844         #[test]
12845         fn test_keysend_msg_with_secret_err() {
12846                 // Test that we error as expected if we receive a keysend payment that includes a payment
12847                 // secret when we don't support MPP keysend.
12848                 let mut reject_mpp_keysend_cfg = test_default_channel_config();
12849                 reject_mpp_keysend_cfg.accept_mpp_keysend = false;
12850                 let chanmon_cfgs = create_chanmon_cfgs(2);
12851                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
12852                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(reject_mpp_keysend_cfg)]);
12853                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
12854
12855                 let payer_pubkey = nodes[0].node.get_our_node_id();
12856                 let payee_pubkey = nodes[1].node.get_our_node_id();
12857
12858                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
12859                 let route_params = RouteParameters::from_payment_params_and_value(
12860                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
12861                 let network_graph = nodes[0].network_graph;
12862                 let first_hops = nodes[0].node.list_usable_channels();
12863                 let scorer = test_utils::TestScorer::new();
12864                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
12865                 let route = find_route(
12866                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
12867                         nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
12868                 ).unwrap();
12869
12870                 let test_preimage = PaymentPreimage([42; 32]);
12871                 let test_secret = PaymentSecret([43; 32]);
12872                 let payment_hash = PaymentHash(Sha256::hash(&test_preimage.0).to_byte_array());
12873                 let session_privs = nodes[0].node.test_add_new_pending_payment(payment_hash,
12874                         RecipientOnionFields::secret_only(test_secret), PaymentId(payment_hash.0), &route).unwrap();
12875                 nodes[0].node.test_send_payment_internal(&route, payment_hash,
12876                         RecipientOnionFields::secret_only(test_secret), Some(test_preimage),
12877                         PaymentId(payment_hash.0), None, session_privs).unwrap();
12878                 check_added_monitors!(nodes[0], 1);
12879
12880                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
12881                 assert_eq!(updates.update_add_htlcs.len(), 1);
12882                 assert!(updates.update_fulfill_htlcs.is_empty());
12883                 assert!(updates.update_fail_htlcs.is_empty());
12884                 assert!(updates.update_fail_malformed_htlcs.is_empty());
12885                 assert!(updates.update_fee.is_none());
12886                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
12887
12888                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "We don't support MPP keysend payments", 1);
12889         }
12890
12891         #[test]
12892         fn test_multi_hop_missing_secret() {
12893                 let chanmon_cfgs = create_chanmon_cfgs(4);
12894                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
12895                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
12896                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
12897
12898                 let chan_1_id = create_announced_chan_between_nodes(&nodes, 0, 1).0.contents.short_channel_id;
12899                 let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2).0.contents.short_channel_id;
12900                 let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3).0.contents.short_channel_id;
12901                 let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3).0.contents.short_channel_id;
12902
12903                 // Marshall an MPP route.
12904                 let (mut route, payment_hash, _, _) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
12905                 let path = route.paths[0].clone();
12906                 route.paths.push(path);
12907                 route.paths[0].hops[0].pubkey = nodes[1].node.get_our_node_id();
12908                 route.paths[0].hops[0].short_channel_id = chan_1_id;
12909                 route.paths[0].hops[1].short_channel_id = chan_3_id;
12910                 route.paths[1].hops[0].pubkey = nodes[2].node.get_our_node_id();
12911                 route.paths[1].hops[0].short_channel_id = chan_2_id;
12912                 route.paths[1].hops[1].short_channel_id = chan_4_id;
12913
12914                 match nodes[0].node.send_payment_with_route(&route, payment_hash,
12915                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_hash.0))
12916                 .unwrap_err() {
12917                         PaymentSendFailure::ParameterError(APIError::APIMisuseError { ref err }) => {
12918                                 assert!(regex::Regex::new(r"Payment secret is required for multi-path payments").unwrap().is_match(err))
12919                         },
12920                         _ => panic!("unexpected error")
12921                 }
12922         }
12923
12924         #[test]
12925         fn test_channel_update_cached() {
12926                 let chanmon_cfgs = create_chanmon_cfgs(3);
12927                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
12928                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
12929                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
12930
12931                 let chan = create_announced_chan_between_nodes(&nodes, 0, 1);
12932
12933                 nodes[0].node.force_close_channel_with_peer(&chan.2, &nodes[1].node.get_our_node_id(), None, true).unwrap();
12934                 check_added_monitors!(nodes[0], 1);
12935                 check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed, [nodes[1].node.get_our_node_id()], 100000);
12936
12937                 // Confirm that the channel_update was not sent immediately to node[1] but was cached.
12938                 let node_1_events = nodes[1].node.get_and_clear_pending_msg_events();
12939                 assert_eq!(node_1_events.len(), 0);
12940
12941                 {
12942                         // Assert that ChannelUpdate message has been added to node[0] pending broadcast messages
12943                         let pending_broadcast_messages= nodes[0].node.pending_broadcast_messages.lock().unwrap();
12944                         assert_eq!(pending_broadcast_messages.len(), 1);
12945                 }
12946
12947                 // Test that we do not retrieve the pending broadcast messages when we are not connected to any peer
12948                 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
12949                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
12950
12951                 nodes[0].node.peer_disconnected(&nodes[2].node.get_our_node_id());
12952                 nodes[2].node.peer_disconnected(&nodes[0].node.get_our_node_id());
12953
12954                 let node_0_events = nodes[0].node.get_and_clear_pending_msg_events();
12955                 assert_eq!(node_0_events.len(), 0);
12956
12957                 // Now we reconnect to a peer
12958                 nodes[0].node.peer_connected(&nodes[2].node.get_our_node_id(), &msgs::Init {
12959                         features: nodes[2].node.init_features(), networks: None, remote_network_address: None
12960                 }, true).unwrap();
12961                 nodes[2].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
12962                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
12963                 }, false).unwrap();
12964
12965                 // Confirm that get_and_clear_pending_msg_events correctly captures pending broadcast messages
12966                 let node_0_events = nodes[0].node.get_and_clear_pending_msg_events();
12967                 assert_eq!(node_0_events.len(), 1);
12968                 match &node_0_events[0] {
12969                         MessageSendEvent::BroadcastChannelUpdate { .. } => (),
12970                         _ => panic!("Unexpected event"),
12971                 }
12972                 {
12973                         // Assert that ChannelUpdate message has been cleared from nodes[0] pending broadcast messages
12974                         let pending_broadcast_messages= nodes[0].node.pending_broadcast_messages.lock().unwrap();
12975                         assert_eq!(pending_broadcast_messages.len(), 0);
12976                 }
12977         }
12978
12979         #[test]
12980         fn test_drop_disconnected_peers_when_removing_channels() {
12981                 let chanmon_cfgs = create_chanmon_cfgs(2);
12982                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
12983                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
12984                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
12985
12986                 let chan = create_announced_chan_between_nodes(&nodes, 0, 1);
12987
12988                 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
12989                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
12990                 let error_message = "Channel force-closed";
12991                 nodes[0].node.force_close_broadcasting_latest_txn(&chan.2, &nodes[1].node.get_our_node_id(), error_message.to_string()).unwrap();
12992                 check_closed_broadcast!(nodes[0], true);
12993                 check_added_monitors!(nodes[0], 1);
12994                 check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed, [nodes[1].node.get_our_node_id()], 100000);
12995
12996                 {
12997                         // Assert that nodes[1] is awaiting removal for nodes[0] once nodes[1] has been
12998                         // disconnected and the channel between has been force closed.
12999                         let nodes_0_per_peer_state = nodes[0].node.per_peer_state.read().unwrap();
13000                         // Assert that nodes[1] isn't removed before `timer_tick_occurred` has been executed.
13001                         assert_eq!(nodes_0_per_peer_state.len(), 1);
13002                         assert!(nodes_0_per_peer_state.get(&nodes[1].node.get_our_node_id()).is_some());
13003                 }
13004
13005                 nodes[0].node.timer_tick_occurred();
13006
13007                 {
13008                         // Assert that nodes[1] has now been removed.
13009                         assert_eq!(nodes[0].node.per_peer_state.read().unwrap().len(), 0);
13010                 }
13011         }
13012
13013         #[test]
13014         fn bad_inbound_payment_hash() {
13015                 // Add coverage for checking that a user-provided payment hash matches the payment secret.
13016                 let chanmon_cfgs = create_chanmon_cfgs(2);
13017                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
13018                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
13019                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
13020
13021                 let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[0]);
13022                 let payment_data = msgs::FinalOnionHopData {
13023                         payment_secret,
13024                         total_msat: 100_000,
13025                 };
13026
13027                 // Ensure that if the payment hash given to `inbound_payment::verify` differs from the original,
13028                 // payment verification fails as expected.
13029                 let mut bad_payment_hash = payment_hash.clone();
13030                 bad_payment_hash.0[0] += 1;
13031                 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) {
13032                         Ok(_) => panic!("Unexpected ok"),
13033                         Err(()) => {
13034                                 nodes[0].logger.assert_log_contains("lightning::ln::inbound_payment", "Failing HTLC with user-generated payment_hash", 1);
13035                         }
13036                 }
13037
13038                 // Check that using the original payment hash succeeds.
13039                 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());
13040         }
13041
13042         #[test]
13043         fn test_outpoint_to_peer_coverage() {
13044                 // Test that the `ChannelManager:outpoint_to_peer` contains channels which have been assigned
13045                 // a `channel_id` (i.e. have had the funding tx created), and that they are removed once
13046                 // the channel is successfully closed.
13047                 let chanmon_cfgs = create_chanmon_cfgs(2);
13048                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
13049                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
13050                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
13051
13052                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1_000_000, 500_000_000, 42, None, None).unwrap();
13053                 let open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
13054                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel);
13055                 let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
13056                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
13057
13058                 let (temporary_channel_id, tx, funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 1_000_000, 42);
13059                 let channel_id = ChannelId::from_bytes(tx.txid().to_byte_array());
13060                 {
13061                         // Ensure that the `outpoint_to_peer` map is empty until either party has received the
13062                         // funding transaction, and have the real `channel_id`.
13063                         assert_eq!(nodes[0].node.outpoint_to_peer.lock().unwrap().len(), 0);
13064                         assert_eq!(nodes[1].node.outpoint_to_peer.lock().unwrap().len(), 0);
13065                 }
13066
13067                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
13068                 {
13069                         // Assert that `nodes[0]`'s `outpoint_to_peer` map is populated with the channel as soon as
13070                         // as it has the funding transaction.
13071                         let nodes_0_lock = nodes[0].node.outpoint_to_peer.lock().unwrap();
13072                         assert_eq!(nodes_0_lock.len(), 1);
13073                         assert!(nodes_0_lock.contains_key(&funding_output));
13074                 }
13075
13076                 assert_eq!(nodes[1].node.outpoint_to_peer.lock().unwrap().len(), 0);
13077
13078                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
13079
13080                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
13081                 {
13082                         let nodes_0_lock = nodes[0].node.outpoint_to_peer.lock().unwrap();
13083                         assert_eq!(nodes_0_lock.len(), 1);
13084                         assert!(nodes_0_lock.contains_key(&funding_output));
13085                 }
13086                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
13087
13088                 {
13089                         // Assert that `nodes[1]`'s `outpoint_to_peer` map is populated with the channel as
13090                         // soon as it has the funding transaction.
13091                         let nodes_1_lock = nodes[1].node.outpoint_to_peer.lock().unwrap();
13092                         assert_eq!(nodes_1_lock.len(), 1);
13093                         assert!(nodes_1_lock.contains_key(&funding_output));
13094                 }
13095                 check_added_monitors!(nodes[1], 1);
13096                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
13097                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
13098                 check_added_monitors!(nodes[0], 1);
13099                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
13100                 let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
13101                 let (announcement, nodes_0_update, nodes_1_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
13102                 update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &nodes_0_update, &nodes_1_update);
13103
13104                 nodes[0].node.close_channel(&channel_id, &nodes[1].node.get_our_node_id()).unwrap();
13105                 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()));
13106                 let nodes_1_shutdown = get_event_msg!(nodes[1], MessageSendEvent::SendShutdown, nodes[0].node.get_our_node_id());
13107                 nodes[0].node.handle_shutdown(&nodes[1].node.get_our_node_id(), &nodes_1_shutdown);
13108
13109                 let closing_signed_node_0 = get_event_msg!(nodes[0], MessageSendEvent::SendClosingSigned, nodes[1].node.get_our_node_id());
13110                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0);
13111                 {
13112                         // Assert that the channel is kept in the `outpoint_to_peer` map for both nodes until the
13113                         // channel can be fully closed by both parties (i.e. no outstanding htlcs exists, the
13114                         // fee for the closing transaction has been negotiated and the parties has the other
13115                         // party's signature for the fee negotiated closing transaction.)
13116                         let nodes_0_lock = nodes[0].node.outpoint_to_peer.lock().unwrap();
13117                         assert_eq!(nodes_0_lock.len(), 1);
13118                         assert!(nodes_0_lock.contains_key(&funding_output));
13119                 }
13120
13121                 {
13122                         // At this stage, `nodes[1]` has proposed a fee for the closing transaction in the
13123                         // `handle_closing_signed` call above. As `nodes[1]` has not yet received the signature
13124                         // from `nodes[0]` for the closing transaction with the proposed fee, the channel is
13125                         // kept in the `nodes[1]`'s `outpoint_to_peer` map.
13126                         let nodes_1_lock = nodes[1].node.outpoint_to_peer.lock().unwrap();
13127                         assert_eq!(nodes_1_lock.len(), 1);
13128                         assert!(nodes_1_lock.contains_key(&funding_output));
13129                 }
13130
13131                 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()));
13132                 {
13133                         // `nodes[0]` accepts `nodes[1]`'s proposed fee for the closing transaction, and
13134                         // therefore has all it needs to fully close the channel (both signatures for the
13135                         // closing transaction).
13136                         // Assert that the channel is removed from `nodes[0]`'s `outpoint_to_peer` map as it can be
13137                         // fully closed by `nodes[0]`.
13138                         assert_eq!(nodes[0].node.outpoint_to_peer.lock().unwrap().len(), 0);
13139
13140                         // Assert that the channel is still in `nodes[1]`'s  `outpoint_to_peer` map, as `nodes[1]`
13141                         // doesn't have `nodes[0]`'s signature for the closing transaction yet.
13142                         let nodes_1_lock = nodes[1].node.outpoint_to_peer.lock().unwrap();
13143                         assert_eq!(nodes_1_lock.len(), 1);
13144                         assert!(nodes_1_lock.contains_key(&funding_output));
13145                 }
13146
13147                 let (_nodes_0_update, closing_signed_node_0) = get_closing_signed_broadcast!(nodes[0].node, nodes[1].node.get_our_node_id());
13148
13149                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0.unwrap());
13150                 {
13151                         // Assert that the channel has now been removed from both parties `outpoint_to_peer` map once
13152                         // they both have everything required to fully close the channel.
13153                         assert_eq!(nodes[1].node.outpoint_to_peer.lock().unwrap().len(), 0);
13154                 }
13155                 let (_nodes_1_update, _none) = get_closing_signed_broadcast!(nodes[1].node, nodes[0].node.get_our_node_id());
13156
13157                 check_closed_event!(nodes[0], 1, ClosureReason::LocallyInitiatedCooperativeClosure, [nodes[1].node.get_our_node_id()], 1000000);
13158                 check_closed_event!(nodes[1], 1, ClosureReason::CounterpartyInitiatedCooperativeClosure, [nodes[0].node.get_our_node_id()], 1000000);
13159         }
13160
13161         fn check_not_connected_to_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
13162                 let expected_message = format!("Not connected to node: {}", expected_public_key);
13163                 check_api_error_message(expected_message, res_err)
13164         }
13165
13166         fn check_unkown_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
13167                 let expected_message = format!("Can't find a peer matching the passed counterparty node_id {}", expected_public_key);
13168                 check_api_error_message(expected_message, res_err)
13169         }
13170
13171         fn check_channel_unavailable_error<T>(res_err: Result<T, APIError>, expected_channel_id: ChannelId, peer_node_id: PublicKey) {
13172                 let expected_message = format!("Channel with id {} not found for the passed counterparty node_id {}", expected_channel_id, peer_node_id);
13173                 check_api_error_message(expected_message, res_err)
13174         }
13175
13176         fn check_api_misuse_error<T>(res_err: Result<T, APIError>) {
13177                 let expected_message = "No such channel awaiting to be accepted.".to_string();
13178                 check_api_error_message(expected_message, res_err)
13179         }
13180
13181         fn check_api_error_message<T>(expected_err_message: String, res_err: Result<T, APIError>) {
13182                 match res_err {
13183                         Err(APIError::APIMisuseError { err }) => {
13184                                 assert_eq!(err, expected_err_message);
13185                         },
13186                         Err(APIError::ChannelUnavailable { err }) => {
13187                                 assert_eq!(err, expected_err_message);
13188                         },
13189                         Ok(_) => panic!("Unexpected Ok"),
13190                         Err(_) => panic!("Unexpected Error"),
13191                 }
13192         }
13193
13194         #[test]
13195         fn test_api_calls_with_unkown_counterparty_node() {
13196                 // Tests that our API functions that expects a `counterparty_node_id` as input, behaves as
13197                 // expected if the `counterparty_node_id` is an unkown peer in the
13198                 // `ChannelManager::per_peer_state` map.
13199                 let chanmon_cfg = create_chanmon_cfgs(2);
13200                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
13201                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[None, None]);
13202                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
13203
13204                 // Dummy values
13205                 let channel_id = ChannelId::from_bytes([4; 32]);
13206                 let unkown_public_key = PublicKey::from_secret_key(&Secp256k1::signing_only(), &SecretKey::from_slice(&[42; 32]).unwrap());
13207                 let intercept_id = InterceptId([0; 32]);
13208                 let error_message = "Channel force-closed";
13209
13210                 // Test the API functions.
13211                 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);
13212
13213                 check_unkown_peer_error(nodes[0].node.accept_inbound_channel(&channel_id, &unkown_public_key, 42), unkown_public_key);
13214
13215                 check_unkown_peer_error(nodes[0].node.close_channel(&channel_id, &unkown_public_key), unkown_public_key);
13216
13217                 check_unkown_peer_error(nodes[0].node.force_close_broadcasting_latest_txn(&channel_id, &unkown_public_key, error_message.to_string()), unkown_public_key);
13218
13219                 check_unkown_peer_error(nodes[0].node.force_close_without_broadcasting_txn(&channel_id, &unkown_public_key, error_message.to_string()), unkown_public_key);
13220
13221                 check_unkown_peer_error(nodes[0].node.forward_intercepted_htlc(intercept_id, &channel_id, unkown_public_key, 1_000_000), unkown_public_key);
13222
13223                 check_unkown_peer_error(nodes[0].node.update_channel_config(&unkown_public_key, &[channel_id], &ChannelConfig::default()), unkown_public_key);
13224         }
13225
13226         #[test]
13227         fn test_api_calls_with_unavailable_channel() {
13228                 // Tests that our API functions that expects a `counterparty_node_id` and a `channel_id`
13229                 // as input, behaves as expected if the `counterparty_node_id` is a known peer in the
13230                 // `ChannelManager::per_peer_state` map, but the peer state doesn't contain a channel with
13231                 // the given `channel_id`.
13232                 let chanmon_cfg = create_chanmon_cfgs(2);
13233                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
13234                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[None, None]);
13235                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
13236
13237                 let counterparty_node_id = nodes[1].node.get_our_node_id();
13238
13239                 // Dummy values
13240                 let channel_id = ChannelId::from_bytes([4; 32]);
13241                 let error_message = "Channel force-closed";
13242
13243                 // Test the API functions.
13244                 check_api_misuse_error(nodes[0].node.accept_inbound_channel(&channel_id, &counterparty_node_id, 42));
13245
13246                 check_channel_unavailable_error(nodes[0].node.close_channel(&channel_id, &counterparty_node_id), channel_id, counterparty_node_id);
13247
13248                 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);
13249
13250                 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);
13251
13252                 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);
13253
13254                 check_channel_unavailable_error(nodes[0].node.update_channel_config(&counterparty_node_id, &[channel_id], &ChannelConfig::default()), channel_id, counterparty_node_id);
13255         }
13256
13257         #[test]
13258         fn test_connection_limiting() {
13259                 // Test that we limit un-channel'd peers and un-funded channels properly.
13260                 let chanmon_cfgs = create_chanmon_cfgs(2);
13261                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
13262                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
13263                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
13264
13265                 // Note that create_network connects the nodes together for us
13266
13267                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None, None).unwrap();
13268                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
13269
13270                 let mut funding_tx = None;
13271                 for idx in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
13272                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
13273                         let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
13274
13275                         if idx == 0 {
13276                                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
13277                                 let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100_000, 42);
13278                                 funding_tx = Some(tx.clone());
13279                                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx).unwrap();
13280                                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
13281
13282                                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
13283                                 check_added_monitors!(nodes[1], 1);
13284                                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
13285
13286                                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
13287
13288                                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
13289                                 check_added_monitors!(nodes[0], 1);
13290                                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
13291                         }
13292                         open_channel_msg.common_fields.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
13293                 }
13294
13295                 // A MAX_UNFUNDED_CHANS_PER_PEER + 1 channel will be summarily rejected
13296                 open_channel_msg.common_fields.temporary_channel_id = ChannelId::temporary_from_entropy_source(
13297                         &nodes[0].keys_manager);
13298                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
13299                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
13300                         open_channel_msg.common_fields.temporary_channel_id);
13301
13302                 // Further, because all of our channels with nodes[0] are inbound, and none of them funded,
13303                 // it doesn't count as a "protected" peer, i.e. it counts towards the MAX_NO_CHANNEL_PEERS
13304                 // limit.
13305                 let mut peer_pks = Vec::with_capacity(super::MAX_NO_CHANNEL_PEERS);
13306                 for _ in 1..super::MAX_NO_CHANNEL_PEERS {
13307                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
13308                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
13309                         peer_pks.push(random_pk);
13310                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
13311                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
13312                         }, true).unwrap();
13313                 }
13314                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
13315                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
13316                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
13317                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
13318                 }, true).unwrap_err();
13319
13320                 // Also importantly, because nodes[0] isn't "protected", we will refuse a reconnection from
13321                 // them if we have too many un-channel'd peers.
13322                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
13323                 let chan_closed_events = nodes[1].node.get_and_clear_pending_events();
13324                 assert_eq!(chan_closed_events.len(), super::MAX_UNFUNDED_CHANS_PER_PEER - 1);
13325                 for ev in chan_closed_events {
13326                         if let Event::ChannelClosed { .. } = ev { } else { panic!(); }
13327                 }
13328                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
13329                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
13330                 }, true).unwrap();
13331                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
13332                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
13333                 }, true).unwrap_err();
13334
13335                 // but of course if the connection is outbound its allowed...
13336                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
13337                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
13338                 }, false).unwrap();
13339                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
13340
13341                 // Now nodes[0] is disconnected but still has a pending, un-funded channel lying around.
13342                 // Even though we accept one more connection from new peers, we won't actually let them
13343                 // open channels.
13344                 assert!(peer_pks.len() > super::MAX_UNFUNDED_CHANNEL_PEERS - 1);
13345                 for i in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
13346                         nodes[1].node.handle_open_channel(&peer_pks[i], &open_channel_msg);
13347                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, peer_pks[i]);
13348                         open_channel_msg.common_fields.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
13349                 }
13350                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
13351                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
13352                         open_channel_msg.common_fields.temporary_channel_id);
13353
13354                 // Of course, however, outbound channels are always allowed
13355                 nodes[1].node.create_channel(last_random_pk, 100_000, 0, 42, None, None).unwrap();
13356                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, last_random_pk);
13357
13358                 // If we fund the first channel, nodes[0] has a live on-chain channel with us, it is now
13359                 // "protected" and can connect again.
13360                 mine_transaction(&nodes[1], funding_tx.as_ref().unwrap());
13361                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
13362                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
13363                 }, true).unwrap();
13364                 get_event_msg!(nodes[1], MessageSendEvent::SendChannelReestablish, nodes[0].node.get_our_node_id());
13365
13366                 // Further, because the first channel was funded, we can open another channel with
13367                 // last_random_pk.
13368                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
13369                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
13370         }
13371
13372         #[test]
13373         fn test_outbound_chans_unlimited() {
13374                 // Test that we never refuse an outbound channel even if a peer is unfuned-channel-limited
13375                 let chanmon_cfgs = create_chanmon_cfgs(2);
13376                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
13377                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
13378                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
13379
13380                 // Note that create_network connects the nodes together for us
13381
13382                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None, None).unwrap();
13383                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
13384
13385                 for _ in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
13386                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
13387                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
13388                         open_channel_msg.common_fields.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
13389                 }
13390
13391                 // Once we have MAX_UNFUNDED_CHANS_PER_PEER unfunded channels, new inbound channels will be
13392                 // rejected.
13393                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
13394                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
13395                         open_channel_msg.common_fields.temporary_channel_id);
13396
13397                 // but we can still open an outbound channel.
13398                 nodes[1].node.create_channel(nodes[0].node.get_our_node_id(), 100_000, 0, 42, None, None).unwrap();
13399                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
13400
13401                 // but even with such an outbound channel, additional inbound channels will still fail.
13402                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
13403                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
13404                         open_channel_msg.common_fields.temporary_channel_id);
13405         }
13406
13407         #[test]
13408         fn test_0conf_limiting() {
13409                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
13410                 // flag set and (sometimes) accept channels as 0conf.
13411                 let chanmon_cfgs = create_chanmon_cfgs(2);
13412                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
13413                 let mut settings = test_default_channel_config();
13414                 settings.manually_accept_inbound_channels = true;
13415                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(settings)]);
13416                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
13417
13418                 // Note that create_network connects the nodes together for us
13419
13420                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None, None).unwrap();
13421                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
13422
13423                 // First, get us up to MAX_UNFUNDED_CHANNEL_PEERS so we can test at the edge
13424                 for _ in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
13425                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
13426                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
13427                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
13428                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
13429                         }, true).unwrap();
13430
13431                         nodes[1].node.handle_open_channel(&random_pk, &open_channel_msg);
13432                         let events = nodes[1].node.get_and_clear_pending_events();
13433                         match events[0] {
13434                                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
13435                                         nodes[1].node.accept_inbound_channel(&temporary_channel_id, &random_pk, 23).unwrap();
13436                                 }
13437                                 _ => panic!("Unexpected event"),
13438                         }
13439                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, random_pk);
13440                         open_channel_msg.common_fields.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
13441                 }
13442
13443                 // If we try to accept a channel from another peer non-0conf it will fail.
13444                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
13445                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
13446                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
13447                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
13448                 }, true).unwrap();
13449                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
13450                 let events = nodes[1].node.get_and_clear_pending_events();
13451                 match events[0] {
13452                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
13453                                 match nodes[1].node.accept_inbound_channel(&temporary_channel_id, &last_random_pk, 23) {
13454                                         Err(APIError::APIMisuseError { err }) =>
13455                                                 assert_eq!(err, "Too many peers with unfunded channels, refusing to accept new ones"),
13456                                         _ => panic!(),
13457                                 }
13458                         }
13459                         _ => panic!("Unexpected event"),
13460                 }
13461                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
13462                         open_channel_msg.common_fields.temporary_channel_id);
13463
13464                 // ...however if we accept the same channel 0conf it should work just fine.
13465                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
13466                 let events = nodes[1].node.get_and_clear_pending_events();
13467                 match events[0] {
13468                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
13469                                 nodes[1].node.accept_inbound_channel_from_trusted_peer_0conf(&temporary_channel_id, &last_random_pk, 23).unwrap();
13470                         }
13471                         _ => panic!("Unexpected event"),
13472                 }
13473                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
13474         }
13475
13476         #[test]
13477         fn reject_excessively_underpaying_htlcs() {
13478                 let chanmon_cfg = create_chanmon_cfgs(1);
13479                 let node_cfg = create_node_cfgs(1, &chanmon_cfg);
13480                 let node_chanmgr = create_node_chanmgrs(1, &node_cfg, &[None]);
13481                 let node = create_network(1, &node_cfg, &node_chanmgr);
13482                 let sender_intended_amt_msat = 100;
13483                 let extra_fee_msat = 10;
13484                 let hop_data = msgs::InboundOnionPayload::Receive {
13485                         sender_intended_htlc_amt_msat: 100,
13486                         cltv_expiry_height: 42,
13487                         payment_metadata: None,
13488                         keysend_preimage: None,
13489                         payment_data: Some(msgs::FinalOnionHopData {
13490                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
13491                         }),
13492                         custom_tlvs: Vec::new(),
13493                 };
13494                 // Check that if the amount we received + the penultimate hop extra fee is less than the sender
13495                 // intended amount, we fail the payment.
13496                 let current_height: u32 = node[0].node.best_block.read().unwrap().height;
13497                 if let Err(crate::ln::channelmanager::InboundHTLCErr { err_code, .. }) =
13498                         create_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
13499                                 sender_intended_amt_msat - extra_fee_msat - 1, 42, None, true, Some(extra_fee_msat),
13500                                 current_height, node[0].node.default_configuration.accept_mpp_keysend)
13501                 {
13502                         assert_eq!(err_code, 19);
13503                 } else { panic!(); }
13504
13505                 // If amt_received + extra_fee is equal to the sender intended amount, we're fine.
13506                 let hop_data = msgs::InboundOnionPayload::Receive { // This is the same payload as above, InboundOnionPayload doesn't implement Clone
13507                         sender_intended_htlc_amt_msat: 100,
13508                         cltv_expiry_height: 42,
13509                         payment_metadata: None,
13510                         keysend_preimage: None,
13511                         payment_data: Some(msgs::FinalOnionHopData {
13512                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
13513                         }),
13514                         custom_tlvs: Vec::new(),
13515                 };
13516                 let current_height: u32 = node[0].node.best_block.read().unwrap().height;
13517                 assert!(create_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
13518                         sender_intended_amt_msat - extra_fee_msat, 42, None, true, Some(extra_fee_msat),
13519                         current_height, node[0].node.default_configuration.accept_mpp_keysend).is_ok());
13520         }
13521
13522         #[test]
13523         fn test_final_incorrect_cltv(){
13524                 let chanmon_cfg = create_chanmon_cfgs(1);
13525                 let node_cfg = create_node_cfgs(1, &chanmon_cfg);
13526                 let node_chanmgr = create_node_chanmgrs(1, &node_cfg, &[None]);
13527                 let node = create_network(1, &node_cfg, &node_chanmgr);
13528
13529                 let current_height: u32 = node[0].node.best_block.read().unwrap().height;
13530                 let result = create_recv_pending_htlc_info(msgs::InboundOnionPayload::Receive {
13531                         sender_intended_htlc_amt_msat: 100,
13532                         cltv_expiry_height: 22,
13533                         payment_metadata: None,
13534                         keysend_preimage: None,
13535                         payment_data: Some(msgs::FinalOnionHopData {
13536                                 payment_secret: PaymentSecret([0; 32]), total_msat: 100,
13537                         }),
13538                         custom_tlvs: Vec::new(),
13539                 }, [0; 32], PaymentHash([0; 32]), 100, 23, None, true, None, current_height,
13540                         node[0].node.default_configuration.accept_mpp_keysend);
13541
13542                 // Should not return an error as this condition:
13543                 // https://github.com/lightning/bolts/blob/4dcc377209509b13cf89a4b91fde7d478f5b46d8/04-onion-routing.md?plain=1#L334
13544                 // is not satisfied.
13545                 assert!(result.is_ok());
13546         }
13547
13548         #[test]
13549         fn test_inbound_anchors_manual_acceptance() {
13550                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
13551                 // flag set and (sometimes) accept channels as 0conf.
13552                 let mut anchors_cfg = test_default_channel_config();
13553                 anchors_cfg.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
13554
13555                 let mut anchors_manual_accept_cfg = anchors_cfg.clone();
13556                 anchors_manual_accept_cfg.manually_accept_inbound_channels = true;
13557
13558                 let chanmon_cfgs = create_chanmon_cfgs(3);
13559                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
13560                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs,
13561                         &[Some(anchors_cfg.clone()), Some(anchors_cfg.clone()), Some(anchors_manual_accept_cfg.clone())]);
13562                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
13563
13564                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None, None).unwrap();
13565                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
13566
13567                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
13568                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
13569                 let msg_events = nodes[1].node.get_and_clear_pending_msg_events();
13570                 match &msg_events[0] {
13571                         MessageSendEvent::HandleError { node_id, action } => {
13572                                 assert_eq!(*node_id, nodes[0].node.get_our_node_id());
13573                                 match action {
13574                                         ErrorAction::SendErrorMessage { msg } =>
13575                                                 assert_eq!(msg.data, "No channels with anchor outputs accepted".to_owned()),
13576                                         _ => panic!("Unexpected error action"),
13577                                 }
13578                         }
13579                         _ => panic!("Unexpected event"),
13580                 }
13581
13582                 nodes[2].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
13583                 let events = nodes[2].node.get_and_clear_pending_events();
13584                 match events[0] {
13585                         Event::OpenChannelRequest { temporary_channel_id, .. } =>
13586                                 nodes[2].node.accept_inbound_channel(&temporary_channel_id, &nodes[0].node.get_our_node_id(), 23).unwrap(),
13587                         _ => panic!("Unexpected event"),
13588                 }
13589                 get_event_msg!(nodes[2], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
13590         }
13591
13592         #[test]
13593         fn test_anchors_zero_fee_htlc_tx_fallback() {
13594                 // Tests that if both nodes support anchors, but the remote node does not want to accept
13595                 // anchor channels at the moment, an error it sent to the local node such that it can retry
13596                 // the channel without the anchors feature.
13597                 let chanmon_cfgs = create_chanmon_cfgs(2);
13598                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
13599                 let mut anchors_config = test_default_channel_config();
13600                 anchors_config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
13601                 anchors_config.manually_accept_inbound_channels = true;
13602                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(anchors_config.clone()), Some(anchors_config.clone())]);
13603                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
13604                 let error_message = "Channel force-closed";
13605
13606                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 0, None, None).unwrap();
13607                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
13608                 assert!(open_channel_msg.common_fields.channel_type.as_ref().unwrap().supports_anchors_zero_fee_htlc_tx());
13609
13610                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
13611                 let events = nodes[1].node.get_and_clear_pending_events();
13612                 match events[0] {
13613                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
13614                                 nodes[1].node.force_close_broadcasting_latest_txn(&temporary_channel_id, &nodes[0].node.get_our_node_id(), error_message.to_string()).unwrap();
13615                         }
13616                         _ => panic!("Unexpected event"),
13617                 }
13618
13619                 let error_msg = get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id());
13620                 nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &error_msg);
13621
13622                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
13623                 assert!(!open_channel_msg.common_fields.channel_type.unwrap().supports_anchors_zero_fee_htlc_tx());
13624
13625                 // Since nodes[1] should not have accepted the channel, it should
13626                 // not have generated any events.
13627                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
13628         }
13629
13630         #[test]
13631         fn test_update_channel_config() {
13632                 let chanmon_cfg = create_chanmon_cfgs(2);
13633                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
13634                 let mut user_config = test_default_channel_config();
13635                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config), Some(user_config)]);
13636                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
13637                 let _ = create_announced_chan_between_nodes(&nodes, 0, 1);
13638                 let channel = &nodes[0].node.list_channels()[0];
13639
13640                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
13641                 let events = nodes[0].node.get_and_clear_pending_msg_events();
13642                 assert_eq!(events.len(), 0);
13643
13644                 user_config.channel_config.forwarding_fee_base_msat += 10;
13645                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
13646                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_base_msat, user_config.channel_config.forwarding_fee_base_msat);
13647                 let events = nodes[0].node.get_and_clear_pending_msg_events();
13648                 assert_eq!(events.len(), 1);
13649                 match &events[0] {
13650                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
13651                         _ => panic!("expected BroadcastChannelUpdate event"),
13652                 }
13653
13654                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate::default()).unwrap();
13655                 let events = nodes[0].node.get_and_clear_pending_msg_events();
13656                 assert_eq!(events.len(), 0);
13657
13658                 let new_cltv_expiry_delta = user_config.channel_config.cltv_expiry_delta + 6;
13659                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
13660                         cltv_expiry_delta: Some(new_cltv_expiry_delta),
13661                         ..Default::default()
13662                 }).unwrap();
13663                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
13664                 let events = nodes[0].node.get_and_clear_pending_msg_events();
13665                 assert_eq!(events.len(), 1);
13666                 match &events[0] {
13667                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
13668                         _ => panic!("expected BroadcastChannelUpdate event"),
13669                 }
13670
13671                 let new_fee = user_config.channel_config.forwarding_fee_proportional_millionths + 100;
13672                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
13673                         forwarding_fee_proportional_millionths: Some(new_fee),
13674                         ..Default::default()
13675                 }).unwrap();
13676                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
13677                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, new_fee);
13678                 let events = nodes[0].node.get_and_clear_pending_msg_events();
13679                 assert_eq!(events.len(), 1);
13680                 match &events[0] {
13681                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
13682                         _ => panic!("expected BroadcastChannelUpdate event"),
13683                 }
13684
13685                 // If we provide a channel_id not associated with the peer, we should get an error and no updates
13686                 // should be applied to ensure update atomicity as specified in the API docs.
13687                 let bad_channel_id = ChannelId::v1_from_funding_txid(&[10; 32], 10);
13688                 let current_fee = nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths;
13689                 let new_fee = current_fee + 100;
13690                 assert!(
13691                         matches!(
13692                                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id, bad_channel_id], &ChannelConfigUpdate {
13693                                         forwarding_fee_proportional_millionths: Some(new_fee),
13694                                         ..Default::default()
13695                                 }),
13696                                 Err(APIError::ChannelUnavailable { err: _ }),
13697                         )
13698                 );
13699                 // Check that the fee hasn't changed for the channel that exists.
13700                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, current_fee);
13701                 let events = nodes[0].node.get_and_clear_pending_msg_events();
13702                 assert_eq!(events.len(), 0);
13703         }
13704
13705         #[test]
13706         fn test_payment_display() {
13707                 let payment_id = PaymentId([42; 32]);
13708                 assert_eq!(format!("{}", &payment_id), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
13709                 let payment_hash = PaymentHash([42; 32]);
13710                 assert_eq!(format!("{}", &payment_hash), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
13711                 let payment_preimage = PaymentPreimage([42; 32]);
13712                 assert_eq!(format!("{}", &payment_preimage), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
13713         }
13714
13715         #[test]
13716         fn test_trigger_lnd_force_close() {
13717                 let chanmon_cfg = create_chanmon_cfgs(2);
13718                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
13719                 let user_config = test_default_channel_config();
13720                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config), Some(user_config)]);
13721                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
13722                 let error_message = "Channel force-closed";
13723
13724                 // Open a channel, immediately disconnect each other, and broadcast Alice's latest state.
13725                 let (_, _, chan_id, funding_tx) = create_announced_chan_between_nodes(&nodes, 0, 1);
13726                 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
13727                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
13728                 nodes[0].node.force_close_broadcasting_latest_txn(&chan_id, &nodes[1].node.get_our_node_id(), error_message.to_string()).unwrap();
13729                 check_closed_broadcast(&nodes[0], 1, true);
13730                 check_added_monitors(&nodes[0], 1);
13731                 check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed, [nodes[1].node.get_our_node_id()], 100000);
13732                 {
13733                         let txn = nodes[0].tx_broadcaster.txn_broadcast();
13734                         assert_eq!(txn.len(), 1);
13735                         check_spends!(txn[0], funding_tx);
13736                 }
13737
13738                 // Since they're disconnected, Bob won't receive Alice's `Error` message. Reconnect them
13739                 // such that Bob sends a `ChannelReestablish` to Alice since the channel is still open from
13740                 // their side.
13741                 nodes[0].node.peer_connected(&nodes[1].node.get_our_node_id(), &msgs::Init {
13742                         features: nodes[1].node.init_features(), networks: None, remote_network_address: None
13743                 }, true).unwrap();
13744                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
13745                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
13746                 }, false).unwrap();
13747                 assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
13748                 let channel_reestablish = get_event_msg!(
13749                         nodes[1], MessageSendEvent::SendChannelReestablish, nodes[0].node.get_our_node_id()
13750                 );
13751                 nodes[0].node.handle_channel_reestablish(&nodes[1].node.get_our_node_id(), &channel_reestablish);
13752
13753                 // Alice should respond with an error since the channel isn't known, but a bogus
13754                 // `ChannelReestablish` should be sent first, such that we actually trigger Bob to force
13755                 // close even if it was an lnd node.
13756                 let msg_events = nodes[0].node.get_and_clear_pending_msg_events();
13757                 assert_eq!(msg_events.len(), 2);
13758                 if let MessageSendEvent::SendChannelReestablish { node_id, msg } = &msg_events[0] {
13759                         assert_eq!(*node_id, nodes[1].node.get_our_node_id());
13760                         assert_eq!(msg.next_local_commitment_number, 0);
13761                         assert_eq!(msg.next_remote_commitment_number, 0);
13762                         nodes[1].node.handle_channel_reestablish(&nodes[0].node.get_our_node_id(), &msg);
13763                 } else { panic!() };
13764                 check_closed_broadcast(&nodes[1], 1, true);
13765                 check_added_monitors(&nodes[1], 1);
13766                 let expected_close_reason = ClosureReason::ProcessingError {
13767                         err: "Peer sent an invalid channel_reestablish to force close in a non-standard way".to_string()
13768                 };
13769                 check_closed_event!(nodes[1], 1, expected_close_reason, [nodes[0].node.get_our_node_id()], 100000);
13770                 {
13771                         let txn = nodes[1].tx_broadcaster.txn_broadcast();
13772                         assert_eq!(txn.len(), 1);
13773                         check_spends!(txn[0], funding_tx);
13774                 }
13775         }
13776
13777         #[test]
13778         fn test_malformed_forward_htlcs_ser() {
13779                 // Ensure that `HTLCForwardInfo::FailMalformedHTLC`s are (de)serialized properly.
13780                 let chanmon_cfg = create_chanmon_cfgs(1);
13781                 let node_cfg = create_node_cfgs(1, &chanmon_cfg);
13782                 let persister;
13783                 let chain_monitor;
13784                 let chanmgrs = create_node_chanmgrs(1, &node_cfg, &[None]);
13785                 let deserialized_chanmgr;
13786                 let mut nodes = create_network(1, &node_cfg, &chanmgrs);
13787
13788                 let dummy_failed_htlc = |htlc_id| {
13789                         HTLCForwardInfo::FailHTLC { htlc_id, err_packet: msgs::OnionErrorPacket { data: vec![42] }, }
13790                 };
13791                 let dummy_malformed_htlc = |htlc_id| {
13792                         HTLCForwardInfo::FailMalformedHTLC { htlc_id, failure_code: 0x4000, sha256_of_onion: [0; 32] }
13793                 };
13794
13795                 let dummy_htlcs_1: Vec<HTLCForwardInfo> = (1..10).map(|htlc_id| {
13796                         if htlc_id % 2 == 0 {
13797                                 dummy_failed_htlc(htlc_id)
13798                         } else {
13799                                 dummy_malformed_htlc(htlc_id)
13800                         }
13801                 }).collect();
13802
13803                 let dummy_htlcs_2: Vec<HTLCForwardInfo> = (1..10).map(|htlc_id| {
13804                         if htlc_id % 2 == 1 {
13805                                 dummy_failed_htlc(htlc_id)
13806                         } else {
13807                                 dummy_malformed_htlc(htlc_id)
13808                         }
13809                 }).collect();
13810
13811
13812                 let (scid_1, scid_2) = (42, 43);
13813                 let mut forward_htlcs = new_hash_map();
13814                 forward_htlcs.insert(scid_1, dummy_htlcs_1.clone());
13815                 forward_htlcs.insert(scid_2, dummy_htlcs_2.clone());
13816
13817                 let mut chanmgr_fwd_htlcs = nodes[0].node.forward_htlcs.lock().unwrap();
13818                 *chanmgr_fwd_htlcs = forward_htlcs.clone();
13819                 core::mem::drop(chanmgr_fwd_htlcs);
13820
13821                 reload_node!(nodes[0], nodes[0].node.encode(), &[], persister, chain_monitor, deserialized_chanmgr);
13822
13823                 let mut deserialized_fwd_htlcs = nodes[0].node.forward_htlcs.lock().unwrap();
13824                 for scid in [scid_1, scid_2].iter() {
13825                         let deserialized_htlcs = deserialized_fwd_htlcs.remove(scid).unwrap();
13826                         assert_eq!(forward_htlcs.remove(scid).unwrap(), deserialized_htlcs);
13827                 }
13828                 assert!(deserialized_fwd_htlcs.is_empty());
13829                 core::mem::drop(deserialized_fwd_htlcs);
13830
13831                 expect_pending_htlcs_forwardable!(nodes[0]);
13832         }
13833 }
13834
13835 #[cfg(ldk_bench)]
13836 pub mod bench {
13837         use crate::chain::Listen;
13838         use crate::chain::chainmonitor::{ChainMonitor, Persist};
13839         use crate::sign::{KeysManager, InMemorySigner};
13840         use crate::events::{Event, MessageSendEvent, MessageSendEventsProvider};
13841         use crate::ln::channelmanager::{BestBlock, ChainParameters, ChannelManager, PaymentHash, PaymentPreimage, PaymentId, RecipientOnionFields, Retry};
13842         use crate::ln::functional_test_utils::*;
13843         use crate::ln::msgs::{ChannelMessageHandler, Init};
13844         use crate::routing::gossip::NetworkGraph;
13845         use crate::routing::router::{PaymentParameters, RouteParameters};
13846         use crate::util::test_utils;
13847         use crate::util::config::{UserConfig, MaxDustHTLCExposure};
13848
13849         use bitcoin::amount::Amount;
13850         use bitcoin::blockdata::locktime::absolute::LockTime;
13851         use bitcoin::hashes::Hash;
13852         use bitcoin::hashes::sha256::Hash as Sha256;
13853         use bitcoin::{Transaction, TxOut};
13854         use bitcoin::transaction::Version;
13855
13856         use crate::sync::{Arc, Mutex, RwLock};
13857
13858         use criterion::Criterion;
13859
13860         type Manager<'a, P> = ChannelManager<
13861                 &'a ChainMonitor<InMemorySigner, &'a test_utils::TestChainSource,
13862                         &'a test_utils::TestBroadcaster, &'a test_utils::TestFeeEstimator,
13863                         &'a test_utils::TestLogger, &'a P>,
13864                 &'a test_utils::TestBroadcaster, &'a KeysManager, &'a KeysManager, &'a KeysManager,
13865                 &'a test_utils::TestFeeEstimator, &'a test_utils::TestRouter<'a>,
13866                 &'a test_utils::TestLogger>;
13867
13868         struct ANodeHolder<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> {
13869                 node: &'node_cfg Manager<'chan_mon_cfg, P>,
13870         }
13871         impl<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> NodeHolder for ANodeHolder<'node_cfg, 'chan_mon_cfg, P> {
13872                 type CM = Manager<'chan_mon_cfg, P>;
13873                 #[inline]
13874                 fn node(&self) -> &Manager<'chan_mon_cfg, P> { self.node }
13875                 #[inline]
13876                 fn chain_monitor(&self) -> Option<&test_utils::TestChainMonitor> { None }
13877         }
13878
13879         pub fn bench_sends(bench: &mut Criterion) {
13880                 bench_two_sends(bench, "bench_sends", test_utils::TestPersister::new(), test_utils::TestPersister::new());
13881         }
13882
13883         pub fn bench_two_sends<P: Persist<InMemorySigner>>(bench: &mut Criterion, bench_name: &str, persister_a: P, persister_b: P) {
13884                 // Do a simple benchmark of sending a payment back and forth between two nodes.
13885                 // Note that this is unrealistic as each payment send will require at least two fsync
13886                 // calls per node.
13887                 let network = bitcoin::Network::Testnet;
13888                 let genesis_block = bitcoin::blockdata::constants::genesis_block(network);
13889
13890                 let tx_broadcaster = test_utils::TestBroadcaster::new(network);
13891                 let fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
13892                 let logger_a = test_utils::TestLogger::with_id("node a".to_owned());
13893                 let scorer = RwLock::new(test_utils::TestScorer::new());
13894                 let router = test_utils::TestRouter::new(Arc::new(NetworkGraph::new(network, &logger_a)), &logger_a, &scorer);
13895
13896                 let mut config: UserConfig = Default::default();
13897                 config.channel_config.max_dust_htlc_exposure = MaxDustHTLCExposure::FeeRateMultiplier(5_000_000 / 253);
13898                 config.channel_handshake_config.minimum_depth = 1;
13899
13900                 let chain_monitor_a = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_a);
13901                 let seed_a = [1u8; 32];
13902                 let keys_manager_a = KeysManager::new(&seed_a, 42, 42);
13903                 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 {
13904                         network,
13905                         best_block: BestBlock::from_network(network),
13906                 }, genesis_block.header.time);
13907                 let node_a_holder = ANodeHolder { node: &node_a };
13908
13909                 let logger_b = test_utils::TestLogger::with_id("node a".to_owned());
13910                 let chain_monitor_b = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_b);
13911                 let seed_b = [2u8; 32];
13912                 let keys_manager_b = KeysManager::new(&seed_b, 42, 42);
13913                 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 {
13914                         network,
13915                         best_block: BestBlock::from_network(network),
13916                 }, genesis_block.header.time);
13917                 let node_b_holder = ANodeHolder { node: &node_b };
13918
13919                 node_a.peer_connected(&node_b.get_our_node_id(), &Init {
13920                         features: node_b.init_features(), networks: None, remote_network_address: None
13921                 }, true).unwrap();
13922                 node_b.peer_connected(&node_a.get_our_node_id(), &Init {
13923                         features: node_a.init_features(), networks: None, remote_network_address: None
13924                 }, false).unwrap();
13925                 node_a.create_channel(node_b.get_our_node_id(), 8_000_000, 100_000_000, 42, None, None).unwrap();
13926                 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()));
13927                 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()));
13928
13929                 let tx;
13930                 if let Event::FundingGenerationReady { temporary_channel_id, output_script, .. } = get_event!(node_a_holder, Event::FundingGenerationReady) {
13931                         tx = Transaction { version: Version::TWO, lock_time: LockTime::ZERO, input: Vec::new(), output: vec![TxOut {
13932                                 value: Amount::from_sat(8_000_000), script_pubkey: output_script,
13933                         }]};
13934                         node_a.funding_transaction_generated(&temporary_channel_id, &node_b.get_our_node_id(), tx.clone()).unwrap();
13935                 } else { panic!(); }
13936
13937                 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()));
13938                 let events_b = node_b.get_and_clear_pending_events();
13939                 assert_eq!(events_b.len(), 1);
13940                 match events_b[0] {
13941                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
13942                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
13943                         },
13944                         _ => panic!("Unexpected event"),
13945                 }
13946
13947                 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()));
13948                 let events_a = node_a.get_and_clear_pending_events();
13949                 assert_eq!(events_a.len(), 1);
13950                 match events_a[0] {
13951                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
13952                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
13953                         },
13954                         _ => panic!("Unexpected event"),
13955                 }
13956
13957                 assert_eq!(&tx_broadcaster.txn_broadcasted.lock().unwrap()[..], &[tx.clone()]);
13958
13959                 let block = create_dummy_block(BestBlock::from_network(network).block_hash, 42, vec![tx]);
13960                 Listen::block_connected(&node_a, &block, 1);
13961                 Listen::block_connected(&node_b, &block, 1);
13962
13963                 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()));
13964                 let msg_events = node_a.get_and_clear_pending_msg_events();
13965                 assert_eq!(msg_events.len(), 2);
13966                 match msg_events[0] {
13967                         MessageSendEvent::SendChannelReady { ref msg, .. } => {
13968                                 node_b.handle_channel_ready(&node_a.get_our_node_id(), msg);
13969                                 get_event_msg!(node_b_holder, MessageSendEvent::SendChannelUpdate, node_a.get_our_node_id());
13970                         },
13971                         _ => panic!(),
13972                 }
13973                 match msg_events[1] {
13974                         MessageSendEvent::SendChannelUpdate { .. } => {},
13975                         _ => panic!(),
13976                 }
13977
13978                 let events_a = node_a.get_and_clear_pending_events();
13979                 assert_eq!(events_a.len(), 1);
13980                 match events_a[0] {
13981                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
13982                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
13983                         },
13984                         _ => panic!("Unexpected event"),
13985                 }
13986
13987                 let events_b = node_b.get_and_clear_pending_events();
13988                 assert_eq!(events_b.len(), 1);
13989                 match events_b[0] {
13990                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
13991                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
13992                         },
13993                         _ => panic!("Unexpected event"),
13994                 }
13995
13996                 let mut payment_count: u64 = 0;
13997                 macro_rules! send_payment {
13998                         ($node_a: expr, $node_b: expr) => {
13999                                 let payment_params = PaymentParameters::from_node_id($node_b.get_our_node_id(), TEST_FINAL_CLTV)
14000                                         .with_bolt11_features($node_b.bolt11_invoice_features()).unwrap();
14001                                 let mut payment_preimage = PaymentPreimage([0; 32]);
14002                                 payment_preimage.0[0..8].copy_from_slice(&payment_count.to_le_bytes());
14003                                 payment_count += 1;
14004                                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).to_byte_array());
14005                                 let payment_secret = $node_b.create_inbound_payment_for_hash(payment_hash, None, 7200, None).unwrap();
14006
14007                                 $node_a.send_payment(payment_hash, RecipientOnionFields::secret_only(payment_secret),
14008                                         PaymentId(payment_hash.0),
14009                                         RouteParameters::from_payment_params_and_value(payment_params, 10_000),
14010                                         Retry::Attempts(0)).unwrap();
14011                                 let payment_event = SendEvent::from_event($node_a.get_and_clear_pending_msg_events().pop().unwrap());
14012                                 $node_b.handle_update_add_htlc(&$node_a.get_our_node_id(), &payment_event.msgs[0]);
14013                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &payment_event.commitment_msg);
14014                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_b }, &$node_a.get_our_node_id());
14015                                 $node_a.handle_revoke_and_ack(&$node_b.get_our_node_id(), &raa);
14016                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &cs);
14017                                 $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()));
14018
14019                                 expect_pending_htlcs_forwardable!(ANodeHolder { node: &$node_b });
14020                                 expect_payment_claimable!(ANodeHolder { node: &$node_b }, payment_hash, payment_secret, 10_000);
14021                                 $node_b.claim_funds(payment_preimage);
14022                                 expect_payment_claimed!(ANodeHolder { node: &$node_b }, payment_hash, 10_000);
14023
14024                                 match $node_b.get_and_clear_pending_msg_events().pop().unwrap() {
14025                                         MessageSendEvent::UpdateHTLCs { node_id, updates } => {
14026                                                 assert_eq!(node_id, $node_a.get_our_node_id());
14027                                                 $node_a.handle_update_fulfill_htlc(&$node_b.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
14028                                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &updates.commitment_signed);
14029                                         },
14030                                         _ => panic!("Failed to generate claim event"),
14031                                 }
14032
14033                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_a }, &$node_b.get_our_node_id());
14034                                 $node_b.handle_revoke_and_ack(&$node_a.get_our_node_id(), &raa);
14035                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &cs);
14036                                 $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()));
14037
14038                                 expect_payment_sent!(ANodeHolder { node: &$node_a }, payment_preimage);
14039                         }
14040                 }
14041
14042                 bench.bench_function(bench_name, |b| b.iter(|| {
14043                         send_payment!(node_a, node_b);
14044                         send_payment!(node_b, node_a);
14045                 }));
14046         }
14047 }