bad5e2f12841c811e082c2dafbda528ecbff5250
[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::BlockHeader;
21 use bitcoin::blockdata::transaction::Transaction;
22 use bitcoin::blockdata::constants::ChainHash;
23 use bitcoin::network::constants::Network;
24
25 use bitcoin::hashes::Hash;
26 use bitcoin::hashes::sha256::Hash as Sha256;
27 use bitcoin::hash_types::{BlockHash, Txid};
28
29 use bitcoin::secp256k1::{SecretKey,PublicKey};
30 use bitcoin::secp256k1::Secp256k1;
31 use bitcoin::{LockTime, secp256k1, Sequence};
32
33 use crate::blinded_path::BlindedPath;
34 use crate::blinded_path::payment::{PaymentConstraints, ReceiveTlvs};
35 use crate::chain;
36 use crate::chain::{Confirm, ChannelMonitorUpdateStatus, Watch, BestBlock};
37 use crate::chain::chaininterface::{BroadcasterInterface, ConfirmationTarget, FeeEstimator, LowerBoundedFeeEstimator};
38 use crate::chain::channelmonitor::{ChannelMonitor, ChannelMonitorUpdate, ChannelMonitorUpdateStep, HTLC_FAIL_BACK_BUFFER, CLTV_CLAIM_BUFFER, LATENCY_GRACE_PERIOD_BLOCKS, ANTI_REORG_DELAY, MonitorEvent, CLOSED_CHANNEL_UPDATE_ID};
39 use crate::chain::transaction::{OutPoint, TransactionData};
40 use crate::events;
41 use crate::events::{Event, EventHandler, EventsProvider, MessageSendEvent, MessageSendEventsProvider, ClosureReason, HTLCDestination, PaymentFailureReason};
42 // Since this struct is returned in `list_channels` methods, expose it here in case users want to
43 // construct one themselves.
44 use crate::ln::{inbound_payment, ChannelId, PaymentHash, PaymentPreimage, PaymentSecret};
45 use crate::ln::channel::{Channel, ChannelPhase, ChannelContext, ChannelError, ChannelUpdateStatus, ShutdownResult, UnfundedChannelContext, UpdateFulfillCommitFetch, OutboundV1Channel, InboundV1Channel};
46 use crate::ln::features::{Bolt12InvoiceFeatures, ChannelFeatures, ChannelTypeFeatures, InitFeatures, NodeFeatures};
47 #[cfg(any(feature = "_test_utils", test))]
48 use crate::ln::features::Bolt11InvoiceFeatures;
49 use crate::routing::gossip::NetworkGraph;
50 use crate::routing::router::{BlindedTail, DefaultRouter, InFlightHtlcs, Path, Payee, PaymentParameters, Route, RouteParameters, Router};
51 use crate::routing::scoring::{ProbabilisticScorer, ProbabilisticScoringFeeParameters};
52 use crate::ln::msgs;
53 use crate::ln::onion_utils;
54 use crate::ln::onion_utils::HTLCFailReason;
55 use crate::ln::msgs::{ChannelMessageHandler, DecodeError, LightningError};
56 #[cfg(test)]
57 use crate::ln::outbound_payment;
58 use crate::ln::outbound_payment::{Bolt12PaymentError, OutboundPayments, PaymentAttempts, PendingOutboundPayment, SendAlongPathArgs, StaleExpiration};
59 use crate::ln::wire::Encode;
60 use crate::offers::invoice::{BlindedPayInfo, Bolt12Invoice, DEFAULT_RELATIVE_EXPIRY, DerivedSigningPubkey, InvoiceBuilder};
61 use crate::offers::invoice_error::InvoiceError;
62 use crate::offers::merkle::SignError;
63 use crate::offers::offer::{DerivedMetadata, Offer, OfferBuilder};
64 use crate::offers::parse::Bolt12SemanticError;
65 use crate::offers::refund::{Refund, RefundBuilder};
66 use crate::onion_message::{Destination, OffersMessage, OffersMessageHandler, PendingOnionMessage, new_pending_onion_message};
67 use crate::sign::{EntropySource, KeysManager, NodeSigner, Recipient, SignerProvider, WriteableEcdsaChannelSigner};
68 use crate::util::config::{UserConfig, ChannelConfig, ChannelConfigUpdate};
69 use crate::util::wakers::{Future, Notifier};
70 use crate::util::scid_utils::fake_scid;
71 use crate::util::string::UntrustedString;
72 use crate::util::ser::{BigSize, FixedLengthReader, Readable, ReadableArgs, MaybeReadable, Writeable, Writer, VecWriter};
73 use crate::util::logger::{Level, Logger};
74 use crate::util::errors::APIError;
75
76 use alloc::collections::{btree_map, BTreeMap};
77
78 use crate::io;
79 use crate::prelude::*;
80 use core::{cmp, mem};
81 use core::cell::RefCell;
82 use crate::io::Read;
83 use crate::sync::{Arc, Mutex, RwLock, RwLockReadGuard, FairRwLock, LockTestExt, LockHeldState};
84 use core::sync::atomic::{AtomicUsize, AtomicBool, Ordering};
85 use core::time::Duration;
86 use core::ops::Deref;
87
88 // Re-export this for use in the public API.
89 pub use crate::ln::outbound_payment::{PaymentSendFailure, ProbeSendFailure, Retry, RetryableSendFailure, RecipientOnionFields};
90 use crate::ln::script::ShutdownScript;
91
92 // We hold various information about HTLC relay in the HTLC objects in Channel itself:
93 //
94 // Upon receipt of an HTLC from a peer, we'll give it a PendingHTLCStatus indicating if it should
95 // forward the HTLC with information it will give back to us when it does so, or if it should Fail
96 // the HTLC with the relevant message for the Channel to handle giving to the remote peer.
97 //
98 // Once said HTLC is committed in the Channel, if the PendingHTLCStatus indicated Forward, the
99 // Channel will return the PendingHTLCInfo back to us, and we will create an HTLCForwardInfo
100 // with it to track where it came from (in case of onwards-forward error), waiting a random delay
101 // before we forward it.
102 //
103 // We will then use HTLCForwardInfo's PendingHTLCInfo to construct an outbound HTLC, with a
104 // relevant HTLCSource::PreviousHopData filled in to indicate where it came from (which we can use
105 // to either fail-backwards or fulfill the HTLC backwards along the relevant path).
106 // Alternatively, we can fill an outbound HTLC with a HTLCSource::OutboundRoute indicating this is
107 // our payment, which we can use to decode errors or inform the user that the payment was sent.
108
109 /// Routing info for an inbound HTLC onion.
110 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
111 pub enum PendingHTLCRouting {
112         /// A forwarded HTLC.
113         Forward {
114                 /// BOLT 4 onion packet.
115                 onion_packet: msgs::OnionPacket,
116                 /// The SCID from the onion that we should forward to. This could be a real SCID or a fake one
117                 /// generated using `get_fake_scid` from the scid_utils::fake_scid module.
118                 short_channel_id: u64, // This should be NonZero<u64> eventually when we bump MSRV
119         },
120         /// An HTLC paid to an invoice we generated.
121         Receive {
122                 /// Payment secret and total msat received.
123                 payment_data: msgs::FinalOnionHopData,
124                 /// See [`RecipientOnionFields::payment_metadata`] for more info.
125                 payment_metadata: Option<Vec<u8>>,
126                 /// Used to track when we should expire pending HTLCs that go unclaimed.
127                 incoming_cltv_expiry: u32,
128                 /// Optional shared secret for phantom node.
129                 phantom_shared_secret: Option<[u8; 32]>,
130                 /// See [`RecipientOnionFields::custom_tlvs`] for more info.
131                 custom_tlvs: Vec<(u64, Vec<u8>)>,
132         },
133         /// Incoming keysend (sender provided the preimage in a TLV).
134         ReceiveKeysend {
135                 /// This was added in 0.0.116 and will break deserialization on downgrades.
136                 payment_data: Option<msgs::FinalOnionHopData>,
137                 /// Preimage for this onion payment.
138                 payment_preimage: PaymentPreimage,
139                 /// See [`RecipientOnionFields::payment_metadata`] for more info.
140                 payment_metadata: Option<Vec<u8>>,
141                 /// CLTV expiry of the incoming HTLC.
142                 incoming_cltv_expiry: u32, // Used to track when we should expire pending HTLCs that go unclaimed
143                 /// See [`RecipientOnionFields::custom_tlvs`] for more info.
144                 custom_tlvs: Vec<(u64, Vec<u8>)>,
145         },
146 }
147
148 /// Full details of an incoming HTLC, including routing info.
149 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
150 pub struct PendingHTLCInfo {
151         /// Further routing details based on whether the HTLC is being forwarded or received.
152         pub routing: PendingHTLCRouting,
153         /// Shared secret from the previous hop.
154         pub incoming_shared_secret: [u8; 32],
155         payment_hash: PaymentHash,
156         /// Amount received
157         pub incoming_amt_msat: Option<u64>, // Added in 0.0.113
158         /// Sender intended amount to forward or receive (actual amount received
159         /// may overshoot this in either case)
160         pub outgoing_amt_msat: u64,
161         /// Outgoing CLTV height.
162         pub outgoing_cltv_value: u32,
163         /// The fee being skimmed off the top of this HTLC. If this is a forward, it'll be the fee we are
164         /// skimming. If we're receiving this HTLC, it's the fee that our counterparty skimmed.
165         pub skimmed_fee_msat: Option<u64>,
166 }
167
168 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
169 pub(super) enum HTLCFailureMsg {
170         Relay(msgs::UpdateFailHTLC),
171         Malformed(msgs::UpdateFailMalformedHTLC),
172 }
173
174 /// Stores whether we can't forward an HTLC or relevant forwarding info
175 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
176 pub(super) enum PendingHTLCStatus {
177         Forward(PendingHTLCInfo),
178         Fail(HTLCFailureMsg),
179 }
180
181 pub(super) struct PendingAddHTLCInfo {
182         pub(super) forward_info: PendingHTLCInfo,
183
184         // These fields are produced in `forward_htlcs()` and consumed in
185         // `process_pending_htlc_forwards()` for constructing the
186         // `HTLCSource::PreviousHopData` for failed and forwarded
187         // HTLCs.
188         //
189         // Note that this may be an outbound SCID alias for the associated channel.
190         prev_short_channel_id: u64,
191         prev_htlc_id: u64,
192         prev_funding_outpoint: OutPoint,
193         prev_user_channel_id: u128,
194 }
195
196 pub(super) enum HTLCForwardInfo {
197         AddHTLC(PendingAddHTLCInfo),
198         FailHTLC {
199                 htlc_id: u64,
200                 err_packet: msgs::OnionErrorPacket,
201         },
202 }
203
204 /// Tracks the inbound corresponding to an outbound HTLC
205 #[derive(Clone, Debug, Hash, PartialEq, Eq)]
206 pub(crate) struct HTLCPreviousHopData {
207         // Note that this may be an outbound SCID alias for the associated channel.
208         short_channel_id: u64,
209         user_channel_id: Option<u128>,
210         htlc_id: u64,
211         incoming_packet_shared_secret: [u8; 32],
212         phantom_shared_secret: Option<[u8; 32]>,
213
214         // This field is consumed by `claim_funds_from_hop()` when updating a force-closed backwards
215         // channel with a preimage provided by the forward channel.
216         outpoint: OutPoint,
217 }
218
219 enum OnionPayload {
220         /// Indicates this incoming onion payload is for the purpose of paying an invoice.
221         Invoice {
222                 /// This is only here for backwards-compatibility in serialization, in the future it can be
223                 /// removed, breaking clients running 0.0.106 and earlier.
224                 _legacy_hop_data: Option<msgs::FinalOnionHopData>,
225         },
226         /// Contains the payer-provided preimage.
227         Spontaneous(PaymentPreimage),
228 }
229
230 /// HTLCs that are to us and can be failed/claimed by the user
231 struct ClaimableHTLC {
232         prev_hop: HTLCPreviousHopData,
233         cltv_expiry: u32,
234         /// The amount (in msats) of this MPP part
235         value: u64,
236         /// The amount (in msats) that the sender intended to be sent in this MPP
237         /// part (used for validating total MPP amount)
238         sender_intended_value: u64,
239         onion_payload: OnionPayload,
240         timer_ticks: u8,
241         /// The total value received for a payment (sum of all MPP parts if the payment is a MPP).
242         /// Gets set to the amount reported when pushing [`Event::PaymentClaimable`].
243         total_value_received: Option<u64>,
244         /// The sender intended sum total of all MPP parts specified in the onion
245         total_msat: u64,
246         /// The extra fee our counterparty skimmed off the top of this HTLC.
247         counterparty_skimmed_fee_msat: Option<u64>,
248 }
249
250 impl From<&ClaimableHTLC> for events::ClaimedHTLC {
251         fn from(val: &ClaimableHTLC) -> Self {
252                 events::ClaimedHTLC {
253                         channel_id: val.prev_hop.outpoint.to_channel_id(),
254                         user_channel_id: val.prev_hop.user_channel_id.unwrap_or(0),
255                         cltv_expiry: val.cltv_expiry,
256                         value_msat: val.value,
257                         counterparty_skimmed_fee_msat: val.counterparty_skimmed_fee_msat.unwrap_or(0),
258                 }
259         }
260 }
261
262 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
263 /// a payment and ensure idempotency in LDK.
264 ///
265 /// This is not exported to bindings users as we just use [u8; 32] directly
266 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
267 pub struct PaymentId(pub [u8; Self::LENGTH]);
268
269 impl PaymentId {
270         /// Number of bytes in the id.
271         pub const LENGTH: usize = 32;
272 }
273
274 impl Writeable for PaymentId {
275         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
276                 self.0.write(w)
277         }
278 }
279
280 impl Readable for PaymentId {
281         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
282                 let buf: [u8; 32] = Readable::read(r)?;
283                 Ok(PaymentId(buf))
284         }
285 }
286
287 impl core::fmt::Display for PaymentId {
288         fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
289                 crate::util::logger::DebugBytes(&self.0).fmt(f)
290         }
291 }
292
293 /// An identifier used to uniquely identify an intercepted HTLC to LDK.
294 ///
295 /// This is not exported to bindings users as we just use [u8; 32] directly
296 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
297 pub struct InterceptId(pub [u8; 32]);
298
299 impl Writeable for InterceptId {
300         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
301                 self.0.write(w)
302         }
303 }
304
305 impl Readable for InterceptId {
306         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
307                 let buf: [u8; 32] = Readable::read(r)?;
308                 Ok(InterceptId(buf))
309         }
310 }
311
312 #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
313 /// Uniquely describes an HTLC by its source. Just the guaranteed-unique subset of [`HTLCSource`].
314 pub(crate) enum SentHTLCId {
315         PreviousHopData { short_channel_id: u64, htlc_id: u64 },
316         OutboundRoute { session_priv: SecretKey },
317 }
318 impl SentHTLCId {
319         pub(crate) fn from_source(source: &HTLCSource) -> Self {
320                 match source {
321                         HTLCSource::PreviousHopData(hop_data) => Self::PreviousHopData {
322                                 short_channel_id: hop_data.short_channel_id,
323                                 htlc_id: hop_data.htlc_id,
324                         },
325                         HTLCSource::OutboundRoute { session_priv, .. } =>
326                                 Self::OutboundRoute { session_priv: *session_priv },
327                 }
328         }
329 }
330 impl_writeable_tlv_based_enum!(SentHTLCId,
331         (0, PreviousHopData) => {
332                 (0, short_channel_id, required),
333                 (2, htlc_id, required),
334         },
335         (2, OutboundRoute) => {
336                 (0, session_priv, required),
337         };
338 );
339
340
341 /// Tracks the inbound corresponding to an outbound HTLC
342 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
343 #[derive(Clone, Debug, PartialEq, Eq)]
344 pub(crate) enum HTLCSource {
345         PreviousHopData(HTLCPreviousHopData),
346         OutboundRoute {
347                 path: Path,
348                 session_priv: SecretKey,
349                 /// Technically we can recalculate this from the route, but we cache it here to avoid
350                 /// doing a double-pass on route when we get a failure back
351                 first_hop_htlc_msat: u64,
352                 payment_id: PaymentId,
353         },
354 }
355 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
356 impl core::hash::Hash for HTLCSource {
357         fn hash<H: core::hash::Hasher>(&self, hasher: &mut H) {
358                 match self {
359                         HTLCSource::PreviousHopData(prev_hop_data) => {
360                                 0u8.hash(hasher);
361                                 prev_hop_data.hash(hasher);
362                         },
363                         HTLCSource::OutboundRoute { path, session_priv, payment_id, first_hop_htlc_msat } => {
364                                 1u8.hash(hasher);
365                                 path.hash(hasher);
366                                 session_priv[..].hash(hasher);
367                                 payment_id.hash(hasher);
368                                 first_hop_htlc_msat.hash(hasher);
369                         },
370                 }
371         }
372 }
373 impl HTLCSource {
374         #[cfg(all(feature = "_test_vectors", not(feature = "grind_signatures")))]
375         #[cfg(test)]
376         pub fn dummy() -> Self {
377                 HTLCSource::OutboundRoute {
378                         path: Path { hops: Vec::new(), blinded_tail: None },
379                         session_priv: SecretKey::from_slice(&[1; 32]).unwrap(),
380                         first_hop_htlc_msat: 0,
381                         payment_id: PaymentId([2; 32]),
382                 }
383         }
384
385         #[cfg(debug_assertions)]
386         /// Checks whether this HTLCSource could possibly match the given HTLC output in a commitment
387         /// transaction. Useful to ensure different datastructures match up.
388         pub(crate) fn possibly_matches_output(&self, htlc: &super::chan_utils::HTLCOutputInCommitment) -> bool {
389                 if let HTLCSource::OutboundRoute { first_hop_htlc_msat, .. } = self {
390                         *first_hop_htlc_msat == htlc.amount_msat
391                 } else {
392                         // There's nothing we can check for forwarded HTLCs
393                         true
394                 }
395         }
396 }
397
398 /// Invalid inbound onion payment.
399 pub struct InboundOnionErr {
400         /// BOLT 4 error code.
401         pub err_code: u16,
402         /// Data attached to this error.
403         pub err_data: Vec<u8>,
404         /// Error message text.
405         pub msg: &'static str,
406 }
407
408 /// This enum is used to specify which error data to send to peers when failing back an HTLC
409 /// using [`ChannelManager::fail_htlc_backwards_with_reason`].
410 ///
411 /// For more info on failure codes, see <https://github.com/lightning/bolts/blob/master/04-onion-routing.md#failure-messages>.
412 #[derive(Clone, Copy)]
413 pub enum FailureCode {
414         /// We had a temporary error processing the payment. Useful if no other error codes fit
415         /// and you want to indicate that the payer may want to retry.
416         TemporaryNodeFailure,
417         /// We have a required feature which was not in this onion. For example, you may require
418         /// some additional metadata that was not provided with this payment.
419         RequiredNodeFeatureMissing,
420         /// You may wish to use this when a `payment_preimage` is unknown, or the CLTV expiry of
421         /// the HTLC is too close to the current block height for safe handling.
422         /// Using this failure code in [`ChannelManager::fail_htlc_backwards_with_reason`] is
423         /// equivalent to calling [`ChannelManager::fail_htlc_backwards`].
424         IncorrectOrUnknownPaymentDetails,
425         /// We failed to process the payload after the onion was decrypted. You may wish to
426         /// use this when receiving custom HTLC TLVs with even type numbers that you don't recognize.
427         ///
428         /// If available, the tuple data may include the type number and byte offset in the
429         /// decrypted byte stream where the failure occurred.
430         InvalidOnionPayload(Option<(u64, u16)>),
431 }
432
433 impl Into<u16> for FailureCode {
434     fn into(self) -> u16 {
435                 match self {
436                         FailureCode::TemporaryNodeFailure => 0x2000 | 2,
437                         FailureCode::RequiredNodeFeatureMissing => 0x4000 | 0x2000 | 3,
438                         FailureCode::IncorrectOrUnknownPaymentDetails => 0x4000 | 15,
439                         FailureCode::InvalidOnionPayload(_) => 0x4000 | 22,
440                 }
441         }
442 }
443
444 /// Error type returned across the peer_state mutex boundary. When an Err is generated for a
445 /// Channel, we generally end up with a ChannelError::Close for which we have to close the channel
446 /// immediately (ie with no further calls on it made). Thus, this step happens inside a
447 /// peer_state lock. We then return the set of things that need to be done outside the lock in
448 /// this struct and call handle_error!() on it.
449
450 struct MsgHandleErrInternal {
451         err: msgs::LightningError,
452         chan_id: Option<(ChannelId, u128)>, // If Some a channel of ours has been closed
453         shutdown_finish: Option<(ShutdownResult, Option<msgs::ChannelUpdate>)>,
454         channel_capacity: Option<u64>,
455 }
456 impl MsgHandleErrInternal {
457         #[inline]
458         fn send_err_msg_no_close(err: String, channel_id: ChannelId) -> Self {
459                 Self {
460                         err: LightningError {
461                                 err: err.clone(),
462                                 action: msgs::ErrorAction::SendErrorMessage {
463                                         msg: msgs::ErrorMessage {
464                                                 channel_id,
465                                                 data: err
466                                         },
467                                 },
468                         },
469                         chan_id: None,
470                         shutdown_finish: None,
471                         channel_capacity: None,
472                 }
473         }
474         #[inline]
475         fn from_no_close(err: msgs::LightningError) -> Self {
476                 Self { err, chan_id: None, shutdown_finish: None, channel_capacity: None }
477         }
478         #[inline]
479         fn from_finish_shutdown(err: String, channel_id: ChannelId, user_channel_id: u128, shutdown_res: ShutdownResult, channel_update: Option<msgs::ChannelUpdate>, channel_capacity: u64) -> Self {
480                 let err_msg = msgs::ErrorMessage { channel_id, data: err.clone() };
481                 let action = if shutdown_res.monitor_update.is_some() {
482                         // We have a closing `ChannelMonitorUpdate`, which means the channel was funded and we
483                         // should disconnect our peer such that we force them to broadcast their latest
484                         // commitment upon reconnecting.
485                         msgs::ErrorAction::DisconnectPeer { msg: Some(err_msg) }
486                 } else {
487                         msgs::ErrorAction::SendErrorMessage { msg: err_msg }
488                 };
489                 Self {
490                         err: LightningError { err, action },
491                         chan_id: Some((channel_id, user_channel_id)),
492                         shutdown_finish: Some((shutdown_res, channel_update)),
493                         channel_capacity: Some(channel_capacity)
494                 }
495         }
496         #[inline]
497         fn from_chan_no_close(err: ChannelError, channel_id: ChannelId) -> Self {
498                 Self {
499                         err: match err {
500                                 ChannelError::Warn(msg) =>  LightningError {
501                                         err: msg.clone(),
502                                         action: msgs::ErrorAction::SendWarningMessage {
503                                                 msg: msgs::WarningMessage {
504                                                         channel_id,
505                                                         data: msg
506                                                 },
507                                                 log_level: Level::Warn,
508                                         },
509                                 },
510                                 ChannelError::Ignore(msg) => LightningError {
511                                         err: msg,
512                                         action: msgs::ErrorAction::IgnoreError,
513                                 },
514                                 ChannelError::Close(msg) => LightningError {
515                                         err: msg.clone(),
516                                         action: msgs::ErrorAction::SendErrorMessage {
517                                                 msg: msgs::ErrorMessage {
518                                                         channel_id,
519                                                         data: msg
520                                                 },
521                                         },
522                                 },
523                         },
524                         chan_id: None,
525                         shutdown_finish: None,
526                         channel_capacity: None,
527                 }
528         }
529
530         fn closes_channel(&self) -> bool {
531                 self.chan_id.is_some()
532         }
533 }
534
535 /// We hold back HTLCs we intend to relay for a random interval greater than this (see
536 /// Event::PendingHTLCsForwardable for the API guidelines indicating how long should be waited).
537 /// This provides some limited amount of privacy. Ideally this would range from somewhere like one
538 /// second to 30 seconds, but people expect lightning to be, you know, kinda fast, sadly.
539 pub(super) const MIN_HTLC_RELAY_HOLDING_CELL_MILLIS: u64 = 100;
540
541 /// For events which result in both a RevokeAndACK and a CommitmentUpdate, by default they should
542 /// be sent in the order they appear in the return value, however sometimes the order needs to be
543 /// variable at runtime (eg Channel::channel_reestablish needs to re-send messages in the order
544 /// they were originally sent). In those cases, this enum is also returned.
545 #[derive(Clone, PartialEq)]
546 pub(super) enum RAACommitmentOrder {
547         /// Send the CommitmentUpdate messages first
548         CommitmentFirst,
549         /// Send the RevokeAndACK message first
550         RevokeAndACKFirst,
551 }
552
553 /// Information about a payment which is currently being claimed.
554 struct ClaimingPayment {
555         amount_msat: u64,
556         payment_purpose: events::PaymentPurpose,
557         receiver_node_id: PublicKey,
558         htlcs: Vec<events::ClaimedHTLC>,
559         sender_intended_value: Option<u64>,
560 }
561 impl_writeable_tlv_based!(ClaimingPayment, {
562         (0, amount_msat, required),
563         (2, payment_purpose, required),
564         (4, receiver_node_id, required),
565         (5, htlcs, optional_vec),
566         (7, sender_intended_value, option),
567 });
568
569 struct ClaimablePayment {
570         purpose: events::PaymentPurpose,
571         onion_fields: Option<RecipientOnionFields>,
572         htlcs: Vec<ClaimableHTLC>,
573 }
574
575 /// Information about claimable or being-claimed payments
576 struct ClaimablePayments {
577         /// Map from payment hash to the payment data and any HTLCs which are to us and can be
578         /// failed/claimed by the user.
579         ///
580         /// Note that, no consistency guarantees are made about the channels given here actually
581         /// existing anymore by the time you go to read them!
582         ///
583         /// When adding to the map, [`Self::pending_claiming_payments`] must also be checked to ensure
584         /// we don't get a duplicate payment.
585         claimable_payments: HashMap<PaymentHash, ClaimablePayment>,
586
587         /// Map from payment hash to the payment data for HTLCs which we have begun claiming, but which
588         /// are waiting on a [`ChannelMonitorUpdate`] to complete in order to be surfaced to the user
589         /// as an [`events::Event::PaymentClaimed`].
590         pending_claiming_payments: HashMap<PaymentHash, ClaimingPayment>,
591 }
592
593 /// Events which we process internally but cannot be processed immediately at the generation site
594 /// usually because we're running pre-full-init. They are handled immediately once we detect we are
595 /// running normally, and specifically must be processed before any other non-background
596 /// [`ChannelMonitorUpdate`]s are applied.
597 #[derive(Debug)]
598 enum BackgroundEvent {
599         /// Handle a ChannelMonitorUpdate which closes the channel or for an already-closed channel.
600         /// This is only separated from [`Self::MonitorUpdateRegeneratedOnStartup`] as the
601         /// maybe-non-closing variant needs a public key to handle channel resumption, whereas if the
602         /// channel has been force-closed we do not need the counterparty node_id.
603         ///
604         /// Note that any such events are lost on shutdown, so in general they must be updates which
605         /// are regenerated on startup.
606         ClosedMonitorUpdateRegeneratedOnStartup((OutPoint, ChannelMonitorUpdate)),
607         /// Handle a ChannelMonitorUpdate which may or may not close the channel and may unblock the
608         /// channel to continue normal operation.
609         ///
610         /// In general this should be used rather than
611         /// [`Self::ClosedMonitorUpdateRegeneratedOnStartup`], however in cases where the
612         /// `counterparty_node_id` is not available as the channel has closed from a [`ChannelMonitor`]
613         /// error the other variant is acceptable.
614         ///
615         /// Note that any such events are lost on shutdown, so in general they must be updates which
616         /// are regenerated on startup.
617         MonitorUpdateRegeneratedOnStartup {
618                 counterparty_node_id: PublicKey,
619                 funding_txo: OutPoint,
620                 update: ChannelMonitorUpdate
621         },
622         /// Some [`ChannelMonitorUpdate`] (s) completed before we were serialized but we still have
623         /// them marked pending, thus we need to run any [`MonitorUpdateCompletionAction`] (s) pending
624         /// on a channel.
625         MonitorUpdatesComplete {
626                 counterparty_node_id: PublicKey,
627                 channel_id: ChannelId,
628         },
629 }
630
631 #[derive(Debug)]
632 pub(crate) enum MonitorUpdateCompletionAction {
633         /// Indicates that a payment ultimately destined for us was claimed and we should emit an
634         /// [`events::Event::PaymentClaimed`] to the user if we haven't yet generated such an event for
635         /// this payment. Note that this is only best-effort. On restart it's possible such a duplicate
636         /// event can be generated.
637         PaymentClaimed { payment_hash: PaymentHash },
638         /// Indicates an [`events::Event`] should be surfaced to the user and possibly resume the
639         /// operation of another channel.
640         ///
641         /// This is usually generated when we've forwarded an HTLC and want to block the outbound edge
642         /// from completing a monitor update which removes the payment preimage until the inbound edge
643         /// completes a monitor update containing the payment preimage. In that case, after the inbound
644         /// edge completes, we will surface an [`Event::PaymentForwarded`] as well as unblock the
645         /// outbound edge.
646         EmitEventAndFreeOtherChannel {
647                 event: events::Event,
648                 downstream_counterparty_and_funding_outpoint: Option<(PublicKey, OutPoint, RAAMonitorUpdateBlockingAction)>,
649         },
650         /// Indicates we should immediately resume the operation of another channel, unless there is
651         /// some other reason why the channel is blocked. In practice this simply means immediately
652         /// removing the [`RAAMonitorUpdateBlockingAction`] provided from the blocking set.
653         ///
654         /// This is usually generated when we've forwarded an HTLC and want to block the outbound edge
655         /// from completing a monitor update which removes the payment preimage until the inbound edge
656         /// completes a monitor update containing the payment preimage. However, we use this variant
657         /// instead of [`Self::EmitEventAndFreeOtherChannel`] when we discover that the claim was in
658         /// fact duplicative and we simply want to resume the outbound edge channel immediately.
659         ///
660         /// This variant should thus never be written to disk, as it is processed inline rather than
661         /// stored for later processing.
662         FreeOtherChannelImmediately {
663                 downstream_counterparty_node_id: PublicKey,
664                 downstream_funding_outpoint: OutPoint,
665                 blocking_action: RAAMonitorUpdateBlockingAction,
666         },
667 }
668
669 impl_writeable_tlv_based_enum_upgradable!(MonitorUpdateCompletionAction,
670         (0, PaymentClaimed) => { (0, payment_hash, required) },
671         // Note that FreeOtherChannelImmediately should never be written - we were supposed to free
672         // *immediately*. However, for simplicity we implement read/write here.
673         (1, FreeOtherChannelImmediately) => {
674                 (0, downstream_counterparty_node_id, required),
675                 (2, downstream_funding_outpoint, required),
676                 (4, blocking_action, required),
677         },
678         (2, EmitEventAndFreeOtherChannel) => {
679                 (0, event, upgradable_required),
680                 // LDK prior to 0.0.116 did not have this field as the monitor update application order was
681                 // required by clients. If we downgrade to something prior to 0.0.116 this may result in
682                 // monitor updates which aren't properly blocked or resumed, however that's fine - we don't
683                 // support async monitor updates even in LDK 0.0.116 and once we do we'll require no
684                 // downgrades to prior versions.
685                 (1, downstream_counterparty_and_funding_outpoint, option),
686         },
687 );
688
689 #[derive(Clone, Debug, PartialEq, Eq)]
690 pub(crate) enum EventCompletionAction {
691         ReleaseRAAChannelMonitorUpdate {
692                 counterparty_node_id: PublicKey,
693                 channel_funding_outpoint: OutPoint,
694         },
695 }
696 impl_writeable_tlv_based_enum!(EventCompletionAction,
697         (0, ReleaseRAAChannelMonitorUpdate) => {
698                 (0, channel_funding_outpoint, required),
699                 (2, counterparty_node_id, required),
700         };
701 );
702
703 #[derive(Clone, PartialEq, Eq, Debug)]
704 /// If something is blocked on the completion of an RAA-generated [`ChannelMonitorUpdate`] we track
705 /// the blocked action here. See enum variants for more info.
706 pub(crate) enum RAAMonitorUpdateBlockingAction {
707         /// A forwarded payment was claimed. We block the downstream channel completing its monitor
708         /// update which removes the HTLC preimage until the upstream channel has gotten the preimage
709         /// durably to disk.
710         ForwardedPaymentInboundClaim {
711                 /// The upstream channel ID (i.e. the inbound edge).
712                 channel_id: ChannelId,
713                 /// The HTLC ID on the inbound edge.
714                 htlc_id: u64,
715         },
716 }
717
718 impl RAAMonitorUpdateBlockingAction {
719         fn from_prev_hop_data(prev_hop: &HTLCPreviousHopData) -> Self {
720                 Self::ForwardedPaymentInboundClaim {
721                         channel_id: prev_hop.outpoint.to_channel_id(),
722                         htlc_id: prev_hop.htlc_id,
723                 }
724         }
725 }
726
727 impl_writeable_tlv_based_enum!(RAAMonitorUpdateBlockingAction,
728         (0, ForwardedPaymentInboundClaim) => { (0, channel_id, required), (2, htlc_id, required) }
729 ;);
730
731
732 /// State we hold per-peer.
733 pub(super) struct PeerState<SP: Deref> where SP::Target: SignerProvider {
734         /// `channel_id` -> `ChannelPhase`
735         ///
736         /// Holds all channels within corresponding `ChannelPhase`s where the peer is the counterparty.
737         pub(super) channel_by_id: HashMap<ChannelId, ChannelPhase<SP>>,
738         /// `temporary_channel_id` -> `InboundChannelRequest`.
739         ///
740         /// When manual channel acceptance is enabled, this holds all unaccepted inbound channels where
741         /// the peer is the counterparty. If the channel is accepted, then the entry in this table is
742         /// removed, and an InboundV1Channel is created and placed in the `inbound_v1_channel_by_id` table. If
743         /// the channel is rejected, then the entry is simply removed.
744         pub(super) inbound_channel_request_by_id: HashMap<ChannelId, InboundChannelRequest>,
745         /// The latest `InitFeatures` we heard from the peer.
746         latest_features: InitFeatures,
747         /// Messages to send to the peer - pushed to in the same lock that they are generated in (except
748         /// for broadcast messages, where ordering isn't as strict).
749         pub(super) pending_msg_events: Vec<MessageSendEvent>,
750         /// Map from Channel IDs to pending [`ChannelMonitorUpdate`]s which have been passed to the
751         /// user but which have not yet completed.
752         ///
753         /// Note that the channel may no longer exist. For example if the channel was closed but we
754         /// later needed to claim an HTLC which is pending on-chain, we may generate a monitor update
755         /// for a missing channel.
756         in_flight_monitor_updates: BTreeMap<OutPoint, Vec<ChannelMonitorUpdate>>,
757         /// Map from a specific channel to some action(s) that should be taken when all pending
758         /// [`ChannelMonitorUpdate`]s for the channel complete updating.
759         ///
760         /// Note that because we generally only have one entry here a HashMap is pretty overkill. A
761         /// BTreeMap currently stores more than ten elements per leaf node, so even up to a few
762         /// channels with a peer this will just be one allocation and will amount to a linear list of
763         /// channels to walk, avoiding the whole hashing rigmarole.
764         ///
765         /// Note that the channel may no longer exist. For example, if a channel was closed but we
766         /// later needed to claim an HTLC which is pending on-chain, we may generate a monitor update
767         /// for a missing channel. While a malicious peer could construct a second channel with the
768         /// same `temporary_channel_id` (or final `channel_id` in the case of 0conf channels or prior
769         /// to funding appearing on-chain), the downstream `ChannelMonitor` set is required to ensure
770         /// duplicates do not occur, so such channels should fail without a monitor update completing.
771         monitor_update_blocked_actions: BTreeMap<ChannelId, Vec<MonitorUpdateCompletionAction>>,
772         /// If another channel's [`ChannelMonitorUpdate`] needs to complete before a channel we have
773         /// with this peer can complete an RAA [`ChannelMonitorUpdate`] (e.g. because the RAA update
774         /// will remove a preimage that needs to be durably in an upstream channel first), we put an
775         /// entry here to note that the channel with the key's ID is blocked on a set of actions.
776         actions_blocking_raa_monitor_updates: BTreeMap<ChannelId, Vec<RAAMonitorUpdateBlockingAction>>,
777         /// The peer is currently connected (i.e. we've seen a
778         /// [`ChannelMessageHandler::peer_connected`] and no corresponding
779         /// [`ChannelMessageHandler::peer_disconnected`].
780         is_connected: bool,
781 }
782
783 impl <SP: Deref> PeerState<SP> where SP::Target: SignerProvider {
784         /// Indicates that a peer meets the criteria where we're ok to remove it from our storage.
785         /// If true is passed for `require_disconnected`, the function will return false if we haven't
786         /// disconnected from the node already, ie. `PeerState::is_connected` is set to `true`.
787         fn ok_to_remove(&self, require_disconnected: bool) -> bool {
788                 if require_disconnected && self.is_connected {
789                         return false
790                 }
791                 self.channel_by_id.iter().filter(|(_, phase)| matches!(phase, ChannelPhase::Funded(_))).count() == 0
792                         && self.monitor_update_blocked_actions.is_empty()
793                         && self.in_flight_monitor_updates.is_empty()
794         }
795
796         // Returns a count of all channels we have with this peer, including unfunded channels.
797         fn total_channel_count(&self) -> usize {
798                 self.channel_by_id.len() + self.inbound_channel_request_by_id.len()
799         }
800
801         // Returns a bool indicating if the given `channel_id` matches a channel we have with this peer.
802         fn has_channel(&self, channel_id: &ChannelId) -> bool {
803                 self.channel_by_id.contains_key(channel_id) ||
804                         self.inbound_channel_request_by_id.contains_key(channel_id)
805         }
806 }
807
808 /// A not-yet-accepted inbound (from counterparty) channel. Once
809 /// accepted, the parameters will be used to construct a channel.
810 pub(super) struct InboundChannelRequest {
811         /// The original OpenChannel message.
812         pub open_channel_msg: msgs::OpenChannel,
813         /// The number of ticks remaining before the request expires.
814         pub ticks_remaining: i32,
815 }
816
817 /// The number of ticks that may elapse while we're waiting for an unaccepted inbound channel to be
818 /// accepted. An unaccepted channel that exceeds this limit will be abandoned.
819 const UNACCEPTED_INBOUND_CHANNEL_AGE_LIMIT_TICKS: i32 = 2;
820
821 /// Stores a PaymentSecret and any other data we may need to validate an inbound payment is
822 /// actually ours and not some duplicate HTLC sent to us by a node along the route.
823 ///
824 /// For users who don't want to bother doing their own payment preimage storage, we also store that
825 /// here.
826 ///
827 /// Note that this struct will be removed entirely soon, in favor of storing no inbound payment data
828 /// and instead encoding it in the payment secret.
829 struct PendingInboundPayment {
830         /// The payment secret that the sender must use for us to accept this payment
831         payment_secret: PaymentSecret,
832         /// Time at which this HTLC expires - blocks with a header time above this value will result in
833         /// this payment being removed.
834         expiry_time: u64,
835         /// Arbitrary identifier the user specifies (or not)
836         user_payment_id: u64,
837         // Other required attributes of the payment, optionally enforced:
838         payment_preimage: Option<PaymentPreimage>,
839         min_value_msat: Option<u64>,
840 }
841
842 /// [`SimpleArcChannelManager`] is useful when you need a [`ChannelManager`] with a static lifetime, e.g.
843 /// when you're using `lightning-net-tokio` (since `tokio::spawn` requires parameters with static
844 /// lifetimes). Other times you can afford a reference, which is more efficient, in which case
845 /// [`SimpleRefChannelManager`] is the more appropriate type. Defining these type aliases prevents
846 /// issues such as overly long function definitions. Note that the `ChannelManager` can take any type
847 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
848 /// or, respectively, [`Router`] for its router, but this type alias chooses the concrete types
849 /// of [`KeysManager`] and [`DefaultRouter`].
850 ///
851 /// This is not exported to bindings users as type aliases aren't supported in most languages.
852 #[cfg(not(c_bindings))]
853 pub type SimpleArcChannelManager<M, T, F, L> = ChannelManager<
854         Arc<M>,
855         Arc<T>,
856         Arc<KeysManager>,
857         Arc<KeysManager>,
858         Arc<KeysManager>,
859         Arc<F>,
860         Arc<DefaultRouter<
861                 Arc<NetworkGraph<Arc<L>>>,
862                 Arc<L>,
863                 Arc<RwLock<ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>>>,
864                 ProbabilisticScoringFeeParameters,
865                 ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>,
866         >>,
867         Arc<L>
868 >;
869
870 /// [`SimpleRefChannelManager`] is a type alias for a ChannelManager reference, and is the reference
871 /// counterpart to the [`SimpleArcChannelManager`] type alias. Use this type by default when you don't
872 /// need a ChannelManager with a static lifetime. You'll need a static lifetime in cases such as
873 /// usage of lightning-net-tokio (since `tokio::spawn` requires parameters with static lifetimes).
874 /// But if this is not necessary, using a reference is more efficient. Defining these type aliases
875 /// issues such as overly long function definitions. Note that the ChannelManager can take any type
876 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
877 /// or, respectively, [`Router`]  for its router, but this type alias chooses the concrete types
878 /// of [`KeysManager`] and [`DefaultRouter`].
879 ///
880 /// This is not exported to bindings users as type aliases aren't supported in most languages.
881 #[cfg(not(c_bindings))]
882 pub type SimpleRefChannelManager<'a, 'b, 'c, 'd, 'e, 'f, 'g, 'h, M, T, F, L> =
883         ChannelManager<
884                 &'a M,
885                 &'b T,
886                 &'c KeysManager,
887                 &'c KeysManager,
888                 &'c KeysManager,
889                 &'d F,
890                 &'e DefaultRouter<
891                         &'f NetworkGraph<&'g L>,
892                         &'g L,
893                         &'h RwLock<ProbabilisticScorer<&'f NetworkGraph<&'g L>, &'g L>>,
894                         ProbabilisticScoringFeeParameters,
895                         ProbabilisticScorer<&'f NetworkGraph<&'g L>, &'g L>
896                 >,
897                 &'g L
898         >;
899
900 /// A trivial trait which describes any [`ChannelManager`].
901 ///
902 /// This is not exported to bindings users as general cover traits aren't useful in other
903 /// languages.
904 pub trait AChannelManager {
905         /// A type implementing [`chain::Watch`].
906         type Watch: chain::Watch<Self::Signer> + ?Sized;
907         /// A type that may be dereferenced to [`Self::Watch`].
908         type M: Deref<Target = Self::Watch>;
909         /// A type implementing [`BroadcasterInterface`].
910         type Broadcaster: BroadcasterInterface + ?Sized;
911         /// A type that may be dereferenced to [`Self::Broadcaster`].
912         type T: Deref<Target = Self::Broadcaster>;
913         /// A type implementing [`EntropySource`].
914         type EntropySource: EntropySource + ?Sized;
915         /// A type that may be dereferenced to [`Self::EntropySource`].
916         type ES: Deref<Target = Self::EntropySource>;
917         /// A type implementing [`NodeSigner`].
918         type NodeSigner: NodeSigner + ?Sized;
919         /// A type that may be dereferenced to [`Self::NodeSigner`].
920         type NS: Deref<Target = Self::NodeSigner>;
921         /// A type implementing [`WriteableEcdsaChannelSigner`].
922         type Signer: WriteableEcdsaChannelSigner + Sized;
923         /// A type implementing [`SignerProvider`] for [`Self::Signer`].
924         type SignerProvider: SignerProvider<Signer = Self::Signer> + ?Sized;
925         /// A type that may be dereferenced to [`Self::SignerProvider`].
926         type SP: Deref<Target = Self::SignerProvider>;
927         /// A type implementing [`FeeEstimator`].
928         type FeeEstimator: FeeEstimator + ?Sized;
929         /// A type that may be dereferenced to [`Self::FeeEstimator`].
930         type F: Deref<Target = Self::FeeEstimator>;
931         /// A type implementing [`Router`].
932         type Router: Router + ?Sized;
933         /// A type that may be dereferenced to [`Self::Router`].
934         type R: Deref<Target = Self::Router>;
935         /// A type implementing [`Logger`].
936         type Logger: Logger + ?Sized;
937         /// A type that may be dereferenced to [`Self::Logger`].
938         type L: Deref<Target = Self::Logger>;
939         /// Returns a reference to the actual [`ChannelManager`] object.
940         fn get_cm(&self) -> &ChannelManager<Self::M, Self::T, Self::ES, Self::NS, Self::SP, Self::F, Self::R, Self::L>;
941 }
942
943 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref> AChannelManager
944 for ChannelManager<M, T, ES, NS, SP, F, R, L>
945 where
946         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
947         T::Target: BroadcasterInterface,
948         ES::Target: EntropySource,
949         NS::Target: NodeSigner,
950         SP::Target: SignerProvider,
951         F::Target: FeeEstimator,
952         R::Target: Router,
953         L::Target: Logger,
954 {
955         type Watch = M::Target;
956         type M = M;
957         type Broadcaster = T::Target;
958         type T = T;
959         type EntropySource = ES::Target;
960         type ES = ES;
961         type NodeSigner = NS::Target;
962         type NS = NS;
963         type Signer = <SP::Target as SignerProvider>::Signer;
964         type SignerProvider = SP::Target;
965         type SP = SP;
966         type FeeEstimator = F::Target;
967         type F = F;
968         type Router = R::Target;
969         type R = R;
970         type Logger = L::Target;
971         type L = L;
972         fn get_cm(&self) -> &ChannelManager<M, T, ES, NS, SP, F, R, L> { self }
973 }
974
975 /// Manager which keeps track of a number of channels and sends messages to the appropriate
976 /// channel, also tracking HTLC preimages and forwarding onion packets appropriately.
977 ///
978 /// Implements [`ChannelMessageHandler`], handling the multi-channel parts and passing things through
979 /// to individual Channels.
980 ///
981 /// Implements [`Writeable`] to write out all channel state to disk. Implies [`peer_disconnected`] for
982 /// all peers during write/read (though does not modify this instance, only the instance being
983 /// serialized). This will result in any channels which have not yet exchanged [`funding_created`] (i.e.,
984 /// called [`funding_transaction_generated`] for outbound channels) being closed.
985 ///
986 /// Note that you can be a bit lazier about writing out `ChannelManager` than you can be with
987 /// [`ChannelMonitor`]. With [`ChannelMonitor`] you MUST durably write each
988 /// [`ChannelMonitorUpdate`] before returning from
989 /// [`chain::Watch::watch_channel`]/[`update_channel`] or before completing async writes. With
990 /// `ChannelManager`s, writing updates happens out-of-band (and will prevent any other
991 /// `ChannelManager` operations from occurring during the serialization process). If the
992 /// deserialized version is out-of-date compared to the [`ChannelMonitor`] passed by reference to
993 /// [`read`], those channels will be force-closed based on the `ChannelMonitor` state and no funds
994 /// will be lost (modulo on-chain transaction fees).
995 ///
996 /// Note that the deserializer is only implemented for `(`[`BlockHash`]`, `[`ChannelManager`]`)`, which
997 /// tells you the last block hash which was connected. You should get the best block tip before using the manager.
998 /// See [`chain::Listen`] and [`chain::Confirm`] for more details.
999 ///
1000 /// Note that `ChannelManager` is responsible for tracking liveness of its channels and generating
1001 /// [`ChannelUpdate`] messages informing peers that the channel is temporarily disabled. To avoid
1002 /// spam due to quick disconnection/reconnection, updates are not sent until the channel has been
1003 /// offline for a full minute. In order to track this, you must call
1004 /// [`timer_tick_occurred`] roughly once per minute, though it doesn't have to be perfect.
1005 ///
1006 /// To avoid trivial DoS issues, `ChannelManager` limits the number of inbound connections and
1007 /// inbound channels without confirmed funding transactions. This may result in nodes which we do
1008 /// not have a channel with being unable to connect to us or open new channels with us if we have
1009 /// many peers with unfunded channels.
1010 ///
1011 /// Because it is an indication of trust, inbound channels which we've accepted as 0conf are
1012 /// exempted from the count of unfunded channels. Similarly, outbound channels and connections are
1013 /// never limited. Please ensure you limit the count of such channels yourself.
1014 ///
1015 /// Rather than using a plain `ChannelManager`, it is preferable to use either a [`SimpleArcChannelManager`]
1016 /// a [`SimpleRefChannelManager`], for conciseness. See their documentation for more details, but
1017 /// essentially you should default to using a [`SimpleRefChannelManager`], and use a
1018 /// [`SimpleArcChannelManager`] when you require a `ChannelManager` with a static lifetime, such as when
1019 /// you're using lightning-net-tokio.
1020 ///
1021 /// [`peer_disconnected`]: msgs::ChannelMessageHandler::peer_disconnected
1022 /// [`funding_created`]: msgs::FundingCreated
1023 /// [`funding_transaction_generated`]: Self::funding_transaction_generated
1024 /// [`BlockHash`]: bitcoin::hash_types::BlockHash
1025 /// [`update_channel`]: chain::Watch::update_channel
1026 /// [`ChannelUpdate`]: msgs::ChannelUpdate
1027 /// [`timer_tick_occurred`]: Self::timer_tick_occurred
1028 /// [`read`]: ReadableArgs::read
1029 //
1030 // Lock order:
1031 // The tree structure below illustrates the lock order requirements for the different locks of the
1032 // `ChannelManager`. Locks can be held at the same time if they are on the same branch in the tree,
1033 // and should then be taken in the order of the lowest to the highest level in the tree.
1034 // Note that locks on different branches shall not be taken at the same time, as doing so will
1035 // create a new lock order for those specific locks in the order they were taken.
1036 //
1037 // Lock order tree:
1038 //
1039 // `pending_offers_messages`
1040 //
1041 // `total_consistency_lock`
1042 //  |
1043 //  |__`forward_htlcs`
1044 //  |   |
1045 //  |   |__`pending_intercepted_htlcs`
1046 //  |
1047 //  |__`per_peer_state`
1048 //      |
1049 //      |__`pending_inbound_payments`
1050 //          |
1051 //          |__`claimable_payments`
1052 //          |
1053 //          |__`pending_outbound_payments` // This field's struct contains a map of pending outbounds
1054 //              |
1055 //              |__`peer_state`
1056 //                  |
1057 //                  |__`id_to_peer`
1058 //                  |
1059 //                  |__`short_to_chan_info`
1060 //                  |
1061 //                  |__`outbound_scid_aliases`
1062 //                  |
1063 //                  |__`best_block`
1064 //                  |
1065 //                  |__`pending_events`
1066 //                      |
1067 //                      |__`pending_background_events`
1068 //
1069 pub struct ChannelManager<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
1070 where
1071         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
1072         T::Target: BroadcasterInterface,
1073         ES::Target: EntropySource,
1074         NS::Target: NodeSigner,
1075         SP::Target: SignerProvider,
1076         F::Target: FeeEstimator,
1077         R::Target: Router,
1078         L::Target: Logger,
1079 {
1080         default_configuration: UserConfig,
1081         chain_hash: ChainHash,
1082         fee_estimator: LowerBoundedFeeEstimator<F>,
1083         chain_monitor: M,
1084         tx_broadcaster: T,
1085         #[allow(unused)]
1086         router: R,
1087
1088         /// See `ChannelManager` struct-level documentation for lock order requirements.
1089         #[cfg(test)]
1090         pub(super) best_block: RwLock<BestBlock>,
1091         #[cfg(not(test))]
1092         best_block: RwLock<BestBlock>,
1093         secp_ctx: Secp256k1<secp256k1::All>,
1094
1095         /// Storage for PaymentSecrets and any requirements on future inbound payments before we will
1096         /// expose them to users via a PaymentClaimable event. HTLCs which do not meet the requirements
1097         /// here are failed when we process them as pending-forwardable-HTLCs, and entries are removed
1098         /// after we generate a PaymentClaimable upon receipt of all MPP parts or when they time out.
1099         ///
1100         /// See `ChannelManager` struct-level documentation for lock order requirements.
1101         pending_inbound_payments: Mutex<HashMap<PaymentHash, PendingInboundPayment>>,
1102
1103         /// The session_priv bytes and retry metadata of outbound payments which are pending resolution.
1104         /// The authoritative state of these HTLCs resides either within Channels or ChannelMonitors
1105         /// (if the channel has been force-closed), however we track them here to prevent duplicative
1106         /// PaymentSent/PaymentPathFailed events. Specifically, in the case of a duplicative
1107         /// update_fulfill_htlc message after a reconnect, we may "claim" a payment twice.
1108         /// Additionally, because ChannelMonitors are often not re-serialized after connecting block(s)
1109         /// which may generate a claim event, we may receive similar duplicate claim/fail MonitorEvents
1110         /// after reloading from disk while replaying blocks against ChannelMonitors.
1111         ///
1112         /// See `PendingOutboundPayment` documentation for more info.
1113         ///
1114         /// See `ChannelManager` struct-level documentation for lock order requirements.
1115         pending_outbound_payments: OutboundPayments,
1116
1117         /// SCID/SCID Alias -> forward infos. Key of 0 means payments received.
1118         ///
1119         /// Note that because we may have an SCID Alias as the key we can have two entries per channel,
1120         /// though in practice we probably won't be receiving HTLCs for a channel both via the alias
1121         /// and via the classic SCID.
1122         ///
1123         /// Note that no consistency guarantees are made about the existence of a channel with the
1124         /// `short_channel_id` here, nor the `short_channel_id` in the `PendingHTLCInfo`!
1125         ///
1126         /// See `ChannelManager` struct-level documentation for lock order requirements.
1127         #[cfg(test)]
1128         pub(super) forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
1129         #[cfg(not(test))]
1130         forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
1131         /// Storage for HTLCs that have been intercepted and bubbled up to the user. We hold them here
1132         /// until the user tells us what we should do with them.
1133         ///
1134         /// See `ChannelManager` struct-level documentation for lock order requirements.
1135         pending_intercepted_htlcs: Mutex<HashMap<InterceptId, PendingAddHTLCInfo>>,
1136
1137         /// The sets of payments which are claimable or currently being claimed. See
1138         /// [`ClaimablePayments`]' individual field docs for more info.
1139         ///
1140         /// See `ChannelManager` struct-level documentation for lock order requirements.
1141         claimable_payments: Mutex<ClaimablePayments>,
1142
1143         /// The set of outbound SCID aliases across all our channels, including unconfirmed channels
1144         /// and some closed channels which reached a usable state prior to being closed. This is used
1145         /// only to avoid duplicates, and is not persisted explicitly to disk, but rebuilt from the
1146         /// active channel list on load.
1147         ///
1148         /// See `ChannelManager` struct-level documentation for lock order requirements.
1149         outbound_scid_aliases: Mutex<HashSet<u64>>,
1150
1151         /// `channel_id` -> `counterparty_node_id`.
1152         ///
1153         /// Only `channel_id`s are allowed as keys in this map, and not `temporary_channel_id`s. As
1154         /// multiple channels with the same `temporary_channel_id` to different peers can exist,
1155         /// allowing `temporary_channel_id`s in this map would cause collisions for such channels.
1156         ///
1157         /// Note that this map should only be used for `MonitorEvent` handling, to be able to access
1158         /// the corresponding channel for the event, as we only have access to the `channel_id` during
1159         /// the handling of the events.
1160         ///
1161         /// Note that no consistency guarantees are made about the existence of a peer with the
1162         /// `counterparty_node_id` in our other maps.
1163         ///
1164         /// TODO:
1165         /// The `counterparty_node_id` isn't passed with `MonitorEvent`s currently. To pass it, we need
1166         /// to make `counterparty_node_id`'s a required field in `ChannelMonitor`s, which unfortunately
1167         /// would break backwards compatability.
1168         /// We should add `counterparty_node_id`s to `MonitorEvent`s, and eventually rely on it in the
1169         /// future. That would make this map redundant, as only the `ChannelManager::per_peer_state` is
1170         /// required to access the channel with the `counterparty_node_id`.
1171         ///
1172         /// See `ChannelManager` struct-level documentation for lock order requirements.
1173         id_to_peer: Mutex<HashMap<ChannelId, PublicKey>>,
1174
1175         /// SCIDs (and outbound SCID aliases) -> `counterparty_node_id`s and `channel_id`s.
1176         ///
1177         /// Outbound SCID aliases are added here once the channel is available for normal use, with
1178         /// SCIDs being added once the funding transaction is confirmed at the channel's required
1179         /// confirmation depth.
1180         ///
1181         /// Note that while this holds `counterparty_node_id`s and `channel_id`s, no consistency
1182         /// guarantees are made about the existence of a peer with the `counterparty_node_id` nor a
1183         /// channel with the `channel_id` in our other maps.
1184         ///
1185         /// See `ChannelManager` struct-level documentation for lock order requirements.
1186         #[cfg(test)]
1187         pub(super) short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, ChannelId)>>,
1188         #[cfg(not(test))]
1189         short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, ChannelId)>>,
1190
1191         our_network_pubkey: PublicKey,
1192
1193         inbound_payment_key: inbound_payment::ExpandedKey,
1194
1195         /// LDK puts the [fake scids] that it generates into namespaces, to identify the type of an
1196         /// incoming payment. To make it harder for a third-party to identify the type of a payment,
1197         /// we encrypt the namespace identifier using these bytes.
1198         ///
1199         /// [fake scids]: crate::util::scid_utils::fake_scid
1200         fake_scid_rand_bytes: [u8; 32],
1201
1202         /// When we send payment probes, we generate the [`PaymentHash`] based on this cookie secret
1203         /// and a random [`PaymentId`]. This allows us to discern probes from real payments, without
1204         /// keeping additional state.
1205         probing_cookie_secret: [u8; 32],
1206
1207         /// The highest block timestamp we've seen, which is usually a good guess at the current time.
1208         /// Assuming most miners are generating blocks with reasonable timestamps, this shouldn't be
1209         /// very far in the past, and can only ever be up to two hours in the future.
1210         highest_seen_timestamp: AtomicUsize,
1211
1212         /// The bulk of our storage. Currently the `per_peer_state` stores our channels on a per-peer
1213         /// basis, as well as the peer's latest features.
1214         ///
1215         /// If we are connected to a peer we always at least have an entry here, even if no channels
1216         /// are currently open with that peer.
1217         ///
1218         /// Because adding or removing an entry is rare, we usually take an outer read lock and then
1219         /// operate on the inner value freely. This opens up for parallel per-peer operation for
1220         /// channels.
1221         ///
1222         /// Note that the same thread must never acquire two inner `PeerState` locks at the same time.
1223         ///
1224         /// See `ChannelManager` struct-level documentation for lock order requirements.
1225         #[cfg(not(any(test, feature = "_test_utils")))]
1226         per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<SP>>>>,
1227         #[cfg(any(test, feature = "_test_utils"))]
1228         pub(super) per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<SP>>>>,
1229
1230         /// The set of events which we need to give to the user to handle. In some cases an event may
1231         /// require some further action after the user handles it (currently only blocking a monitor
1232         /// update from being handed to the user to ensure the included changes to the channel state
1233         /// are handled by the user before they're persisted durably to disk). In that case, the second
1234         /// element in the tuple is set to `Some` with further details of the action.
1235         ///
1236         /// Note that events MUST NOT be removed from pending_events after deserialization, as they
1237         /// could be in the middle of being processed without the direct mutex held.
1238         ///
1239         /// See `ChannelManager` struct-level documentation for lock order requirements.
1240         #[cfg(not(any(test, feature = "_test_utils")))]
1241         pending_events: Mutex<VecDeque<(events::Event, Option<EventCompletionAction>)>>,
1242         #[cfg(any(test, feature = "_test_utils"))]
1243         pub(crate) pending_events: Mutex<VecDeque<(events::Event, Option<EventCompletionAction>)>>,
1244
1245         /// A simple atomic flag to ensure only one task at a time can be processing events asynchronously.
1246         pending_events_processor: AtomicBool,
1247
1248         /// If we are running during init (either directly during the deserialization method or in
1249         /// block connection methods which run after deserialization but before normal operation) we
1250         /// cannot provide the user with [`ChannelMonitorUpdate`]s through the normal update flow -
1251         /// prior to normal operation the user may not have loaded the [`ChannelMonitor`]s into their
1252         /// [`ChainMonitor`] and thus attempting to update it will fail or panic.
1253         ///
1254         /// Thus, we place them here to be handled as soon as possible once we are running normally.
1255         ///
1256         /// See `ChannelManager` struct-level documentation for lock order requirements.
1257         ///
1258         /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
1259         pending_background_events: Mutex<Vec<BackgroundEvent>>,
1260         /// Used when we have to take a BIG lock to make sure everything is self-consistent.
1261         /// Essentially just when we're serializing ourselves out.
1262         /// Taken first everywhere where we are making changes before any other locks.
1263         /// When acquiring this lock in read mode, rather than acquiring it directly, call
1264         /// `PersistenceNotifierGuard::notify_on_drop(..)` and pass the lock to it, to ensure the
1265         /// Notifier the lock contains sends out a notification when the lock is released.
1266         total_consistency_lock: RwLock<()>,
1267         /// Tracks the progress of channels going through batch funding by whether funding_signed was
1268         /// received and the monitor has been persisted.
1269         ///
1270         /// This information does not need to be persisted as funding nodes can forget
1271         /// unfunded channels upon disconnection.
1272         funding_batch_states: Mutex<BTreeMap<Txid, Vec<(ChannelId, PublicKey, bool)>>>,
1273
1274         background_events_processed_since_startup: AtomicBool,
1275
1276         event_persist_notifier: Notifier,
1277         needs_persist_flag: AtomicBool,
1278
1279         pending_offers_messages: Mutex<Vec<PendingOnionMessage<OffersMessage>>>,
1280
1281         entropy_source: ES,
1282         node_signer: NS,
1283         signer_provider: SP,
1284
1285         logger: L,
1286 }
1287
1288 /// Chain-related parameters used to construct a new `ChannelManager`.
1289 ///
1290 /// Typically, the block-specific parameters are derived from the best block hash for the network,
1291 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
1292 /// are not needed when deserializing a previously constructed `ChannelManager`.
1293 #[derive(Clone, Copy, PartialEq)]
1294 pub struct ChainParameters {
1295         /// The network for determining the `chain_hash` in Lightning messages.
1296         pub network: Network,
1297
1298         /// The hash and height of the latest block successfully connected.
1299         ///
1300         /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
1301         pub best_block: BestBlock,
1302 }
1303
1304 #[derive(Copy, Clone, PartialEq)]
1305 #[must_use]
1306 enum NotifyOption {
1307         DoPersist,
1308         SkipPersistHandleEvents,
1309         SkipPersistNoEvents,
1310 }
1311
1312 /// Whenever we release the `ChannelManager`'s `total_consistency_lock`, from read mode, it is
1313 /// desirable to notify any listeners on `await_persistable_update_timeout`/
1314 /// `await_persistable_update` when new updates are available for persistence. Therefore, this
1315 /// struct is responsible for locking the total consistency lock and, upon going out of scope,
1316 /// sending the aforementioned notification (since the lock being released indicates that the
1317 /// updates are ready for persistence).
1318 ///
1319 /// We allow callers to either always notify by constructing with `notify_on_drop` or choose to
1320 /// notify or not based on whether relevant changes have been made, providing a closure to
1321 /// `optionally_notify` which returns a `NotifyOption`.
1322 struct PersistenceNotifierGuard<'a, F: FnMut() -> NotifyOption> {
1323         event_persist_notifier: &'a Notifier,
1324         needs_persist_flag: &'a AtomicBool,
1325         should_persist: F,
1326         // We hold onto this result so the lock doesn't get released immediately.
1327         _read_guard: RwLockReadGuard<'a, ()>,
1328 }
1329
1330 impl<'a> PersistenceNotifierGuard<'a, fn() -> NotifyOption> { // We don't care what the concrete F is here, it's unused
1331         /// Notifies any waiters and indicates that we need to persist, in addition to possibly having
1332         /// events to handle.
1333         ///
1334         /// This must always be called if the changes included a `ChannelMonitorUpdate`, as well as in
1335         /// other cases where losing the changes on restart may result in a force-close or otherwise
1336         /// isn't ideal.
1337         fn notify_on_drop<C: AChannelManager>(cm: &'a C) -> PersistenceNotifierGuard<'a, impl FnMut() -> NotifyOption> {
1338                 Self::optionally_notify(cm, || -> NotifyOption { NotifyOption::DoPersist })
1339         }
1340
1341         fn optionally_notify<F: FnMut() -> NotifyOption, C: AChannelManager>(cm: &'a C, mut persist_check: F)
1342         -> PersistenceNotifierGuard<'a, impl FnMut() -> NotifyOption> {
1343                 let read_guard = cm.get_cm().total_consistency_lock.read().unwrap();
1344                 let force_notify = cm.get_cm().process_background_events();
1345
1346                 PersistenceNotifierGuard {
1347                         event_persist_notifier: &cm.get_cm().event_persist_notifier,
1348                         needs_persist_flag: &cm.get_cm().needs_persist_flag,
1349                         should_persist: move || {
1350                                 // Pick the "most" action between `persist_check` and the background events
1351                                 // processing and return that.
1352                                 let notify = persist_check();
1353                                 match (notify, force_notify) {
1354                                         (NotifyOption::DoPersist, _) => NotifyOption::DoPersist,
1355                                         (_, NotifyOption::DoPersist) => NotifyOption::DoPersist,
1356                                         (NotifyOption::SkipPersistHandleEvents, _) => NotifyOption::SkipPersistHandleEvents,
1357                                         (_, NotifyOption::SkipPersistHandleEvents) => NotifyOption::SkipPersistHandleEvents,
1358                                         _ => NotifyOption::SkipPersistNoEvents,
1359                                 }
1360                         },
1361                         _read_guard: read_guard,
1362                 }
1363         }
1364
1365         /// Note that if any [`ChannelMonitorUpdate`]s are possibly generated,
1366         /// [`ChannelManager::process_background_events`] MUST be called first (or
1367         /// [`Self::optionally_notify`] used).
1368         fn optionally_notify_skipping_background_events<F: Fn() -> NotifyOption, C: AChannelManager>
1369         (cm: &'a C, persist_check: F) -> PersistenceNotifierGuard<'a, F> {
1370                 let read_guard = cm.get_cm().total_consistency_lock.read().unwrap();
1371
1372                 PersistenceNotifierGuard {
1373                         event_persist_notifier: &cm.get_cm().event_persist_notifier,
1374                         needs_persist_flag: &cm.get_cm().needs_persist_flag,
1375                         should_persist: persist_check,
1376                         _read_guard: read_guard,
1377                 }
1378         }
1379 }
1380
1381 impl<'a, F: FnMut() -> NotifyOption> Drop for PersistenceNotifierGuard<'a, F> {
1382         fn drop(&mut self) {
1383                 match (self.should_persist)() {
1384                         NotifyOption::DoPersist => {
1385                                 self.needs_persist_flag.store(true, Ordering::Release);
1386                                 self.event_persist_notifier.notify()
1387                         },
1388                         NotifyOption::SkipPersistHandleEvents =>
1389                                 self.event_persist_notifier.notify(),
1390                         NotifyOption::SkipPersistNoEvents => {},
1391                 }
1392         }
1393 }
1394
1395 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
1396 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
1397 ///
1398 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
1399 ///
1400 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
1401 pub const BREAKDOWN_TIMEOUT: u16 = 6 * 24;
1402 /// The amount of time in blocks we're willing to wait to claim money back to us. This matches
1403 /// the maximum required amount in lnd as of March 2021.
1404 pub(crate) const MAX_LOCAL_BREAKDOWN_TIMEOUT: u16 = 2 * 6 * 24 * 7;
1405
1406 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
1407 /// HTLC's CLTV. The current default represents roughly seven hours of blocks at six blocks/hour.
1408 ///
1409 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
1410 ///
1411 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
1412 // This should always be a few blocks greater than channelmonitor::CLTV_CLAIM_BUFFER,
1413 // i.e. the node we forwarded the payment on to should always have enough room to reliably time out
1414 // the HTLC via a full update_fail_htlc/commitment_signed dance before we hit the
1415 // CLTV_CLAIM_BUFFER point (we static assert that it's at least 3 blocks more).
1416 pub const MIN_CLTV_EXPIRY_DELTA: u16 = 6*7;
1417 // This should be long enough to allow a payment path drawn across multiple routing hops with substantial
1418 // `cltv_expiry_delta`. Indeed, the length of those values is the reaction delay offered to a routing node
1419 // in case of HTLC on-chain settlement. While appearing less competitive, a node operator could decide to
1420 // scale them up to suit its security policy. At the network-level, we shouldn't constrain them too much,
1421 // while avoiding to introduce a DoS vector. Further, a low CTLV_FAR_FAR_AWAY could be a source of
1422 // routing failure for any HTLC sender picking up an LDK node among the first hops.
1423 pub(super) const CLTV_FAR_FAR_AWAY: u32 = 14 * 24 * 6;
1424
1425 /// Minimum CLTV difference between the current block height and received inbound payments.
1426 /// Invoices generated for payment to us must set their `min_final_cltv_expiry_delta` field to at least
1427 /// this value.
1428 // Note that we fail if exactly HTLC_FAIL_BACK_BUFFER + 1 was used, so we need to add one for
1429 // any payments to succeed. Further, we don't want payments to fail if a block was found while
1430 // a payment was being routed, so we add an extra block to be safe.
1431 pub const MIN_FINAL_CLTV_EXPIRY_DELTA: u16 = HTLC_FAIL_BACK_BUFFER as u16 + 3;
1432
1433 // Check that our CLTV_EXPIRY is at least CLTV_CLAIM_BUFFER + ANTI_REORG_DELAY + LATENCY_GRACE_PERIOD_BLOCKS,
1434 // ie that if the next-hop peer fails the HTLC within
1435 // LATENCY_GRACE_PERIOD_BLOCKS then we'll still have CLTV_CLAIM_BUFFER left to timeout it onchain,
1436 // then waiting ANTI_REORG_DELAY to be reorg-safe on the outbound HLTC and
1437 // failing the corresponding htlc backward, and us now seeing the last block of ANTI_REORG_DELAY before
1438 // LATENCY_GRACE_PERIOD_BLOCKS.
1439 #[deny(const_err)]
1440 #[allow(dead_code)]
1441 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;
1442
1443 // Check for ability of an attacker to make us fail on-chain by delaying an HTLC claim. See
1444 // ChannelMonitor::should_broadcast_holder_commitment_txn for a description of why this is needed.
1445 #[deny(const_err)]
1446 #[allow(dead_code)]
1447 const CHECK_CLTV_EXPIRY_SANITY_2: u32 = MIN_CLTV_EXPIRY_DELTA as u32 - LATENCY_GRACE_PERIOD_BLOCKS - 2*CLTV_CLAIM_BUFFER;
1448
1449 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until expiry of incomplete MPPs
1450 pub(crate) const MPP_TIMEOUT_TICKS: u8 = 3;
1451
1452 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is disconnected
1453 /// until we mark the channel disabled and gossip the update.
1454 pub(crate) const DISABLE_GOSSIP_TICKS: u8 = 10;
1455
1456 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is connected until
1457 /// we mark the channel enabled and gossip the update.
1458 pub(crate) const ENABLE_GOSSIP_TICKS: u8 = 5;
1459
1460 /// The maximum number of unfunded channels we can have per-peer before we start rejecting new
1461 /// (inbound) ones. The number of peers with unfunded channels is limited separately in
1462 /// [`MAX_UNFUNDED_CHANNEL_PEERS`].
1463 const MAX_UNFUNDED_CHANS_PER_PEER: usize = 4;
1464
1465 /// The maximum number of peers from which we will allow pending unfunded channels. Once we reach
1466 /// this many peers we reject new (inbound) channels from peers with which we don't have a channel.
1467 const MAX_UNFUNDED_CHANNEL_PEERS: usize = 50;
1468
1469 /// The maximum number of peers which we do not have a (funded) channel with. Once we reach this
1470 /// many peers we reject new (inbound) connections.
1471 const MAX_NO_CHANNEL_PEERS: usize = 250;
1472
1473 /// Information needed for constructing an invoice route hint for this channel.
1474 #[derive(Clone, Debug, PartialEq)]
1475 pub struct CounterpartyForwardingInfo {
1476         /// Base routing fee in millisatoshis.
1477         pub fee_base_msat: u32,
1478         /// Amount in millionths of a satoshi the channel will charge per transferred satoshi.
1479         pub fee_proportional_millionths: u32,
1480         /// The minimum difference in cltv_expiry between an ingoing HTLC and its outgoing counterpart,
1481         /// such that the outgoing HTLC is forwardable to this counterparty. See `msgs::ChannelUpdate`'s
1482         /// `cltv_expiry_delta` for more details.
1483         pub cltv_expiry_delta: u16,
1484 }
1485
1486 /// Channel parameters which apply to our counterparty. These are split out from [`ChannelDetails`]
1487 /// to better separate parameters.
1488 #[derive(Clone, Debug, PartialEq)]
1489 pub struct ChannelCounterparty {
1490         /// The node_id of our counterparty
1491         pub node_id: PublicKey,
1492         /// The Features the channel counterparty provided upon last connection.
1493         /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
1494         /// many routing-relevant features are present in the init context.
1495         pub features: InitFeatures,
1496         /// The value, in satoshis, that must always be held in the channel for our counterparty. This
1497         /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
1498         /// claiming at least this value on chain.
1499         ///
1500         /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
1501         ///
1502         /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
1503         pub unspendable_punishment_reserve: u64,
1504         /// Information on the fees and requirements that the counterparty requires when forwarding
1505         /// payments to us through this channel.
1506         pub forwarding_info: Option<CounterpartyForwardingInfo>,
1507         /// The smallest value HTLC (in msat) the remote peer will accept, for this channel. This field
1508         /// is only `None` before we have received either the `OpenChannel` or `AcceptChannel` message
1509         /// from the remote peer, or for `ChannelCounterparty` objects serialized prior to LDK 0.0.107.
1510         pub outbound_htlc_minimum_msat: Option<u64>,
1511         /// The largest value HTLC (in msat) the remote peer currently will accept, for this channel.
1512         pub outbound_htlc_maximum_msat: Option<u64>,
1513 }
1514
1515 /// Details of a channel, as returned by [`ChannelManager::list_channels`] and [`ChannelManager::list_usable_channels`]
1516 #[derive(Clone, Debug, PartialEq)]
1517 pub struct ChannelDetails {
1518         /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
1519         /// thereafter this is the txid of the funding transaction xor the funding transaction output).
1520         /// Note that this means this value is *not* persistent - it can change once during the
1521         /// lifetime of the channel.
1522         pub channel_id: ChannelId,
1523         /// Parameters which apply to our counterparty. See individual fields for more information.
1524         pub counterparty: ChannelCounterparty,
1525         /// The Channel's funding transaction output, if we've negotiated the funding transaction with
1526         /// our counterparty already.
1527         ///
1528         /// Note that, if this has been set, `channel_id` will be equivalent to
1529         /// `funding_txo.unwrap().to_channel_id()`.
1530         pub funding_txo: Option<OutPoint>,
1531         /// The features which this channel operates with. See individual features for more info.
1532         ///
1533         /// `None` until negotiation completes and the channel type is finalized.
1534         pub channel_type: Option<ChannelTypeFeatures>,
1535         /// The position of the funding transaction in the chain. None if the funding transaction has
1536         /// not yet been confirmed and the channel fully opened.
1537         ///
1538         /// Note that if [`inbound_scid_alias`] is set, it must be used for invoices and inbound
1539         /// payments instead of this. See [`get_inbound_payment_scid`].
1540         ///
1541         /// For channels with [`confirmations_required`] set to `Some(0)`, [`outbound_scid_alias`] may
1542         /// be used in place of this in outbound routes. See [`get_outbound_payment_scid`].
1543         ///
1544         /// [`inbound_scid_alias`]: Self::inbound_scid_alias
1545         /// [`outbound_scid_alias`]: Self::outbound_scid_alias
1546         /// [`get_inbound_payment_scid`]: Self::get_inbound_payment_scid
1547         /// [`get_outbound_payment_scid`]: Self::get_outbound_payment_scid
1548         /// [`confirmations_required`]: Self::confirmations_required
1549         pub short_channel_id: Option<u64>,
1550         /// An optional [`short_channel_id`] alias for this channel, randomly generated by us and
1551         /// usable in place of [`short_channel_id`] to reference the channel in outbound routes when
1552         /// the channel has not yet been confirmed (as long as [`confirmations_required`] is
1553         /// `Some(0)`).
1554         ///
1555         /// This will be `None` as long as the channel is not available for routing outbound payments.
1556         ///
1557         /// [`short_channel_id`]: Self::short_channel_id
1558         /// [`confirmations_required`]: Self::confirmations_required
1559         pub outbound_scid_alias: Option<u64>,
1560         /// An optional [`short_channel_id`] alias for this channel, randomly generated by our
1561         /// counterparty and usable in place of [`short_channel_id`] in invoice route hints. Our
1562         /// counterparty will recognize the alias provided here in place of the [`short_channel_id`]
1563         /// when they see a payment to be routed to us.
1564         ///
1565         /// Our counterparty may choose to rotate this value at any time, though will always recognize
1566         /// previous values for inbound payment forwarding.
1567         ///
1568         /// [`short_channel_id`]: Self::short_channel_id
1569         pub inbound_scid_alias: Option<u64>,
1570         /// The value, in satoshis, of this channel as appears in the funding output
1571         pub channel_value_satoshis: u64,
1572         /// The value, in satoshis, that must always be held in the channel for us. This value ensures
1573         /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
1574         /// this value on chain.
1575         ///
1576         /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
1577         ///
1578         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1579         ///
1580         /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
1581         pub unspendable_punishment_reserve: Option<u64>,
1582         /// The `user_channel_id` value passed in to [`ChannelManager::create_channel`] for outbound
1583         /// channels, or to [`ChannelManager::accept_inbound_channel`] for inbound channels if
1584         /// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true. Otherwise
1585         /// `user_channel_id` will be randomized for an inbound channel.  This may be zero for objects
1586         /// serialized with LDK versions prior to 0.0.113.
1587         ///
1588         /// [`ChannelManager::create_channel`]: crate::ln::channelmanager::ChannelManager::create_channel
1589         /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
1590         /// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
1591         pub user_channel_id: u128,
1592         /// The currently negotiated fee rate denominated in satoshi per 1000 weight units,
1593         /// which is applied to commitment and HTLC transactions.
1594         ///
1595         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.115.
1596         pub feerate_sat_per_1000_weight: Option<u32>,
1597         /// Our total balance.  This is the amount we would get if we close the channel.
1598         /// This value is not exact. Due to various in-flight changes and feerate changes, exactly this
1599         /// amount is not likely to be recoverable on close.
1600         ///
1601         /// This does not include any pending HTLCs which are not yet fully resolved (and, thus, whose
1602         /// balance is not available for inclusion in new outbound HTLCs). This further does not include
1603         /// any pending outgoing HTLCs which are awaiting some other resolution to be sent.
1604         /// This does not consider any on-chain fees.
1605         ///
1606         /// See also [`ChannelDetails::outbound_capacity_msat`]
1607         pub balance_msat: u64,
1608         /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
1609         /// any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1610         /// available for inclusion in new outbound HTLCs). This further does not include any pending
1611         /// outgoing HTLCs which are awaiting some other resolution to be sent.
1612         ///
1613         /// See also [`ChannelDetails::balance_msat`]
1614         ///
1615         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1616         /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
1617         /// should be able to spend nearly this amount.
1618         pub outbound_capacity_msat: u64,
1619         /// The available outbound capacity for sending a single HTLC to the remote peer. This is
1620         /// similar to [`ChannelDetails::outbound_capacity_msat`] but it may be further restricted by
1621         /// the current state and per-HTLC limit(s). This is intended for use when routing, allowing us
1622         /// to use a limit as close as possible to the HTLC limit we can currently send.
1623         ///
1624         /// See also [`ChannelDetails::next_outbound_htlc_minimum_msat`],
1625         /// [`ChannelDetails::balance_msat`], and [`ChannelDetails::outbound_capacity_msat`].
1626         pub next_outbound_htlc_limit_msat: u64,
1627         /// The minimum value for sending a single HTLC to the remote peer. This is the equivalent of
1628         /// [`ChannelDetails::next_outbound_htlc_limit_msat`] but represents a lower-bound, rather than
1629         /// an upper-bound. This is intended for use when routing, allowing us to ensure we pick a
1630         /// route which is valid.
1631         pub next_outbound_htlc_minimum_msat: u64,
1632         /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
1633         /// include any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1634         /// available for inclusion in new inbound HTLCs).
1635         /// Note that there are some corner cases not fully handled here, so the actual available
1636         /// inbound capacity may be slightly higher than this.
1637         ///
1638         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1639         /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
1640         /// However, our counterparty should be able to spend nearly this amount.
1641         pub inbound_capacity_msat: u64,
1642         /// The number of required confirmations on the funding transaction before the funding will be
1643         /// considered "locked". This number is selected by the channel fundee (i.e. us if
1644         /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
1645         /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
1646         /// [`ChannelHandshakeLimits::max_minimum_depth`].
1647         ///
1648         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1649         ///
1650         /// [`is_outbound`]: ChannelDetails::is_outbound
1651         /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
1652         /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
1653         pub confirmations_required: Option<u32>,
1654         /// The current number of confirmations on the funding transaction.
1655         ///
1656         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.113.
1657         pub confirmations: Option<u32>,
1658         /// The number of blocks (after our commitment transaction confirms) that we will need to wait
1659         /// until we can claim our funds after we force-close the channel. During this time our
1660         /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
1661         /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
1662         /// time to claim our non-HTLC-encumbered funds.
1663         ///
1664         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1665         pub force_close_spend_delay: Option<u16>,
1666         /// True if the channel was initiated (and thus funded) by us.
1667         pub is_outbound: bool,
1668         /// True if the channel is confirmed, channel_ready messages have been exchanged, and the
1669         /// channel is not currently being shut down. `channel_ready` message exchange implies the
1670         /// required confirmation count has been reached (and we were connected to the peer at some
1671         /// point after the funding transaction received enough confirmations). The required
1672         /// confirmation count is provided in [`confirmations_required`].
1673         ///
1674         /// [`confirmations_required`]: ChannelDetails::confirmations_required
1675         pub is_channel_ready: bool,
1676         /// The stage of the channel's shutdown.
1677         /// `None` for `ChannelDetails` serialized on LDK versions prior to 0.0.116.
1678         pub channel_shutdown_state: Option<ChannelShutdownState>,
1679         /// True if the channel is (a) confirmed and channel_ready messages have been exchanged, (b)
1680         /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
1681         ///
1682         /// This is a strict superset of `is_channel_ready`.
1683         pub is_usable: bool,
1684         /// True if this channel is (or will be) publicly-announced.
1685         pub is_public: bool,
1686         /// The smallest value HTLC (in msat) we will accept, for this channel. This field
1687         /// is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.107
1688         pub inbound_htlc_minimum_msat: Option<u64>,
1689         /// The largest value HTLC (in msat) we currently will accept, for this channel.
1690         pub inbound_htlc_maximum_msat: Option<u64>,
1691         /// Set of configurable parameters that affect channel operation.
1692         ///
1693         /// This field is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.109.
1694         pub config: Option<ChannelConfig>,
1695 }
1696
1697 impl ChannelDetails {
1698         /// Gets the current SCID which should be used to identify this channel for inbound payments.
1699         /// This should be used for providing invoice hints or in any other context where our
1700         /// counterparty will forward a payment to us.
1701         ///
1702         /// This is either the [`ChannelDetails::inbound_scid_alias`], if set, or the
1703         /// [`ChannelDetails::short_channel_id`]. See those for more information.
1704         pub fn get_inbound_payment_scid(&self) -> Option<u64> {
1705                 self.inbound_scid_alias.or(self.short_channel_id)
1706         }
1707
1708         /// Gets the current SCID which should be used to identify this channel for outbound payments.
1709         /// This should be used in [`Route`]s to describe the first hop or in other contexts where
1710         /// we're sending or forwarding a payment outbound over this channel.
1711         ///
1712         /// This is either the [`ChannelDetails::short_channel_id`], if set, or the
1713         /// [`ChannelDetails::outbound_scid_alias`]. See those for more information.
1714         pub fn get_outbound_payment_scid(&self) -> Option<u64> {
1715                 self.short_channel_id.or(self.outbound_scid_alias)
1716         }
1717
1718         fn from_channel_context<SP: Deref, F: Deref>(
1719                 context: &ChannelContext<SP>, best_block_height: u32, latest_features: InitFeatures,
1720                 fee_estimator: &LowerBoundedFeeEstimator<F>
1721         ) -> Self
1722         where
1723                 SP::Target: SignerProvider,
1724                 F::Target: FeeEstimator
1725         {
1726                 let balance = context.get_available_balances(fee_estimator);
1727                 let (to_remote_reserve_satoshis, to_self_reserve_satoshis) =
1728                         context.get_holder_counterparty_selected_channel_reserve_satoshis();
1729                 ChannelDetails {
1730                         channel_id: context.channel_id(),
1731                         counterparty: ChannelCounterparty {
1732                                 node_id: context.get_counterparty_node_id(),
1733                                 features: latest_features,
1734                                 unspendable_punishment_reserve: to_remote_reserve_satoshis,
1735                                 forwarding_info: context.counterparty_forwarding_info(),
1736                                 // Ensures that we have actually received the `htlc_minimum_msat` value
1737                                 // from the counterparty through the `OpenChannel` or `AcceptChannel`
1738                                 // message (as they are always the first message from the counterparty).
1739                                 // Else `Channel::get_counterparty_htlc_minimum_msat` could return the
1740                                 // default `0` value set by `Channel::new_outbound`.
1741                                 outbound_htlc_minimum_msat: if context.have_received_message() {
1742                                         Some(context.get_counterparty_htlc_minimum_msat()) } else { None },
1743                                 outbound_htlc_maximum_msat: context.get_counterparty_htlc_maximum_msat(),
1744                         },
1745                         funding_txo: context.get_funding_txo(),
1746                         // Note that accept_channel (or open_channel) is always the first message, so
1747                         // `have_received_message` indicates that type negotiation has completed.
1748                         channel_type: if context.have_received_message() { Some(context.get_channel_type().clone()) } else { None },
1749                         short_channel_id: context.get_short_channel_id(),
1750                         outbound_scid_alias: if context.is_usable() { Some(context.outbound_scid_alias()) } else { None },
1751                         inbound_scid_alias: context.latest_inbound_scid_alias(),
1752                         channel_value_satoshis: context.get_value_satoshis(),
1753                         feerate_sat_per_1000_weight: Some(context.get_feerate_sat_per_1000_weight()),
1754                         unspendable_punishment_reserve: to_self_reserve_satoshis,
1755                         balance_msat: balance.balance_msat,
1756                         inbound_capacity_msat: balance.inbound_capacity_msat,
1757                         outbound_capacity_msat: balance.outbound_capacity_msat,
1758                         next_outbound_htlc_limit_msat: balance.next_outbound_htlc_limit_msat,
1759                         next_outbound_htlc_minimum_msat: balance.next_outbound_htlc_minimum_msat,
1760                         user_channel_id: context.get_user_id(),
1761                         confirmations_required: context.minimum_depth(),
1762                         confirmations: Some(context.get_funding_tx_confirmations(best_block_height)),
1763                         force_close_spend_delay: context.get_counterparty_selected_contest_delay(),
1764                         is_outbound: context.is_outbound(),
1765                         is_channel_ready: context.is_usable(),
1766                         is_usable: context.is_live(),
1767                         is_public: context.should_announce(),
1768                         inbound_htlc_minimum_msat: Some(context.get_holder_htlc_minimum_msat()),
1769                         inbound_htlc_maximum_msat: context.get_holder_htlc_maximum_msat(),
1770                         config: Some(context.config()),
1771                         channel_shutdown_state: Some(context.shutdown_state()),
1772                 }
1773         }
1774 }
1775
1776 #[derive(Clone, Copy, Debug, PartialEq, Eq)]
1777 /// Further information on the details of the channel shutdown.
1778 /// Upon channels being forced closed (i.e. commitment transaction confirmation detected
1779 /// by `ChainMonitor`), ChannelShutdownState will be set to `ShutdownComplete` or
1780 /// the channel will be removed shortly.
1781 /// Also note, that in normal operation, peers could disconnect at any of these states
1782 /// and require peer re-connection before making progress onto other states
1783 pub enum ChannelShutdownState {
1784         /// Channel has not sent or received a shutdown message.
1785         NotShuttingDown,
1786         /// Local node has sent a shutdown message for this channel.
1787         ShutdownInitiated,
1788         /// Shutdown message exchanges have concluded and the channels are in the midst of
1789         /// resolving all existing open HTLCs before closing can continue.
1790         ResolvingHTLCs,
1791         /// All HTLCs have been resolved, nodes are currently negotiating channel close onchain fee rates.
1792         NegotiatingClosingFee,
1793         /// We've successfully negotiated a closing_signed dance. At this point `ChannelManager` is about
1794         /// to drop the channel.
1795         ShutdownComplete,
1796 }
1797
1798 /// Used by [`ChannelManager::list_recent_payments`] to express the status of recent payments.
1799 /// These include payments that have yet to find a successful path, or have unresolved HTLCs.
1800 #[derive(Debug, PartialEq)]
1801 pub enum RecentPaymentDetails {
1802         /// When an invoice was requested and thus a payment has not yet been sent.
1803         AwaitingInvoice {
1804                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1805                 /// a payment and ensure idempotency in LDK.
1806                 payment_id: PaymentId,
1807         },
1808         /// When a payment is still being sent and awaiting successful delivery.
1809         Pending {
1810                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1811                 /// a payment and ensure idempotency in LDK.
1812                 payment_id: PaymentId,
1813                 /// Hash of the payment that is currently being sent but has yet to be fulfilled or
1814                 /// abandoned.
1815                 payment_hash: PaymentHash,
1816                 /// Total amount (in msat, excluding fees) across all paths for this payment,
1817                 /// not just the amount currently inflight.
1818                 total_msat: u64,
1819         },
1820         /// When a pending payment is fulfilled, we continue tracking it until all pending HTLCs have
1821         /// been resolved. Upon receiving [`Event::PaymentSent`], we delay for a few minutes before the
1822         /// payment is removed from tracking.
1823         Fulfilled {
1824                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1825                 /// a payment and ensure idempotency in LDK.
1826                 payment_id: PaymentId,
1827                 /// Hash of the payment that was claimed. `None` for serializations of [`ChannelManager`]
1828                 /// made before LDK version 0.0.104.
1829                 payment_hash: Option<PaymentHash>,
1830         },
1831         /// After a payment's retries are exhausted per the provided [`Retry`], or it is explicitly
1832         /// abandoned via [`ChannelManager::abandon_payment`], it is marked as abandoned until all
1833         /// pending HTLCs for this payment resolve and an [`Event::PaymentFailed`] is generated.
1834         Abandoned {
1835                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1836                 /// a payment and ensure idempotency in LDK.
1837                 payment_id: PaymentId,
1838                 /// Hash of the payment that we have given up trying to send.
1839                 payment_hash: PaymentHash,
1840         },
1841 }
1842
1843 /// Route hints used in constructing invoices for [phantom node payents].
1844 ///
1845 /// [phantom node payments]: crate::sign::PhantomKeysManager
1846 #[derive(Clone)]
1847 pub struct PhantomRouteHints {
1848         /// The list of channels to be included in the invoice route hints.
1849         pub channels: Vec<ChannelDetails>,
1850         /// A fake scid used for representing the phantom node's fake channel in generating the invoice
1851         /// route hints.
1852         pub phantom_scid: u64,
1853         /// The pubkey of the real backing node that would ultimately receive the payment.
1854         pub real_node_pubkey: PublicKey,
1855 }
1856
1857 macro_rules! handle_error {
1858         ($self: ident, $internal: expr, $counterparty_node_id: expr) => { {
1859                 // In testing, ensure there are no deadlocks where the lock is already held upon
1860                 // entering the macro.
1861                 debug_assert_ne!($self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
1862                 debug_assert_ne!($self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
1863
1864                 match $internal {
1865                         Ok(msg) => Ok(msg),
1866                         Err(MsgHandleErrInternal { err, chan_id, shutdown_finish, channel_capacity }) => {
1867                                 let mut msg_events = Vec::with_capacity(2);
1868
1869                                 if let Some((shutdown_res, update_option)) = shutdown_finish {
1870                                         $self.finish_close_channel(shutdown_res);
1871                                         if let Some(update) = update_option {
1872                                                 msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
1873                                                         msg: update
1874                                                 });
1875                                         }
1876                                         if let Some((channel_id, user_channel_id)) = chan_id {
1877                                                 $self.pending_events.lock().unwrap().push_back((events::Event::ChannelClosed {
1878                                                         channel_id, user_channel_id,
1879                                                         reason: ClosureReason::ProcessingError { err: err.err.clone() },
1880                                                         counterparty_node_id: Some($counterparty_node_id),
1881                                                         channel_capacity_sats: channel_capacity,
1882                                                 }, None));
1883                                         }
1884                                 }
1885
1886                                 log_error!($self.logger, "{}", err.err);
1887                                 if let msgs::ErrorAction::IgnoreError = err.action {
1888                                 } else {
1889                                         msg_events.push(events::MessageSendEvent::HandleError {
1890                                                 node_id: $counterparty_node_id,
1891                                                 action: err.action.clone()
1892                                         });
1893                                 }
1894
1895                                 if !msg_events.is_empty() {
1896                                         let per_peer_state = $self.per_peer_state.read().unwrap();
1897                                         if let Some(peer_state_mutex) = per_peer_state.get(&$counterparty_node_id) {
1898                                                 let mut peer_state = peer_state_mutex.lock().unwrap();
1899                                                 peer_state.pending_msg_events.append(&mut msg_events);
1900                                         }
1901                                 }
1902
1903                                 // Return error in case higher-API need one
1904                                 Err(err)
1905                         },
1906                 }
1907         } };
1908         ($self: ident, $internal: expr) => {
1909                 match $internal {
1910                         Ok(res) => Ok(res),
1911                         Err((chan, msg_handle_err)) => {
1912                                 let counterparty_node_id = chan.get_counterparty_node_id();
1913                                 handle_error!($self, Err(msg_handle_err), counterparty_node_id).map_err(|err| (chan, err))
1914                         },
1915                 }
1916         };
1917 }
1918
1919 macro_rules! update_maps_on_chan_removal {
1920         ($self: expr, $channel_context: expr) => {{
1921                 $self.id_to_peer.lock().unwrap().remove(&$channel_context.channel_id());
1922                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1923                 if let Some(short_id) = $channel_context.get_short_channel_id() {
1924                         short_to_chan_info.remove(&short_id);
1925                 } else {
1926                         // If the channel was never confirmed on-chain prior to its closure, remove the
1927                         // outbound SCID alias we used for it from the collision-prevention set. While we
1928                         // generally want to avoid ever re-using an outbound SCID alias across all channels, we
1929                         // also don't want a counterparty to be able to trivially cause a memory leak by simply
1930                         // opening a million channels with us which are closed before we ever reach the funding
1931                         // stage.
1932                         let alias_removed = $self.outbound_scid_aliases.lock().unwrap().remove(&$channel_context.outbound_scid_alias());
1933                         debug_assert!(alias_removed);
1934                 }
1935                 short_to_chan_info.remove(&$channel_context.outbound_scid_alias());
1936         }}
1937 }
1938
1939 /// Returns (boolean indicating if we should remove the Channel object from memory, a mapped error)
1940 macro_rules! convert_chan_phase_err {
1941         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, MANUAL_CHANNEL_UPDATE, $channel_update: expr) => {
1942                 match $err {
1943                         ChannelError::Warn(msg) => {
1944                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Warn(msg), *$channel_id))
1945                         },
1946                         ChannelError::Ignore(msg) => {
1947                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore(msg), *$channel_id))
1948                         },
1949                         ChannelError::Close(msg) => {
1950                                 log_error!($self.logger, "Closing channel {} due to close-required error: {}", $channel_id, msg);
1951                                 update_maps_on_chan_removal!($self, $channel.context);
1952                                 let shutdown_res = $channel.context.force_shutdown(true);
1953                                 let user_id = $channel.context.get_user_id();
1954                                 let channel_capacity_satoshis = $channel.context.get_value_satoshis();
1955
1956                                 (true, MsgHandleErrInternal::from_finish_shutdown(msg, *$channel_id, user_id,
1957                                         shutdown_res, $channel_update, channel_capacity_satoshis))
1958                         },
1959                 }
1960         };
1961         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, FUNDED_CHANNEL) => {
1962                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, { $self.get_channel_update_for_broadcast($channel).ok() })
1963         };
1964         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, UNFUNDED_CHANNEL) => {
1965                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, None)
1966         };
1967         ($self: ident, $err: expr, $channel_phase: expr, $channel_id: expr) => {
1968                 match $channel_phase {
1969                         ChannelPhase::Funded(channel) => {
1970                                 convert_chan_phase_err!($self, $err, channel, $channel_id, FUNDED_CHANNEL)
1971                         },
1972                         ChannelPhase::UnfundedOutboundV1(channel) => {
1973                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
1974                         },
1975                         ChannelPhase::UnfundedInboundV1(channel) => {
1976                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
1977                         },
1978                 }
1979         };
1980 }
1981
1982 macro_rules! break_chan_phase_entry {
1983         ($self: ident, $res: expr, $entry: expr) => {
1984                 match $res {
1985                         Ok(res) => res,
1986                         Err(e) => {
1987                                 let key = *$entry.key();
1988                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
1989                                 if drop {
1990                                         $entry.remove_entry();
1991                                 }
1992                                 break Err(res);
1993                         }
1994                 }
1995         }
1996 }
1997
1998 macro_rules! try_chan_phase_entry {
1999         ($self: ident, $res: expr, $entry: expr) => {
2000                 match $res {
2001                         Ok(res) => res,
2002                         Err(e) => {
2003                                 let key = *$entry.key();
2004                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
2005                                 if drop {
2006                                         $entry.remove_entry();
2007                                 }
2008                                 return Err(res);
2009                         }
2010                 }
2011         }
2012 }
2013
2014 macro_rules! remove_channel_phase {
2015         ($self: expr, $entry: expr) => {
2016                 {
2017                         let channel = $entry.remove_entry().1;
2018                         update_maps_on_chan_removal!($self, &channel.context());
2019                         channel
2020                 }
2021         }
2022 }
2023
2024 macro_rules! send_channel_ready {
2025         ($self: ident, $pending_msg_events: expr, $channel: expr, $channel_ready_msg: expr) => {{
2026                 $pending_msg_events.push(events::MessageSendEvent::SendChannelReady {
2027                         node_id: $channel.context.get_counterparty_node_id(),
2028                         msg: $channel_ready_msg,
2029                 });
2030                 // Note that we may send a `channel_ready` multiple times for a channel if we reconnect, so
2031                 // we allow collisions, but we shouldn't ever be updating the channel ID pointed to.
2032                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
2033                 let outbound_alias_insert = short_to_chan_info.insert($channel.context.outbound_scid_alias(), ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
2034                 assert!(outbound_alias_insert.is_none() || outbound_alias_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
2035                         "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
2036                 if let Some(real_scid) = $channel.context.get_short_channel_id() {
2037                         let scid_insert = short_to_chan_info.insert(real_scid, ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
2038                         assert!(scid_insert.is_none() || scid_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
2039                                 "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
2040                 }
2041         }}
2042 }
2043
2044 macro_rules! emit_channel_pending_event {
2045         ($locked_events: expr, $channel: expr) => {
2046                 if $channel.context.should_emit_channel_pending_event() {
2047                         $locked_events.push_back((events::Event::ChannelPending {
2048                                 channel_id: $channel.context.channel_id(),
2049                                 former_temporary_channel_id: $channel.context.temporary_channel_id(),
2050                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
2051                                 user_channel_id: $channel.context.get_user_id(),
2052                                 funding_txo: $channel.context.get_funding_txo().unwrap().into_bitcoin_outpoint(),
2053                         }, None));
2054                         $channel.context.set_channel_pending_event_emitted();
2055                 }
2056         }
2057 }
2058
2059 macro_rules! emit_channel_ready_event {
2060         ($locked_events: expr, $channel: expr) => {
2061                 if $channel.context.should_emit_channel_ready_event() {
2062                         debug_assert!($channel.context.channel_pending_event_emitted());
2063                         $locked_events.push_back((events::Event::ChannelReady {
2064                                 channel_id: $channel.context.channel_id(),
2065                                 user_channel_id: $channel.context.get_user_id(),
2066                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
2067                                 channel_type: $channel.context.get_channel_type().clone(),
2068                         }, None));
2069                         $channel.context.set_channel_ready_event_emitted();
2070                 }
2071         }
2072 }
2073
2074 macro_rules! handle_monitor_update_completion {
2075         ($self: ident, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr) => { {
2076                 let mut updates = $chan.monitor_updating_restored(&$self.logger,
2077                         &$self.node_signer, $self.chain_hash, &$self.default_configuration,
2078                         $self.best_block.read().unwrap().height());
2079                 let counterparty_node_id = $chan.context.get_counterparty_node_id();
2080                 let channel_update = if updates.channel_ready.is_some() && $chan.context.is_usable() {
2081                         // We only send a channel_update in the case where we are just now sending a
2082                         // channel_ready and the channel is in a usable state. We may re-send a
2083                         // channel_update later through the announcement_signatures process for public
2084                         // channels, but there's no reason not to just inform our counterparty of our fees
2085                         // now.
2086                         if let Ok(msg) = $self.get_channel_update_for_unicast($chan) {
2087                                 Some(events::MessageSendEvent::SendChannelUpdate {
2088                                         node_id: counterparty_node_id,
2089                                         msg,
2090                                 })
2091                         } else { None }
2092                 } else { None };
2093
2094                 let update_actions = $peer_state.monitor_update_blocked_actions
2095                         .remove(&$chan.context.channel_id()).unwrap_or(Vec::new());
2096
2097                 let htlc_forwards = $self.handle_channel_resumption(
2098                         &mut $peer_state.pending_msg_events, $chan, updates.raa,
2099                         updates.commitment_update, updates.order, updates.accepted_htlcs,
2100                         updates.funding_broadcastable, updates.channel_ready,
2101                         updates.announcement_sigs);
2102                 if let Some(upd) = channel_update {
2103                         $peer_state.pending_msg_events.push(upd);
2104                 }
2105
2106                 let channel_id = $chan.context.channel_id();
2107                 let unbroadcasted_batch_funding_txid = $chan.context.unbroadcasted_batch_funding_txid();
2108                 core::mem::drop($peer_state_lock);
2109                 core::mem::drop($per_peer_state_lock);
2110
2111                 // If the channel belongs to a batch funding transaction, the progress of the batch
2112                 // should be updated as we have received funding_signed and persisted the monitor.
2113                 if let Some(txid) = unbroadcasted_batch_funding_txid {
2114                         let mut funding_batch_states = $self.funding_batch_states.lock().unwrap();
2115                         let mut batch_completed = false;
2116                         if let Some(batch_state) = funding_batch_states.get_mut(&txid) {
2117                                 let channel_state = batch_state.iter_mut().find(|(chan_id, pubkey, _)| (
2118                                         *chan_id == channel_id &&
2119                                         *pubkey == counterparty_node_id
2120                                 ));
2121                                 if let Some(channel_state) = channel_state {
2122                                         channel_state.2 = true;
2123                                 } else {
2124                                         debug_assert!(false, "Missing channel batch state for channel which completed initial monitor update");
2125                                 }
2126                                 batch_completed = batch_state.iter().all(|(_, _, completed)| *completed);
2127                         } else {
2128                                 debug_assert!(false, "Missing batch state for channel which completed initial monitor update");
2129                         }
2130
2131                         // When all channels in a batched funding transaction have become ready, it is not necessary
2132                         // to track the progress of the batch anymore and the state of the channels can be updated.
2133                         if batch_completed {
2134                                 let removed_batch_state = funding_batch_states.remove(&txid).into_iter().flatten();
2135                                 let per_peer_state = $self.per_peer_state.read().unwrap();
2136                                 let mut batch_funding_tx = None;
2137                                 for (channel_id, counterparty_node_id, _) in removed_batch_state {
2138                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2139                                                 let mut peer_state = peer_state_mutex.lock().unwrap();
2140                                                 if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&channel_id) {
2141                                                         batch_funding_tx = batch_funding_tx.or_else(|| chan.context.unbroadcasted_funding());
2142                                                         chan.set_batch_ready();
2143                                                         let mut pending_events = $self.pending_events.lock().unwrap();
2144                                                         emit_channel_pending_event!(pending_events, chan);
2145                                                 }
2146                                         }
2147                                 }
2148                                 if let Some(tx) = batch_funding_tx {
2149                                         log_info!($self.logger, "Broadcasting batch funding transaction with txid {}", tx.txid());
2150                                         $self.tx_broadcaster.broadcast_transactions(&[&tx]);
2151                                 }
2152                         }
2153                 }
2154
2155                 $self.handle_monitor_update_completion_actions(update_actions);
2156
2157                 if let Some(forwards) = htlc_forwards {
2158                         $self.forward_htlcs(&mut [forwards][..]);
2159                 }
2160                 $self.finalize_claims(updates.finalized_claimed_htlcs);
2161                 for failure in updates.failed_htlcs.drain(..) {
2162                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2163                         $self.fail_htlc_backwards_internal(&failure.0, &failure.1, &failure.2, receiver);
2164                 }
2165         } }
2166 }
2167
2168 macro_rules! handle_new_monitor_update {
2169         ($self: ident, $update_res: expr, $chan: expr, _internal, $completed: expr) => { {
2170                 debug_assert!($self.background_events_processed_since_startup.load(Ordering::Acquire));
2171                 match $update_res {
2172                         ChannelMonitorUpdateStatus::UnrecoverableError => {
2173                                 let err_str = "ChannelMonitor[Update] persistence failed unrecoverably. This indicates we cannot continue normal operation and must shut down.";
2174                                 log_error!($self.logger, "{}", err_str);
2175                                 panic!("{}", err_str);
2176                         },
2177                         ChannelMonitorUpdateStatus::InProgress => {
2178                                 log_debug!($self.logger, "ChannelMonitor update for {} in flight, holding messages until the update completes.",
2179                                         &$chan.context.channel_id());
2180                                 false
2181                         },
2182                         ChannelMonitorUpdateStatus::Completed => {
2183                                 $completed;
2184                                 true
2185                         },
2186                 }
2187         } };
2188         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr, INITIAL_MONITOR) => {
2189                 handle_new_monitor_update!($self, $update_res, $chan, _internal,
2190                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan))
2191         };
2192         ($self: ident, $funding_txo: expr, $update: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr) => { {
2193                 let in_flight_updates = $peer_state.in_flight_monitor_updates.entry($funding_txo)
2194                         .or_insert_with(Vec::new);
2195                 // During startup, we push monitor updates as background events through to here in
2196                 // order to replay updates that were in-flight when we shut down. Thus, we have to
2197                 // filter for uniqueness here.
2198                 let idx = in_flight_updates.iter().position(|upd| upd == &$update)
2199                         .unwrap_or_else(|| {
2200                                 in_flight_updates.push($update);
2201                                 in_flight_updates.len() - 1
2202                         });
2203                 let update_res = $self.chain_monitor.update_channel($funding_txo, &in_flight_updates[idx]);
2204                 handle_new_monitor_update!($self, update_res, $chan, _internal,
2205                         {
2206                                 let _ = in_flight_updates.remove(idx);
2207                                 if in_flight_updates.is_empty() && $chan.blocked_monitor_updates_pending() == 0 {
2208                                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan);
2209                                 }
2210                         })
2211         } };
2212 }
2213
2214 macro_rules! process_events_body {
2215         ($self: expr, $event_to_handle: expr, $handle_event: expr) => {
2216                 let mut processed_all_events = false;
2217                 while !processed_all_events {
2218                         if $self.pending_events_processor.compare_exchange(false, true, Ordering::Acquire, Ordering::Relaxed).is_err() {
2219                                 return;
2220                         }
2221
2222                         let mut result;
2223
2224                         {
2225                                 // We'll acquire our total consistency lock so that we can be sure no other
2226                                 // persists happen while processing monitor events.
2227                                 let _read_guard = $self.total_consistency_lock.read().unwrap();
2228
2229                                 // Because `handle_post_event_actions` may send `ChannelMonitorUpdate`s to the user we must
2230                                 // ensure any startup-generated background events are handled first.
2231                                 result = $self.process_background_events();
2232
2233                                 // TODO: This behavior should be documented. It's unintuitive that we query
2234                                 // ChannelMonitors when clearing other events.
2235                                 if $self.process_pending_monitor_events() {
2236                                         result = NotifyOption::DoPersist;
2237                                 }
2238                         }
2239
2240                         let pending_events = $self.pending_events.lock().unwrap().clone();
2241                         let num_events = pending_events.len();
2242                         if !pending_events.is_empty() {
2243                                 result = NotifyOption::DoPersist;
2244                         }
2245
2246                         let mut post_event_actions = Vec::new();
2247
2248                         for (event, action_opt) in pending_events {
2249                                 $event_to_handle = event;
2250                                 $handle_event;
2251                                 if let Some(action) = action_opt {
2252                                         post_event_actions.push(action);
2253                                 }
2254                         }
2255
2256                         {
2257                                 let mut pending_events = $self.pending_events.lock().unwrap();
2258                                 pending_events.drain(..num_events);
2259                                 processed_all_events = pending_events.is_empty();
2260                                 // Note that `push_pending_forwards_ev` relies on `pending_events_processor` being
2261                                 // updated here with the `pending_events` lock acquired.
2262                                 $self.pending_events_processor.store(false, Ordering::Release);
2263                         }
2264
2265                         if !post_event_actions.is_empty() {
2266                                 $self.handle_post_event_actions(post_event_actions);
2267                                 // If we had some actions, go around again as we may have more events now
2268                                 processed_all_events = false;
2269                         }
2270
2271                         match result {
2272                                 NotifyOption::DoPersist => {
2273                                         $self.needs_persist_flag.store(true, Ordering::Release);
2274                                         $self.event_persist_notifier.notify();
2275                                 },
2276                                 NotifyOption::SkipPersistHandleEvents =>
2277                                         $self.event_persist_notifier.notify(),
2278                                 NotifyOption::SkipPersistNoEvents => {},
2279                         }
2280                 }
2281         }
2282 }
2283
2284 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>
2285 where
2286         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
2287         T::Target: BroadcasterInterface,
2288         ES::Target: EntropySource,
2289         NS::Target: NodeSigner,
2290         SP::Target: SignerProvider,
2291         F::Target: FeeEstimator,
2292         R::Target: Router,
2293         L::Target: Logger,
2294 {
2295         /// Constructs a new `ChannelManager` to hold several channels and route between them.
2296         ///
2297         /// The current time or latest block header time can be provided as the `current_timestamp`.
2298         ///
2299         /// This is the main "logic hub" for all channel-related actions, and implements
2300         /// [`ChannelMessageHandler`].
2301         ///
2302         /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
2303         ///
2304         /// Users need to notify the new `ChannelManager` when a new block is connected or
2305         /// disconnected using its [`block_connected`] and [`block_disconnected`] methods, starting
2306         /// from after [`params.best_block.block_hash`]. See [`chain::Listen`] and [`chain::Confirm`] for
2307         /// more details.
2308         ///
2309         /// [`block_connected`]: chain::Listen::block_connected
2310         /// [`block_disconnected`]: chain::Listen::block_disconnected
2311         /// [`params.best_block.block_hash`]: chain::BestBlock::block_hash
2312         pub fn new(
2313                 fee_est: F, chain_monitor: M, tx_broadcaster: T, router: R, logger: L, entropy_source: ES,
2314                 node_signer: NS, signer_provider: SP, config: UserConfig, params: ChainParameters,
2315                 current_timestamp: u32,
2316         ) -> Self {
2317                 let mut secp_ctx = Secp256k1::new();
2318                 secp_ctx.seeded_randomize(&entropy_source.get_secure_random_bytes());
2319                 let inbound_pmt_key_material = node_signer.get_inbound_payment_key_material();
2320                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
2321                 ChannelManager {
2322                         default_configuration: config.clone(),
2323                         chain_hash: ChainHash::using_genesis_block(params.network),
2324                         fee_estimator: LowerBoundedFeeEstimator::new(fee_est),
2325                         chain_monitor,
2326                         tx_broadcaster,
2327                         router,
2328
2329                         best_block: RwLock::new(params.best_block),
2330
2331                         outbound_scid_aliases: Mutex::new(HashSet::new()),
2332                         pending_inbound_payments: Mutex::new(HashMap::new()),
2333                         pending_outbound_payments: OutboundPayments::new(),
2334                         forward_htlcs: Mutex::new(HashMap::new()),
2335                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments: HashMap::new(), pending_claiming_payments: HashMap::new() }),
2336                         pending_intercepted_htlcs: Mutex::new(HashMap::new()),
2337                         id_to_peer: Mutex::new(HashMap::new()),
2338                         short_to_chan_info: FairRwLock::new(HashMap::new()),
2339
2340                         our_network_pubkey: node_signer.get_node_id(Recipient::Node).unwrap(),
2341                         secp_ctx,
2342
2343                         inbound_payment_key: expanded_inbound_key,
2344                         fake_scid_rand_bytes: entropy_source.get_secure_random_bytes(),
2345
2346                         probing_cookie_secret: entropy_source.get_secure_random_bytes(),
2347
2348                         highest_seen_timestamp: AtomicUsize::new(current_timestamp as usize),
2349
2350                         per_peer_state: FairRwLock::new(HashMap::new()),
2351
2352                         pending_events: Mutex::new(VecDeque::new()),
2353                         pending_events_processor: AtomicBool::new(false),
2354                         pending_background_events: Mutex::new(Vec::new()),
2355                         total_consistency_lock: RwLock::new(()),
2356                         background_events_processed_since_startup: AtomicBool::new(false),
2357                         event_persist_notifier: Notifier::new(),
2358                         needs_persist_flag: AtomicBool::new(false),
2359                         funding_batch_states: Mutex::new(BTreeMap::new()),
2360
2361                         pending_offers_messages: Mutex::new(Vec::new()),
2362
2363                         entropy_source,
2364                         node_signer,
2365                         signer_provider,
2366
2367                         logger,
2368                 }
2369         }
2370
2371         /// Gets the current configuration applied to all new channels.
2372         pub fn get_current_default_configuration(&self) -> &UserConfig {
2373                 &self.default_configuration
2374         }
2375
2376         fn create_and_insert_outbound_scid_alias(&self) -> u64 {
2377                 let height = self.best_block.read().unwrap().height();
2378                 let mut outbound_scid_alias = 0;
2379                 let mut i = 0;
2380                 loop {
2381                         if cfg!(fuzzing) { // fuzzing chacha20 doesn't use the key at all so we always get the same alias
2382                                 outbound_scid_alias += 1;
2383                         } else {
2384                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias.get_fake_scid(height, &self.chain_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
2385                         }
2386                         if outbound_scid_alias != 0 && self.outbound_scid_aliases.lock().unwrap().insert(outbound_scid_alias) {
2387                                 break;
2388                         }
2389                         i += 1;
2390                         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"); }
2391                 }
2392                 outbound_scid_alias
2393         }
2394
2395         /// Creates a new outbound channel to the given remote node and with the given value.
2396         ///
2397         /// `user_channel_id` will be provided back as in
2398         /// [`Event::FundingGenerationReady::user_channel_id`] to allow tracking of which events
2399         /// correspond with which `create_channel` call. Note that the `user_channel_id` defaults to a
2400         /// randomized value for inbound channels. `user_channel_id` has no meaning inside of LDK, it
2401         /// is simply copied to events and otherwise ignored.
2402         ///
2403         /// Raises [`APIError::APIMisuseError`] when `channel_value_satoshis` > 2**24 or `push_msat` is
2404         /// greater than `channel_value_satoshis * 1k` or `channel_value_satoshis < 1000`.
2405         ///
2406         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be opened due to failing to
2407         /// generate a shutdown scriptpubkey or destination script set by
2408         /// [`SignerProvider::get_shutdown_scriptpubkey`] or [`SignerProvider::get_destination_script`].
2409         ///
2410         /// Note that we do not check if you are currently connected to the given peer. If no
2411         /// connection is available, the outbound `open_channel` message may fail to send, resulting in
2412         /// the channel eventually being silently forgotten (dropped on reload).
2413         ///
2414         /// If `temporary_channel_id` is specified, it will be used as the temporary channel ID of the
2415         /// channel. Otherwise, a random one will be generated for you.
2416         ///
2417         /// Returns the new Channel's temporary `channel_id`. This ID will appear as
2418         /// [`Event::FundingGenerationReady::temporary_channel_id`] and in
2419         /// [`ChannelDetails::channel_id`] until after
2420         /// [`ChannelManager::funding_transaction_generated`] is called, swapping the Channel's ID for
2421         /// one derived from the funding transaction's TXID. If the counterparty rejects the channel
2422         /// immediately, this temporary ID will appear in [`Event::ChannelClosed::channel_id`].
2423         ///
2424         /// [`Event::FundingGenerationReady::user_channel_id`]: events::Event::FundingGenerationReady::user_channel_id
2425         /// [`Event::FundingGenerationReady::temporary_channel_id`]: events::Event::FundingGenerationReady::temporary_channel_id
2426         /// [`Event::ChannelClosed::channel_id`]: events::Event::ChannelClosed::channel_id
2427         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> {
2428                 if channel_value_satoshis < 1000 {
2429                         return Err(APIError::APIMisuseError { err: format!("Channel value must be at least 1000 satoshis. It was {}", channel_value_satoshis) });
2430                 }
2431
2432                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2433                 // We want to make sure the lock is actually acquired by PersistenceNotifierGuard.
2434                 debug_assert!(&self.total_consistency_lock.try_write().is_err());
2435
2436                 let per_peer_state = self.per_peer_state.read().unwrap();
2437
2438                 let peer_state_mutex = per_peer_state.get(&their_network_key)
2439                         .ok_or_else(|| APIError::APIMisuseError{ err: format!("Not connected to node: {}", their_network_key) })?;
2440
2441                 let mut peer_state = peer_state_mutex.lock().unwrap();
2442
2443                 if let Some(temporary_channel_id) = temporary_channel_id {
2444                         if peer_state.channel_by_id.contains_key(&temporary_channel_id) {
2445                                 return Err(APIError::APIMisuseError{ err: format!("Channel with temporary channel ID {} already exists!", temporary_channel_id)});
2446                         }
2447                 }
2448
2449                 let channel = {
2450                         let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
2451                         let their_features = &peer_state.latest_features;
2452                         let config = if override_config.is_some() { override_config.as_ref().unwrap() } else { &self.default_configuration };
2453                         match OutboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider, their_network_key,
2454                                 their_features, channel_value_satoshis, push_msat, user_channel_id, config,
2455                                 self.best_block.read().unwrap().height(), outbound_scid_alias, temporary_channel_id)
2456                         {
2457                                 Ok(res) => res,
2458                                 Err(e) => {
2459                                         self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
2460                                         return Err(e);
2461                                 },
2462                         }
2463                 };
2464                 let res = channel.get_open_channel(self.chain_hash);
2465
2466                 let temporary_channel_id = channel.context.channel_id();
2467                 match peer_state.channel_by_id.entry(temporary_channel_id) {
2468                         hash_map::Entry::Occupied(_) => {
2469                                 if cfg!(fuzzing) {
2470                                         return Err(APIError::APIMisuseError { err: "Fuzzy bad RNG".to_owned() });
2471                                 } else {
2472                                         panic!("RNG is bad???");
2473                                 }
2474                         },
2475                         hash_map::Entry::Vacant(entry) => { entry.insert(ChannelPhase::UnfundedOutboundV1(channel)); }
2476                 }
2477
2478                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
2479                         node_id: their_network_key,
2480                         msg: res,
2481                 });
2482                 Ok(temporary_channel_id)
2483         }
2484
2485         fn list_funded_channels_with_filter<Fn: FnMut(&(&ChannelId, &Channel<SP>)) -> bool + Copy>(&self, f: Fn) -> Vec<ChannelDetails> {
2486                 // Allocate our best estimate of the number of channels we have in the `res`
2487                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2488                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2489                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2490                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2491                 // the same channel.
2492                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2493                 {
2494                         let best_block_height = self.best_block.read().unwrap().height();
2495                         let per_peer_state = self.per_peer_state.read().unwrap();
2496                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2497                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2498                                 let peer_state = &mut *peer_state_lock;
2499                                 res.extend(peer_state.channel_by_id.iter()
2500                                         .filter_map(|(chan_id, phase)| match phase {
2501                                                 // Only `Channels` in the `ChannelPhase::Funded` phase can be considered funded.
2502                                                 ChannelPhase::Funded(chan) => Some((chan_id, chan)),
2503                                                 _ => None,
2504                                         })
2505                                         .filter(f)
2506                                         .map(|(_channel_id, channel)| {
2507                                                 ChannelDetails::from_channel_context(&channel.context, best_block_height,
2508                                                         peer_state.latest_features.clone(), &self.fee_estimator)
2509                                         })
2510                                 );
2511                         }
2512                 }
2513                 res
2514         }
2515
2516         /// Gets the list of open channels, in random order. See [`ChannelDetails`] field documentation for
2517         /// more information.
2518         pub fn list_channels(&self) -> Vec<ChannelDetails> {
2519                 // Allocate our best estimate of the number of channels we have in the `res`
2520                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2521                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2522                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2523                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2524                 // the same channel.
2525                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2526                 {
2527                         let best_block_height = self.best_block.read().unwrap().height();
2528                         let per_peer_state = self.per_peer_state.read().unwrap();
2529                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2530                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2531                                 let peer_state = &mut *peer_state_lock;
2532                                 for context in peer_state.channel_by_id.iter().map(|(_, phase)| phase.context()) {
2533                                         let details = ChannelDetails::from_channel_context(context, best_block_height,
2534                                                 peer_state.latest_features.clone(), &self.fee_estimator);
2535                                         res.push(details);
2536                                 }
2537                         }
2538                 }
2539                 res
2540         }
2541
2542         /// Gets the list of usable channels, in random order. Useful as an argument to
2543         /// [`Router::find_route`] to ensure non-announced channels are used.
2544         ///
2545         /// These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
2546         /// documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
2547         /// are.
2548         pub fn list_usable_channels(&self) -> Vec<ChannelDetails> {
2549                 // Note we use is_live here instead of usable which leads to somewhat confused
2550                 // internal/external nomenclature, but that's ok cause that's probably what the user
2551                 // really wanted anyway.
2552                 self.list_funded_channels_with_filter(|&(_, ref channel)| channel.context.is_live())
2553         }
2554
2555         /// Gets the list of channels we have with a given counterparty, in random order.
2556         pub fn list_channels_with_counterparty(&self, counterparty_node_id: &PublicKey) -> Vec<ChannelDetails> {
2557                 let best_block_height = self.best_block.read().unwrap().height();
2558                 let per_peer_state = self.per_peer_state.read().unwrap();
2559
2560                 if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
2561                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2562                         let peer_state = &mut *peer_state_lock;
2563                         let features = &peer_state.latest_features;
2564                         let context_to_details = |context| {
2565                                 ChannelDetails::from_channel_context(context, best_block_height, features.clone(), &self.fee_estimator)
2566                         };
2567                         return peer_state.channel_by_id
2568                                 .iter()
2569                                 .map(|(_, phase)| phase.context())
2570                                 .map(context_to_details)
2571                                 .collect();
2572                 }
2573                 vec![]
2574         }
2575
2576         /// Returns in an undefined order recent payments that -- if not fulfilled -- have yet to find a
2577         /// successful path, or have unresolved HTLCs.
2578         ///
2579         /// This can be useful for payments that may have been prepared, but ultimately not sent, as a
2580         /// result of a crash. If such a payment exists, is not listed here, and an
2581         /// [`Event::PaymentSent`] has not been received, you may consider resending the payment.
2582         ///
2583         /// [`Event::PaymentSent`]: events::Event::PaymentSent
2584         pub fn list_recent_payments(&self) -> Vec<RecentPaymentDetails> {
2585                 self.pending_outbound_payments.pending_outbound_payments.lock().unwrap().iter()
2586                         .filter_map(|(payment_id, pending_outbound_payment)| match pending_outbound_payment {
2587                                 PendingOutboundPayment::AwaitingInvoice { .. } => {
2588                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
2589                                 },
2590                                 // InvoiceReceived is an intermediate state and doesn't need to be exposed
2591                                 PendingOutboundPayment::InvoiceReceived { .. } => {
2592                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
2593                                 },
2594                                 PendingOutboundPayment::Retryable { payment_hash, total_msat, .. } => {
2595                                         Some(RecentPaymentDetails::Pending {
2596                                                 payment_id: *payment_id,
2597                                                 payment_hash: *payment_hash,
2598                                                 total_msat: *total_msat,
2599                                         })
2600                                 },
2601                                 PendingOutboundPayment::Abandoned { payment_hash, .. } => {
2602                                         Some(RecentPaymentDetails::Abandoned { payment_id: *payment_id, payment_hash: *payment_hash })
2603                                 },
2604                                 PendingOutboundPayment::Fulfilled { payment_hash, .. } => {
2605                                         Some(RecentPaymentDetails::Fulfilled { payment_id: *payment_id, payment_hash: *payment_hash })
2606                                 },
2607                                 PendingOutboundPayment::Legacy { .. } => None
2608                         })
2609                         .collect()
2610         }
2611
2612         /// Helper function that issues the channel close events
2613         fn issue_channel_close_events(&self, context: &ChannelContext<SP>, closure_reason: ClosureReason) {
2614                 let mut pending_events_lock = self.pending_events.lock().unwrap();
2615                 match context.unbroadcasted_funding() {
2616                         Some(transaction) => {
2617                                 pending_events_lock.push_back((events::Event::DiscardFunding {
2618                                         channel_id: context.channel_id(), transaction
2619                                 }, None));
2620                         },
2621                         None => {},
2622                 }
2623                 pending_events_lock.push_back((events::Event::ChannelClosed {
2624                         channel_id: context.channel_id(),
2625                         user_channel_id: context.get_user_id(),
2626                         reason: closure_reason,
2627                         counterparty_node_id: Some(context.get_counterparty_node_id()),
2628                         channel_capacity_sats: Some(context.get_value_satoshis()),
2629                 }, None));
2630         }
2631
2632         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> {
2633                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2634
2635                 let mut failed_htlcs: Vec<(HTLCSource, PaymentHash)>;
2636                 let shutdown_result;
2637                 loop {
2638                         let per_peer_state = self.per_peer_state.read().unwrap();
2639
2640                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
2641                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
2642
2643                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2644                         let peer_state = &mut *peer_state_lock;
2645
2646                         match peer_state.channel_by_id.entry(channel_id.clone()) {
2647                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
2648                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
2649                                                 let funding_txo_opt = chan.context.get_funding_txo();
2650                                                 let their_features = &peer_state.latest_features;
2651                                                 let (shutdown_msg, mut monitor_update_opt, htlcs, local_shutdown_result) =
2652                                                         chan.get_shutdown(&self.signer_provider, their_features, target_feerate_sats_per_1000_weight, override_shutdown_script)?;
2653                                                 failed_htlcs = htlcs;
2654                                                 shutdown_result = local_shutdown_result;
2655                                                 debug_assert_eq!(shutdown_result.is_some(), chan.is_shutdown());
2656
2657                                                 // We can send the `shutdown` message before updating the `ChannelMonitor`
2658                                                 // here as we don't need the monitor update to complete until we send a
2659                                                 // `shutdown_signed`, which we'll delay if we're pending a monitor update.
2660                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
2661                                                         node_id: *counterparty_node_id,
2662                                                         msg: shutdown_msg,
2663                                                 });
2664
2665                                                 debug_assert!(monitor_update_opt.is_none() || !chan.is_shutdown(),
2666                                                         "We can't both complete shutdown and generate a monitor update");
2667
2668                                                 // Update the monitor with the shutdown script if necessary.
2669                                                 if let Some(monitor_update) = monitor_update_opt.take() {
2670                                                         handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
2671                                                                 peer_state_lock, peer_state, per_peer_state, chan);
2672                                                         break;
2673                                                 }
2674
2675                                                 if chan.is_shutdown() {
2676                                                         if let ChannelPhase::Funded(chan) = remove_channel_phase!(self, chan_phase_entry) {
2677                                                                 if let Ok(channel_update) = self.get_channel_update_for_broadcast(&chan) {
2678                                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2679                                                                                 msg: channel_update
2680                                                                         });
2681                                                                 }
2682                                                                 self.issue_channel_close_events(&chan.context, ClosureReason::HolderForceClosed);
2683                                                         }
2684                                                 }
2685                                                 break;
2686                                         }
2687                                 },
2688                                 hash_map::Entry::Vacant(_) => {
2689                                         // If we reach this point, it means that the channel_id either refers to an unfunded channel or
2690                                         // it does not exist for this peer. Either way, we can attempt to force-close it.
2691                                         //
2692                                         // An appropriate error will be returned for non-existence of the channel if that's the case.
2693                                         mem::drop(peer_state_lock);
2694                                         mem::drop(per_peer_state);
2695                                         return self.force_close_channel_with_peer(&channel_id, counterparty_node_id, None, false).map(|_| ())
2696                                 },
2697                         }
2698                 }
2699
2700                 for htlc_source in failed_htlcs.drain(..) {
2701                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2702                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(*counterparty_node_id), channel_id: *channel_id };
2703                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
2704                 }
2705
2706                 if let Some(shutdown_result) = shutdown_result {
2707                         self.finish_close_channel(shutdown_result);
2708                 }
2709
2710                 Ok(())
2711         }
2712
2713         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2714         /// will be accepted on the given channel, and after additional timeout/the closing of all
2715         /// pending HTLCs, the channel will be closed on chain.
2716         ///
2717         ///  * If we are the channel initiator, we will pay between our [`ChannelCloseMinimum`] and
2718         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`NonAnchorChannelFee`]
2719         ///    fee estimate.
2720         ///  * If our counterparty is the channel initiator, we will require a channel closing
2721         ///    transaction feerate of at least our [`ChannelCloseMinimum`] feerate or the feerate which
2722         ///    would appear on a force-closure transaction, whichever is lower. We will allow our
2723         ///    counterparty to pay as much fee as they'd like, however.
2724         ///
2725         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2726         ///
2727         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2728         /// generate a shutdown scriptpubkey or destination script set by
2729         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2730         /// channel.
2731         ///
2732         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2733         /// [`ChannelCloseMinimum`]: crate::chain::chaininterface::ConfirmationTarget::ChannelCloseMinimum
2734         /// [`NonAnchorChannelFee`]: crate::chain::chaininterface::ConfirmationTarget::NonAnchorChannelFee
2735         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2736         pub fn close_channel(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey) -> Result<(), APIError> {
2737                 self.close_channel_internal(channel_id, counterparty_node_id, None, None)
2738         }
2739
2740         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2741         /// will be accepted on the given channel, and after additional timeout/the closing of all
2742         /// pending HTLCs, the channel will be closed on chain.
2743         ///
2744         /// `target_feerate_sat_per_1000_weight` has different meanings depending on if we initiated
2745         /// the channel being closed or not:
2746         ///  * If we are the channel initiator, we will pay at least this feerate on the closing
2747         ///    transaction. The upper-bound is set by
2748         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`NonAnchorChannelFee`]
2749         ///    fee estimate (or `target_feerate_sat_per_1000_weight`, if it is greater).
2750         ///  * If our counterparty is the channel initiator, we will refuse to accept a channel closure
2751         ///    transaction feerate below `target_feerate_sat_per_1000_weight` (or the feerate which
2752         ///    will appear on a force-closure transaction, whichever is lower).
2753         ///
2754         /// The `shutdown_script` provided  will be used as the `scriptPubKey` for the closing transaction.
2755         /// Will fail if a shutdown script has already been set for this channel by
2756         /// ['ChannelHandshakeConfig::commit_upfront_shutdown_pubkey`]. The given shutdown script must
2757         /// also be compatible with our and the counterparty's features.
2758         ///
2759         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2760         ///
2761         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2762         /// generate a shutdown scriptpubkey or destination script set by
2763         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2764         /// channel.
2765         ///
2766         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2767         /// [`NonAnchorChannelFee`]: crate::chain::chaininterface::ConfirmationTarget::NonAnchorChannelFee
2768         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2769         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> {
2770                 self.close_channel_internal(channel_id, counterparty_node_id, target_feerate_sats_per_1000_weight, shutdown_script)
2771         }
2772
2773         fn finish_close_channel(&self, mut shutdown_res: ShutdownResult) {
2774                 debug_assert_ne!(self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
2775                 #[cfg(debug_assertions)]
2776                 for (_, peer) in self.per_peer_state.read().unwrap().iter() {
2777                         debug_assert_ne!(peer.held_by_thread(), LockHeldState::HeldByThread);
2778                 }
2779
2780                 log_debug!(self.logger, "Finishing closure of channel with {} HTLCs to fail", shutdown_res.dropped_outbound_htlcs.len());
2781                 for htlc_source in shutdown_res.dropped_outbound_htlcs.drain(..) {
2782                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
2783                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2784                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2785                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
2786                 }
2787                 if let Some((_, funding_txo, monitor_update)) = shutdown_res.monitor_update {
2788                         // There isn't anything we can do if we get an update failure - we're already
2789                         // force-closing. The monitor update on the required in-memory copy should broadcast
2790                         // the latest local state, which is the best we can do anyway. Thus, it is safe to
2791                         // ignore the result here.
2792                         let _ = self.chain_monitor.update_channel(funding_txo, &monitor_update);
2793                 }
2794                 let mut shutdown_results = Vec::new();
2795                 if let Some(txid) = shutdown_res.unbroadcasted_batch_funding_txid {
2796                         let mut funding_batch_states = self.funding_batch_states.lock().unwrap();
2797                         let affected_channels = funding_batch_states.remove(&txid).into_iter().flatten();
2798                         let per_peer_state = self.per_peer_state.read().unwrap();
2799                         let mut has_uncompleted_channel = None;
2800                         for (channel_id, counterparty_node_id, state) in affected_channels {
2801                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2802                                         let mut peer_state = peer_state_mutex.lock().unwrap();
2803                                         if let Some(mut chan) = peer_state.channel_by_id.remove(&channel_id) {
2804                                                 update_maps_on_chan_removal!(self, &chan.context());
2805                                                 self.issue_channel_close_events(&chan.context(), ClosureReason::FundingBatchClosure);
2806                                                 shutdown_results.push(chan.context_mut().force_shutdown(false));
2807                                         }
2808                                 }
2809                                 has_uncompleted_channel = Some(has_uncompleted_channel.map_or(!state, |v| v || !state));
2810                         }
2811                         debug_assert!(
2812                                 has_uncompleted_channel.unwrap_or(true),
2813                                 "Closing a batch where all channels have completed initial monitor update",
2814                         );
2815                 }
2816                 for shutdown_result in shutdown_results.drain(..) {
2817                         self.finish_close_channel(shutdown_result);
2818                 }
2819         }
2820
2821         /// `peer_msg` should be set when we receive a message from a peer, but not set when the
2822         /// user closes, which will be re-exposed as the `ChannelClosed` reason.
2823         fn force_close_channel_with_peer(&self, channel_id: &ChannelId, peer_node_id: &PublicKey, peer_msg: Option<&String>, broadcast: bool)
2824         -> Result<PublicKey, APIError> {
2825                 let per_peer_state = self.per_peer_state.read().unwrap();
2826                 let peer_state_mutex = per_peer_state.get(peer_node_id)
2827                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", peer_node_id) })?;
2828                 let (update_opt, counterparty_node_id) = {
2829                         let mut peer_state = peer_state_mutex.lock().unwrap();
2830                         let closure_reason = if let Some(peer_msg) = peer_msg {
2831                                 ClosureReason::CounterpartyForceClosed { peer_msg: UntrustedString(peer_msg.to_string()) }
2832                         } else {
2833                                 ClosureReason::HolderForceClosed
2834                         };
2835                         if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(channel_id.clone()) {
2836                                 log_error!(self.logger, "Force-closing channel {}", channel_id);
2837                                 self.issue_channel_close_events(&chan_phase_entry.get().context(), closure_reason);
2838                                 let mut chan_phase = remove_channel_phase!(self, chan_phase_entry);
2839                                 mem::drop(peer_state);
2840                                 mem::drop(per_peer_state);
2841                                 match chan_phase {
2842                                         ChannelPhase::Funded(mut chan) => {
2843                                                 self.finish_close_channel(chan.context.force_shutdown(broadcast));
2844                                                 (self.get_channel_update_for_broadcast(&chan).ok(), chan.context.get_counterparty_node_id())
2845                                         },
2846                                         ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => {
2847                                                 self.finish_close_channel(chan_phase.context_mut().force_shutdown(false));
2848                                                 // Unfunded channel has no update
2849                                                 (None, chan_phase.context().get_counterparty_node_id())
2850                                         },
2851                                 }
2852                         } else if peer_state.inbound_channel_request_by_id.remove(channel_id).is_some() {
2853                                 log_error!(self.logger, "Force-closing channel {}", &channel_id);
2854                                 // N.B. that we don't send any channel close event here: we
2855                                 // don't have a user_channel_id, and we never sent any opening
2856                                 // events anyway.
2857                                 (None, *peer_node_id)
2858                         } else {
2859                                 return Err(APIError::ChannelUnavailable{ err: format!("Channel with id {} not found for the passed counterparty node_id {}", channel_id, peer_node_id) });
2860                         }
2861                 };
2862                 if let Some(update) = update_opt {
2863                         // Try to send the `BroadcastChannelUpdate` to the peer we just force-closed on, but if
2864                         // not try to broadcast it via whatever peer we have.
2865                         let per_peer_state = self.per_peer_state.read().unwrap();
2866                         let a_peer_state_opt = per_peer_state.get(peer_node_id)
2867                                 .ok_or(per_peer_state.values().next());
2868                         if let Ok(a_peer_state_mutex) = a_peer_state_opt {
2869                                 let mut a_peer_state = a_peer_state_mutex.lock().unwrap();
2870                                 a_peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2871                                         msg: update
2872                                 });
2873                         }
2874                 }
2875
2876                 Ok(counterparty_node_id)
2877         }
2878
2879         fn force_close_sending_error(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, broadcast: bool) -> Result<(), APIError> {
2880                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2881                 match self.force_close_channel_with_peer(channel_id, counterparty_node_id, None, broadcast) {
2882                         Ok(counterparty_node_id) => {
2883                                 let per_peer_state = self.per_peer_state.read().unwrap();
2884                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2885                                         let mut peer_state = peer_state_mutex.lock().unwrap();
2886                                         peer_state.pending_msg_events.push(
2887                                                 events::MessageSendEvent::HandleError {
2888                                                         node_id: counterparty_node_id,
2889                                                         action: msgs::ErrorAction::DisconnectPeer {
2890                                                                 msg: Some(msgs::ErrorMessage { channel_id: *channel_id, data: "Channel force-closed".to_owned() })
2891                                                         },
2892                                                 }
2893                                         );
2894                                 }
2895                                 Ok(())
2896                         },
2897                         Err(e) => Err(e)
2898                 }
2899         }
2900
2901         /// Force closes a channel, immediately broadcasting the latest local transaction(s) and
2902         /// rejecting new HTLCs on the given channel. Fails if `channel_id` is unknown to
2903         /// the manager, or if the `counterparty_node_id` isn't the counterparty of the corresponding
2904         /// channel.
2905         pub fn force_close_broadcasting_latest_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey)
2906         -> Result<(), APIError> {
2907                 self.force_close_sending_error(channel_id, counterparty_node_id, true)
2908         }
2909
2910         /// Force closes a channel, rejecting new HTLCs on the given channel but skips broadcasting
2911         /// the latest local transaction(s). Fails if `channel_id` is unknown to the manager, or if the
2912         /// `counterparty_node_id` isn't the counterparty of the corresponding channel.
2913         ///
2914         /// You can always get the latest local transaction(s) to broadcast from
2915         /// [`ChannelMonitor::get_latest_holder_commitment_txn`].
2916         pub fn force_close_without_broadcasting_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey)
2917         -> Result<(), APIError> {
2918                 self.force_close_sending_error(channel_id, counterparty_node_id, false)
2919         }
2920
2921         /// Force close all channels, immediately broadcasting the latest local commitment transaction
2922         /// for each to the chain and rejecting new HTLCs on each.
2923         pub fn force_close_all_channels_broadcasting_latest_txn(&self) {
2924                 for chan in self.list_channels() {
2925                         let _ = self.force_close_broadcasting_latest_txn(&chan.channel_id, &chan.counterparty.node_id);
2926                 }
2927         }
2928
2929         /// Force close all channels rejecting new HTLCs on each but without broadcasting the latest
2930         /// local transaction(s).
2931         pub fn force_close_all_channels_without_broadcasting_txn(&self) {
2932                 for chan in self.list_channels() {
2933                         let _ = self.force_close_without_broadcasting_txn(&chan.channel_id, &chan.counterparty.node_id);
2934                 }
2935         }
2936
2937         fn decode_update_add_htlc_onion(
2938                 &self, msg: &msgs::UpdateAddHTLC
2939         ) -> Result<
2940                 (onion_utils::Hop, [u8; 32], Option<Result<PublicKey, secp256k1::Error>>), HTLCFailureMsg
2941         > {
2942                 let (next_hop, shared_secret, next_packet_details_opt) = decode_incoming_update_add_htlc_onion(
2943                         msg, &self.node_signer, &self.logger, &self.secp_ctx
2944                 )?;
2945
2946                 macro_rules! return_err {
2947                         ($msg: expr, $err_code: expr, $data: expr) => {
2948                                 {
2949                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2950                                         return Err(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
2951                                                 channel_id: msg.channel_id,
2952                                                 htlc_id: msg.htlc_id,
2953                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
2954                                                         .get_encrypted_failure_packet(&shared_secret, &None),
2955                                         }));
2956                                 }
2957                         }
2958                 }
2959
2960                 let NextPacketDetails {
2961                         next_packet_pubkey, outgoing_amt_msat, outgoing_scid, outgoing_cltv_value
2962                 } = match next_packet_details_opt {
2963                         Some(next_packet_details) => next_packet_details,
2964                         // it is a receive, so no need for outbound checks
2965                         None => return Ok((next_hop, shared_secret, None)),
2966                 };
2967
2968                 // Perform outbound checks here instead of in [`Self::construct_pending_htlc_info`] because we
2969                 // can't hold the outbound peer state lock at the same time as the inbound peer state lock.
2970                 if let Some((err, mut code, chan_update)) = loop {
2971                         let id_option = self.short_to_chan_info.read().unwrap().get(&outgoing_scid).cloned();
2972                         let forwarding_chan_info_opt = match id_option {
2973                                 None => { // unknown_next_peer
2974                                         // Note that this is likely a timing oracle for detecting whether an scid is a
2975                                         // phantom or an intercept.
2976                                         if (self.default_configuration.accept_intercept_htlcs &&
2977                                                 fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, outgoing_scid, &self.chain_hash)) ||
2978                                                 fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, outgoing_scid, &self.chain_hash)
2979                                         {
2980                                                 None
2981                                         } else {
2982                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2983                                         }
2984                                 },
2985                                 Some((cp_id, id)) => Some((cp_id.clone(), id.clone())),
2986                         };
2987                         let chan_update_opt = if let Some((counterparty_node_id, forwarding_id)) = forwarding_chan_info_opt {
2988                                 let per_peer_state = self.per_peer_state.read().unwrap();
2989                                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
2990                                 if peer_state_mutex_opt.is_none() {
2991                                         break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2992                                 }
2993                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
2994                                 let peer_state = &mut *peer_state_lock;
2995                                 let chan = match peer_state.channel_by_id.get_mut(&forwarding_id).map(
2996                                         |chan_phase| if let ChannelPhase::Funded(chan) = chan_phase { Some(chan) } else { None }
2997                                 ).flatten() {
2998                                         None => {
2999                                                 // Channel was removed. The short_to_chan_info and channel_by_id maps
3000                                                 // have no consistency guarantees.
3001                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
3002                                         },
3003                                         Some(chan) => chan
3004                                 };
3005                                 if !chan.context.should_announce() && !self.default_configuration.accept_forwards_to_priv_channels {
3006                                         // Note that the behavior here should be identical to the above block - we
3007                                         // should NOT reveal the existence or non-existence of a private channel if
3008                                         // we don't allow forwards outbound over them.
3009                                         break Some(("Refusing to forward to a private channel based on our config.", 0x4000 | 10, None));
3010                                 }
3011                                 if chan.context.get_channel_type().supports_scid_privacy() && outgoing_scid != chan.context.outbound_scid_alias() {
3012                                         // `option_scid_alias` (referred to in LDK as `scid_privacy`) means
3013                                         // "refuse to forward unless the SCID alias was used", so we pretend
3014                                         // we don't have the channel here.
3015                                         break Some(("Refusing to forward over real channel SCID as our counterparty requested.", 0x4000 | 10, None));
3016                                 }
3017                                 let chan_update_opt = self.get_channel_update_for_onion(outgoing_scid, chan).ok();
3018
3019                                 // Note that we could technically not return an error yet here and just hope
3020                                 // that the connection is reestablished or monitor updated by the time we get
3021                                 // around to doing the actual forward, but better to fail early if we can and
3022                                 // hopefully an attacker trying to path-trace payments cannot make this occur
3023                                 // on a small/per-node/per-channel scale.
3024                                 if !chan.context.is_live() { // channel_disabled
3025                                         // If the channel_update we're going to return is disabled (i.e. the
3026                                         // peer has been disabled for some time), return `channel_disabled`,
3027                                         // otherwise return `temporary_channel_failure`.
3028                                         if chan_update_opt.as_ref().map(|u| u.contents.flags & 2 == 2).unwrap_or(false) {
3029                                                 break Some(("Forwarding channel has been disconnected for some time.", 0x1000 | 20, chan_update_opt));
3030                                         } else {
3031                                                 break Some(("Forwarding channel is not in a ready state.", 0x1000 | 7, chan_update_opt));
3032                                         }
3033                                 }
3034                                 if outgoing_amt_msat < chan.context.get_counterparty_htlc_minimum_msat() { // amount_below_minimum
3035                                         break Some(("HTLC amount was below the htlc_minimum_msat", 0x1000 | 11, chan_update_opt));
3036                                 }
3037                                 if let Err((err, code)) = chan.htlc_satisfies_config(&msg, outgoing_amt_msat, outgoing_cltv_value) {
3038                                         break Some((err, code, chan_update_opt));
3039                                 }
3040                                 chan_update_opt
3041                         } else {
3042                                 None
3043                         };
3044
3045                         let cur_height = self.best_block.read().unwrap().height() + 1;
3046
3047                         if let Err((err_msg, code)) = check_incoming_htlc_cltv(
3048                                 cur_height, outgoing_cltv_value, msg.cltv_expiry
3049                         ) {
3050                                 if code & 0x1000 != 0 && chan_update_opt.is_none() {
3051                                         // We really should set `incorrect_cltv_expiry` here but as we're not
3052                                         // forwarding over a real channel we can't generate a channel_update
3053                                         // for it. Instead we just return a generic temporary_node_failure.
3054                                         break Some((err_msg, 0x2000 | 2, None))
3055                                 }
3056                                 let chan_update_opt = if code & 0x1000 != 0 { chan_update_opt } else { None };
3057                                 break Some((err_msg, code, chan_update_opt));
3058                         }
3059
3060                         break None;
3061                 }
3062                 {
3063                         let mut res = VecWriter(Vec::with_capacity(chan_update.serialized_length() + 2 + 8 + 2));
3064                         if let Some(chan_update) = chan_update {
3065                                 if code == 0x1000 | 11 || code == 0x1000 | 12 {
3066                                         msg.amount_msat.write(&mut res).expect("Writes cannot fail");
3067                                 }
3068                                 else if code == 0x1000 | 13 {
3069                                         msg.cltv_expiry.write(&mut res).expect("Writes cannot fail");
3070                                 }
3071                                 else if code == 0x1000 | 20 {
3072                                         // TODO: underspecified, follow https://github.com/lightning/bolts/issues/791
3073                                         0u16.write(&mut res).expect("Writes cannot fail");
3074                                 }
3075                                 (chan_update.serialized_length() as u16 + 2).write(&mut res).expect("Writes cannot fail");
3076                                 msgs::ChannelUpdate::TYPE.write(&mut res).expect("Writes cannot fail");
3077                                 chan_update.write(&mut res).expect("Writes cannot fail");
3078                         } else if code & 0x1000 == 0x1000 {
3079                                 // If we're trying to return an error that requires a `channel_update` but
3080                                 // we're forwarding to a phantom or intercept "channel" (i.e. cannot
3081                                 // generate an update), just use the generic "temporary_node_failure"
3082                                 // instead.
3083                                 code = 0x2000 | 2;
3084                         }
3085                         return_err!(err, code, &res.0[..]);
3086                 }
3087                 Ok((next_hop, shared_secret, Some(next_packet_pubkey)))
3088         }
3089
3090         fn construct_pending_htlc_status<'a>(
3091                 &self, msg: &msgs::UpdateAddHTLC, shared_secret: [u8; 32], decoded_hop: onion_utils::Hop,
3092                 allow_underpay: bool, next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>
3093         ) -> PendingHTLCStatus {
3094                 macro_rules! return_err {
3095                         ($msg: expr, $err_code: expr, $data: expr) => {
3096                                 {
3097                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3098                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
3099                                                 channel_id: msg.channel_id,
3100                                                 htlc_id: msg.htlc_id,
3101                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
3102                                                         .get_encrypted_failure_packet(&shared_secret, &None),
3103                                         }));
3104                                 }
3105                         }
3106                 }
3107                 match decoded_hop {
3108                         onion_utils::Hop::Receive(next_hop_data) => {
3109                                 // OUR PAYMENT!
3110                                 let current_height: u32 = self.best_block.read().unwrap().height();
3111                                 match create_recv_pending_htlc_info(next_hop_data, shared_secret, msg.payment_hash,
3112                                         msg.amount_msat, msg.cltv_expiry, None, allow_underpay, msg.skimmed_fee_msat,
3113                                         current_height, self.default_configuration.accept_mpp_keysend)
3114                                 {
3115                                         Ok(info) => {
3116                                                 // Note that we could obviously respond immediately with an update_fulfill_htlc
3117                                                 // message, however that would leak that we are the recipient of this payment, so
3118                                                 // instead we stay symmetric with the forwarding case, only responding (after a
3119                                                 // delay) once they've send us a commitment_signed!
3120                                                 PendingHTLCStatus::Forward(info)
3121                                         },
3122                                         Err(InboundOnionErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3123                                 }
3124                         },
3125                         onion_utils::Hop::Forward { next_hop_data, next_hop_hmac, new_packet_bytes } => {
3126                                 match create_fwd_pending_htlc_info(msg, next_hop_data, next_hop_hmac,
3127                                         new_packet_bytes, shared_secret, next_packet_pubkey_opt) {
3128                                         Ok(info) => PendingHTLCStatus::Forward(info),
3129                                         Err(InboundOnionErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3130                                 }
3131                         }
3132                 }
3133         }
3134
3135         /// Gets the current [`channel_update`] for the given channel. This first checks if the channel is
3136         /// public, and thus should be called whenever the result is going to be passed out in a
3137         /// [`MessageSendEvent::BroadcastChannelUpdate`] event.
3138         ///
3139         /// Note that in [`internal_closing_signed`], this function is called without the `peer_state`
3140         /// corresponding to the channel's counterparty locked, as the channel been removed from the
3141         /// storage and the `peer_state` lock has been dropped.
3142         ///
3143         /// [`channel_update`]: msgs::ChannelUpdate
3144         /// [`internal_closing_signed`]: Self::internal_closing_signed
3145         fn get_channel_update_for_broadcast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3146                 if !chan.context.should_announce() {
3147                         return Err(LightningError {
3148                                 err: "Cannot broadcast a channel_update for a private channel".to_owned(),
3149                                 action: msgs::ErrorAction::IgnoreError
3150                         });
3151                 }
3152                 if chan.context.get_short_channel_id().is_none() {
3153                         return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError});
3154                 }
3155                 log_trace!(self.logger, "Attempting to generate broadcast channel update for channel {}", &chan.context.channel_id());
3156                 self.get_channel_update_for_unicast(chan)
3157         }
3158
3159         /// Gets the current [`channel_update`] for the given channel. This does not check if the channel
3160         /// is public (only returning an `Err` if the channel does not yet have an assigned SCID),
3161         /// and thus MUST NOT be called unless the recipient of the resulting message has already
3162         /// provided evidence that they know about the existence of the channel.
3163         ///
3164         /// Note that through [`internal_closing_signed`], this function is called without the
3165         /// `peer_state`  corresponding to the channel's counterparty locked, as the channel been
3166         /// removed from the storage and the `peer_state` lock has been dropped.
3167         ///
3168         /// [`channel_update`]: msgs::ChannelUpdate
3169         /// [`internal_closing_signed`]: Self::internal_closing_signed
3170         fn get_channel_update_for_unicast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3171                 log_trace!(self.logger, "Attempting to generate channel update for channel {}", &chan.context.channel_id());
3172                 let short_channel_id = match chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias()) {
3173                         None => return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError}),
3174                         Some(id) => id,
3175                 };
3176
3177                 self.get_channel_update_for_onion(short_channel_id, chan)
3178         }
3179
3180         fn get_channel_update_for_onion(&self, short_channel_id: u64, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3181                 log_trace!(self.logger, "Generating channel update for channel {}", &chan.context.channel_id());
3182                 let were_node_one = self.our_network_pubkey.serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
3183
3184                 let enabled = chan.context.is_usable() && match chan.channel_update_status() {
3185                         ChannelUpdateStatus::Enabled => true,
3186                         ChannelUpdateStatus::DisabledStaged(_) => true,
3187                         ChannelUpdateStatus::Disabled => false,
3188                         ChannelUpdateStatus::EnabledStaged(_) => false,
3189                 };
3190
3191                 let unsigned = msgs::UnsignedChannelUpdate {
3192                         chain_hash: self.chain_hash,
3193                         short_channel_id,
3194                         timestamp: chan.context.get_update_time_counter(),
3195                         flags: (!were_node_one) as u8 | ((!enabled as u8) << 1),
3196                         cltv_expiry_delta: chan.context.get_cltv_expiry_delta(),
3197                         htlc_minimum_msat: chan.context.get_counterparty_htlc_minimum_msat(),
3198                         htlc_maximum_msat: chan.context.get_announced_htlc_max_msat(),
3199                         fee_base_msat: chan.context.get_outbound_forwarding_fee_base_msat(),
3200                         fee_proportional_millionths: chan.context.get_fee_proportional_millionths(),
3201                         excess_data: Vec::new(),
3202                 };
3203                 // Panic on failure to signal LDK should be restarted to retry signing the `ChannelUpdate`.
3204                 // If we returned an error and the `node_signer` cannot provide a signature for whatever
3205                 // reason`, we wouldn't be able to receive inbound payments through the corresponding
3206                 // channel.
3207                 let sig = self.node_signer.sign_gossip_message(msgs::UnsignedGossipMessage::ChannelUpdate(&unsigned)).unwrap();
3208
3209                 Ok(msgs::ChannelUpdate {
3210                         signature: sig,
3211                         contents: unsigned
3212                 })
3213         }
3214
3215         #[cfg(test)]
3216         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> {
3217                 let _lck = self.total_consistency_lock.read().unwrap();
3218                 self.send_payment_along_path(SendAlongPathArgs {
3219                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
3220                         session_priv_bytes
3221                 })
3222         }
3223
3224         fn send_payment_along_path(&self, args: SendAlongPathArgs) -> Result<(), APIError> {
3225                 let SendAlongPathArgs {
3226                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
3227                         session_priv_bytes
3228                 } = args;
3229                 // The top-level caller should hold the total_consistency_lock read lock.
3230                 debug_assert!(self.total_consistency_lock.try_write().is_err());
3231
3232                 log_trace!(self.logger,
3233                         "Attempting to send payment with payment hash {} along path with next hop {}",
3234                         payment_hash, path.hops.first().unwrap().short_channel_id);
3235                 let prng_seed = self.entropy_source.get_secure_random_bytes();
3236                 let session_priv = SecretKey::from_slice(&session_priv_bytes[..]).expect("RNG is busted");
3237
3238                 let (onion_packet, htlc_msat, htlc_cltv) = onion_utils::create_payment_onion(
3239                         &self.secp_ctx, &path, &session_priv, total_value, recipient_onion, cur_height,
3240                         payment_hash, keysend_preimage, prng_seed
3241                 )?;
3242
3243                 let err: Result<(), _> = loop {
3244                         let (counterparty_node_id, id) = match self.short_to_chan_info.read().unwrap().get(&path.hops.first().unwrap().short_channel_id) {
3245                                 None => return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()}),
3246                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
3247                         };
3248
3249                         let per_peer_state = self.per_peer_state.read().unwrap();
3250                         let peer_state_mutex = per_peer_state.get(&counterparty_node_id)
3251                                 .ok_or_else(|| APIError::ChannelUnavailable{err: "No peer matching the path's first hop found!".to_owned() })?;
3252                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3253                         let peer_state = &mut *peer_state_lock;
3254                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(id) {
3255                                 match chan_phase_entry.get_mut() {
3256                                         ChannelPhase::Funded(chan) => {
3257                                                 if !chan.context.is_live() {
3258                                                         return Err(APIError::ChannelUnavailable{err: "Peer for first hop currently disconnected".to_owned()});
3259                                                 }
3260                                                 let funding_txo = chan.context.get_funding_txo().unwrap();
3261                                                 let send_res = chan.send_htlc_and_commit(htlc_msat, payment_hash.clone(),
3262                                                         htlc_cltv, HTLCSource::OutboundRoute {
3263                                                                 path: path.clone(),
3264                                                                 session_priv: session_priv.clone(),
3265                                                                 first_hop_htlc_msat: htlc_msat,
3266                                                                 payment_id,
3267                                                         }, onion_packet, None, &self.fee_estimator, &self.logger);
3268                                                 match break_chan_phase_entry!(self, send_res, chan_phase_entry) {
3269                                                         Some(monitor_update) => {
3270                                                                 match handle_new_monitor_update!(self, funding_txo, monitor_update, peer_state_lock, peer_state, per_peer_state, chan) {
3271                                                                         false => {
3272                                                                                 // Note that MonitorUpdateInProgress here indicates (per function
3273                                                                                 // docs) that we will resend the commitment update once monitor
3274                                                                                 // updating completes. Therefore, we must return an error
3275                                                                                 // indicating that it is unsafe to retry the payment wholesale,
3276                                                                                 // which we do in the send_payment check for
3277                                                                                 // MonitorUpdateInProgress, below.
3278                                                                                 return Err(APIError::MonitorUpdateInProgress);
3279                                                                         },
3280                                                                         true => {},
3281                                                                 }
3282                                                         },
3283                                                         None => {},
3284                                                 }
3285                                         },
3286                                         _ => return Err(APIError::ChannelUnavailable{err: "Channel to first hop is unfunded".to_owned()}),
3287                                 };
3288                         } else {
3289                                 // The channel was likely removed after we fetched the id from the
3290                                 // `short_to_chan_info` map, but before we successfully locked the
3291                                 // `channel_by_id` map.
3292                                 // This can occur as no consistency guarantees exists between the two maps.
3293                                 return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()});
3294                         }
3295                         return Ok(());
3296                 };
3297
3298                 match handle_error!(self, err, path.hops.first().unwrap().pubkey) {
3299                         Ok(_) => unreachable!(),
3300                         Err(e) => {
3301                                 Err(APIError::ChannelUnavailable { err: e.err })
3302                         },
3303                 }
3304         }
3305
3306         /// Sends a payment along a given route.
3307         ///
3308         /// Value parameters are provided via the last hop in route, see documentation for [`RouteHop`]
3309         /// fields for more info.
3310         ///
3311         /// May generate [`UpdateHTLCs`] message(s) event on success, which should be relayed (e.g. via
3312         /// [`PeerManager::process_events`]).
3313         ///
3314         /// # Avoiding Duplicate Payments
3315         ///
3316         /// If a pending payment is currently in-flight with the same [`PaymentId`] provided, this
3317         /// method will error with an [`APIError::InvalidRoute`]. Note, however, that once a payment
3318         /// is no longer pending (either via [`ChannelManager::abandon_payment`], or handling of an
3319         /// [`Event::PaymentSent`] or [`Event::PaymentFailed`]) LDK will not stop you from sending a
3320         /// second payment with the same [`PaymentId`].
3321         ///
3322         /// Thus, in order to ensure duplicate payments are not sent, you should implement your own
3323         /// tracking of payments, including state to indicate once a payment has completed. Because you
3324         /// should also ensure that [`PaymentHash`]es are not re-used, for simplicity, you should
3325         /// consider using the [`PaymentHash`] as the key for tracking payments. In that case, the
3326         /// [`PaymentId`] should be a copy of the [`PaymentHash`] bytes.
3327         ///
3328         /// Additionally, in the scenario where we begin the process of sending a payment, but crash
3329         /// before `send_payment` returns (or prior to [`ChannelMonitorUpdate`] persistence if you're
3330         /// using [`ChannelMonitorUpdateStatus::InProgress`]), the payment may be lost on restart. See
3331         /// [`ChannelManager::list_recent_payments`] for more information.
3332         ///
3333         /// # Possible Error States on [`PaymentSendFailure`]
3334         ///
3335         /// Each path may have a different return value, and [`PaymentSendFailure`] may return a `Vec` with
3336         /// each entry matching the corresponding-index entry in the route paths, see
3337         /// [`PaymentSendFailure`] for more info.
3338         ///
3339         /// In general, a path may raise:
3340         ///  * [`APIError::InvalidRoute`] when an invalid route or forwarding parameter (cltv_delta, fee,
3341         ///    node public key) is specified.
3342         ///  * [`APIError::ChannelUnavailable`] if the next-hop channel is not available as it has been
3343         ///    closed, doesn't exist, or the peer is currently disconnected.
3344         ///  * [`APIError::MonitorUpdateInProgress`] if a new monitor update failure prevented sending the
3345         ///    relevant updates.
3346         ///
3347         /// Note that depending on the type of the [`PaymentSendFailure`] the HTLC may have been
3348         /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
3349         /// different route unless you intend to pay twice!
3350         ///
3351         /// [`RouteHop`]: crate::routing::router::RouteHop
3352         /// [`Event::PaymentSent`]: events::Event::PaymentSent
3353         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
3354         /// [`UpdateHTLCs`]: events::MessageSendEvent::UpdateHTLCs
3355         /// [`PeerManager::process_events`]: crate::ln::peer_handler::PeerManager::process_events
3356         /// [`ChannelMonitorUpdateStatus::InProgress`]: crate::chain::ChannelMonitorUpdateStatus::InProgress
3357         pub fn send_payment_with_route(&self, route: &Route, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<(), PaymentSendFailure> {
3358                 let best_block_height = self.best_block.read().unwrap().height();
3359                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3360                 self.pending_outbound_payments
3361                         .send_payment_with_route(route, payment_hash, recipient_onion, payment_id,
3362                                 &self.entropy_source, &self.node_signer, best_block_height,
3363                                 |args| self.send_payment_along_path(args))
3364         }
3365
3366         /// Similar to [`ChannelManager::send_payment_with_route`], but will automatically find a route based on
3367         /// `route_params` and retry failed payment paths based on `retry_strategy`.
3368         pub fn send_payment(&self, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId, route_params: RouteParameters, retry_strategy: Retry) -> Result<(), RetryableSendFailure> {
3369                 let best_block_height = self.best_block.read().unwrap().height();
3370                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3371                 self.pending_outbound_payments
3372                         .send_payment(payment_hash, recipient_onion, payment_id, retry_strategy, route_params,
3373                                 &self.router, self.list_usable_channels(), || self.compute_inflight_htlcs(),
3374                                 &self.entropy_source, &self.node_signer, best_block_height, &self.logger,
3375                                 &self.pending_events, |args| self.send_payment_along_path(args))
3376         }
3377
3378         #[cfg(test)]
3379         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> {
3380                 let best_block_height = self.best_block.read().unwrap().height();
3381                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3382                 self.pending_outbound_payments.test_send_payment_internal(route, payment_hash, recipient_onion,
3383                         keysend_preimage, payment_id, recv_value_msat, onion_session_privs, &self.node_signer,
3384                         best_block_height, |args| self.send_payment_along_path(args))
3385         }
3386
3387         #[cfg(test)]
3388         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> {
3389                 let best_block_height = self.best_block.read().unwrap().height();
3390                 self.pending_outbound_payments.test_add_new_pending_payment(payment_hash, recipient_onion, payment_id, route, None, &self.entropy_source, best_block_height)
3391         }
3392
3393         #[cfg(test)]
3394         pub(crate) fn test_set_payment_metadata(&self, payment_id: PaymentId, new_payment_metadata: Option<Vec<u8>>) {
3395                 self.pending_outbound_payments.test_set_payment_metadata(payment_id, new_payment_metadata);
3396         }
3397
3398         pub(super) fn send_payment_for_bolt12_invoice(&self, invoice: &Bolt12Invoice, payment_id: PaymentId) -> Result<(), Bolt12PaymentError> {
3399                 let best_block_height = self.best_block.read().unwrap().height();
3400                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3401                 self.pending_outbound_payments
3402                         .send_payment_for_bolt12_invoice(
3403                                 invoice, payment_id, &self.router, self.list_usable_channels(),
3404                                 || self.compute_inflight_htlcs(), &self.entropy_source, &self.node_signer,
3405                                 best_block_height, &self.logger, &self.pending_events,
3406                                 |args| self.send_payment_along_path(args)
3407                         )
3408         }
3409
3410         /// Signals that no further attempts for the given payment should occur. Useful if you have a
3411         /// pending outbound payment with retries remaining, but wish to stop retrying the payment before
3412         /// retries are exhausted.
3413         ///
3414         /// # Event Generation
3415         ///
3416         /// If no [`Event::PaymentFailed`] event had been generated before, one will be generated as soon
3417         /// as there are no remaining pending HTLCs for this payment.
3418         ///
3419         /// Note that calling this method does *not* prevent a payment from succeeding. You must still
3420         /// wait until you receive either a [`Event::PaymentFailed`] or [`Event::PaymentSent`] event to
3421         /// determine the ultimate status of a payment.
3422         ///
3423         /// # Requested Invoices
3424         ///
3425         /// In the case of paying a [`Bolt12Invoice`] via [`ChannelManager::pay_for_offer`], abandoning
3426         /// the payment prior to receiving the invoice will result in an [`Event::InvoiceRequestFailed`]
3427         /// and prevent any attempts at paying it once received. The other events may only be generated
3428         /// once the invoice has been received.
3429         ///
3430         /// # Restart Behavior
3431         ///
3432         /// If an [`Event::PaymentFailed`] is generated and we restart without first persisting the
3433         /// [`ChannelManager`], another [`Event::PaymentFailed`] may be generated; likewise for
3434         /// [`Event::InvoiceRequestFailed`].
3435         ///
3436         /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
3437         pub fn abandon_payment(&self, payment_id: PaymentId) {
3438                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3439                 self.pending_outbound_payments.abandon_payment(payment_id, PaymentFailureReason::UserAbandoned, &self.pending_events);
3440         }
3441
3442         /// Send a spontaneous payment, which is a payment that does not require the recipient to have
3443         /// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
3444         /// the preimage, it must be a cryptographically secure random value that no intermediate node
3445         /// would be able to guess -- otherwise, an intermediate node may claim the payment and it will
3446         /// never reach the recipient.
3447         ///
3448         /// See [`send_payment`] documentation for more details on the return value of this function
3449         /// and idempotency guarantees provided by the [`PaymentId`] key.
3450         ///
3451         /// Similar to regular payments, you MUST NOT reuse a `payment_preimage` value. See
3452         /// [`send_payment`] for more information about the risks of duplicate preimage usage.
3453         ///
3454         /// [`send_payment`]: Self::send_payment
3455         pub fn send_spontaneous_payment(&self, route: &Route, payment_preimage: Option<PaymentPreimage>, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<PaymentHash, PaymentSendFailure> {
3456                 let best_block_height = self.best_block.read().unwrap().height();
3457                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3458                 self.pending_outbound_payments.send_spontaneous_payment_with_route(
3459                         route, payment_preimage, recipient_onion, payment_id, &self.entropy_source,
3460                         &self.node_signer, best_block_height, |args| self.send_payment_along_path(args))
3461         }
3462
3463         /// Similar to [`ChannelManager::send_spontaneous_payment`], but will automatically find a route
3464         /// based on `route_params` and retry failed payment paths based on `retry_strategy`.
3465         ///
3466         /// See [`PaymentParameters::for_keysend`] for help in constructing `route_params` for spontaneous
3467         /// payments.
3468         ///
3469         /// [`PaymentParameters::for_keysend`]: crate::routing::router::PaymentParameters::for_keysend
3470         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> {
3471                 let best_block_height = self.best_block.read().unwrap().height();
3472                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3473                 self.pending_outbound_payments.send_spontaneous_payment(payment_preimage, recipient_onion,
3474                         payment_id, retry_strategy, route_params, &self.router, self.list_usable_channels(),
3475                         || self.compute_inflight_htlcs(),  &self.entropy_source, &self.node_signer, best_block_height,
3476                         &self.logger, &self.pending_events, |args| self.send_payment_along_path(args))
3477         }
3478
3479         /// Send a payment that is probing the given route for liquidity. We calculate the
3480         /// [`PaymentHash`] of probes based on a static secret and a random [`PaymentId`], which allows
3481         /// us to easily discern them from real payments.
3482         pub fn send_probe(&self, path: Path) -> Result<(PaymentHash, PaymentId), PaymentSendFailure> {
3483                 let best_block_height = self.best_block.read().unwrap().height();
3484                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3485                 self.pending_outbound_payments.send_probe(path, self.probing_cookie_secret,
3486                         &self.entropy_source, &self.node_signer, best_block_height,
3487                         |args| self.send_payment_along_path(args))
3488         }
3489
3490         /// Returns whether a payment with the given [`PaymentHash`] and [`PaymentId`] is, in fact, a
3491         /// payment probe.
3492         #[cfg(test)]
3493         pub(crate) fn payment_is_probe(&self, payment_hash: &PaymentHash, payment_id: &PaymentId) -> bool {
3494                 outbound_payment::payment_is_probe(payment_hash, payment_id, self.probing_cookie_secret)
3495         }
3496
3497         /// Sends payment probes over all paths of a route that would be used to pay the given
3498         /// amount to the given `node_id`.
3499         ///
3500         /// See [`ChannelManager::send_preflight_probes`] for more information.
3501         pub fn send_spontaneous_preflight_probes(
3502                 &self, node_id: PublicKey, amount_msat: u64, final_cltv_expiry_delta: u32,
3503                 liquidity_limit_multiplier: Option<u64>,
3504         ) -> Result<Vec<(PaymentHash, PaymentId)>, ProbeSendFailure> {
3505                 let payment_params =
3506                         PaymentParameters::from_node_id(node_id, final_cltv_expiry_delta);
3507
3508                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, amount_msat);
3509
3510                 self.send_preflight_probes(route_params, liquidity_limit_multiplier)
3511         }
3512
3513         /// Sends payment probes over all paths of a route that would be used to pay a route found
3514         /// according to the given [`RouteParameters`].
3515         ///
3516         /// This may be used to send "pre-flight" probes, i.e., to train our scorer before conducting
3517         /// the actual payment. Note this is only useful if there likely is sufficient time for the
3518         /// probe to settle before sending out the actual payment, e.g., when waiting for user
3519         /// confirmation in a wallet UI.
3520         ///
3521         /// Otherwise, there is a chance the probe could take up some liquidity needed to complete the
3522         /// actual payment. Users should therefore be cautious and might avoid sending probes if
3523         /// liquidity is scarce and/or they don't expect the probe to return before they send the
3524         /// payment. To mitigate this issue, channels with available liquidity less than the required
3525         /// amount times the given `liquidity_limit_multiplier` won't be used to send pre-flight
3526         /// probes. If `None` is given as `liquidity_limit_multiplier`, it defaults to `3`.
3527         pub fn send_preflight_probes(
3528                 &self, route_params: RouteParameters, liquidity_limit_multiplier: Option<u64>,
3529         ) -> Result<Vec<(PaymentHash, PaymentId)>, ProbeSendFailure> {
3530                 let liquidity_limit_multiplier = liquidity_limit_multiplier.unwrap_or(3);
3531
3532                 let payer = self.get_our_node_id();
3533                 let usable_channels = self.list_usable_channels();
3534                 let first_hops = usable_channels.iter().collect::<Vec<_>>();
3535                 let inflight_htlcs = self.compute_inflight_htlcs();
3536
3537                 let route = self
3538                         .router
3539                         .find_route(&payer, &route_params, Some(&first_hops), inflight_htlcs)
3540                         .map_err(|e| {
3541                                 log_error!(self.logger, "Failed to find path for payment probe: {:?}", e);
3542                                 ProbeSendFailure::RouteNotFound
3543                         })?;
3544
3545                 let mut used_liquidity_map = HashMap::with_capacity(first_hops.len());
3546
3547                 let mut res = Vec::new();
3548
3549                 for mut path in route.paths {
3550                         // If the last hop is probably an unannounced channel we refrain from probing all the
3551                         // way through to the end and instead probe up to the second-to-last channel.
3552                         while let Some(last_path_hop) = path.hops.last() {
3553                                 if last_path_hop.maybe_announced_channel {
3554                                         // We found a potentially announced last hop.
3555                                         break;
3556                                 } else {
3557                                         // Drop the last hop, as it's likely unannounced.
3558                                         log_debug!(
3559                                                 self.logger,
3560                                                 "Avoided sending payment probe all the way to last hop {} as it is likely unannounced.",
3561                                                 last_path_hop.short_channel_id
3562                                         );
3563                                         let final_value_msat = path.final_value_msat();
3564                                         path.hops.pop();
3565                                         if let Some(new_last) = path.hops.last_mut() {
3566                                                 new_last.fee_msat += final_value_msat;
3567                                         }
3568                                 }
3569                         }
3570
3571                         if path.hops.len() < 2 {
3572                                 log_debug!(
3573                                         self.logger,
3574                                         "Skipped sending payment probe over path with less than two hops."
3575                                 );
3576                                 continue;
3577                         }
3578
3579                         if let Some(first_path_hop) = path.hops.first() {
3580                                 if let Some(first_hop) = first_hops.iter().find(|h| {
3581                                         h.get_outbound_payment_scid() == Some(first_path_hop.short_channel_id)
3582                                 }) {
3583                                         let path_value = path.final_value_msat() + path.fee_msat();
3584                                         let used_liquidity =
3585                                                 used_liquidity_map.entry(first_path_hop.short_channel_id).or_insert(0);
3586
3587                                         if first_hop.next_outbound_htlc_limit_msat
3588                                                 < (*used_liquidity + path_value) * liquidity_limit_multiplier
3589                                         {
3590                                                 log_debug!(self.logger, "Skipped sending payment probe to avoid putting channel {} under the liquidity limit.", first_path_hop.short_channel_id);
3591                                                 continue;
3592                                         } else {
3593                                                 *used_liquidity += path_value;
3594                                         }
3595                                 }
3596                         }
3597
3598                         res.push(self.send_probe(path).map_err(|e| {
3599                                 log_error!(self.logger, "Failed to send pre-flight probe: {:?}", e);
3600                                 ProbeSendFailure::SendingFailed(e)
3601                         })?);
3602                 }
3603
3604                 Ok(res)
3605         }
3606
3607         /// Handles the generation of a funding transaction, optionally (for tests) with a function
3608         /// which checks the correctness of the funding transaction given the associated channel.
3609         fn funding_transaction_generated_intern<FundingOutput: FnMut(&OutboundV1Channel<SP>, &Transaction) -> Result<OutPoint, APIError>>(
3610                 &self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, is_batch_funding: bool,
3611                 mut find_funding_output: FundingOutput,
3612         ) -> Result<(), APIError> {
3613                 let per_peer_state = self.per_peer_state.read().unwrap();
3614                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3615                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3616
3617                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3618                 let peer_state = &mut *peer_state_lock;
3619                 let (chan, msg_opt) = match peer_state.channel_by_id.remove(temporary_channel_id) {
3620                         Some(ChannelPhase::UnfundedOutboundV1(chan)) => {
3621                                 let funding_txo = find_funding_output(&chan, &funding_transaction)?;
3622
3623                                 let funding_res = chan.get_funding_created(funding_transaction, funding_txo, is_batch_funding, &self.logger)
3624                                         .map_err(|(mut chan, e)| if let ChannelError::Close(msg) = e {
3625                                                 let channel_id = chan.context.channel_id();
3626                                                 let user_id = chan.context.get_user_id();
3627                                                 let shutdown_res = chan.context.force_shutdown(false);
3628                                                 let channel_capacity = chan.context.get_value_satoshis();
3629                                                 (chan, MsgHandleErrInternal::from_finish_shutdown(msg, channel_id, user_id, shutdown_res, None, channel_capacity))
3630                                         } else { unreachable!(); });
3631                                 match funding_res {
3632                                         Ok((chan, funding_msg)) => (chan, funding_msg),
3633                                         Err((chan, err)) => {
3634                                                 mem::drop(peer_state_lock);
3635                                                 mem::drop(per_peer_state);
3636
3637                                                 let _: Result<(), _> = handle_error!(self, Err(err), chan.context.get_counterparty_node_id());
3638                                                 return Err(APIError::ChannelUnavailable {
3639                                                         err: "Signer refused to sign the initial commitment transaction".to_owned()
3640                                                 });
3641                                         },
3642                                 }
3643                         },
3644                         Some(phase) => {
3645                                 peer_state.channel_by_id.insert(*temporary_channel_id, phase);
3646                                 return Err(APIError::APIMisuseError {
3647                                         err: format!(
3648                                                 "Channel with id {} for the passed counterparty node_id {} is not an unfunded, outbound V1 channel",
3649                                                 temporary_channel_id, counterparty_node_id),
3650                                 })
3651                         },
3652                         None => return Err(APIError::ChannelUnavailable {err: format!(
3653                                 "Channel with id {} not found for the passed counterparty node_id {}",
3654                                 temporary_channel_id, counterparty_node_id),
3655                                 }),
3656                 };
3657
3658                 if let Some(msg) = msg_opt {
3659                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
3660                                 node_id: chan.context.get_counterparty_node_id(),
3661                                 msg,
3662                         });
3663                 }
3664                 match peer_state.channel_by_id.entry(chan.context.channel_id()) {
3665                         hash_map::Entry::Occupied(_) => {
3666                                 panic!("Generated duplicate funding txid?");
3667                         },
3668                         hash_map::Entry::Vacant(e) => {
3669                                 let mut id_to_peer = self.id_to_peer.lock().unwrap();
3670                                 if id_to_peer.insert(chan.context.channel_id(), chan.context.get_counterparty_node_id()).is_some() {
3671                                         panic!("id_to_peer map already contained funding txid, which shouldn't be possible");
3672                                 }
3673                                 e.insert(ChannelPhase::Funded(chan));
3674                         }
3675                 }
3676                 Ok(())
3677         }
3678
3679         #[cfg(test)]
3680         pub(crate) fn funding_transaction_generated_unchecked(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, output_index: u16) -> Result<(), APIError> {
3681                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, false, |_, tx| {
3682                         Ok(OutPoint { txid: tx.txid(), index: output_index })
3683                 })
3684         }
3685
3686         /// Call this upon creation of a funding transaction for the given channel.
3687         ///
3688         /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
3689         /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
3690         ///
3691         /// Returns [`APIError::APIMisuseError`] if the funding transaction is not final for propagation
3692         /// across the p2p network.
3693         ///
3694         /// Returns [`APIError::ChannelUnavailable`] if a funding transaction has already been provided
3695         /// for the channel or if the channel has been closed as indicated by [`Event::ChannelClosed`].
3696         ///
3697         /// May panic if the output found in the funding transaction is duplicative with some other
3698         /// channel (note that this should be trivially prevented by using unique funding transaction
3699         /// keys per-channel).
3700         ///
3701         /// Do NOT broadcast the funding transaction yourself. When we have safely received our
3702         /// counterparty's signature the funding transaction will automatically be broadcast via the
3703         /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
3704         ///
3705         /// Note that this includes RBF or similar transaction replacement strategies - lightning does
3706         /// not currently support replacing a funding transaction on an existing channel. Instead,
3707         /// create a new channel with a conflicting funding transaction.
3708         ///
3709         /// Note to keep the miner incentives aligned in moving the blockchain forward, we recommend
3710         /// the wallet software generating the funding transaction to apply anti-fee sniping as
3711         /// implemented by Bitcoin Core wallet. See <https://bitcoinops.org/en/topics/fee-sniping/>
3712         /// for more details.
3713         ///
3714         /// [`Event::FundingGenerationReady`]: crate::events::Event::FundingGenerationReady
3715         /// [`Event::ChannelClosed`]: crate::events::Event::ChannelClosed
3716         pub fn funding_transaction_generated(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction) -> Result<(), APIError> {
3717                 self.batch_funding_transaction_generated(&[(temporary_channel_id, counterparty_node_id)], funding_transaction)
3718         }
3719
3720         /// Call this upon creation of a batch funding transaction for the given channels.
3721         ///
3722         /// Return values are identical to [`Self::funding_transaction_generated`], respective to
3723         /// each individual channel and transaction output.
3724         ///
3725         /// Do NOT broadcast the funding transaction yourself. This batch funding transaction
3726         /// will only be broadcast when we have safely received and persisted the counterparty's
3727         /// signature for each channel.
3728         ///
3729         /// If there is an error, all channels in the batch are to be considered closed.
3730         pub fn batch_funding_transaction_generated(&self, temporary_channels: &[(&ChannelId, &PublicKey)], funding_transaction: Transaction) -> Result<(), APIError> {
3731                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3732                 let mut result = Ok(());
3733
3734                 if !funding_transaction.is_coin_base() {
3735                         for inp in funding_transaction.input.iter() {
3736                                 if inp.witness.is_empty() {
3737                                         result = result.and(Err(APIError::APIMisuseError {
3738                                                 err: "Funding transaction must be fully signed and spend Segwit outputs".to_owned()
3739                                         }));
3740                                 }
3741                         }
3742                 }
3743                 if funding_transaction.output.len() > u16::max_value() as usize {
3744                         result = result.and(Err(APIError::APIMisuseError {
3745                                 err: "Transaction had more than 2^16 outputs, which is not supported".to_owned()
3746                         }));
3747                 }
3748                 {
3749                         let height = self.best_block.read().unwrap().height();
3750                         // Transactions are evaluated as final by network mempools if their locktime is strictly
3751                         // lower than the next block height. However, the modules constituting our Lightning
3752                         // node might not have perfect sync about their blockchain views. Thus, if the wallet
3753                         // module is ahead of LDK, only allow one more block of headroom.
3754                         if !funding_transaction.input.iter().all(|input| input.sequence == Sequence::MAX) && LockTime::from(funding_transaction.lock_time).is_block_height() && funding_transaction.lock_time.0 > height + 1 {
3755                                 result = result.and(Err(APIError::APIMisuseError {
3756                                         err: "Funding transaction absolute timelock is non-final".to_owned()
3757                                 }));
3758                         }
3759                 }
3760
3761                 let txid = funding_transaction.txid();
3762                 let is_batch_funding = temporary_channels.len() > 1;
3763                 let mut funding_batch_states = if is_batch_funding {
3764                         Some(self.funding_batch_states.lock().unwrap())
3765                 } else {
3766                         None
3767                 };
3768                 let mut funding_batch_state = funding_batch_states.as_mut().and_then(|states| {
3769                         match states.entry(txid) {
3770                                 btree_map::Entry::Occupied(_) => {
3771                                         result = result.clone().and(Err(APIError::APIMisuseError {
3772                                                 err: "Batch funding transaction with the same txid already exists".to_owned()
3773                                         }));
3774                                         None
3775                                 },
3776                                 btree_map::Entry::Vacant(vacant) => Some(vacant.insert(Vec::new())),
3777                         }
3778                 });
3779                 for &(temporary_channel_id, counterparty_node_id) in temporary_channels {
3780                         result = result.and_then(|_| self.funding_transaction_generated_intern(
3781                                 temporary_channel_id,
3782                                 counterparty_node_id,
3783                                 funding_transaction.clone(),
3784                                 is_batch_funding,
3785                                 |chan, tx| {
3786                                         let mut output_index = None;
3787                                         let expected_spk = chan.context.get_funding_redeemscript().to_v0_p2wsh();
3788                                         for (idx, outp) in tx.output.iter().enumerate() {
3789                                                 if outp.script_pubkey == expected_spk && outp.value == chan.context.get_value_satoshis() {
3790                                                         if output_index.is_some() {
3791                                                                 return Err(APIError::APIMisuseError {
3792                                                                         err: "Multiple outputs matched the expected script and value".to_owned()
3793                                                                 });
3794                                                         }
3795                                                         output_index = Some(idx as u16);
3796                                                 }
3797                                         }
3798                                         if output_index.is_none() {
3799                                                 return Err(APIError::APIMisuseError {
3800                                                         err: "No output matched the script_pubkey and value in the FundingGenerationReady event".to_owned()
3801                                                 });
3802                                         }
3803                                         let outpoint = OutPoint { txid: tx.txid(), index: output_index.unwrap() };
3804                                         if let Some(funding_batch_state) = funding_batch_state.as_mut() {
3805                                                 funding_batch_state.push((outpoint.to_channel_id(), *counterparty_node_id, false));
3806                                         }
3807                                         Ok(outpoint)
3808                                 })
3809                         );
3810                 }
3811                 if let Err(ref e) = result {
3812                         // Remaining channels need to be removed on any error.
3813                         let e = format!("Error in transaction funding: {:?}", e);
3814                         let mut channels_to_remove = Vec::new();
3815                         channels_to_remove.extend(funding_batch_states.as_mut()
3816                                 .and_then(|states| states.remove(&txid))
3817                                 .into_iter().flatten()
3818                                 .map(|(chan_id, node_id, _state)| (chan_id, node_id))
3819                         );
3820                         channels_to_remove.extend(temporary_channels.iter()
3821                                 .map(|(&chan_id, &node_id)| (chan_id, node_id))
3822                         );
3823                         let mut shutdown_results = Vec::new();
3824                         {
3825                                 let per_peer_state = self.per_peer_state.read().unwrap();
3826                                 for (channel_id, counterparty_node_id) in channels_to_remove {
3827                                         per_peer_state.get(&counterparty_node_id)
3828                                                 .map(|peer_state_mutex| peer_state_mutex.lock().unwrap())
3829                                                 .and_then(|mut peer_state| peer_state.channel_by_id.remove(&channel_id))
3830                                                 .map(|mut chan| {
3831                                                         update_maps_on_chan_removal!(self, &chan.context());
3832                                                         self.issue_channel_close_events(&chan.context(), ClosureReason::ProcessingError { err: e.clone() });
3833                                                         shutdown_results.push(chan.context_mut().force_shutdown(false));
3834                                                 });
3835                                 }
3836                         }
3837                         for shutdown_result in shutdown_results.drain(..) {
3838                                 self.finish_close_channel(shutdown_result);
3839                         }
3840                 }
3841                 result
3842         }
3843
3844         /// Atomically applies partial updates to the [`ChannelConfig`] of the given channels.
3845         ///
3846         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3847         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3848         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3849         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3850         ///
3851         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3852         /// `counterparty_node_id` is provided.
3853         ///
3854         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3855         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3856         ///
3857         /// If an error is returned, none of the updates should be considered applied.
3858         ///
3859         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3860         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3861         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3862         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3863         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3864         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3865         /// [`APIMisuseError`]: APIError::APIMisuseError
3866         pub fn update_partial_channel_config(
3867                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config_update: &ChannelConfigUpdate,
3868         ) -> Result<(), APIError> {
3869                 if config_update.cltv_expiry_delta.map(|delta| delta < MIN_CLTV_EXPIRY_DELTA).unwrap_or(false) {
3870                         return Err(APIError::APIMisuseError {
3871                                 err: format!("The chosen CLTV expiry delta is below the minimum of {}", MIN_CLTV_EXPIRY_DELTA),
3872                         });
3873                 }
3874
3875                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3876                 let per_peer_state = self.per_peer_state.read().unwrap();
3877                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3878                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3879                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3880                 let peer_state = &mut *peer_state_lock;
3881                 for channel_id in channel_ids {
3882                         if !peer_state.has_channel(channel_id) {
3883                                 return Err(APIError::ChannelUnavailable {
3884                                         err: format!("Channel with id {} not found for the passed counterparty node_id {}", channel_id, counterparty_node_id),
3885                                 });
3886                         };
3887                 }
3888                 for channel_id in channel_ids {
3889                         if let Some(channel_phase) = peer_state.channel_by_id.get_mut(channel_id) {
3890                                 let mut config = channel_phase.context().config();
3891                                 config.apply(config_update);
3892                                 if !channel_phase.context_mut().update_config(&config) {
3893                                         continue;
3894                                 }
3895                                 if let ChannelPhase::Funded(channel) = channel_phase {
3896                                         if let Ok(msg) = self.get_channel_update_for_broadcast(channel) {
3897                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate { msg });
3898                                         } else if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
3899                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
3900                                                         node_id: channel.context.get_counterparty_node_id(),
3901                                                         msg,
3902                                                 });
3903                                         }
3904                                 }
3905                                 continue;
3906                         } else {
3907                                 // This should not be reachable as we've already checked for non-existence in the previous channel_id loop.
3908                                 debug_assert!(false);
3909                                 return Err(APIError::ChannelUnavailable {
3910                                         err: format!(
3911                                                 "Channel with ID {} for passed counterparty_node_id {} disappeared after we confirmed its existence - this should not be reachable!",
3912                                                 channel_id, counterparty_node_id),
3913                                 });
3914                         };
3915                 }
3916                 Ok(())
3917         }
3918
3919         /// Atomically updates the [`ChannelConfig`] for the given channels.
3920         ///
3921         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3922         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3923         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3924         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3925         ///
3926         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3927         /// `counterparty_node_id` is provided.
3928         ///
3929         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3930         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3931         ///
3932         /// If an error is returned, none of the updates should be considered applied.
3933         ///
3934         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3935         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3936         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3937         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3938         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3939         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3940         /// [`APIMisuseError`]: APIError::APIMisuseError
3941         pub fn update_channel_config(
3942                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config: &ChannelConfig,
3943         ) -> Result<(), APIError> {
3944                 return self.update_partial_channel_config(counterparty_node_id, channel_ids, &(*config).into());
3945         }
3946
3947         /// Attempts to forward an intercepted HTLC over the provided channel id and with the provided
3948         /// amount to forward. Should only be called in response to an [`HTLCIntercepted`] event.
3949         ///
3950         /// Intercepted HTLCs can be useful for Lightning Service Providers (LSPs) to open a just-in-time
3951         /// channel to a receiving node if the node lacks sufficient inbound liquidity.
3952         ///
3953         /// To make use of intercepted HTLCs, set [`UserConfig::accept_intercept_htlcs`] and use
3954         /// [`ChannelManager::get_intercept_scid`] to generate short channel id(s) to put in the
3955         /// receiver's invoice route hints. These route hints will signal to LDK to generate an
3956         /// [`HTLCIntercepted`] event when it receives the forwarded HTLC, and this method or
3957         /// [`ChannelManager::fail_intercepted_htlc`] MUST be called in response to the event.
3958         ///
3959         /// Note that LDK does not enforce fee requirements in `amt_to_forward_msat`, and will not stop
3960         /// you from forwarding more than you received. See
3961         /// [`HTLCIntercepted::expected_outbound_amount_msat`] for more on forwarding a different amount
3962         /// than expected.
3963         ///
3964         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
3965         /// backwards.
3966         ///
3967         /// [`UserConfig::accept_intercept_htlcs`]: crate::util::config::UserConfig::accept_intercept_htlcs
3968         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
3969         /// [`HTLCIntercepted::expected_outbound_amount_msat`]: events::Event::HTLCIntercepted::expected_outbound_amount_msat
3970         // TODO: when we move to deciding the best outbound channel at forward time, only take
3971         // `next_node_id` and not `next_hop_channel_id`
3972         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> {
3973                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3974
3975                 let next_hop_scid = {
3976                         let peer_state_lock = self.per_peer_state.read().unwrap();
3977                         let peer_state_mutex = peer_state_lock.get(&next_node_id)
3978                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", next_node_id) })?;
3979                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3980                         let peer_state = &mut *peer_state_lock;
3981                         match peer_state.channel_by_id.get(next_hop_channel_id) {
3982                                 Some(ChannelPhase::Funded(chan)) => {
3983                                         if !chan.context.is_usable() {
3984                                                 return Err(APIError::ChannelUnavailable {
3985                                                         err: format!("Channel with id {} not fully established", next_hop_channel_id)
3986                                                 })
3987                                         }
3988                                         chan.context.get_short_channel_id().unwrap_or(chan.context.outbound_scid_alias())
3989                                 },
3990                                 Some(_) => return Err(APIError::ChannelUnavailable {
3991                                         err: format!("Channel with id {} for the passed counterparty node_id {} is still opening.",
3992                                                 next_hop_channel_id, next_node_id)
3993                                 }),
3994                                 None => {
3995                                         let error = format!("Channel with id {} not found for the passed counterparty node_id {}",
3996                                                 next_hop_channel_id, next_node_id);
3997                                         log_error!(self.logger, "{} when attempting to forward intercepted HTLC", error);
3998                                         return Err(APIError::ChannelUnavailable {
3999                                                 err: error
4000                                         })
4001                                 }
4002                         }
4003                 };
4004
4005                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
4006                         .ok_or_else(|| APIError::APIMisuseError {
4007                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
4008                         })?;
4009
4010                 let routing = match payment.forward_info.routing {
4011                         PendingHTLCRouting::Forward { onion_packet, .. } => {
4012                                 PendingHTLCRouting::Forward { onion_packet, short_channel_id: next_hop_scid }
4013                         },
4014                         _ => unreachable!() // Only `PendingHTLCRouting::Forward`s are intercepted
4015                 };
4016                 let skimmed_fee_msat =
4017                         payment.forward_info.outgoing_amt_msat.saturating_sub(amt_to_forward_msat);
4018                 let pending_htlc_info = PendingHTLCInfo {
4019                         skimmed_fee_msat: if skimmed_fee_msat == 0 { None } else { Some(skimmed_fee_msat) },
4020                         outgoing_amt_msat: amt_to_forward_msat, routing, ..payment.forward_info
4021                 };
4022
4023                 let mut per_source_pending_forward = [(
4024                         payment.prev_short_channel_id,
4025                         payment.prev_funding_outpoint,
4026                         payment.prev_user_channel_id,
4027                         vec![(pending_htlc_info, payment.prev_htlc_id)]
4028                 )];
4029                 self.forward_htlcs(&mut per_source_pending_forward);
4030                 Ok(())
4031         }
4032
4033         /// Fails the intercepted HTLC indicated by intercept_id. Should only be called in response to
4034         /// an [`HTLCIntercepted`] event. See [`ChannelManager::forward_intercepted_htlc`].
4035         ///
4036         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
4037         /// backwards.
4038         ///
4039         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
4040         pub fn fail_intercepted_htlc(&self, intercept_id: InterceptId) -> Result<(), APIError> {
4041                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4042
4043                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
4044                         .ok_or_else(|| APIError::APIMisuseError {
4045                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
4046                         })?;
4047
4048                 if let PendingHTLCRouting::Forward { short_channel_id, .. } = payment.forward_info.routing {
4049                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4050                                 short_channel_id: payment.prev_short_channel_id,
4051                                 user_channel_id: Some(payment.prev_user_channel_id),
4052                                 outpoint: payment.prev_funding_outpoint,
4053                                 htlc_id: payment.prev_htlc_id,
4054                                 incoming_packet_shared_secret: payment.forward_info.incoming_shared_secret,
4055                                 phantom_shared_secret: None,
4056                         });
4057
4058                         let failure_reason = HTLCFailReason::from_failure_code(0x4000 | 10);
4059                         let destination = HTLCDestination::UnknownNextHop { requested_forward_scid: short_channel_id };
4060                         self.fail_htlc_backwards_internal(&htlc_source, &payment.forward_info.payment_hash, &failure_reason, destination);
4061                 } else { unreachable!() } // Only `PendingHTLCRouting::Forward`s are intercepted
4062
4063                 Ok(())
4064         }
4065
4066         /// Processes HTLCs which are pending waiting on random forward delay.
4067         ///
4068         /// Should only really ever be called in response to a PendingHTLCsForwardable event.
4069         /// Will likely generate further events.
4070         pub fn process_pending_htlc_forwards(&self) {
4071                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4072
4073                 let mut new_events = VecDeque::new();
4074                 let mut failed_forwards = Vec::new();
4075                 let mut phantom_receives: Vec<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> = Vec::new();
4076                 {
4077                         let mut forward_htlcs = HashMap::new();
4078                         mem::swap(&mut forward_htlcs, &mut self.forward_htlcs.lock().unwrap());
4079
4080                         for (short_chan_id, mut pending_forwards) in forward_htlcs {
4081                                 if short_chan_id != 0 {
4082                                         macro_rules! forwarding_channel_not_found {
4083                                                 () => {
4084                                                         for forward_info in pending_forwards.drain(..) {
4085                                                                 match forward_info {
4086                                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4087                                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4088                                                                                 forward_info: PendingHTLCInfo {
4089                                                                                         routing, incoming_shared_secret, payment_hash, outgoing_amt_msat,
4090                                                                                         outgoing_cltv_value, ..
4091                                                                                 }
4092                                                                         }) => {
4093                                                                                 macro_rules! failure_handler {
4094                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr, $next_hop_unknown: expr) => {
4095                                                                                                 log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
4096
4097                                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4098                                                                                                         short_channel_id: prev_short_channel_id,
4099                                                                                                         user_channel_id: Some(prev_user_channel_id),
4100                                                                                                         outpoint: prev_funding_outpoint,
4101                                                                                                         htlc_id: prev_htlc_id,
4102                                                                                                         incoming_packet_shared_secret: incoming_shared_secret,
4103                                                                                                         phantom_shared_secret: $phantom_ss,
4104                                                                                                 });
4105
4106                                                                                                 let reason = if $next_hop_unknown {
4107                                                                                                         HTLCDestination::UnknownNextHop { requested_forward_scid: short_chan_id }
4108                                                                                                 } else {
4109                                                                                                         HTLCDestination::FailedPayment{ payment_hash }
4110                                                                                                 };
4111
4112                                                                                                 failed_forwards.push((htlc_source, payment_hash,
4113                                                                                                         HTLCFailReason::reason($err_code, $err_data),
4114                                                                                                         reason
4115                                                                                                 ));
4116                                                                                                 continue;
4117                                                                                         }
4118                                                                                 }
4119                                                                                 macro_rules! fail_forward {
4120                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
4121                                                                                                 {
4122                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, true);
4123                                                                                                 }
4124                                                                                         }
4125                                                                                 }
4126                                                                                 macro_rules! failed_payment {
4127                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
4128                                                                                                 {
4129                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, false);
4130                                                                                                 }
4131                                                                                         }
4132                                                                                 }
4133                                                                                 if let PendingHTLCRouting::Forward { onion_packet, .. } = routing {
4134                                                                                         let phantom_pubkey_res = self.node_signer.get_node_id(Recipient::PhantomNode);
4135                                                                                         if phantom_pubkey_res.is_ok() && fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, short_chan_id, &self.chain_hash) {
4136                                                                                                 let phantom_shared_secret = self.node_signer.ecdh(Recipient::PhantomNode, &onion_packet.public_key.unwrap(), None).unwrap().secret_bytes();
4137                                                                                                 let next_hop = match onion_utils::decode_next_payment_hop(
4138                                                                                                         phantom_shared_secret, &onion_packet.hop_data, onion_packet.hmac,
4139                                                                                                         payment_hash, &self.node_signer
4140                                                                                                 ) {
4141                                                                                                         Ok(res) => res,
4142                                                                                                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
4143                                                                                                                 let sha256_of_onion = Sha256::hash(&onion_packet.hop_data).into_inner();
4144                                                                                                                 // In this scenario, the phantom would have sent us an
4145                                                                                                                 // `update_fail_malformed_htlc`, meaning here we encrypt the error as
4146                                                                                                                 // if it came from us (the second-to-last hop) but contains the sha256
4147                                                                                                                 // of the onion.
4148                                                                                                                 failed_payment!(err_msg, err_code, sha256_of_onion.to_vec(), None);
4149                                                                                                         },
4150                                                                                                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
4151                                                                                                                 failed_payment!(err_msg, err_code, Vec::new(), Some(phantom_shared_secret));
4152                                                                                                         },
4153                                                                                                 };
4154                                                                                                 match next_hop {
4155                                                                                                         onion_utils::Hop::Receive(hop_data) => {
4156                                                                                                                 let current_height: u32 = self.best_block.read().unwrap().height();
4157                                                                                                                 match create_recv_pending_htlc_info(hop_data,
4158                                                                                                                         incoming_shared_secret, payment_hash, outgoing_amt_msat,
4159                                                                                                                         outgoing_cltv_value, Some(phantom_shared_secret), false, None,
4160                                                                                                                         current_height, self.default_configuration.accept_mpp_keysend)
4161                                                                                                                 {
4162                                                                                                                         Ok(info) => phantom_receives.push((prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, vec![(info, prev_htlc_id)])),
4163                                                                                                                         Err(InboundOnionErr { err_code, err_data, msg }) => failed_payment!(msg, err_code, err_data, Some(phantom_shared_secret))
4164                                                                                                                 }
4165                                                                                                         },
4166                                                                                                         _ => panic!(),
4167                                                                                                 }
4168                                                                                         } else {
4169                                                                                                 fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
4170                                                                                         }
4171                                                                                 } else {
4172                                                                                         fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
4173                                                                                 }
4174                                                                         },
4175                                                                         HTLCForwardInfo::FailHTLC { .. } => {
4176                                                                                 // Channel went away before we could fail it. This implies
4177                                                                                 // the channel is now on chain and our counterparty is
4178                                                                                 // trying to broadcast the HTLC-Timeout, but that's their
4179                                                                                 // problem, not ours.
4180                                                                         }
4181                                                                 }
4182                                                         }
4183                                                 }
4184                                         }
4185                                         let chan_info_opt = self.short_to_chan_info.read().unwrap().get(&short_chan_id).cloned();
4186                                         let (counterparty_node_id, forward_chan_id) = match chan_info_opt {
4187                                                 Some((cp_id, chan_id)) => (cp_id, chan_id),
4188                                                 None => {
4189                                                         forwarding_channel_not_found!();
4190                                                         continue;
4191                                                 }
4192                                         };
4193                                         let per_peer_state = self.per_peer_state.read().unwrap();
4194                                         let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
4195                                         if peer_state_mutex_opt.is_none() {
4196                                                 forwarding_channel_not_found!();
4197                                                 continue;
4198                                         }
4199                                         let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
4200                                         let peer_state = &mut *peer_state_lock;
4201                                         if let Some(ChannelPhase::Funded(ref mut chan)) = peer_state.channel_by_id.get_mut(&forward_chan_id) {
4202                                                 for forward_info in pending_forwards.drain(..) {
4203                                                         match forward_info {
4204                                                                 HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4205                                                                         prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4206                                                                         forward_info: PendingHTLCInfo {
4207                                                                                 incoming_shared_secret, payment_hash, outgoing_amt_msat, outgoing_cltv_value,
4208                                                                                 routing: PendingHTLCRouting::Forward { onion_packet, .. }, skimmed_fee_msat, ..
4209                                                                         },
4210                                                                 }) => {
4211                                                                         log_trace!(self.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);
4212                                                                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4213                                                                                 short_channel_id: prev_short_channel_id,
4214                                                                                 user_channel_id: Some(prev_user_channel_id),
4215                                                                                 outpoint: prev_funding_outpoint,
4216                                                                                 htlc_id: prev_htlc_id,
4217                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
4218                                                                                 // Phantom payments are only PendingHTLCRouting::Receive.
4219                                                                                 phantom_shared_secret: None,
4220                                                                         });
4221                                                                         if let Err(e) = chan.queue_add_htlc(outgoing_amt_msat,
4222                                                                                 payment_hash, outgoing_cltv_value, htlc_source.clone(),
4223                                                                                 onion_packet, skimmed_fee_msat, &self.fee_estimator,
4224                                                                                 &self.logger)
4225                                                                         {
4226                                                                                 if let ChannelError::Ignore(msg) = e {
4227                                                                                         log_trace!(self.logger, "Failed to forward HTLC with payment_hash {}: {}", &payment_hash, msg);
4228                                                                                 } else {
4229                                                                                         panic!("Stated return value requirements in send_htlc() were not met");
4230                                                                                 }
4231                                                                                 let (failure_code, data) = self.get_htlc_temp_fail_err_and_data(0x1000|7, short_chan_id, chan);
4232                                                                                 failed_forwards.push((htlc_source, payment_hash,
4233                                                                                         HTLCFailReason::reason(failure_code, data),
4234                                                                                         HTLCDestination::NextHopChannel { node_id: Some(chan.context.get_counterparty_node_id()), channel_id: forward_chan_id }
4235                                                                                 ));
4236                                                                                 continue;
4237                                                                         }
4238                                                                 },
4239                                                                 HTLCForwardInfo::AddHTLC { .. } => {
4240                                                                         panic!("short_channel_id != 0 should imply any pending_forward entries are of type Forward");
4241                                                                 },
4242                                                                 HTLCForwardInfo::FailHTLC { htlc_id, err_packet } => {
4243                                                                         log_trace!(self.logger, "Failing HTLC back to channel with short id {} (backward HTLC ID {}) after delay", short_chan_id, htlc_id);
4244                                                                         if let Err(e) = chan.queue_fail_htlc(
4245                                                                                 htlc_id, err_packet, &self.logger
4246                                                                         ) {
4247                                                                                 if let ChannelError::Ignore(msg) = e {
4248                                                                                         log_trace!(self.logger, "Failed to fail HTLC with ID {} backwards to short_id {}: {}", htlc_id, short_chan_id, msg);
4249                                                                                 } else {
4250                                                                                         panic!("Stated return value requirements in queue_fail_htlc() were not met");
4251                                                                                 }
4252                                                                                 // fail-backs are best-effort, we probably already have one
4253                                                                                 // pending, and if not that's OK, if not, the channel is on
4254                                                                                 // the chain and sending the HTLC-Timeout is their problem.
4255                                                                                 continue;
4256                                                                         }
4257                                                                 },
4258                                                         }
4259                                                 }
4260                                         } else {
4261                                                 forwarding_channel_not_found!();
4262                                                 continue;
4263                                         }
4264                                 } else {
4265                                         'next_forwardable_htlc: for forward_info in pending_forwards.drain(..) {
4266                                                 match forward_info {
4267                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4268                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4269                                                                 forward_info: PendingHTLCInfo {
4270                                                                         routing, incoming_shared_secret, payment_hash, incoming_amt_msat, outgoing_amt_msat,
4271                                                                         skimmed_fee_msat, ..
4272                                                                 }
4273                                                         }) => {
4274                                                                 let (cltv_expiry, onion_payload, payment_data, phantom_shared_secret, mut onion_fields) = match routing {
4275                                                                         PendingHTLCRouting::Receive { payment_data, payment_metadata, incoming_cltv_expiry, phantom_shared_secret, custom_tlvs } => {
4276                                                                                 let _legacy_hop_data = Some(payment_data.clone());
4277                                                                                 let onion_fields = RecipientOnionFields { payment_secret: Some(payment_data.payment_secret),
4278                                                                                                 payment_metadata, custom_tlvs };
4279                                                                                 (incoming_cltv_expiry, OnionPayload::Invoice { _legacy_hop_data },
4280                                                                                         Some(payment_data), phantom_shared_secret, onion_fields)
4281                                                                         },
4282                                                                         PendingHTLCRouting::ReceiveKeysend { payment_data, payment_preimage, payment_metadata, incoming_cltv_expiry, custom_tlvs } => {
4283                                                                                 let onion_fields = RecipientOnionFields {
4284                                                                                         payment_secret: payment_data.as_ref().map(|data| data.payment_secret),
4285                                                                                         payment_metadata,
4286                                                                                         custom_tlvs,
4287                                                                                 };
4288                                                                                 (incoming_cltv_expiry, OnionPayload::Spontaneous(payment_preimage),
4289                                                                                         payment_data, None, onion_fields)
4290                                                                         },
4291                                                                         _ => {
4292                                                                                 panic!("short_channel_id == 0 should imply any pending_forward entries are of type Receive");
4293                                                                         }
4294                                                                 };
4295                                                                 let claimable_htlc = ClaimableHTLC {
4296                                                                         prev_hop: HTLCPreviousHopData {
4297                                                                                 short_channel_id: prev_short_channel_id,
4298                                                                                 user_channel_id: Some(prev_user_channel_id),
4299                                                                                 outpoint: prev_funding_outpoint,
4300                                                                                 htlc_id: prev_htlc_id,
4301                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
4302                                                                                 phantom_shared_secret,
4303                                                                         },
4304                                                                         // We differentiate the received value from the sender intended value
4305                                                                         // if possible so that we don't prematurely mark MPP payments complete
4306                                                                         // if routing nodes overpay
4307                                                                         value: incoming_amt_msat.unwrap_or(outgoing_amt_msat),
4308                                                                         sender_intended_value: outgoing_amt_msat,
4309                                                                         timer_ticks: 0,
4310                                                                         total_value_received: None,
4311                                                                         total_msat: if let Some(data) = &payment_data { data.total_msat } else { outgoing_amt_msat },
4312                                                                         cltv_expiry,
4313                                                                         onion_payload,
4314                                                                         counterparty_skimmed_fee_msat: skimmed_fee_msat,
4315                                                                 };
4316
4317                                                                 let mut committed_to_claimable = false;
4318
4319                                                                 macro_rules! fail_htlc {
4320                                                                         ($htlc: expr, $payment_hash: expr) => {
4321                                                                                 debug_assert!(!committed_to_claimable);
4322                                                                                 let mut htlc_msat_height_data = $htlc.value.to_be_bytes().to_vec();
4323                                                                                 htlc_msat_height_data.extend_from_slice(
4324                                                                                         &self.best_block.read().unwrap().height().to_be_bytes(),
4325                                                                                 );
4326                                                                                 failed_forwards.push((HTLCSource::PreviousHopData(HTLCPreviousHopData {
4327                                                                                                 short_channel_id: $htlc.prev_hop.short_channel_id,
4328                                                                                                 user_channel_id: $htlc.prev_hop.user_channel_id,
4329                                                                                                 outpoint: prev_funding_outpoint,
4330                                                                                                 htlc_id: $htlc.prev_hop.htlc_id,
4331                                                                                                 incoming_packet_shared_secret: $htlc.prev_hop.incoming_packet_shared_secret,
4332                                                                                                 phantom_shared_secret,
4333                                                                                         }), payment_hash,
4334                                                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
4335                                                                                         HTLCDestination::FailedPayment { payment_hash: $payment_hash },
4336                                                                                 ));
4337                                                                                 continue 'next_forwardable_htlc;
4338                                                                         }
4339                                                                 }
4340                                                                 let phantom_shared_secret = claimable_htlc.prev_hop.phantom_shared_secret;
4341                                                                 let mut receiver_node_id = self.our_network_pubkey;
4342                                                                 if phantom_shared_secret.is_some() {
4343                                                                         receiver_node_id = self.node_signer.get_node_id(Recipient::PhantomNode)
4344                                                                                 .expect("Failed to get node_id for phantom node recipient");
4345                                                                 }
4346
4347                                                                 macro_rules! check_total_value {
4348                                                                         ($purpose: expr) => {{
4349                                                                                 let mut payment_claimable_generated = false;
4350                                                                                 let is_keysend = match $purpose {
4351                                                                                         events::PaymentPurpose::SpontaneousPayment(_) => true,
4352                                                                                         events::PaymentPurpose::InvoicePayment { .. } => false,
4353                                                                                 };
4354                                                                                 let mut claimable_payments = self.claimable_payments.lock().unwrap();
4355                                                                                 if claimable_payments.pending_claiming_payments.contains_key(&payment_hash) {
4356                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4357                                                                                 }
4358                                                                                 let ref mut claimable_payment = claimable_payments.claimable_payments
4359                                                                                         .entry(payment_hash)
4360                                                                                         // Note that if we insert here we MUST NOT fail_htlc!()
4361                                                                                         .or_insert_with(|| {
4362                                                                                                 committed_to_claimable = true;
4363                                                                                                 ClaimablePayment {
4364                                                                                                         purpose: $purpose.clone(), htlcs: Vec::new(), onion_fields: None,
4365                                                                                                 }
4366                                                                                         });
4367                                                                                 if $purpose != claimable_payment.purpose {
4368                                                                                         let log_keysend = |keysend| if keysend { "keysend" } else { "non-keysend" };
4369                                                                                         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));
4370                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4371                                                                                 }
4372                                                                                 if !self.default_configuration.accept_mpp_keysend && is_keysend && !claimable_payment.htlcs.is_empty() {
4373                                                                                         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);
4374                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4375                                                                                 }
4376                                                                                 if let Some(earlier_fields) = &mut claimable_payment.onion_fields {
4377                                                                                         if earlier_fields.check_merge(&mut onion_fields).is_err() {
4378                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4379                                                                                         }
4380                                                                                 } else {
4381                                                                                         claimable_payment.onion_fields = Some(onion_fields);
4382                                                                                 }
4383                                                                                 let ref mut htlcs = &mut claimable_payment.htlcs;
4384                                                                                 let mut total_value = claimable_htlc.sender_intended_value;
4385                                                                                 let mut earliest_expiry = claimable_htlc.cltv_expiry;
4386                                                                                 for htlc in htlcs.iter() {
4387                                                                                         total_value += htlc.sender_intended_value;
4388                                                                                         earliest_expiry = cmp::min(earliest_expiry, htlc.cltv_expiry);
4389                                                                                         if htlc.total_msat != claimable_htlc.total_msat {
4390                                                                                                 log_trace!(self.logger, "Failing HTLCs with payment_hash {} as the HTLCs had inconsistent total values (eg {} and {})",
4391                                                                                                         &payment_hash, claimable_htlc.total_msat, htlc.total_msat);
4392                                                                                                 total_value = msgs::MAX_VALUE_MSAT;
4393                                                                                         }
4394                                                                                         if total_value >= msgs::MAX_VALUE_MSAT { break; }
4395                                                                                 }
4396                                                                                 // The condition determining whether an MPP is complete must
4397                                                                                 // match exactly the condition used in `timer_tick_occurred`
4398                                                                                 if total_value >= msgs::MAX_VALUE_MSAT {
4399                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4400                                                                                 } else if total_value - claimable_htlc.sender_intended_value >= claimable_htlc.total_msat {
4401                                                                                         log_trace!(self.logger, "Failing HTLC with payment_hash {} as payment is already claimable",
4402                                                                                                 &payment_hash);
4403                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4404                                                                                 } else if total_value >= claimable_htlc.total_msat {
4405                                                                                         #[allow(unused_assignments)] {
4406                                                                                                 committed_to_claimable = true;
4407                                                                                         }
4408                                                                                         let prev_channel_id = prev_funding_outpoint.to_channel_id();
4409                                                                                         htlcs.push(claimable_htlc);
4410                                                                                         let amount_msat = htlcs.iter().map(|htlc| htlc.value).sum();
4411                                                                                         htlcs.iter_mut().for_each(|htlc| htlc.total_value_received = Some(amount_msat));
4412                                                                                         let counterparty_skimmed_fee_msat = htlcs.iter()
4413                                                                                                 .map(|htlc| htlc.counterparty_skimmed_fee_msat.unwrap_or(0)).sum();
4414                                                                                         debug_assert!(total_value.saturating_sub(amount_msat) <=
4415                                                                                                 counterparty_skimmed_fee_msat);
4416                                                                                         new_events.push_back((events::Event::PaymentClaimable {
4417                                                                                                 receiver_node_id: Some(receiver_node_id),
4418                                                                                                 payment_hash,
4419                                                                                                 purpose: $purpose,
4420                                                                                                 amount_msat,
4421                                                                                                 counterparty_skimmed_fee_msat,
4422                                                                                                 via_channel_id: Some(prev_channel_id),
4423                                                                                                 via_user_channel_id: Some(prev_user_channel_id),
4424                                                                                                 claim_deadline: Some(earliest_expiry - HTLC_FAIL_BACK_BUFFER),
4425                                                                                                 onion_fields: claimable_payment.onion_fields.clone(),
4426                                                                                         }, None));
4427                                                                                         payment_claimable_generated = true;
4428                                                                                 } else {
4429                                                                                         // Nothing to do - we haven't reached the total
4430                                                                                         // payment value yet, wait until we receive more
4431                                                                                         // MPP parts.
4432                                                                                         htlcs.push(claimable_htlc);
4433                                                                                         #[allow(unused_assignments)] {
4434                                                                                                 committed_to_claimable = true;
4435                                                                                         }
4436                                                                                 }
4437                                                                                 payment_claimable_generated
4438                                                                         }}
4439                                                                 }
4440
4441                                                                 // Check that the payment hash and secret are known. Note that we
4442                                                                 // MUST take care to handle the "unknown payment hash" and
4443                                                                 // "incorrect payment secret" cases here identically or we'd expose
4444                                                                 // that we are the ultimate recipient of the given payment hash.
4445                                                                 // Further, we must not expose whether we have any other HTLCs
4446                                                                 // associated with the same payment_hash pending or not.
4447                                                                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
4448                                                                 match payment_secrets.entry(payment_hash) {
4449                                                                         hash_map::Entry::Vacant(_) => {
4450                                                                                 match claimable_htlc.onion_payload {
4451                                                                                         OnionPayload::Invoice { .. } => {
4452                                                                                                 let payment_data = payment_data.unwrap();
4453                                                                                                 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) {
4454                                                                                                         Ok(result) => result,
4455                                                                                                         Err(()) => {
4456                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as payment verification failed", &payment_hash);
4457                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4458                                                                                                         }
4459                                                                                                 };
4460                                                                                                 if let Some(min_final_cltv_expiry_delta) = min_final_cltv_expiry_delta {
4461                                                                                                         let expected_min_expiry_height = (self.current_best_block().height() + min_final_cltv_expiry_delta as u32) as u64;
4462                                                                                                         if (cltv_expiry as u64) < expected_min_expiry_height {
4463                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as its CLTV expiry was too soon (had {}, earliest expected {})",
4464                                                                                                                         &payment_hash, cltv_expiry, expected_min_expiry_height);
4465                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4466                                                                                                         }
4467                                                                                                 }
4468                                                                                                 let purpose = events::PaymentPurpose::InvoicePayment {
4469                                                                                                         payment_preimage: payment_preimage.clone(),
4470                                                                                                         payment_secret: payment_data.payment_secret,
4471                                                                                                 };
4472                                                                                                 check_total_value!(purpose);
4473                                                                                         },
4474                                                                                         OnionPayload::Spontaneous(preimage) => {
4475                                                                                                 let purpose = events::PaymentPurpose::SpontaneousPayment(preimage);
4476                                                                                                 check_total_value!(purpose);
4477                                                                                         }
4478                                                                                 }
4479                                                                         },
4480                                                                         hash_map::Entry::Occupied(inbound_payment) => {
4481                                                                                 if let OnionPayload::Spontaneous(_) = claimable_htlc.onion_payload {
4482                                                                                         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);
4483                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4484                                                                                 }
4485                                                                                 let payment_data = payment_data.unwrap();
4486                                                                                 if inbound_payment.get().payment_secret != payment_data.payment_secret {
4487                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our expected payment secret.", &payment_hash);
4488                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4489                                                                                 } else if inbound_payment.get().min_value_msat.is_some() && payment_data.total_msat < inbound_payment.get().min_value_msat.unwrap() {
4490                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our minimum value (had {}, needed {}).",
4491                                                                                                 &payment_hash, payment_data.total_msat, inbound_payment.get().min_value_msat.unwrap());
4492                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4493                                                                                 } else {
4494                                                                                         let purpose = events::PaymentPurpose::InvoicePayment {
4495                                                                                                 payment_preimage: inbound_payment.get().payment_preimage,
4496                                                                                                 payment_secret: payment_data.payment_secret,
4497                                                                                         };
4498                                                                                         let payment_claimable_generated = check_total_value!(purpose);
4499                                                                                         if payment_claimable_generated {
4500                                                                                                 inbound_payment.remove_entry();
4501                                                                                         }
4502                                                                                 }
4503                                                                         },
4504                                                                 };
4505                                                         },
4506                                                         HTLCForwardInfo::FailHTLC { .. } => {
4507                                                                 panic!("Got pending fail of our own HTLC");
4508                                                         }
4509                                                 }
4510                                         }
4511                                 }
4512                         }
4513                 }
4514
4515                 let best_block_height = self.best_block.read().unwrap().height();
4516                 self.pending_outbound_payments.check_retry_payments(&self.router, || self.list_usable_channels(),
4517                         || self.compute_inflight_htlcs(), &self.entropy_source, &self.node_signer, best_block_height,
4518                         &self.pending_events, &self.logger, |args| self.send_payment_along_path(args));
4519
4520                 for (htlc_source, payment_hash, failure_reason, destination) in failed_forwards.drain(..) {
4521                         self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
4522                 }
4523                 self.forward_htlcs(&mut phantom_receives);
4524
4525                 // Freeing the holding cell here is relatively redundant - in practice we'll do it when we
4526                 // next get a `get_and_clear_pending_msg_events` call, but some tests rely on it, and it's
4527                 // nice to do the work now if we can rather than while we're trying to get messages in the
4528                 // network stack.
4529                 self.check_free_holding_cells();
4530
4531                 if new_events.is_empty() { return }
4532                 let mut events = self.pending_events.lock().unwrap();
4533                 events.append(&mut new_events);
4534         }
4535
4536         /// Free the background events, generally called from [`PersistenceNotifierGuard`] constructors.
4537         ///
4538         /// Expects the caller to have a total_consistency_lock read lock.
4539         fn process_background_events(&self) -> NotifyOption {
4540                 debug_assert_ne!(self.total_consistency_lock.held_by_thread(), LockHeldState::NotHeldByThread);
4541
4542                 self.background_events_processed_since_startup.store(true, Ordering::Release);
4543
4544                 let mut background_events = Vec::new();
4545                 mem::swap(&mut *self.pending_background_events.lock().unwrap(), &mut background_events);
4546                 if background_events.is_empty() {
4547                         return NotifyOption::SkipPersistNoEvents;
4548                 }
4549
4550                 for event in background_events.drain(..) {
4551                         match event {
4552                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((funding_txo, update)) => {
4553                                         // The channel has already been closed, so no use bothering to care about the
4554                                         // monitor updating completing.
4555                                         let _ = self.chain_monitor.update_channel(funding_txo, &update);
4556                                 },
4557                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup { counterparty_node_id, funding_txo, update } => {
4558                                         let mut updated_chan = false;
4559                                         {
4560                                                 let per_peer_state = self.per_peer_state.read().unwrap();
4561                                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
4562                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4563                                                         let peer_state = &mut *peer_state_lock;
4564                                                         match peer_state.channel_by_id.entry(funding_txo.to_channel_id()) {
4565                                                                 hash_map::Entry::Occupied(mut chan_phase) => {
4566                                                                         if let ChannelPhase::Funded(chan) = chan_phase.get_mut() {
4567                                                                                 updated_chan = true;
4568                                                                                 handle_new_monitor_update!(self, funding_txo, update.clone(),
4569                                                                                         peer_state_lock, peer_state, per_peer_state, chan);
4570                                                                         } else {
4571                                                                                 debug_assert!(false, "We shouldn't have an update for a non-funded channel");
4572                                                                         }
4573                                                                 },
4574                                                                 hash_map::Entry::Vacant(_) => {},
4575                                                         }
4576                                                 }
4577                                         }
4578                                         if !updated_chan {
4579                                                 // TODO: Track this as in-flight even though the channel is closed.
4580                                                 let _ = self.chain_monitor.update_channel(funding_txo, &update);
4581                                         }
4582                                 },
4583                                 BackgroundEvent::MonitorUpdatesComplete { counterparty_node_id, channel_id } => {
4584                                         let per_peer_state = self.per_peer_state.read().unwrap();
4585                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
4586                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4587                                                 let peer_state = &mut *peer_state_lock;
4588                                                 if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&channel_id) {
4589                                                         handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, chan);
4590                                                 } else {
4591                                                         let update_actions = peer_state.monitor_update_blocked_actions
4592                                                                 .remove(&channel_id).unwrap_or(Vec::new());
4593                                                         mem::drop(peer_state_lock);
4594                                                         mem::drop(per_peer_state);
4595                                                         self.handle_monitor_update_completion_actions(update_actions);
4596                                                 }
4597                                         }
4598                                 },
4599                         }
4600                 }
4601                 NotifyOption::DoPersist
4602         }
4603
4604         #[cfg(any(test, feature = "_test_utils"))]
4605         /// Process background events, for functional testing
4606         pub fn test_process_background_events(&self) {
4607                 let _lck = self.total_consistency_lock.read().unwrap();
4608                 let _ = self.process_background_events();
4609         }
4610
4611         fn update_channel_fee(&self, chan_id: &ChannelId, chan: &mut Channel<SP>, new_feerate: u32) -> NotifyOption {
4612                 if !chan.context.is_outbound() { return NotifyOption::SkipPersistNoEvents; }
4613                 // If the feerate has decreased by less than half, don't bother
4614                 if new_feerate <= chan.context.get_feerate_sat_per_1000_weight() && new_feerate * 2 > chan.context.get_feerate_sat_per_1000_weight() {
4615                         if new_feerate != chan.context.get_feerate_sat_per_1000_weight() {
4616                                 log_trace!(self.logger, "Channel {} does not qualify for a feerate change from {} to {}.",
4617                                 chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4618                         }
4619                         return NotifyOption::SkipPersistNoEvents;
4620                 }
4621                 if !chan.context.is_live() {
4622                         log_trace!(self.logger, "Channel {} does not qualify for a feerate change from {} to {} as it cannot currently be updated (probably the peer is disconnected).",
4623                                 chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4624                         return NotifyOption::SkipPersistNoEvents;
4625                 }
4626                 log_trace!(self.logger, "Channel {} qualifies for a feerate change from {} to {}.",
4627                         &chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4628
4629                 chan.queue_update_fee(new_feerate, &self.fee_estimator, &self.logger);
4630                 NotifyOption::DoPersist
4631         }
4632
4633         #[cfg(fuzzing)]
4634         /// In chanmon_consistency we want to sometimes do the channel fee updates done in
4635         /// timer_tick_occurred, but we can't generate the disabled channel updates as it considers
4636         /// these a fuzz failure (as they usually indicate a channel force-close, which is exactly what
4637         /// it wants to detect). Thus, we have a variant exposed here for its benefit.
4638         pub fn maybe_update_chan_fees(&self) {
4639                 PersistenceNotifierGuard::optionally_notify(self, || {
4640                         let mut should_persist = NotifyOption::SkipPersistNoEvents;
4641
4642                         let non_anchor_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::NonAnchorChannelFee);
4643                         let anchor_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::AnchorChannelFee);
4644
4645                         let per_peer_state = self.per_peer_state.read().unwrap();
4646                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
4647                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4648                                 let peer_state = &mut *peer_state_lock;
4649                                 for (chan_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
4650                                         |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
4651                                 ) {
4652                                         let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
4653                                                 anchor_feerate
4654                                         } else {
4655                                                 non_anchor_feerate
4656                                         };
4657                                         let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4658                                         if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4659                                 }
4660                         }
4661
4662                         should_persist
4663                 });
4664         }
4665
4666         /// Performs actions which should happen on startup and roughly once per minute thereafter.
4667         ///
4668         /// This currently includes:
4669         ///  * Increasing or decreasing the on-chain feerate estimates for our outbound channels,
4670         ///  * Broadcasting [`ChannelUpdate`] messages if we've been disconnected from our peer for more
4671         ///    than a minute, informing the network that they should no longer attempt to route over
4672         ///    the channel.
4673         ///  * Expiring a channel's previous [`ChannelConfig`] if necessary to only allow forwarding HTLCs
4674         ///    with the current [`ChannelConfig`].
4675         ///  * Removing peers which have disconnected but and no longer have any channels.
4676         ///  * Force-closing and removing channels which have not completed establishment in a timely manner.
4677         ///  * Forgetting about stale outbound payments, either those that have already been fulfilled
4678         ///    or those awaiting an invoice that hasn't been delivered in the necessary amount of time.
4679         ///    The latter is determined using the system clock in `std` and the highest seen block time
4680         ///    minus two hours in `no-std`.
4681         ///
4682         /// Note that this may cause reentrancy through [`chain::Watch::update_channel`] calls or feerate
4683         /// estimate fetches.
4684         ///
4685         /// [`ChannelUpdate`]: msgs::ChannelUpdate
4686         /// [`ChannelConfig`]: crate::util::config::ChannelConfig
4687         pub fn timer_tick_occurred(&self) {
4688                 PersistenceNotifierGuard::optionally_notify(self, || {
4689                         let mut should_persist = NotifyOption::SkipPersistNoEvents;
4690
4691                         let non_anchor_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::NonAnchorChannelFee);
4692                         let anchor_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::AnchorChannelFee);
4693
4694                         let mut handle_errors: Vec<(Result<(), _>, _)> = Vec::new();
4695                         let mut timed_out_mpp_htlcs = Vec::new();
4696                         let mut pending_peers_awaiting_removal = Vec::new();
4697                         let mut shutdown_channels = Vec::new();
4698
4699                         let mut process_unfunded_channel_tick = |
4700                                 chan_id: &ChannelId,
4701                                 context: &mut ChannelContext<SP>,
4702                                 unfunded_context: &mut UnfundedChannelContext,
4703                                 pending_msg_events: &mut Vec<MessageSendEvent>,
4704                                 counterparty_node_id: PublicKey,
4705                         | {
4706                                 context.maybe_expire_prev_config();
4707                                 if unfunded_context.should_expire_unfunded_channel() {
4708                                         log_error!(self.logger,
4709                                                 "Force-closing pending channel with ID {} for not establishing in a timely manner", chan_id);
4710                                         update_maps_on_chan_removal!(self, &context);
4711                                         self.issue_channel_close_events(&context, ClosureReason::HolderForceClosed);
4712                                         shutdown_channels.push(context.force_shutdown(false));
4713                                         pending_msg_events.push(MessageSendEvent::HandleError {
4714                                                 node_id: counterparty_node_id,
4715                                                 action: msgs::ErrorAction::SendErrorMessage {
4716                                                         msg: msgs::ErrorMessage {
4717                                                                 channel_id: *chan_id,
4718                                                                 data: "Force-closing pending channel due to timeout awaiting establishment handshake".to_owned(),
4719                                                         },
4720                                                 },
4721                                         });
4722                                         false
4723                                 } else {
4724                                         true
4725                                 }
4726                         };
4727
4728                         {
4729                                 let per_peer_state = self.per_peer_state.read().unwrap();
4730                                 for (counterparty_node_id, peer_state_mutex) in per_peer_state.iter() {
4731                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4732                                         let peer_state = &mut *peer_state_lock;
4733                                         let pending_msg_events = &mut peer_state.pending_msg_events;
4734                                         let counterparty_node_id = *counterparty_node_id;
4735                                         peer_state.channel_by_id.retain(|chan_id, phase| {
4736                                                 match phase {
4737                                                         ChannelPhase::Funded(chan) => {
4738                                                                 let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
4739                                                                         anchor_feerate
4740                                                                 } else {
4741                                                                         non_anchor_feerate
4742                                                                 };
4743                                                                 let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4744                                                                 if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4745
4746                                                                 if let Err(e) = chan.timer_check_closing_negotiation_progress() {
4747                                                                         let (needs_close, err) = convert_chan_phase_err!(self, e, chan, chan_id, FUNDED_CHANNEL);
4748                                                                         handle_errors.push((Err(err), counterparty_node_id));
4749                                                                         if needs_close { return false; }
4750                                                                 }
4751
4752                                                                 match chan.channel_update_status() {
4753                                                                         ChannelUpdateStatus::Enabled if !chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(0)),
4754                                                                         ChannelUpdateStatus::Disabled if chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(0)),
4755                                                                         ChannelUpdateStatus::DisabledStaged(_) if chan.context.is_live()
4756                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Enabled),
4757                                                                         ChannelUpdateStatus::EnabledStaged(_) if !chan.context.is_live()
4758                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Disabled),
4759                                                                         ChannelUpdateStatus::DisabledStaged(mut n) if !chan.context.is_live() => {
4760                                                                                 n += 1;
4761                                                                                 if n >= DISABLE_GOSSIP_TICKS {
4762                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Disabled);
4763                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4764                                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4765                                                                                                         msg: update
4766                                                                                                 });
4767                                                                                         }
4768                                                                                         should_persist = NotifyOption::DoPersist;
4769                                                                                 } else {
4770                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(n));
4771                                                                                 }
4772                                                                         },
4773                                                                         ChannelUpdateStatus::EnabledStaged(mut n) if chan.context.is_live() => {
4774                                                                                 n += 1;
4775                                                                                 if n >= ENABLE_GOSSIP_TICKS {
4776                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Enabled);
4777                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4778                                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4779                                                                                                         msg: update
4780                                                                                                 });
4781                                                                                         }
4782                                                                                         should_persist = NotifyOption::DoPersist;
4783                                                                                 } else {
4784                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(n));
4785                                                                                 }
4786                                                                         },
4787                                                                         _ => {},
4788                                                                 }
4789
4790                                                                 chan.context.maybe_expire_prev_config();
4791
4792                                                                 if chan.should_disconnect_peer_awaiting_response() {
4793                                                                         log_debug!(self.logger, "Disconnecting peer {} due to not making any progress on channel {}",
4794                                                                                         counterparty_node_id, chan_id);
4795                                                                         pending_msg_events.push(MessageSendEvent::HandleError {
4796                                                                                 node_id: counterparty_node_id,
4797                                                                                 action: msgs::ErrorAction::DisconnectPeerWithWarning {
4798                                                                                         msg: msgs::WarningMessage {
4799                                                                                                 channel_id: *chan_id,
4800                                                                                                 data: "Disconnecting due to timeout awaiting response".to_owned(),
4801                                                                                         },
4802                                                                                 },
4803                                                                         });
4804                                                                 }
4805
4806                                                                 true
4807                                                         },
4808                                                         ChannelPhase::UnfundedInboundV1(chan) => {
4809                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
4810                                                                         pending_msg_events, counterparty_node_id)
4811                                                         },
4812                                                         ChannelPhase::UnfundedOutboundV1(chan) => {
4813                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
4814                                                                         pending_msg_events, counterparty_node_id)
4815                                                         },
4816                                                 }
4817                                         });
4818
4819                                         for (chan_id, req) in peer_state.inbound_channel_request_by_id.iter_mut() {
4820                                                 if { req.ticks_remaining -= 1 ; req.ticks_remaining } <= 0 {
4821                                                         log_error!(self.logger, "Force-closing unaccepted inbound channel {} for not accepting in a timely manner", &chan_id);
4822                                                         peer_state.pending_msg_events.push(
4823                                                                 events::MessageSendEvent::HandleError {
4824                                                                         node_id: counterparty_node_id,
4825                                                                         action: msgs::ErrorAction::SendErrorMessage {
4826                                                                                 msg: msgs::ErrorMessage { channel_id: chan_id.clone(), data: "Channel force-closed".to_owned() }
4827                                                                         },
4828                                                                 }
4829                                                         );
4830                                                 }
4831                                         }
4832                                         peer_state.inbound_channel_request_by_id.retain(|_, req| req.ticks_remaining > 0);
4833
4834                                         if peer_state.ok_to_remove(true) {
4835                                                 pending_peers_awaiting_removal.push(counterparty_node_id);
4836                                         }
4837                                 }
4838                         }
4839
4840                         // When a peer disconnects but still has channels, the peer's `peer_state` entry in the
4841                         // `per_peer_state` is not removed by the `peer_disconnected` function. If the channels
4842                         // of to that peer is later closed while still being disconnected (i.e. force closed),
4843                         // we therefore need to remove the peer from `peer_state` separately.
4844                         // To avoid having to take the `per_peer_state` `write` lock once the channels are
4845                         // closed, we instead remove such peers awaiting removal here on a timer, to limit the
4846                         // negative effects on parallelism as much as possible.
4847                         if pending_peers_awaiting_removal.len() > 0 {
4848                                 let mut per_peer_state = self.per_peer_state.write().unwrap();
4849                                 for counterparty_node_id in pending_peers_awaiting_removal {
4850                                         match per_peer_state.entry(counterparty_node_id) {
4851                                                 hash_map::Entry::Occupied(entry) => {
4852                                                         // Remove the entry if the peer is still disconnected and we still
4853                                                         // have no channels to the peer.
4854                                                         let remove_entry = {
4855                                                                 let peer_state = entry.get().lock().unwrap();
4856                                                                 peer_state.ok_to_remove(true)
4857                                                         };
4858                                                         if remove_entry {
4859                                                                 entry.remove_entry();
4860                                                         }
4861                                                 },
4862                                                 hash_map::Entry::Vacant(_) => { /* The PeerState has already been removed */ }
4863                                         }
4864                                 }
4865                         }
4866
4867                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
4868                                 if payment.htlcs.is_empty() {
4869                                         // This should be unreachable
4870                                         debug_assert!(false);
4871                                         return false;
4872                                 }
4873                                 if let OnionPayload::Invoice { .. } = payment.htlcs[0].onion_payload {
4874                                         // Check if we've received all the parts we need for an MPP (the value of the parts adds to total_msat).
4875                                         // In this case we're not going to handle any timeouts of the parts here.
4876                                         // This condition determining whether the MPP is complete here must match
4877                                         // exactly the condition used in `process_pending_htlc_forwards`.
4878                                         if payment.htlcs[0].total_msat <= payment.htlcs.iter()
4879                                                 .fold(0, |total, htlc| total + htlc.sender_intended_value)
4880                                         {
4881                                                 return true;
4882                                         } else if payment.htlcs.iter_mut().any(|htlc| {
4883                                                 htlc.timer_ticks += 1;
4884                                                 return htlc.timer_ticks >= MPP_TIMEOUT_TICKS
4885                                         }) {
4886                                                 timed_out_mpp_htlcs.extend(payment.htlcs.drain(..)
4887                                                         .map(|htlc: ClaimableHTLC| (htlc.prev_hop, *payment_hash)));
4888                                                 return false;
4889                                         }
4890                                 }
4891                                 true
4892                         });
4893
4894                         for htlc_source in timed_out_mpp_htlcs.drain(..) {
4895                                 let source = HTLCSource::PreviousHopData(htlc_source.0.clone());
4896                                 let reason = HTLCFailReason::from_failure_code(23);
4897                                 let receiver = HTLCDestination::FailedPayment { payment_hash: htlc_source.1 };
4898                                 self.fail_htlc_backwards_internal(&source, &htlc_source.1, &reason, receiver);
4899                         }
4900
4901                         for (err, counterparty_node_id) in handle_errors.drain(..) {
4902                                 let _ = handle_error!(self, err, counterparty_node_id);
4903                         }
4904
4905                         for shutdown_res in shutdown_channels {
4906                                 self.finish_close_channel(shutdown_res);
4907                         }
4908
4909                         #[cfg(feature = "std")]
4910                         let duration_since_epoch = std::time::SystemTime::now()
4911                                 .duration_since(std::time::SystemTime::UNIX_EPOCH)
4912                                 .expect("SystemTime::now() should come after SystemTime::UNIX_EPOCH");
4913                         #[cfg(not(feature = "std"))]
4914                         let duration_since_epoch = Duration::from_secs(
4915                                 self.highest_seen_timestamp.load(Ordering::Acquire).saturating_sub(7200) as u64
4916                         );
4917
4918                         self.pending_outbound_payments.remove_stale_payments(
4919                                 duration_since_epoch, &self.pending_events
4920                         );
4921
4922                         // Technically we don't need to do this here, but if we have holding cell entries in a
4923                         // channel that need freeing, it's better to do that here and block a background task
4924                         // than block the message queueing pipeline.
4925                         if self.check_free_holding_cells() {
4926                                 should_persist = NotifyOption::DoPersist;
4927                         }
4928
4929                         should_persist
4930                 });
4931         }
4932
4933         /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
4934         /// after a PaymentClaimable event, failing the HTLC back to its origin and freeing resources
4935         /// along the path (including in our own channel on which we received it).
4936         ///
4937         /// Note that in some cases around unclean shutdown, it is possible the payment may have
4938         /// already been claimed by you via [`ChannelManager::claim_funds`] prior to you seeing (a
4939         /// second copy of) the [`events::Event::PaymentClaimable`] event. Alternatively, the payment
4940         /// may have already been failed automatically by LDK if it was nearing its expiration time.
4941         ///
4942         /// While LDK will never claim a payment automatically on your behalf (i.e. without you calling
4943         /// [`ChannelManager::claim_funds`]), you should still monitor for
4944         /// [`events::Event::PaymentClaimed`] events even for payments you intend to fail, especially on
4945         /// startup during which time claims that were in-progress at shutdown may be replayed.
4946         pub fn fail_htlc_backwards(&self, payment_hash: &PaymentHash) {
4947                 self.fail_htlc_backwards_with_reason(payment_hash, FailureCode::IncorrectOrUnknownPaymentDetails);
4948         }
4949
4950         /// This is a variant of [`ChannelManager::fail_htlc_backwards`] that allows you to specify the
4951         /// reason for the failure.
4952         ///
4953         /// See [`FailureCode`] for valid failure codes.
4954         pub fn fail_htlc_backwards_with_reason(&self, payment_hash: &PaymentHash, failure_code: FailureCode) {
4955                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4956
4957                 let removed_source = self.claimable_payments.lock().unwrap().claimable_payments.remove(payment_hash);
4958                 if let Some(payment) = removed_source {
4959                         for htlc in payment.htlcs {
4960                                 let reason = self.get_htlc_fail_reason_from_failure_code(failure_code, &htlc);
4961                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
4962                                 let receiver = HTLCDestination::FailedPayment { payment_hash: *payment_hash };
4963                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
4964                         }
4965                 }
4966         }
4967
4968         /// Gets error data to form an [`HTLCFailReason`] given a [`FailureCode`] and [`ClaimableHTLC`].
4969         fn get_htlc_fail_reason_from_failure_code(&self, failure_code: FailureCode, htlc: &ClaimableHTLC) -> HTLCFailReason {
4970                 match failure_code {
4971                         FailureCode::TemporaryNodeFailure => HTLCFailReason::from_failure_code(failure_code.into()),
4972                         FailureCode::RequiredNodeFeatureMissing => HTLCFailReason::from_failure_code(failure_code.into()),
4973                         FailureCode::IncorrectOrUnknownPaymentDetails => {
4974                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
4975                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
4976                                 HTLCFailReason::reason(failure_code.into(), htlc_msat_height_data)
4977                         },
4978                         FailureCode::InvalidOnionPayload(data) => {
4979                                 let fail_data = match data {
4980                                         Some((typ, offset)) => [BigSize(typ).encode(), offset.encode()].concat(),
4981                                         None => Vec::new(),
4982                                 };
4983                                 HTLCFailReason::reason(failure_code.into(), fail_data)
4984                         }
4985                 }
4986         }
4987
4988         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
4989         /// that we want to return and a channel.
4990         ///
4991         /// This is for failures on the channel on which the HTLC was *received*, not failures
4992         /// forwarding
4993         fn get_htlc_inbound_temp_fail_err_and_data(&self, desired_err_code: u16, chan: &Channel<SP>) -> (u16, Vec<u8>) {
4994                 // We can't be sure what SCID was used when relaying inbound towards us, so we have to
4995                 // guess somewhat. If its a public channel, we figure best to just use the real SCID (as
4996                 // we're not leaking that we have a channel with the counterparty), otherwise we try to use
4997                 // an inbound SCID alias before the real SCID.
4998                 let scid_pref = if chan.context.should_announce() {
4999                         chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias())
5000                 } else {
5001                         chan.context.latest_inbound_scid_alias().or(chan.context.get_short_channel_id())
5002                 };
5003                 if let Some(scid) = scid_pref {
5004                         self.get_htlc_temp_fail_err_and_data(desired_err_code, scid, chan)
5005                 } else {
5006                         (0x4000|10, Vec::new())
5007                 }
5008         }
5009
5010
5011         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
5012         /// that we want to return and a channel.
5013         fn get_htlc_temp_fail_err_and_data(&self, desired_err_code: u16, scid: u64, chan: &Channel<SP>) -> (u16, Vec<u8>) {
5014                 debug_assert_eq!(desired_err_code & 0x1000, 0x1000);
5015                 if let Ok(upd) = self.get_channel_update_for_onion(scid, chan) {
5016                         let mut enc = VecWriter(Vec::with_capacity(upd.serialized_length() + 6));
5017                         if desired_err_code == 0x1000 | 20 {
5018                                 // No flags for `disabled_flags` are currently defined so they're always two zero bytes.
5019                                 // See https://github.com/lightning/bolts/blob/341ec84/04-onion-routing.md?plain=1#L1008
5020                                 0u16.write(&mut enc).expect("Writes cannot fail");
5021                         }
5022                         (upd.serialized_length() as u16 + 2).write(&mut enc).expect("Writes cannot fail");
5023                         msgs::ChannelUpdate::TYPE.write(&mut enc).expect("Writes cannot fail");
5024                         upd.write(&mut enc).expect("Writes cannot fail");
5025                         (desired_err_code, enc.0)
5026                 } else {
5027                         // If we fail to get a unicast channel_update, it implies we don't yet have an SCID,
5028                         // which means we really shouldn't have gotten a payment to be forwarded over this
5029                         // channel yet, or if we did it's from a route hint. Either way, returning an error of
5030                         // PERM|no_such_channel should be fine.
5031                         (0x4000|10, Vec::new())
5032                 }
5033         }
5034
5035         // Fail a list of HTLCs that were just freed from the holding cell. The HTLCs need to be
5036         // failed backwards or, if they were one of our outgoing HTLCs, then their failure needs to
5037         // be surfaced to the user.
5038         fn fail_holding_cell_htlcs(
5039                 &self, mut htlcs_to_fail: Vec<(HTLCSource, PaymentHash)>, channel_id: ChannelId,
5040                 counterparty_node_id: &PublicKey
5041         ) {
5042                 let (failure_code, onion_failure_data) = {
5043                         let per_peer_state = self.per_peer_state.read().unwrap();
5044                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
5045                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5046                                 let peer_state = &mut *peer_state_lock;
5047                                 match peer_state.channel_by_id.entry(channel_id) {
5048                                         hash_map::Entry::Occupied(chan_phase_entry) => {
5049                                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get() {
5050                                                         self.get_htlc_inbound_temp_fail_err_and_data(0x1000|7, &chan)
5051                                                 } else {
5052                                                         // We shouldn't be trying to fail holding cell HTLCs on an unfunded channel.
5053                                                         debug_assert!(false);
5054                                                         (0x4000|10, Vec::new())
5055                                                 }
5056                                         },
5057                                         hash_map::Entry::Vacant(_) => (0x4000|10, Vec::new())
5058                                 }
5059                         } else { (0x4000|10, Vec::new()) }
5060                 };
5061
5062                 for (htlc_src, payment_hash) in htlcs_to_fail.drain(..) {
5063                         let reason = HTLCFailReason::reason(failure_code, onion_failure_data.clone());
5064                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id };
5065                         self.fail_htlc_backwards_internal(&htlc_src, &payment_hash, &reason, receiver);
5066                 }
5067         }
5068
5069         /// Fails an HTLC backwards to the sender of it to us.
5070         /// Note that we do not assume that channels corresponding to failed HTLCs are still available.
5071         fn fail_htlc_backwards_internal(&self, source: &HTLCSource, payment_hash: &PaymentHash, onion_error: &HTLCFailReason, destination: HTLCDestination) {
5072                 // Ensure that no peer state channel storage lock is held when calling this function.
5073                 // This ensures that future code doesn't introduce a lock-order requirement for
5074                 // `forward_htlcs` to be locked after the `per_peer_state` peer locks, which calling
5075                 // this function with any `per_peer_state` peer lock acquired would.
5076                 #[cfg(debug_assertions)]
5077                 for (_, peer) in self.per_peer_state.read().unwrap().iter() {
5078                         debug_assert_ne!(peer.held_by_thread(), LockHeldState::HeldByThread);
5079                 }
5080
5081                 //TODO: There is a timing attack here where if a node fails an HTLC back to us they can
5082                 //identify whether we sent it or not based on the (I presume) very different runtime
5083                 //between the branches here. We should make this async and move it into the forward HTLCs
5084                 //timer handling.
5085
5086                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
5087                 // from block_connected which may run during initialization prior to the chain_monitor
5088                 // being fully configured. See the docs for `ChannelManagerReadArgs` for more.
5089                 match source {
5090                         HTLCSource::OutboundRoute { ref path, ref session_priv, ref payment_id, .. } => {
5091                                 if self.pending_outbound_payments.fail_htlc(source, payment_hash, onion_error, path,
5092                                         session_priv, payment_id, self.probing_cookie_secret, &self.secp_ctx,
5093                                         &self.pending_events, &self.logger)
5094                                 { self.push_pending_forwards_ev(); }
5095                         },
5096                         HTLCSource::PreviousHopData(HTLCPreviousHopData { ref short_channel_id, ref htlc_id, ref incoming_packet_shared_secret, ref phantom_shared_secret, ref outpoint, .. }) => {
5097                                 log_trace!(self.logger, "Failing HTLC with payment_hash {} backwards from us with {:?}", &payment_hash, onion_error);
5098                                 let err_packet = onion_error.get_encrypted_failure_packet(incoming_packet_shared_secret, phantom_shared_secret);
5099
5100                                 let mut push_forward_ev = false;
5101                                 let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
5102                                 if forward_htlcs.is_empty() {
5103                                         push_forward_ev = true;
5104                                 }
5105                                 match forward_htlcs.entry(*short_channel_id) {
5106                                         hash_map::Entry::Occupied(mut entry) => {
5107                                                 entry.get_mut().push(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet });
5108                                         },
5109                                         hash_map::Entry::Vacant(entry) => {
5110                                                 entry.insert(vec!(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet }));
5111                                         }
5112                                 }
5113                                 mem::drop(forward_htlcs);
5114                                 if push_forward_ev { self.push_pending_forwards_ev(); }
5115                                 let mut pending_events = self.pending_events.lock().unwrap();
5116                                 pending_events.push_back((events::Event::HTLCHandlingFailed {
5117                                         prev_channel_id: outpoint.to_channel_id(),
5118                                         failed_next_destination: destination,
5119                                 }, None));
5120                         },
5121                 }
5122         }
5123
5124         /// Provides a payment preimage in response to [`Event::PaymentClaimable`], generating any
5125         /// [`MessageSendEvent`]s needed to claim the payment.
5126         ///
5127         /// This method is guaranteed to ensure the payment has been claimed but only if the current
5128         /// height is strictly below [`Event::PaymentClaimable::claim_deadline`]. To avoid race
5129         /// conditions, you should wait for an [`Event::PaymentClaimed`] before considering the payment
5130         /// successful. It will generally be available in the next [`process_pending_events`] call.
5131         ///
5132         /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
5133         /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentClaimable`
5134         /// event matches your expectation. If you fail to do so and call this method, you may provide
5135         /// the sender "proof-of-payment" when they did not fulfill the full expected payment.
5136         ///
5137         /// This function will fail the payment if it has custom TLVs with even type numbers, as we
5138         /// will assume they are unknown. If you intend to accept even custom TLVs, you should use
5139         /// [`claim_funds_with_known_custom_tlvs`].
5140         ///
5141         /// [`Event::PaymentClaimable`]: crate::events::Event::PaymentClaimable
5142         /// [`Event::PaymentClaimable::claim_deadline`]: crate::events::Event::PaymentClaimable::claim_deadline
5143         /// [`Event::PaymentClaimed`]: crate::events::Event::PaymentClaimed
5144         /// [`process_pending_events`]: EventsProvider::process_pending_events
5145         /// [`create_inbound_payment`]: Self::create_inbound_payment
5146         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
5147         /// [`claim_funds_with_known_custom_tlvs`]: Self::claim_funds_with_known_custom_tlvs
5148         pub fn claim_funds(&self, payment_preimage: PaymentPreimage) {
5149                 self.claim_payment_internal(payment_preimage, false);
5150         }
5151
5152         /// This is a variant of [`claim_funds`] that allows accepting a payment with custom TLVs with
5153         /// even type numbers.
5154         ///
5155         /// # Note
5156         ///
5157         /// You MUST check you've understood all even TLVs before using this to
5158         /// claim, otherwise you may unintentionally agree to some protocol you do not understand.
5159         ///
5160         /// [`claim_funds`]: Self::claim_funds
5161         pub fn claim_funds_with_known_custom_tlvs(&self, payment_preimage: PaymentPreimage) {
5162                 self.claim_payment_internal(payment_preimage, true);
5163         }
5164
5165         fn claim_payment_internal(&self, payment_preimage: PaymentPreimage, custom_tlvs_known: bool) {
5166                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
5167
5168                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5169
5170                 let mut sources = {
5171                         let mut claimable_payments = self.claimable_payments.lock().unwrap();
5172                         if let Some(payment) = claimable_payments.claimable_payments.remove(&payment_hash) {
5173                                 let mut receiver_node_id = self.our_network_pubkey;
5174                                 for htlc in payment.htlcs.iter() {
5175                                         if htlc.prev_hop.phantom_shared_secret.is_some() {
5176                                                 let phantom_pubkey = self.node_signer.get_node_id(Recipient::PhantomNode)
5177                                                         .expect("Failed to get node_id for phantom node recipient");
5178                                                 receiver_node_id = phantom_pubkey;
5179                                                 break;
5180                                         }
5181                                 }
5182
5183                                 let htlcs = payment.htlcs.iter().map(events::ClaimedHTLC::from).collect();
5184                                 let sender_intended_value = payment.htlcs.first().map(|htlc| htlc.total_msat);
5185                                 let dup_purpose = claimable_payments.pending_claiming_payments.insert(payment_hash,
5186                                         ClaimingPayment { amount_msat: payment.htlcs.iter().map(|source| source.value).sum(),
5187                                         payment_purpose: payment.purpose, receiver_node_id, htlcs, sender_intended_value
5188                                 });
5189                                 if dup_purpose.is_some() {
5190                                         debug_assert!(false, "Shouldn't get a duplicate pending claim event ever");
5191                                         log_error!(self.logger, "Got a duplicate pending claimable event on payment hash {}! Please report this bug",
5192                                                 &payment_hash);
5193                                 }
5194
5195                                 if let Some(RecipientOnionFields { ref custom_tlvs, .. }) = payment.onion_fields {
5196                                         if !custom_tlvs_known && custom_tlvs.iter().any(|(typ, _)| typ % 2 == 0) {
5197                                                 log_info!(self.logger, "Rejecting payment with payment hash {} as we cannot accept payment with unknown even TLVs: {}",
5198                                                         &payment_hash, log_iter!(custom_tlvs.iter().map(|(typ, _)| typ).filter(|typ| *typ % 2 == 0)));
5199                                                 claimable_payments.pending_claiming_payments.remove(&payment_hash);
5200                                                 mem::drop(claimable_payments);
5201                                                 for htlc in payment.htlcs {
5202                                                         let reason = self.get_htlc_fail_reason_from_failure_code(FailureCode::InvalidOnionPayload(None), &htlc);
5203                                                         let source = HTLCSource::PreviousHopData(htlc.prev_hop);
5204                                                         let receiver = HTLCDestination::FailedPayment { payment_hash };
5205                                                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
5206                                                 }
5207                                                 return;
5208                                         }
5209                                 }
5210
5211                                 payment.htlcs
5212                         } else { return; }
5213                 };
5214                 debug_assert!(!sources.is_empty());
5215
5216                 // Just in case one HTLC has been failed between when we generated the `PaymentClaimable`
5217                 // and when we got here we need to check that the amount we're about to claim matches the
5218                 // amount we told the user in the last `PaymentClaimable`. We also do a sanity-check that
5219                 // the MPP parts all have the same `total_msat`.
5220                 let mut claimable_amt_msat = 0;
5221                 let mut prev_total_msat = None;
5222                 let mut expected_amt_msat = None;
5223                 let mut valid_mpp = true;
5224                 let mut errs = Vec::new();
5225                 let per_peer_state = self.per_peer_state.read().unwrap();
5226                 for htlc in sources.iter() {
5227                         if prev_total_msat.is_some() && prev_total_msat != Some(htlc.total_msat) {
5228                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different expected total amounts - this should not be reachable!");
5229                                 debug_assert!(false);
5230                                 valid_mpp = false;
5231                                 break;
5232                         }
5233                         prev_total_msat = Some(htlc.total_msat);
5234
5235                         if expected_amt_msat.is_some() && expected_amt_msat != htlc.total_value_received {
5236                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different received total amounts - this should not be reachable!");
5237                                 debug_assert!(false);
5238                                 valid_mpp = false;
5239                                 break;
5240                         }
5241                         expected_amt_msat = htlc.total_value_received;
5242                         claimable_amt_msat += htlc.value;
5243                 }
5244                 mem::drop(per_peer_state);
5245                 if sources.is_empty() || expected_amt_msat.is_none() {
5246                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5247                         log_info!(self.logger, "Attempted to claim an incomplete payment which no longer had any available HTLCs!");
5248                         return;
5249                 }
5250                 if claimable_amt_msat != expected_amt_msat.unwrap() {
5251                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5252                         log_info!(self.logger, "Attempted to claim an incomplete payment, expected {} msat, had {} available to claim.",
5253                                 expected_amt_msat.unwrap(), claimable_amt_msat);
5254                         return;
5255                 }
5256                 if valid_mpp {
5257                         for htlc in sources.drain(..) {
5258                                 if let Err((pk, err)) = self.claim_funds_from_hop(
5259                                         htlc.prev_hop, payment_preimage,
5260                                         |_, definitely_duplicate| {
5261                                                 debug_assert!(!definitely_duplicate, "We shouldn't claim duplicatively from a payment");
5262                                                 Some(MonitorUpdateCompletionAction::PaymentClaimed { payment_hash })
5263                                         }
5264                                 ) {
5265                                         if let msgs::ErrorAction::IgnoreError = err.err.action {
5266                                                 // We got a temporary failure updating monitor, but will claim the
5267                                                 // HTLC when the monitor updating is restored (or on chain).
5268                                                 log_error!(self.logger, "Temporary failure claiming HTLC, treating as success: {}", err.err.err);
5269                                         } else { errs.push((pk, err)); }
5270                                 }
5271                         }
5272                 }
5273                 if !valid_mpp {
5274                         for htlc in sources.drain(..) {
5275                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
5276                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
5277                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
5278                                 let reason = HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data);
5279                                 let receiver = HTLCDestination::FailedPayment { payment_hash };
5280                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
5281                         }
5282                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5283                 }
5284
5285                 // Now we can handle any errors which were generated.
5286                 for (counterparty_node_id, err) in errs.drain(..) {
5287                         let res: Result<(), _> = Err(err);
5288                         let _ = handle_error!(self, res, counterparty_node_id);
5289                 }
5290         }
5291
5292         fn claim_funds_from_hop<ComplFunc: FnOnce(Option<u64>, bool) -> Option<MonitorUpdateCompletionAction>>(&self,
5293                 prev_hop: HTLCPreviousHopData, payment_preimage: PaymentPreimage, completion_action: ComplFunc)
5294         -> Result<(), (PublicKey, MsgHandleErrInternal)> {
5295                 //TODO: Delay the claimed_funds relaying just like we do outbound relay!
5296
5297                 // If we haven't yet run background events assume we're still deserializing and shouldn't
5298                 // actually pass `ChannelMonitorUpdate`s to users yet. Instead, queue them up as
5299                 // `BackgroundEvent`s.
5300                 let during_init = !self.background_events_processed_since_startup.load(Ordering::Acquire);
5301
5302                 // As we may call handle_monitor_update_completion_actions in rather rare cases, check that
5303                 // the required mutexes are not held before we start.
5304                 debug_assert_ne!(self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
5305                 debug_assert_ne!(self.claimable_payments.held_by_thread(), LockHeldState::HeldByThread);
5306
5307                 {
5308                         let per_peer_state = self.per_peer_state.read().unwrap();
5309                         let chan_id = prev_hop.outpoint.to_channel_id();
5310                         let counterparty_node_id_opt = match self.short_to_chan_info.read().unwrap().get(&prev_hop.short_channel_id) {
5311                                 Some((cp_id, _dup_chan_id)) => Some(cp_id.clone()),
5312                                 None => None
5313                         };
5314
5315                         let peer_state_opt = counterparty_node_id_opt.as_ref().map(
5316                                 |counterparty_node_id| per_peer_state.get(counterparty_node_id)
5317                                         .map(|peer_mutex| peer_mutex.lock().unwrap())
5318                         ).unwrap_or(None);
5319
5320                         if peer_state_opt.is_some() {
5321                                 let mut peer_state_lock = peer_state_opt.unwrap();
5322                                 let peer_state = &mut *peer_state_lock;
5323                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(chan_id) {
5324                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
5325                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
5326                                                 let fulfill_res = chan.get_update_fulfill_htlc_and_commit(prev_hop.htlc_id, payment_preimage, &self.logger);
5327
5328                                                 match fulfill_res {
5329                                                         UpdateFulfillCommitFetch::NewClaim { htlc_value_msat, monitor_update } => {
5330                                                                 if let Some(action) = completion_action(Some(htlc_value_msat), false) {
5331                                                                         log_trace!(self.logger, "Tracking monitor update completion action for channel {}: {:?}",
5332                                                                                 chan_id, action);
5333                                                                         peer_state.monitor_update_blocked_actions.entry(chan_id).or_insert(Vec::new()).push(action);
5334                                                                 }
5335                                                                 if !during_init {
5336                                                                         handle_new_monitor_update!(self, prev_hop.outpoint, monitor_update, peer_state_lock,
5337                                                                                 peer_state, per_peer_state, chan);
5338                                                                 } else {
5339                                                                         // If we're running during init we cannot update a monitor directly -
5340                                                                         // they probably haven't actually been loaded yet. Instead, push the
5341                                                                         // monitor update as a background event.
5342                                                                         self.pending_background_events.lock().unwrap().push(
5343                                                                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
5344                                                                                         counterparty_node_id,
5345                                                                                         funding_txo: prev_hop.outpoint,
5346                                                                                         update: monitor_update.clone(),
5347                                                                                 });
5348                                                                 }
5349                                                         }
5350                                                         UpdateFulfillCommitFetch::DuplicateClaim {} => {
5351                                                                 let action = if let Some(action) = completion_action(None, true) {
5352                                                                         action
5353                                                                 } else {
5354                                                                         return Ok(());
5355                                                                 };
5356                                                                 mem::drop(peer_state_lock);
5357
5358                                                                 log_trace!(self.logger, "Completing monitor update completion action for channel {} as claim was redundant: {:?}",
5359                                                                         chan_id, action);
5360                                                                 let (node_id, funding_outpoint, blocker) =
5361                                                                 if let MonitorUpdateCompletionAction::FreeOtherChannelImmediately {
5362                                                                         downstream_counterparty_node_id: node_id,
5363                                                                         downstream_funding_outpoint: funding_outpoint,
5364                                                                         blocking_action: blocker,
5365                                                                 } = action {
5366                                                                         (node_id, funding_outpoint, blocker)
5367                                                                 } else {
5368                                                                         debug_assert!(false,
5369                                                                                 "Duplicate claims should always free another channel immediately");
5370                                                                         return Ok(());
5371                                                                 };
5372                                                                 if let Some(peer_state_mtx) = per_peer_state.get(&node_id) {
5373                                                                         let mut peer_state = peer_state_mtx.lock().unwrap();
5374                                                                         if let Some(blockers) = peer_state
5375                                                                                 .actions_blocking_raa_monitor_updates
5376                                                                                 .get_mut(&funding_outpoint.to_channel_id())
5377                                                                         {
5378                                                                                 let mut found_blocker = false;
5379                                                                                 blockers.retain(|iter| {
5380                                                                                         // Note that we could actually be blocked, in
5381                                                                                         // which case we need to only remove the one
5382                                                                                         // blocker which was added duplicatively.
5383                                                                                         let first_blocker = !found_blocker;
5384                                                                                         if *iter == blocker { found_blocker = true; }
5385                                                                                         *iter != blocker || !first_blocker
5386                                                                                 });
5387                                                                                 debug_assert!(found_blocker);
5388                                                                         }
5389                                                                 } else {
5390                                                                         debug_assert!(false);
5391                                                                 }
5392                                                         }
5393                                                 }
5394                                         }
5395                                         return Ok(());
5396                                 }
5397                         }
5398                 }
5399                 let preimage_update = ChannelMonitorUpdate {
5400                         update_id: CLOSED_CHANNEL_UPDATE_ID,
5401                         updates: vec![ChannelMonitorUpdateStep::PaymentPreimage {
5402                                 payment_preimage,
5403                         }],
5404                 };
5405
5406                 if !during_init {
5407                         // We update the ChannelMonitor on the backward link, after
5408                         // receiving an `update_fulfill_htlc` from the forward link.
5409                         let update_res = self.chain_monitor.update_channel(prev_hop.outpoint, &preimage_update);
5410                         if update_res != ChannelMonitorUpdateStatus::Completed {
5411                                 // TODO: This needs to be handled somehow - if we receive a monitor update
5412                                 // with a preimage we *must* somehow manage to propagate it to the upstream
5413                                 // channel, or we must have an ability to receive the same event and try
5414                                 // again on restart.
5415                                 log_error!(self.logger, "Critical error: failed to update channel monitor with preimage {:?}: {:?}",
5416                                         payment_preimage, update_res);
5417                         }
5418                 } else {
5419                         // If we're running during init we cannot update a monitor directly - they probably
5420                         // haven't actually been loaded yet. Instead, push the monitor update as a background
5421                         // event.
5422                         // Note that while it's safe to use `ClosedMonitorUpdateRegeneratedOnStartup` here (the
5423                         // channel is already closed) we need to ultimately handle the monitor update
5424                         // completion action only after we've completed the monitor update. This is the only
5425                         // way to guarantee this update *will* be regenerated on startup (otherwise if this was
5426                         // from a forwarded HTLC the downstream preimage may be deleted before we claim
5427                         // upstream). Thus, we need to transition to some new `BackgroundEvent` type which will
5428                         // complete the monitor update completion action from `completion_action`.
5429                         self.pending_background_events.lock().unwrap().push(
5430                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((
5431                                         prev_hop.outpoint, preimage_update,
5432                                 )));
5433                 }
5434                 // Note that we do process the completion action here. This totally could be a
5435                 // duplicate claim, but we have no way of knowing without interrogating the
5436                 // `ChannelMonitor` we've provided the above update to. Instead, note that `Event`s are
5437                 // generally always allowed to be duplicative (and it's specifically noted in
5438                 // `PaymentForwarded`).
5439                 self.handle_monitor_update_completion_actions(completion_action(None, false));
5440                 Ok(())
5441         }
5442
5443         fn finalize_claims(&self, sources: Vec<HTLCSource>) {
5444                 self.pending_outbound_payments.finalize_claims(sources, &self.pending_events);
5445         }
5446
5447         fn claim_funds_internal(&self, source: HTLCSource, payment_preimage: PaymentPreimage,
5448                 forwarded_htlc_value_msat: Option<u64>, from_onchain: bool, startup_replay: bool,
5449                 next_channel_counterparty_node_id: Option<PublicKey>, next_channel_outpoint: OutPoint
5450         ) {
5451                 match source {
5452                         HTLCSource::OutboundRoute { session_priv, payment_id, path, .. } => {
5453                                 debug_assert!(self.background_events_processed_since_startup.load(Ordering::Acquire),
5454                                         "We don't support claim_htlc claims during startup - monitors may not be available yet");
5455                                 if let Some(pubkey) = next_channel_counterparty_node_id {
5456                                         debug_assert_eq!(pubkey, path.hops[0].pubkey);
5457                                 }
5458                                 let ev_completion_action = EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
5459                                         channel_funding_outpoint: next_channel_outpoint,
5460                                         counterparty_node_id: path.hops[0].pubkey,
5461                                 };
5462                                 self.pending_outbound_payments.claim_htlc(payment_id, payment_preimage,
5463                                         session_priv, path, from_onchain, ev_completion_action, &self.pending_events,
5464                                         &self.logger);
5465                         },
5466                         HTLCSource::PreviousHopData(hop_data) => {
5467                                 let prev_outpoint = hop_data.outpoint;
5468                                 let completed_blocker = RAAMonitorUpdateBlockingAction::from_prev_hop_data(&hop_data);
5469                                 #[cfg(debug_assertions)]
5470                                 let claiming_chan_funding_outpoint = hop_data.outpoint;
5471                                 let res = self.claim_funds_from_hop(hop_data, payment_preimage,
5472                                         |htlc_claim_value_msat, definitely_duplicate| {
5473                                                 let chan_to_release =
5474                                                         if let Some(node_id) = next_channel_counterparty_node_id {
5475                                                                 Some((node_id, next_channel_outpoint, completed_blocker))
5476                                                         } else {
5477                                                                 // We can only get `None` here if we are processing a
5478                                                                 // `ChannelMonitor`-originated event, in which case we
5479                                                                 // don't care about ensuring we wake the downstream
5480                                                                 // channel's monitor updating - the channel is already
5481                                                                 // closed.
5482                                                                 None
5483                                                         };
5484
5485                                                 if definitely_duplicate && startup_replay {
5486                                                         // On startup we may get redundant claims which are related to
5487                                                         // monitor updates still in flight. In that case, we shouldn't
5488                                                         // immediately free, but instead let that monitor update complete
5489                                                         // in the background.
5490                                                         #[cfg(debug_assertions)] {
5491                                                                 let background_events = self.pending_background_events.lock().unwrap();
5492                                                                 // There should be a `BackgroundEvent` pending...
5493                                                                 assert!(background_events.iter().any(|ev| {
5494                                                                         match ev {
5495                                                                                 // to apply a monitor update that blocked the claiming channel,
5496                                                                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
5497                                                                                         funding_txo, update, ..
5498                                                                                 } => {
5499                                                                                         if *funding_txo == claiming_chan_funding_outpoint {
5500                                                                                                 assert!(update.updates.iter().any(|upd|
5501                                                                                                         if let ChannelMonitorUpdateStep::PaymentPreimage {
5502                                                                                                                 payment_preimage: update_preimage
5503                                                                                                         } = upd {
5504                                                                                                                 payment_preimage == *update_preimage
5505                                                                                                         } else { false }
5506                                                                                                 ), "{:?}", update);
5507                                                                                                 true
5508                                                                                         } else { false }
5509                                                                                 },
5510                                                                                 // or the channel we'd unblock is already closed,
5511                                                                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup(
5512                                                                                         (funding_txo, monitor_update)
5513                                                                                 ) => {
5514                                                                                         if *funding_txo == next_channel_outpoint {
5515                                                                                                 assert_eq!(monitor_update.updates.len(), 1);
5516                                                                                                 assert!(matches!(
5517                                                                                                         monitor_update.updates[0],
5518                                                                                                         ChannelMonitorUpdateStep::ChannelForceClosed { .. }
5519                                                                                                 ));
5520                                                                                                 true
5521                                                                                         } else { false }
5522                                                                                 },
5523                                                                                 // or the monitor update has completed and will unblock
5524                                                                                 // immediately once we get going.
5525                                                                                 BackgroundEvent::MonitorUpdatesComplete {
5526                                                                                         channel_id, ..
5527                                                                                 } =>
5528                                                                                         *channel_id == claiming_chan_funding_outpoint.to_channel_id(),
5529                                                                         }
5530                                                                 }), "{:?}", *background_events);
5531                                                         }
5532                                                         None
5533                                                 } else if definitely_duplicate {
5534                                                         if let Some(other_chan) = chan_to_release {
5535                                                                 Some(MonitorUpdateCompletionAction::FreeOtherChannelImmediately {
5536                                                                         downstream_counterparty_node_id: other_chan.0,
5537                                                                         downstream_funding_outpoint: other_chan.1,
5538                                                                         blocking_action: other_chan.2,
5539                                                                 })
5540                                                         } else { None }
5541                                                 } else {
5542                                                         let fee_earned_msat = if let Some(forwarded_htlc_value) = forwarded_htlc_value_msat {
5543                                                                 if let Some(claimed_htlc_value) = htlc_claim_value_msat {
5544                                                                         Some(claimed_htlc_value - forwarded_htlc_value)
5545                                                                 } else { None }
5546                                                         } else { None };
5547                                                         Some(MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
5548                                                                 event: events::Event::PaymentForwarded {
5549                                                                         fee_earned_msat,
5550                                                                         claim_from_onchain_tx: from_onchain,
5551                                                                         prev_channel_id: Some(prev_outpoint.to_channel_id()),
5552                                                                         next_channel_id: Some(next_channel_outpoint.to_channel_id()),
5553                                                                         outbound_amount_forwarded_msat: forwarded_htlc_value_msat,
5554                                                                 },
5555                                                                 downstream_counterparty_and_funding_outpoint: chan_to_release,
5556                                                         })
5557                                                 }
5558                                         });
5559                                 if let Err((pk, err)) = res {
5560                                         let result: Result<(), _> = Err(err);
5561                                         let _ = handle_error!(self, result, pk);
5562                                 }
5563                         },
5564                 }
5565         }
5566
5567         /// Gets the node_id held by this ChannelManager
5568         pub fn get_our_node_id(&self) -> PublicKey {
5569                 self.our_network_pubkey.clone()
5570         }
5571
5572         fn handle_monitor_update_completion_actions<I: IntoIterator<Item=MonitorUpdateCompletionAction>>(&self, actions: I) {
5573                 debug_assert_ne!(self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
5574                 debug_assert_ne!(self.claimable_payments.held_by_thread(), LockHeldState::HeldByThread);
5575                 debug_assert_ne!(self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
5576
5577                 for action in actions.into_iter() {
5578                         match action {
5579                                 MonitorUpdateCompletionAction::PaymentClaimed { payment_hash } => {
5580                                         let payment = self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5581                                         if let Some(ClaimingPayment {
5582                                                 amount_msat,
5583                                                 payment_purpose: purpose,
5584                                                 receiver_node_id,
5585                                                 htlcs,
5586                                                 sender_intended_value: sender_intended_total_msat,
5587                                         }) = payment {
5588                                                 self.pending_events.lock().unwrap().push_back((events::Event::PaymentClaimed {
5589                                                         payment_hash,
5590                                                         purpose,
5591                                                         amount_msat,
5592                                                         receiver_node_id: Some(receiver_node_id),
5593                                                         htlcs,
5594                                                         sender_intended_total_msat,
5595                                                 }, None));
5596                                         }
5597                                 },
5598                                 MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
5599                                         event, downstream_counterparty_and_funding_outpoint
5600                                 } => {
5601                                         self.pending_events.lock().unwrap().push_back((event, None));
5602                                         if let Some((node_id, funding_outpoint, blocker)) = downstream_counterparty_and_funding_outpoint {
5603                                                 self.handle_monitor_update_release(node_id, funding_outpoint, Some(blocker));
5604                                         }
5605                                 },
5606                                 MonitorUpdateCompletionAction::FreeOtherChannelImmediately {
5607                                         downstream_counterparty_node_id, downstream_funding_outpoint, blocking_action,
5608                                 } => {
5609                                         self.handle_monitor_update_release(
5610                                                 downstream_counterparty_node_id,
5611                                                 downstream_funding_outpoint,
5612                                                 Some(blocking_action),
5613                                         );
5614                                 },
5615                         }
5616                 }
5617         }
5618
5619         /// Handles a channel reentering a functional state, either due to reconnect or a monitor
5620         /// update completion.
5621         fn handle_channel_resumption(&self, pending_msg_events: &mut Vec<MessageSendEvent>,
5622                 channel: &mut Channel<SP>, raa: Option<msgs::RevokeAndACK>,
5623                 commitment_update: Option<msgs::CommitmentUpdate>, order: RAACommitmentOrder,
5624                 pending_forwards: Vec<(PendingHTLCInfo, u64)>, funding_broadcastable: Option<Transaction>,
5625                 channel_ready: Option<msgs::ChannelReady>, announcement_sigs: Option<msgs::AnnouncementSignatures>)
5626         -> Option<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> {
5627                 log_trace!(self.logger, "Handling channel resumption for channel {} with {} RAA, {} commitment update, {} pending forwards, {}broadcasting funding, {} channel ready, {} announcement",
5628                         &channel.context.channel_id(),
5629                         if raa.is_some() { "an" } else { "no" },
5630                         if commitment_update.is_some() { "a" } else { "no" }, pending_forwards.len(),
5631                         if funding_broadcastable.is_some() { "" } else { "not " },
5632                         if channel_ready.is_some() { "sending" } else { "without" },
5633                         if announcement_sigs.is_some() { "sending" } else { "without" });
5634
5635                 let mut htlc_forwards = None;
5636
5637                 let counterparty_node_id = channel.context.get_counterparty_node_id();
5638                 if !pending_forwards.is_empty() {
5639                         htlc_forwards = Some((channel.context.get_short_channel_id().unwrap_or(channel.context.outbound_scid_alias()),
5640                                 channel.context.get_funding_txo().unwrap(), channel.context.get_user_id(), pending_forwards));
5641                 }
5642
5643                 if let Some(msg) = channel_ready {
5644                         send_channel_ready!(self, pending_msg_events, channel, msg);
5645                 }
5646                 if let Some(msg) = announcement_sigs {
5647                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
5648                                 node_id: counterparty_node_id,
5649                                 msg,
5650                         });
5651                 }
5652
5653                 macro_rules! handle_cs { () => {
5654                         if let Some(update) = commitment_update {
5655                                 pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
5656                                         node_id: counterparty_node_id,
5657                                         updates: update,
5658                                 });
5659                         }
5660                 } }
5661                 macro_rules! handle_raa { () => {
5662                         if let Some(revoke_and_ack) = raa {
5663                                 pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
5664                                         node_id: counterparty_node_id,
5665                                         msg: revoke_and_ack,
5666                                 });
5667                         }
5668                 } }
5669                 match order {
5670                         RAACommitmentOrder::CommitmentFirst => {
5671                                 handle_cs!();
5672                                 handle_raa!();
5673                         },
5674                         RAACommitmentOrder::RevokeAndACKFirst => {
5675                                 handle_raa!();
5676                                 handle_cs!();
5677                         },
5678                 }
5679
5680                 if let Some(tx) = funding_broadcastable {
5681                         log_info!(self.logger, "Broadcasting funding transaction with txid {}", tx.txid());
5682                         self.tx_broadcaster.broadcast_transactions(&[&tx]);
5683                 }
5684
5685                 {
5686                         let mut pending_events = self.pending_events.lock().unwrap();
5687                         emit_channel_pending_event!(pending_events, channel);
5688                         emit_channel_ready_event!(pending_events, channel);
5689                 }
5690
5691                 htlc_forwards
5692         }
5693
5694         fn channel_monitor_updated(&self, funding_txo: &OutPoint, highest_applied_update_id: u64, counterparty_node_id: Option<&PublicKey>) {
5695                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
5696
5697                 let counterparty_node_id = match counterparty_node_id {
5698                         Some(cp_id) => cp_id.clone(),
5699                         None => {
5700                                 // TODO: Once we can rely on the counterparty_node_id from the
5701                                 // monitor event, this and the id_to_peer map should be removed.
5702                                 let id_to_peer = self.id_to_peer.lock().unwrap();
5703                                 match id_to_peer.get(&funding_txo.to_channel_id()) {
5704                                         Some(cp_id) => cp_id.clone(),
5705                                         None => return,
5706                                 }
5707                         }
5708                 };
5709                 let per_peer_state = self.per_peer_state.read().unwrap();
5710                 let mut peer_state_lock;
5711                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
5712                 if peer_state_mutex_opt.is_none() { return }
5713                 peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
5714                 let peer_state = &mut *peer_state_lock;
5715                 let channel =
5716                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&funding_txo.to_channel_id()) {
5717                                 chan
5718                         } else {
5719                                 let update_actions = peer_state.monitor_update_blocked_actions
5720                                         .remove(&funding_txo.to_channel_id()).unwrap_or(Vec::new());
5721                                 mem::drop(peer_state_lock);
5722                                 mem::drop(per_peer_state);
5723                                 self.handle_monitor_update_completion_actions(update_actions);
5724                                 return;
5725                         };
5726                 let remaining_in_flight =
5727                         if let Some(pending) = peer_state.in_flight_monitor_updates.get_mut(funding_txo) {
5728                                 pending.retain(|upd| upd.update_id > highest_applied_update_id);
5729                                 pending.len()
5730                         } else { 0 };
5731                 log_trace!(self.logger, "ChannelMonitor updated to {}. Current highest is {}. {} pending in-flight updates.",
5732                         highest_applied_update_id, channel.context.get_latest_monitor_update_id(),
5733                         remaining_in_flight);
5734                 if !channel.is_awaiting_monitor_update() || channel.context.get_latest_monitor_update_id() != highest_applied_update_id {
5735                         return;
5736                 }
5737                 handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, channel);
5738         }
5739
5740         /// Accepts a request to open a channel after a [`Event::OpenChannelRequest`].
5741         ///
5742         /// The `temporary_channel_id` parameter indicates which inbound channel should be accepted,
5743         /// and the `counterparty_node_id` parameter is the id of the peer which has requested to open
5744         /// the channel.
5745         ///
5746         /// The `user_channel_id` parameter will be provided back in
5747         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
5748         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
5749         ///
5750         /// Note that this method will return an error and reject the channel, if it requires support
5751         /// for zero confirmations. Instead, `accept_inbound_channel_from_trusted_peer_0conf` must be
5752         /// used to accept such channels.
5753         ///
5754         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
5755         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
5756         pub fn accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
5757                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, false, user_channel_id)
5758         }
5759
5760         /// Accepts a request to open a channel after a [`events::Event::OpenChannelRequest`], treating
5761         /// it as confirmed immediately.
5762         ///
5763         /// The `user_channel_id` parameter will be provided back in
5764         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
5765         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
5766         ///
5767         /// Unlike [`ChannelManager::accept_inbound_channel`], this method accepts the incoming channel
5768         /// and (if the counterparty agrees), enables forwarding of payments immediately.
5769         ///
5770         /// This fully trusts that the counterparty has honestly and correctly constructed the funding
5771         /// transaction and blindly assumes that it will eventually confirm.
5772         ///
5773         /// If it does not confirm before we decide to close the channel, or if the funding transaction
5774         /// does not pay to the correct script the correct amount, *you will lose funds*.
5775         ///
5776         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
5777         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
5778         pub fn accept_inbound_channel_from_trusted_peer_0conf(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
5779                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, true, user_channel_id)
5780         }
5781
5782         fn do_accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, accept_0conf: bool, user_channel_id: u128) -> Result<(), APIError> {
5783                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5784
5785                 let peers_without_funded_channels =
5786                         self.peers_without_funded_channels(|peer| { peer.total_channel_count() > 0 });
5787                 let per_peer_state = self.per_peer_state.read().unwrap();
5788                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5789                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
5790                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5791                 let peer_state = &mut *peer_state_lock;
5792                 let is_only_peer_channel = peer_state.total_channel_count() == 1;
5793
5794                 // Find (and remove) the channel in the unaccepted table. If it's not there, something weird is
5795                 // happening and return an error. N.B. that we create channel with an outbound SCID of zero so
5796                 // that we can delay allocating the SCID until after we're sure that the checks below will
5797                 // succeed.
5798                 let mut channel = match peer_state.inbound_channel_request_by_id.remove(temporary_channel_id) {
5799                         Some(unaccepted_channel) => {
5800                                 let best_block_height = self.best_block.read().unwrap().height();
5801                                 InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
5802                                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features,
5803                                         &unaccepted_channel.open_channel_msg, user_channel_id, &self.default_configuration, best_block_height,
5804                                         &self.logger, accept_0conf).map_err(|e| APIError::ChannelUnavailable { err: e.to_string() })
5805                         }
5806                         _ => Err(APIError::APIMisuseError { err: "No such channel awaiting to be accepted.".to_owned() })
5807                 }?;
5808
5809                 if accept_0conf {
5810                         // This should have been correctly configured by the call to InboundV1Channel::new.
5811                         debug_assert!(channel.context.minimum_depth().unwrap() == 0);
5812                 } else if channel.context.get_channel_type().requires_zero_conf() {
5813                         let send_msg_err_event = events::MessageSendEvent::HandleError {
5814                                 node_id: channel.context.get_counterparty_node_id(),
5815                                 action: msgs::ErrorAction::SendErrorMessage{
5816                                         msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "No zero confirmation channels accepted".to_owned(), }
5817                                 }
5818                         };
5819                         peer_state.pending_msg_events.push(send_msg_err_event);
5820                         return Err(APIError::APIMisuseError { err: "Please use accept_inbound_channel_from_trusted_peer_0conf to accept channels with zero confirmations.".to_owned() });
5821                 } else {
5822                         // If this peer already has some channels, a new channel won't increase our number of peers
5823                         // with unfunded channels, so as long as we aren't over the maximum number of unfunded
5824                         // channels per-peer we can accept channels from a peer with existing ones.
5825                         if is_only_peer_channel && peers_without_funded_channels >= MAX_UNFUNDED_CHANNEL_PEERS {
5826                                 let send_msg_err_event = events::MessageSendEvent::HandleError {
5827                                         node_id: channel.context.get_counterparty_node_id(),
5828                                         action: msgs::ErrorAction::SendErrorMessage{
5829                                                 msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "Have too many peers with unfunded channels, not accepting new ones".to_owned(), }
5830                                         }
5831                                 };
5832                                 peer_state.pending_msg_events.push(send_msg_err_event);
5833                                 return Err(APIError::APIMisuseError { err: "Too many peers with unfunded channels, refusing to accept new ones".to_owned() });
5834                         }
5835                 }
5836
5837                 // Now that we know we have a channel, assign an outbound SCID alias.
5838                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
5839                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
5840
5841                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
5842                         node_id: channel.context.get_counterparty_node_id(),
5843                         msg: channel.accept_inbound_channel(),
5844                 });
5845
5846                 peer_state.channel_by_id.insert(temporary_channel_id.clone(), ChannelPhase::UnfundedInboundV1(channel));
5847
5848                 Ok(())
5849         }
5850
5851         /// Gets the number of peers which match the given filter and do not have any funded, outbound,
5852         /// or 0-conf channels.
5853         ///
5854         /// The filter is called for each peer and provided with the number of unfunded, inbound, and
5855         /// non-0-conf channels we have with the peer.
5856         fn peers_without_funded_channels<Filter>(&self, maybe_count_peer: Filter) -> usize
5857         where Filter: Fn(&PeerState<SP>) -> bool {
5858                 let mut peers_without_funded_channels = 0;
5859                 let best_block_height = self.best_block.read().unwrap().height();
5860                 {
5861                         let peer_state_lock = self.per_peer_state.read().unwrap();
5862                         for (_, peer_mtx) in peer_state_lock.iter() {
5863                                 let peer = peer_mtx.lock().unwrap();
5864                                 if !maybe_count_peer(&*peer) { continue; }
5865                                 let num_unfunded_channels = Self::unfunded_channel_count(&peer, best_block_height);
5866                                 if num_unfunded_channels == peer.total_channel_count() {
5867                                         peers_without_funded_channels += 1;
5868                                 }
5869                         }
5870                 }
5871                 return peers_without_funded_channels;
5872         }
5873
5874         fn unfunded_channel_count(
5875                 peer: &PeerState<SP>, best_block_height: u32
5876         ) -> usize {
5877                 let mut num_unfunded_channels = 0;
5878                 for (_, phase) in peer.channel_by_id.iter() {
5879                         match phase {
5880                                 ChannelPhase::Funded(chan) => {
5881                                         // This covers non-zero-conf inbound `Channel`s that we are currently monitoring, but those
5882                                         // which have not yet had any confirmations on-chain.
5883                                         if !chan.context.is_outbound() && chan.context.minimum_depth().unwrap_or(1) != 0 &&
5884                                                 chan.context.get_funding_tx_confirmations(best_block_height) == 0
5885                                         {
5886                                                 num_unfunded_channels += 1;
5887                                         }
5888                                 },
5889                                 ChannelPhase::UnfundedInboundV1(chan) => {
5890                                         if chan.context.minimum_depth().unwrap_or(1) != 0 {
5891                                                 num_unfunded_channels += 1;
5892                                         }
5893                                 },
5894                                 ChannelPhase::UnfundedOutboundV1(_) => {
5895                                         // Outbound channels don't contribute to the unfunded count in the DoS context.
5896                                         continue;
5897                                 }
5898                         }
5899                 }
5900                 num_unfunded_channels + peer.inbound_channel_request_by_id.len()
5901         }
5902
5903         fn internal_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) -> Result<(), MsgHandleErrInternal> {
5904                 // Note that the ChannelManager is NOT re-persisted on disk after this, so any changes are
5905                 // likely to be lost on restart!
5906                 if msg.chain_hash != self.chain_hash {
5907                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Unknown genesis block hash".to_owned(), msg.temporary_channel_id.clone()));
5908                 }
5909
5910                 if !self.default_configuration.accept_inbound_channels {
5911                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No inbound channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5912                 }
5913
5914                 // Get the number of peers with channels, but without funded ones. We don't care too much
5915                 // about peers that never open a channel, so we filter by peers that have at least one
5916                 // channel, and then limit the number of those with unfunded channels.
5917                 let channeled_peers_without_funding =
5918                         self.peers_without_funded_channels(|node| node.total_channel_count() > 0);
5919
5920                 let per_peer_state = self.per_peer_state.read().unwrap();
5921                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5922                     .ok_or_else(|| {
5923                                 debug_assert!(false);
5924                                 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.clone())
5925                         })?;
5926                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5927                 let peer_state = &mut *peer_state_lock;
5928
5929                 // If this peer already has some channels, a new channel won't increase our number of peers
5930                 // with unfunded channels, so as long as we aren't over the maximum number of unfunded
5931                 // channels per-peer we can accept channels from a peer with existing ones.
5932                 if peer_state.total_channel_count() == 0 &&
5933                         channeled_peers_without_funding >= MAX_UNFUNDED_CHANNEL_PEERS &&
5934                         !self.default_configuration.manually_accept_inbound_channels
5935                 {
5936                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5937                                 "Have too many peers with unfunded channels, not accepting new ones".to_owned(),
5938                                 msg.temporary_channel_id.clone()));
5939                 }
5940
5941                 let best_block_height = self.best_block.read().unwrap().height();
5942                 if Self::unfunded_channel_count(peer_state, best_block_height) >= MAX_UNFUNDED_CHANS_PER_PEER {
5943                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5944                                 format!("Refusing more than {} unfunded channels.", MAX_UNFUNDED_CHANS_PER_PEER),
5945                                 msg.temporary_channel_id.clone()));
5946                 }
5947
5948                 let channel_id = msg.temporary_channel_id;
5949                 let channel_exists = peer_state.has_channel(&channel_id);
5950                 if channel_exists {
5951                         return Err(MsgHandleErrInternal::send_err_msg_no_close("temporary_channel_id collision for the same peer!".to_owned(), msg.temporary_channel_id.clone()));
5952                 }
5953
5954                 // If we're doing manual acceptance checks on the channel, then defer creation until we're sure we want to accept.
5955                 if self.default_configuration.manually_accept_inbound_channels {
5956                         let mut pending_events = self.pending_events.lock().unwrap();
5957                         pending_events.push_back((events::Event::OpenChannelRequest {
5958                                 temporary_channel_id: msg.temporary_channel_id.clone(),
5959                                 counterparty_node_id: counterparty_node_id.clone(),
5960                                 funding_satoshis: msg.funding_satoshis,
5961                                 push_msat: msg.push_msat,
5962                                 channel_type: msg.channel_type.clone().unwrap(),
5963                         }, None));
5964                         peer_state.inbound_channel_request_by_id.insert(channel_id, InboundChannelRequest {
5965                                 open_channel_msg: msg.clone(),
5966                                 ticks_remaining: UNACCEPTED_INBOUND_CHANNEL_AGE_LIMIT_TICKS,
5967                         });
5968                         return Ok(());
5969                 }
5970
5971                 // Otherwise create the channel right now.
5972                 let mut random_bytes = [0u8; 16];
5973                 random_bytes.copy_from_slice(&self.entropy_source.get_secure_random_bytes()[..16]);
5974                 let user_channel_id = u128::from_be_bytes(random_bytes);
5975                 let mut channel = match InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
5976                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features, msg, user_channel_id,
5977                         &self.default_configuration, best_block_height, &self.logger, /*is_0conf=*/false)
5978                 {
5979                         Err(e) => {
5980                                 return Err(MsgHandleErrInternal::from_chan_no_close(e, msg.temporary_channel_id));
5981                         },
5982                         Ok(res) => res
5983                 };
5984
5985                 let channel_type = channel.context.get_channel_type();
5986                 if channel_type.requires_zero_conf() {
5987                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No zero confirmation channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5988                 }
5989                 if channel_type.requires_anchors_zero_fee_htlc_tx() {
5990                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No channels with anchor outputs accepted".to_owned(), msg.temporary_channel_id.clone()));
5991                 }
5992
5993                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
5994                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
5995
5996                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
5997                         node_id: counterparty_node_id.clone(),
5998                         msg: channel.accept_inbound_channel(),
5999                 });
6000                 peer_state.channel_by_id.insert(channel_id, ChannelPhase::UnfundedInboundV1(channel));
6001                 Ok(())
6002         }
6003
6004         fn internal_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) -> Result<(), MsgHandleErrInternal> {
6005                 // Note that the ChannelManager is NOT re-persisted on disk after this, so any changes are
6006                 // likely to be lost on restart!
6007                 let (value, output_script, user_id) = {
6008                         let per_peer_state = self.per_peer_state.read().unwrap();
6009                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6010                                 .ok_or_else(|| {
6011                                         debug_assert!(false);
6012                                         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)
6013                                 })?;
6014                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6015                         let peer_state = &mut *peer_state_lock;
6016                         match peer_state.channel_by_id.entry(msg.temporary_channel_id) {
6017                                 hash_map::Entry::Occupied(mut phase) => {
6018                                         match phase.get_mut() {
6019                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
6020                                                         try_chan_phase_entry!(self, chan.accept_channel(&msg, &self.default_configuration.channel_handshake_limits, &peer_state.latest_features), phase);
6021                                                         (chan.context.get_value_satoshis(), chan.context.get_funding_redeemscript().to_v0_p2wsh(), chan.context.get_user_id())
6022                                                 },
6023                                                 _ => {
6024                                                         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.temporary_channel_id));
6025                                                 }
6026                                         }
6027                                 },
6028                                 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.temporary_channel_id))
6029                         }
6030                 };
6031                 let mut pending_events = self.pending_events.lock().unwrap();
6032                 pending_events.push_back((events::Event::FundingGenerationReady {
6033                         temporary_channel_id: msg.temporary_channel_id,
6034                         counterparty_node_id: *counterparty_node_id,
6035                         channel_value_satoshis: value,
6036                         output_script,
6037                         user_channel_id: user_id,
6038                 }, None));
6039                 Ok(())
6040         }
6041
6042         fn internal_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) -> Result<(), MsgHandleErrInternal> {
6043                 let best_block = *self.best_block.read().unwrap();
6044
6045                 let per_peer_state = self.per_peer_state.read().unwrap();
6046                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6047                         .ok_or_else(|| {
6048                                 debug_assert!(false);
6049                                 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)
6050                         })?;
6051
6052                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6053                 let peer_state = &mut *peer_state_lock;
6054                 let (chan, funding_msg_opt, monitor) =
6055                         match peer_state.channel_by_id.remove(&msg.temporary_channel_id) {
6056                                 Some(ChannelPhase::UnfundedInboundV1(inbound_chan)) => {
6057                                         match inbound_chan.funding_created(msg, best_block, &self.signer_provider, &self.logger) {
6058                                                 Ok(res) => res,
6059                                                 Err((mut inbound_chan, err)) => {
6060                                                         // We've already removed this inbound channel from the map in `PeerState`
6061                                                         // above so at this point we just need to clean up any lingering entries
6062                                                         // concerning this channel as it is safe to do so.
6063                                                         update_maps_on_chan_removal!(self, &inbound_chan.context);
6064                                                         let user_id = inbound_chan.context.get_user_id();
6065                                                         let shutdown_res = inbound_chan.context.force_shutdown(false);
6066                                                         return Err(MsgHandleErrInternal::from_finish_shutdown(format!("{}", err),
6067                                                                 msg.temporary_channel_id, user_id, shutdown_res, None, inbound_chan.context.get_value_satoshis()));
6068                                                 },
6069                                         }
6070                                 },
6071                                 Some(ChannelPhase::Funded(_)) | Some(ChannelPhase::UnfundedOutboundV1(_)) => {
6072                                         return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got an unexpected funding_created message from peer with counterparty_node_id {}", counterparty_node_id), msg.temporary_channel_id));
6073                                 },
6074                                 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))
6075                         };
6076
6077                 match peer_state.channel_by_id.entry(chan.context.channel_id()) {
6078                         hash_map::Entry::Occupied(_) => {
6079                                 Err(MsgHandleErrInternal::send_err_msg_no_close(
6080                                         "Already had channel with the new channel_id".to_owned(),
6081                                         chan.context.channel_id()
6082                                 ))
6083                         },
6084                         hash_map::Entry::Vacant(e) => {
6085                                 let mut id_to_peer_lock = self.id_to_peer.lock().unwrap();
6086                                 match id_to_peer_lock.entry(chan.context.channel_id()) {
6087                                         hash_map::Entry::Occupied(_) => {
6088                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close(
6089                                                         "The funding_created message had the same funding_txid as an existing channel - funding is not possible".to_owned(),
6090                                                         chan.context.channel_id()))
6091                                         },
6092                                         hash_map::Entry::Vacant(i_e) => {
6093                                                 let monitor_res = self.chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor);
6094                                                 if let Ok(persist_state) = monitor_res {
6095                                                         i_e.insert(chan.context.get_counterparty_node_id());
6096                                                         mem::drop(id_to_peer_lock);
6097
6098                                                         // There's no problem signing a counterparty's funding transaction if our monitor
6099                                                         // hasn't persisted to disk yet - we can't lose money on a transaction that we haven't
6100                                                         // accepted payment from yet. We do, however, need to wait to send our channel_ready
6101                                                         // until we have persisted our monitor.
6102                                                         if let Some(msg) = funding_msg_opt {
6103                                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
6104                                                                         node_id: counterparty_node_id.clone(),
6105                                                                         msg,
6106                                                                 });
6107                                                         }
6108
6109                                                         if let ChannelPhase::Funded(chan) = e.insert(ChannelPhase::Funded(chan)) {
6110                                                                 handle_new_monitor_update!(self, persist_state, peer_state_lock, peer_state,
6111                                                                         per_peer_state, chan, INITIAL_MONITOR);
6112                                                         } else {
6113                                                                 unreachable!("This must be a funded channel as we just inserted it.");
6114                                                         }
6115                                                         Ok(())
6116                                                 } else {
6117                                                         log_error!(self.logger, "Persisting initial ChannelMonitor failed, implying the funding outpoint was duplicated");
6118                                                         let channel_id = match funding_msg_opt {
6119                                                                 Some(msg) => msg.channel_id,
6120                                                                 None => chan.context.channel_id(),
6121                                                         };
6122                                                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
6123                                                                 "The funding_created message had the same funding_txid as an existing channel - funding is not possible".to_owned(),
6124                                                                 channel_id));
6125                                                 }
6126                                         }
6127                                 }
6128                         }
6129                 }
6130         }
6131
6132         fn internal_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) -> Result<(), MsgHandleErrInternal> {
6133                 let best_block = *self.best_block.read().unwrap();
6134                 let per_peer_state = self.per_peer_state.read().unwrap();
6135                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6136                         .ok_or_else(|| {
6137                                 debug_assert!(false);
6138                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6139                         })?;
6140
6141                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6142                 let peer_state = &mut *peer_state_lock;
6143                 match peer_state.channel_by_id.entry(msg.channel_id) {
6144                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6145                                 match chan_phase_entry.get_mut() {
6146                                         ChannelPhase::Funded(ref mut chan) => {
6147                                                 let monitor = try_chan_phase_entry!(self,
6148                                                         chan.funding_signed(&msg, best_block, &self.signer_provider, &self.logger), chan_phase_entry);
6149                                                 if let Ok(persist_status) = self.chain_monitor.watch_channel(chan.context.get_funding_txo().unwrap(), monitor) {
6150                                                         handle_new_monitor_update!(self, persist_status, peer_state_lock, peer_state, per_peer_state, chan, INITIAL_MONITOR);
6151                                                         Ok(())
6152                                                 } else {
6153                                                         try_chan_phase_entry!(self, Err(ChannelError::Close("Channel funding outpoint was a duplicate".to_owned())), chan_phase_entry)
6154                                                 }
6155                                         },
6156                                         _ => {
6157                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id));
6158                                         },
6159                                 }
6160                         },
6161                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
6162                 }
6163         }
6164
6165         fn internal_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) -> Result<(), MsgHandleErrInternal> {
6166                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
6167                 // closing a channel), so any changes are likely to be lost on restart!
6168                 let per_peer_state = self.per_peer_state.read().unwrap();
6169                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6170                         .ok_or_else(|| {
6171                                 debug_assert!(false);
6172                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6173                         })?;
6174                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6175                 let peer_state = &mut *peer_state_lock;
6176                 match peer_state.channel_by_id.entry(msg.channel_id) {
6177                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6178                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6179                                         let announcement_sigs_opt = try_chan_phase_entry!(self, chan.channel_ready(&msg, &self.node_signer,
6180                                                 self.chain_hash, &self.default_configuration, &self.best_block.read().unwrap(), &self.logger), chan_phase_entry);
6181                                         if let Some(announcement_sigs) = announcement_sigs_opt {
6182                                                 log_trace!(self.logger, "Sending announcement_signatures for channel {}", chan.context.channel_id());
6183                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
6184                                                         node_id: counterparty_node_id.clone(),
6185                                                         msg: announcement_sigs,
6186                                                 });
6187                                         } else if chan.context.is_usable() {
6188                                                 // If we're sending an announcement_signatures, we'll send the (public)
6189                                                 // channel_update after sending a channel_announcement when we receive our
6190                                                 // counterparty's announcement_signatures. Thus, we only bother to send a
6191                                                 // channel_update here if the channel is not public, i.e. we're not sending an
6192                                                 // announcement_signatures.
6193                                                 log_trace!(self.logger, "Sending private initial channel_update for our counterparty on channel {}", chan.context.channel_id());
6194                                                 if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
6195                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
6196                                                                 node_id: counterparty_node_id.clone(),
6197                                                                 msg,
6198                                                         });
6199                                                 }
6200                                         }
6201
6202                                         {
6203                                                 let mut pending_events = self.pending_events.lock().unwrap();
6204                                                 emit_channel_ready_event!(pending_events, chan);
6205                                         }
6206
6207                                         Ok(())
6208                                 } else {
6209                                         try_chan_phase_entry!(self, Err(ChannelError::Close(
6210                                                 "Got a channel_ready message for an unfunded channel!".into())), chan_phase_entry)
6211                                 }
6212                         },
6213                         hash_map::Entry::Vacant(_) => {
6214                                 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))
6215                         }
6216                 }
6217         }
6218
6219         fn internal_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) -> Result<(), MsgHandleErrInternal> {
6220                 let mut dropped_htlcs: Vec<(HTLCSource, PaymentHash)> = Vec::new();
6221                 let mut finish_shutdown = None;
6222                 {
6223                         let per_peer_state = self.per_peer_state.read().unwrap();
6224                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6225                                 .ok_or_else(|| {
6226                                         debug_assert!(false);
6227                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6228                                 })?;
6229                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6230                         let peer_state = &mut *peer_state_lock;
6231                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(msg.channel_id.clone()) {
6232                                 let phase = chan_phase_entry.get_mut();
6233                                 match phase {
6234                                         ChannelPhase::Funded(chan) => {
6235                                                 if !chan.received_shutdown() {
6236                                                         log_info!(self.logger, "Received a shutdown message from our counterparty for channel {}{}.",
6237                                                                 msg.channel_id,
6238                                                                 if chan.sent_shutdown() { " after we initiated shutdown" } else { "" });
6239                                                 }
6240
6241                                                 let funding_txo_opt = chan.context.get_funding_txo();
6242                                                 let (shutdown, monitor_update_opt, htlcs) = try_chan_phase_entry!(self,
6243                                                         chan.shutdown(&self.signer_provider, &peer_state.latest_features, &msg), chan_phase_entry);
6244                                                 dropped_htlcs = htlcs;
6245
6246                                                 if let Some(msg) = shutdown {
6247                                                         // We can send the `shutdown` message before updating the `ChannelMonitor`
6248                                                         // here as we don't need the monitor update to complete until we send a
6249                                                         // `shutdown_signed`, which we'll delay if we're pending a monitor update.
6250                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
6251                                                                 node_id: *counterparty_node_id,
6252                                                                 msg,
6253                                                         });
6254                                                 }
6255                                                 // Update the monitor with the shutdown script if necessary.
6256                                                 if let Some(monitor_update) = monitor_update_opt {
6257                                                         handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
6258                                                                 peer_state_lock, peer_state, per_peer_state, chan);
6259                                                 }
6260                                         },
6261                                         ChannelPhase::UnfundedInboundV1(_) | ChannelPhase::UnfundedOutboundV1(_) => {
6262                                                 let context = phase.context_mut();
6263                                                 log_error!(self.logger, "Immediately closing unfunded channel {} as peer asked to cooperatively shut it down (which is unnecessary)", &msg.channel_id);
6264                                                 self.issue_channel_close_events(&context, ClosureReason::CounterpartyCoopClosedUnfundedChannel);
6265                                                 let mut chan = remove_channel_phase!(self, chan_phase_entry);
6266                                                 finish_shutdown = Some(chan.context_mut().force_shutdown(false));
6267                                         },
6268                                 }
6269                         } else {
6270                                 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))
6271                         }
6272                 }
6273                 for htlc_source in dropped_htlcs.drain(..) {
6274                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id: msg.channel_id };
6275                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
6276                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
6277                 }
6278                 if let Some(shutdown_res) = finish_shutdown {
6279                         self.finish_close_channel(shutdown_res);
6280                 }
6281
6282                 Ok(())
6283         }
6284
6285         fn internal_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) -> Result<(), MsgHandleErrInternal> {
6286                 let per_peer_state = self.per_peer_state.read().unwrap();
6287                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6288                         .ok_or_else(|| {
6289                                 debug_assert!(false);
6290                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6291                         })?;
6292                 let (tx, chan_option, shutdown_result) = {
6293                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6294                         let peer_state = &mut *peer_state_lock;
6295                         match peer_state.channel_by_id.entry(msg.channel_id.clone()) {
6296                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6297                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6298                                                 let (closing_signed, tx, shutdown_result) = try_chan_phase_entry!(self, chan.closing_signed(&self.fee_estimator, &msg), chan_phase_entry);
6299                                                 debug_assert_eq!(shutdown_result.is_some(), chan.is_shutdown());
6300                                                 if let Some(msg) = closing_signed {
6301                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
6302                                                                 node_id: counterparty_node_id.clone(),
6303                                                                 msg,
6304                                                         });
6305                                                 }
6306                                                 if tx.is_some() {
6307                                                         // We're done with this channel, we've got a signed closing transaction and
6308                                                         // will send the closing_signed back to the remote peer upon return. This
6309                                                         // also implies there are no pending HTLCs left on the channel, so we can
6310                                                         // fully delete it from tracking (the channel monitor is still around to
6311                                                         // watch for old state broadcasts)!
6312                                                         (tx, Some(remove_channel_phase!(self, chan_phase_entry)), shutdown_result)
6313                                                 } else { (tx, None, shutdown_result) }
6314                                         } else {
6315                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6316                                                         "Got a closing_signed message for an unfunded channel!".into())), chan_phase_entry);
6317                                         }
6318                                 },
6319                                 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))
6320                         }
6321                 };
6322                 if let Some(broadcast_tx) = tx {
6323                         log_info!(self.logger, "Broadcasting {}", log_tx!(broadcast_tx));
6324                         self.tx_broadcaster.broadcast_transactions(&[&broadcast_tx]);
6325                 }
6326                 if let Some(ChannelPhase::Funded(chan)) = chan_option {
6327                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6328                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6329                                 let peer_state = &mut *peer_state_lock;
6330                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6331                                         msg: update
6332                                 });
6333                         }
6334                         self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
6335                 }
6336                 mem::drop(per_peer_state);
6337                 if let Some(shutdown_result) = shutdown_result {
6338                         self.finish_close_channel(shutdown_result);
6339                 }
6340                 Ok(())
6341         }
6342
6343         fn internal_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) -> Result<(), MsgHandleErrInternal> {
6344                 //TODO: BOLT 4 points out a specific attack where a peer may re-send an onion packet and
6345                 //determine the state of the payment based on our response/if we forward anything/the time
6346                 //we take to respond. We should take care to avoid allowing such an attack.
6347                 //
6348                 //TODO: There exists a further attack where a node may garble the onion data, forward it to
6349                 //us repeatedly garbled in different ways, and compare our error messages, which are
6350                 //encrypted with the same key. It's not immediately obvious how to usefully exploit that,
6351                 //but we should prevent it anyway.
6352
6353                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
6354                 // closing a channel), so any changes are likely to be lost on restart!
6355
6356                 let decoded_hop_res = self.decode_update_add_htlc_onion(msg);
6357                 let per_peer_state = self.per_peer_state.read().unwrap();
6358                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6359                         .ok_or_else(|| {
6360                                 debug_assert!(false);
6361                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6362                         })?;
6363                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6364                 let peer_state = &mut *peer_state_lock;
6365                 match peer_state.channel_by_id.entry(msg.channel_id) {
6366                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6367                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6368                                         let pending_forward_info = match decoded_hop_res {
6369                                                 Ok((next_hop, shared_secret, next_packet_pk_opt)) =>
6370                                                         self.construct_pending_htlc_status(msg, shared_secret, next_hop,
6371                                                                 chan.context.config().accept_underpaying_htlcs, next_packet_pk_opt),
6372                                                 Err(e) => PendingHTLCStatus::Fail(e)
6373                                         };
6374                                         let create_pending_htlc_status = |chan: &Channel<SP>, pending_forward_info: PendingHTLCStatus, error_code: u16| {
6375                                                 // If the update_add is completely bogus, the call will Err and we will close,
6376                                                 // but if we've sent a shutdown and they haven't acknowledged it yet, we just
6377                                                 // want to reject the new HTLC and fail it backwards instead of forwarding.
6378                                                 match pending_forward_info {
6379                                                         PendingHTLCStatus::Forward(PendingHTLCInfo { ref incoming_shared_secret, .. }) => {
6380                                                                 let reason = if (error_code & 0x1000) != 0 {
6381                                                                         let (real_code, error_data) = self.get_htlc_inbound_temp_fail_err_and_data(error_code, chan);
6382                                                                         HTLCFailReason::reason(real_code, error_data)
6383                                                                 } else {
6384                                                                         HTLCFailReason::from_failure_code(error_code)
6385                                                                 }.get_encrypted_failure_packet(incoming_shared_secret, &None);
6386                                                                 let msg = msgs::UpdateFailHTLC {
6387                                                                         channel_id: msg.channel_id,
6388                                                                         htlc_id: msg.htlc_id,
6389                                                                         reason
6390                                                                 };
6391                                                                 PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msg))
6392                                                         },
6393                                                         _ => pending_forward_info
6394                                                 }
6395                                         };
6396                                         try_chan_phase_entry!(self, chan.update_add_htlc(&msg, pending_forward_info, create_pending_htlc_status, &self.fee_estimator, &self.logger), chan_phase_entry);
6397                                 } else {
6398                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6399                                                 "Got an update_add_htlc message for an unfunded channel!".into())), chan_phase_entry);
6400                                 }
6401                         },
6402                         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))
6403                 }
6404                 Ok(())
6405         }
6406
6407         fn internal_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) -> Result<(), MsgHandleErrInternal> {
6408                 let funding_txo;
6409                 let (htlc_source, forwarded_htlc_value) = {
6410                         let per_peer_state = self.per_peer_state.read().unwrap();
6411                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6412                                 .ok_or_else(|| {
6413                                         debug_assert!(false);
6414                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6415                                 })?;
6416                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6417                         let peer_state = &mut *peer_state_lock;
6418                         match peer_state.channel_by_id.entry(msg.channel_id) {
6419                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6420                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6421                                                 let res = try_chan_phase_entry!(self, chan.update_fulfill_htlc(&msg), chan_phase_entry);
6422                                                 if let HTLCSource::PreviousHopData(prev_hop) = &res.0 {
6423                                                         log_trace!(self.logger,
6424                                                                 "Holding the next revoke_and_ack from {} until the preimage is durably persisted in the inbound edge's ChannelMonitor",
6425                                                                 msg.channel_id);
6426                                                         peer_state.actions_blocking_raa_monitor_updates.entry(msg.channel_id)
6427                                                                 .or_insert_with(Vec::new)
6428                                                                 .push(RAAMonitorUpdateBlockingAction::from_prev_hop_data(&prev_hop));
6429                                                 }
6430                                                 // Note that we do not need to push an `actions_blocking_raa_monitor_updates`
6431                                                 // entry here, even though we *do* need to block the next RAA monitor update.
6432                                                 // We do this instead in the `claim_funds_internal` by attaching a
6433                                                 // `ReleaseRAAChannelMonitorUpdate` action to the event generated when the
6434                                                 // outbound HTLC is claimed. This is guaranteed to all complete before we
6435                                                 // process the RAA as messages are processed from single peers serially.
6436                                                 funding_txo = chan.context.get_funding_txo().expect("We won't accept a fulfill until funded");
6437                                                 res
6438                                         } else {
6439                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6440                                                         "Got an update_fulfill_htlc message for an unfunded channel!".into())), chan_phase_entry);
6441                                         }
6442                                 },
6443                                 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))
6444                         }
6445                 };
6446                 self.claim_funds_internal(htlc_source, msg.payment_preimage.clone(), Some(forwarded_htlc_value), false, false, Some(*counterparty_node_id), funding_txo);
6447                 Ok(())
6448         }
6449
6450         fn internal_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) -> Result<(), MsgHandleErrInternal> {
6451                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
6452                 // closing a channel), so any changes are likely to be lost on restart!
6453                 let per_peer_state = self.per_peer_state.read().unwrap();
6454                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6455                         .ok_or_else(|| {
6456                                 debug_assert!(false);
6457                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6458                         })?;
6459                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6460                 let peer_state = &mut *peer_state_lock;
6461                 match peer_state.channel_by_id.entry(msg.channel_id) {
6462                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6463                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6464                                         try_chan_phase_entry!(self, chan.update_fail_htlc(&msg, HTLCFailReason::from_msg(msg)), chan_phase_entry);
6465                                 } else {
6466                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6467                                                 "Got an update_fail_htlc message for an unfunded channel!".into())), chan_phase_entry);
6468                                 }
6469                         },
6470                         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))
6471                 }
6472                 Ok(())
6473         }
6474
6475         fn internal_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) -> Result<(), MsgHandleErrInternal> {
6476                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
6477                 // closing a channel), so any changes are likely to be lost on restart!
6478                 let per_peer_state = self.per_peer_state.read().unwrap();
6479                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6480                         .ok_or_else(|| {
6481                                 debug_assert!(false);
6482                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6483                         })?;
6484                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6485                 let peer_state = &mut *peer_state_lock;
6486                 match peer_state.channel_by_id.entry(msg.channel_id) {
6487                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6488                                 if (msg.failure_code & 0x8000) == 0 {
6489                                         let chan_err: ChannelError = ChannelError::Close("Got update_fail_malformed_htlc with BADONION not set".to_owned());
6490                                         try_chan_phase_entry!(self, Err(chan_err), chan_phase_entry);
6491                                 }
6492                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6493                                         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);
6494                                 } else {
6495                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6496                                                 "Got an update_fail_malformed_htlc message for an unfunded channel!".into())), chan_phase_entry);
6497                                 }
6498                                 Ok(())
6499                         },
6500                         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))
6501                 }
6502         }
6503
6504         fn internal_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) -> Result<(), MsgHandleErrInternal> {
6505                 let per_peer_state = self.per_peer_state.read().unwrap();
6506                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6507                         .ok_or_else(|| {
6508                                 debug_assert!(false);
6509                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6510                         })?;
6511                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6512                 let peer_state = &mut *peer_state_lock;
6513                 match peer_state.channel_by_id.entry(msg.channel_id) {
6514                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6515                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6516                                         let funding_txo = chan.context.get_funding_txo();
6517                                         let monitor_update_opt = try_chan_phase_entry!(self, chan.commitment_signed(&msg, &self.logger), chan_phase_entry);
6518                                         if let Some(monitor_update) = monitor_update_opt {
6519                                                 handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update, peer_state_lock,
6520                                                         peer_state, per_peer_state, chan);
6521                                         }
6522                                         Ok(())
6523                                 } else {
6524                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6525                                                 "Got a commitment_signed message for an unfunded channel!".into())), chan_phase_entry);
6526                                 }
6527                         },
6528                         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))
6529                 }
6530         }
6531
6532         #[inline]
6533         fn forward_htlcs(&self, per_source_pending_forwards: &mut [(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)]) {
6534                 for &mut (prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, ref mut pending_forwards) in per_source_pending_forwards {
6535                         let mut push_forward_event = false;
6536                         let mut new_intercept_events = VecDeque::new();
6537                         let mut failed_intercept_forwards = Vec::new();
6538                         if !pending_forwards.is_empty() {
6539                                 for (forward_info, prev_htlc_id) in pending_forwards.drain(..) {
6540                                         let scid = match forward_info.routing {
6541                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
6542                                                 PendingHTLCRouting::Receive { .. } => 0,
6543                                                 PendingHTLCRouting::ReceiveKeysend { .. } => 0,
6544                                         };
6545                                         // Pull this now to avoid introducing a lock order with `forward_htlcs`.
6546                                         let is_our_scid = self.short_to_chan_info.read().unwrap().contains_key(&scid);
6547
6548                                         let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
6549                                         let forward_htlcs_empty = forward_htlcs.is_empty();
6550                                         match forward_htlcs.entry(scid) {
6551                                                 hash_map::Entry::Occupied(mut entry) => {
6552                                                         entry.get_mut().push(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
6553                                                                 prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info }));
6554                                                 },
6555                                                 hash_map::Entry::Vacant(entry) => {
6556                                                         if !is_our_scid && forward_info.incoming_amt_msat.is_some() &&
6557                                                            fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, scid, &self.chain_hash)
6558                                                         {
6559                                                                 let intercept_id = InterceptId(Sha256::hash(&forward_info.incoming_shared_secret).into_inner());
6560                                                                 let mut pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
6561                                                                 match pending_intercepts.entry(intercept_id) {
6562                                                                         hash_map::Entry::Vacant(entry) => {
6563                                                                                 new_intercept_events.push_back((events::Event::HTLCIntercepted {
6564                                                                                         requested_next_hop_scid: scid,
6565                                                                                         payment_hash: forward_info.payment_hash,
6566                                                                                         inbound_amount_msat: forward_info.incoming_amt_msat.unwrap(),
6567                                                                                         expected_outbound_amount_msat: forward_info.outgoing_amt_msat,
6568                                                                                         intercept_id
6569                                                                                 }, None));
6570                                                                                 entry.insert(PendingAddHTLCInfo {
6571                                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info });
6572                                                                         },
6573                                                                         hash_map::Entry::Occupied(_) => {
6574                                                                                 log_info!(self.logger, "Failed to forward incoming HTLC: detected duplicate intercepted payment over short channel id {}", scid);
6575                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
6576                                                                                         short_channel_id: prev_short_channel_id,
6577                                                                                         user_channel_id: Some(prev_user_channel_id),
6578                                                                                         outpoint: prev_funding_outpoint,
6579                                                                                         htlc_id: prev_htlc_id,
6580                                                                                         incoming_packet_shared_secret: forward_info.incoming_shared_secret,
6581                                                                                         phantom_shared_secret: None,
6582                                                                                 });
6583
6584                                                                                 failed_intercept_forwards.push((htlc_source, forward_info.payment_hash,
6585                                                                                                 HTLCFailReason::from_failure_code(0x4000 | 10),
6586                                                                                                 HTLCDestination::InvalidForward { requested_forward_scid: scid },
6587                                                                                 ));
6588                                                                         }
6589                                                                 }
6590                                                         } else {
6591                                                                 // We don't want to generate a PendingHTLCsForwardable event if only intercepted
6592                                                                 // payments are being processed.
6593                                                                 if forward_htlcs_empty {
6594                                                                         push_forward_event = true;
6595                                                                 }
6596                                                                 entry.insert(vec!(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
6597                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info })));
6598                                                         }
6599                                                 }
6600                                         }
6601                                 }
6602                         }
6603
6604                         for (htlc_source, payment_hash, failure_reason, destination) in failed_intercept_forwards.drain(..) {
6605                                 self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
6606                         }
6607
6608                         if !new_intercept_events.is_empty() {
6609                                 let mut events = self.pending_events.lock().unwrap();
6610                                 events.append(&mut new_intercept_events);
6611                         }
6612                         if push_forward_event { self.push_pending_forwards_ev() }
6613                 }
6614         }
6615
6616         fn push_pending_forwards_ev(&self) {
6617                 let mut pending_events = self.pending_events.lock().unwrap();
6618                 let is_processing_events = self.pending_events_processor.load(Ordering::Acquire);
6619                 let num_forward_events = pending_events.iter().filter(|(ev, _)|
6620                         if let events::Event::PendingHTLCsForwardable { .. } = ev { true } else { false }
6621                 ).count();
6622                 // We only want to push a PendingHTLCsForwardable event if no others are queued. Processing
6623                 // events is done in batches and they are not removed until we're done processing each
6624                 // batch. Since handling a `PendingHTLCsForwardable` event will call back into the
6625                 // `ChannelManager`, we'll still see the original forwarding event not removed. Phantom
6626                 // payments will need an additional forwarding event before being claimed to make them look
6627                 // real by taking more time.
6628                 if (is_processing_events && num_forward_events <= 1) || num_forward_events < 1 {
6629                         pending_events.push_back((Event::PendingHTLCsForwardable {
6630                                 time_forwardable: Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS),
6631                         }, None));
6632                 }
6633         }
6634
6635         /// Checks whether [`ChannelMonitorUpdate`]s generated by the receipt of a remote
6636         /// [`msgs::RevokeAndACK`] should be held for the given channel until some other action
6637         /// completes. Note that this needs to happen in the same [`PeerState`] mutex as any release of
6638         /// the [`ChannelMonitorUpdate`] in question.
6639         fn raa_monitor_updates_held(&self,
6640                 actions_blocking_raa_monitor_updates: &BTreeMap<ChannelId, Vec<RAAMonitorUpdateBlockingAction>>,
6641                 channel_funding_outpoint: OutPoint, counterparty_node_id: PublicKey
6642         ) -> bool {
6643                 actions_blocking_raa_monitor_updates
6644                         .get(&channel_funding_outpoint.to_channel_id()).map(|v| !v.is_empty()).unwrap_or(false)
6645                 || self.pending_events.lock().unwrap().iter().any(|(_, action)| {
6646                         action == &Some(EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
6647                                 channel_funding_outpoint,
6648                                 counterparty_node_id,
6649                         })
6650                 })
6651         }
6652
6653         #[cfg(any(test, feature = "_test_utils"))]
6654         pub(crate) fn test_raa_monitor_updates_held(&self,
6655                 counterparty_node_id: PublicKey, channel_id: ChannelId
6656         ) -> bool {
6657                 let per_peer_state = self.per_peer_state.read().unwrap();
6658                 if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
6659                         let mut peer_state_lck = peer_state_mtx.lock().unwrap();
6660                         let peer_state = &mut *peer_state_lck;
6661
6662                         if let Some(chan) = peer_state.channel_by_id.get(&channel_id) {
6663                                 return self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
6664                                         chan.context().get_funding_txo().unwrap(), counterparty_node_id);
6665                         }
6666                 }
6667                 false
6668         }
6669
6670         fn internal_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) -> Result<(), MsgHandleErrInternal> {
6671                 let htlcs_to_fail = {
6672                         let per_peer_state = self.per_peer_state.read().unwrap();
6673                         let mut peer_state_lock = per_peer_state.get(counterparty_node_id)
6674                                 .ok_or_else(|| {
6675                                         debug_assert!(false);
6676                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6677                                 }).map(|mtx| mtx.lock().unwrap())?;
6678                         let peer_state = &mut *peer_state_lock;
6679                         match peer_state.channel_by_id.entry(msg.channel_id) {
6680                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6681                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6682                                                 let funding_txo_opt = chan.context.get_funding_txo();
6683                                                 let mon_update_blocked = if let Some(funding_txo) = funding_txo_opt {
6684                                                         self.raa_monitor_updates_held(
6685                                                                 &peer_state.actions_blocking_raa_monitor_updates, funding_txo,
6686                                                                 *counterparty_node_id)
6687                                                 } else { false };
6688                                                 let (htlcs_to_fail, monitor_update_opt) = try_chan_phase_entry!(self,
6689                                                         chan.revoke_and_ack(&msg, &self.fee_estimator, &self.logger, mon_update_blocked), chan_phase_entry);
6690                                                 if let Some(monitor_update) = monitor_update_opt {
6691                                                         let funding_txo = funding_txo_opt
6692                                                                 .expect("Funding outpoint must have been set for RAA handling to succeed");
6693                                                         handle_new_monitor_update!(self, funding_txo, monitor_update,
6694                                                                 peer_state_lock, peer_state, per_peer_state, chan);
6695                                                 }
6696                                                 htlcs_to_fail
6697                                         } else {
6698                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6699                                                         "Got a revoke_and_ack message for an unfunded channel!".into())), chan_phase_entry);
6700                                         }
6701                                 },
6702                                 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))
6703                         }
6704                 };
6705                 self.fail_holding_cell_htlcs(htlcs_to_fail, msg.channel_id, counterparty_node_id);
6706                 Ok(())
6707         }
6708
6709         fn internal_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) -> Result<(), MsgHandleErrInternal> {
6710                 let per_peer_state = self.per_peer_state.read().unwrap();
6711                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6712                         .ok_or_else(|| {
6713                                 debug_assert!(false);
6714                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6715                         })?;
6716                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6717                 let peer_state = &mut *peer_state_lock;
6718                 match peer_state.channel_by_id.entry(msg.channel_id) {
6719                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6720                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6721                                         try_chan_phase_entry!(self, chan.update_fee(&self.fee_estimator, &msg, &self.logger), chan_phase_entry);
6722                                 } else {
6723                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6724                                                 "Got an update_fee message for an unfunded channel!".into())), chan_phase_entry);
6725                                 }
6726                         },
6727                         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))
6728                 }
6729                 Ok(())
6730         }
6731
6732         fn internal_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) -> Result<(), MsgHandleErrInternal> {
6733                 let per_peer_state = self.per_peer_state.read().unwrap();
6734                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6735                         .ok_or_else(|| {
6736                                 debug_assert!(false);
6737                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6738                         })?;
6739                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6740                 let peer_state = &mut *peer_state_lock;
6741                 match peer_state.channel_by_id.entry(msg.channel_id) {
6742                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6743                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6744                                         if !chan.context.is_usable() {
6745                                                 return Err(MsgHandleErrInternal::from_no_close(LightningError{err: "Got an announcement_signatures before we were ready for it".to_owned(), action: msgs::ErrorAction::IgnoreError}));
6746                                         }
6747
6748                                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
6749                                                 msg: try_chan_phase_entry!(self, chan.announcement_signatures(
6750                                                         &self.node_signer, self.chain_hash, self.best_block.read().unwrap().height(),
6751                                                         msg, &self.default_configuration
6752                                                 ), chan_phase_entry),
6753                                                 // Note that announcement_signatures fails if the channel cannot be announced,
6754                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
6755                                                 update_msg: Some(self.get_channel_update_for_broadcast(chan).unwrap()),
6756                                         });
6757                                 } else {
6758                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6759                                                 "Got an announcement_signatures message for an unfunded channel!".into())), chan_phase_entry);
6760                                 }
6761                         },
6762                         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))
6763                 }
6764                 Ok(())
6765         }
6766
6767         /// Returns DoPersist if anything changed, otherwise either SkipPersistNoEvents or an Err.
6768         fn internal_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) -> Result<NotifyOption, MsgHandleErrInternal> {
6769                 let (chan_counterparty_node_id, chan_id) = match self.short_to_chan_info.read().unwrap().get(&msg.contents.short_channel_id) {
6770                         Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
6771                         None => {
6772                                 // It's not a local channel
6773                                 return Ok(NotifyOption::SkipPersistNoEvents)
6774                         }
6775                 };
6776                 let per_peer_state = self.per_peer_state.read().unwrap();
6777                 let peer_state_mutex_opt = per_peer_state.get(&chan_counterparty_node_id);
6778                 if peer_state_mutex_opt.is_none() {
6779                         return Ok(NotifyOption::SkipPersistNoEvents)
6780                 }
6781                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
6782                 let peer_state = &mut *peer_state_lock;
6783                 match peer_state.channel_by_id.entry(chan_id) {
6784                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6785                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6786                                         if chan.context.get_counterparty_node_id() != *counterparty_node_id {
6787                                                 if chan.context.should_announce() {
6788                                                         // If the announcement is about a channel of ours which is public, some
6789                                                         // other peer may simply be forwarding all its gossip to us. Don't provide
6790                                                         // a scary-looking error message and return Ok instead.
6791                                                         return Ok(NotifyOption::SkipPersistNoEvents);
6792                                                 }
6793                                                 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));
6794                                         }
6795                                         let were_node_one = self.get_our_node_id().serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
6796                                         let msg_from_node_one = msg.contents.flags & 1 == 0;
6797                                         if were_node_one == msg_from_node_one {
6798                                                 return Ok(NotifyOption::SkipPersistNoEvents);
6799                                         } else {
6800                                                 log_debug!(self.logger, "Received channel_update {:?} for channel {}.", msg, chan_id);
6801                                                 let did_change = try_chan_phase_entry!(self, chan.channel_update(&msg), chan_phase_entry);
6802                                                 // If nothing changed after applying their update, we don't need to bother
6803                                                 // persisting.
6804                                                 if !did_change {
6805                                                         return Ok(NotifyOption::SkipPersistNoEvents);
6806                                                 }
6807                                         }
6808                                 } else {
6809                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6810                                                 "Got a channel_update for an unfunded channel!".into())), chan_phase_entry);
6811                                 }
6812                         },
6813                         hash_map::Entry::Vacant(_) => return Ok(NotifyOption::SkipPersistNoEvents)
6814                 }
6815                 Ok(NotifyOption::DoPersist)
6816         }
6817
6818         fn internal_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) -> Result<NotifyOption, MsgHandleErrInternal> {
6819                 let htlc_forwards;
6820                 let need_lnd_workaround = {
6821                         let per_peer_state = self.per_peer_state.read().unwrap();
6822
6823                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6824                                 .ok_or_else(|| {
6825                                         debug_assert!(false);
6826                                         MsgHandleErrInternal::send_err_msg_no_close(
6827                                                 format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id),
6828                                                 msg.channel_id
6829                                         )
6830                                 })?;
6831                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6832                         let peer_state = &mut *peer_state_lock;
6833                         match peer_state.channel_by_id.entry(msg.channel_id) {
6834                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6835                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6836                                                 // Currently, we expect all holding cell update_adds to be dropped on peer
6837                                                 // disconnect, so Channel's reestablish will never hand us any holding cell
6838                                                 // freed HTLCs to fail backwards. If in the future we no longer drop pending
6839                                                 // add-HTLCs on disconnect, we may be handed HTLCs to fail backwards here.
6840                                                 let responses = try_chan_phase_entry!(self, chan.channel_reestablish(
6841                                                         msg, &self.logger, &self.node_signer, self.chain_hash,
6842                                                         &self.default_configuration, &*self.best_block.read().unwrap()), chan_phase_entry);
6843                                                 let mut channel_update = None;
6844                                                 if let Some(msg) = responses.shutdown_msg {
6845                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
6846                                                                 node_id: counterparty_node_id.clone(),
6847                                                                 msg,
6848                                                         });
6849                                                 } else if chan.context.is_usable() {
6850                                                         // If the channel is in a usable state (ie the channel is not being shut
6851                                                         // down), send a unicast channel_update to our counterparty to make sure
6852                                                         // they have the latest channel parameters.
6853                                                         if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
6854                                                                 channel_update = Some(events::MessageSendEvent::SendChannelUpdate {
6855                                                                         node_id: chan.context.get_counterparty_node_id(),
6856                                                                         msg,
6857                                                                 });
6858                                                         }
6859                                                 }
6860                                                 let need_lnd_workaround = chan.context.workaround_lnd_bug_4006.take();
6861                                                 htlc_forwards = self.handle_channel_resumption(
6862                                                         &mut peer_state.pending_msg_events, chan, responses.raa, responses.commitment_update, responses.order,
6863                                                         Vec::new(), None, responses.channel_ready, responses.announcement_sigs);
6864                                                 if let Some(upd) = channel_update {
6865                                                         peer_state.pending_msg_events.push(upd);
6866                                                 }
6867                                                 need_lnd_workaround
6868                                         } else {
6869                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6870                                                         "Got a channel_reestablish message for an unfunded channel!".into())), chan_phase_entry);
6871                                         }
6872                                 },
6873                                 hash_map::Entry::Vacant(_) => {
6874                                         log_debug!(self.logger, "Sending bogus ChannelReestablish for unknown channel {} to force channel closure",
6875                                                 log_bytes!(msg.channel_id.0));
6876                                         // Unfortunately, lnd doesn't force close on errors
6877                                         // (https://github.com/lightningnetwork/lnd/blob/abb1e3463f3a83bbb843d5c399869dbe930ad94f/htlcswitch/link.go#L2119).
6878                                         // One of the few ways to get an lnd counterparty to force close is by
6879                                         // replicating what they do when restoring static channel backups (SCBs). They
6880                                         // send an invalid `ChannelReestablish` with `0` commitment numbers and an
6881                                         // invalid `your_last_per_commitment_secret`.
6882                                         //
6883                                         // Since we received a `ChannelReestablish` for a channel that doesn't exist, we
6884                                         // can assume it's likely the channel closed from our point of view, but it
6885                                         // remains open on the counterparty's side. By sending this bogus
6886                                         // `ChannelReestablish` message now as a response to theirs, we trigger them to
6887                                         // force close broadcasting their latest state. If the closing transaction from
6888                                         // our point of view remains unconfirmed, it'll enter a race with the
6889                                         // counterparty's to-be-broadcast latest commitment transaction.
6890                                         peer_state.pending_msg_events.push(MessageSendEvent::SendChannelReestablish {
6891                                                 node_id: *counterparty_node_id,
6892                                                 msg: msgs::ChannelReestablish {
6893                                                         channel_id: msg.channel_id,
6894                                                         next_local_commitment_number: 0,
6895                                                         next_remote_commitment_number: 0,
6896                                                         your_last_per_commitment_secret: [1u8; 32],
6897                                                         my_current_per_commitment_point: PublicKey::from_slice(&[2u8; 33]).unwrap(),
6898                                                         next_funding_txid: None,
6899                                                 },
6900                                         });
6901                                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
6902                                                 format!("Got a message for a channel from the wrong node! No such channel for the passed counterparty_node_id {}",
6903                                                         counterparty_node_id), msg.channel_id)
6904                                         )
6905                                 }
6906                         }
6907                 };
6908
6909                 let mut persist = NotifyOption::SkipPersistHandleEvents;
6910                 if let Some(forwards) = htlc_forwards {
6911                         self.forward_htlcs(&mut [forwards][..]);
6912                         persist = NotifyOption::DoPersist;
6913                 }
6914
6915                 if let Some(channel_ready_msg) = need_lnd_workaround {
6916                         self.internal_channel_ready(counterparty_node_id, &channel_ready_msg)?;
6917                 }
6918                 Ok(persist)
6919         }
6920
6921         /// Process pending events from the [`chain::Watch`], returning whether any events were processed.
6922         fn process_pending_monitor_events(&self) -> bool {
6923                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
6924
6925                 let mut failed_channels = Vec::new();
6926                 let mut pending_monitor_events = self.chain_monitor.release_pending_monitor_events();
6927                 let has_pending_monitor_events = !pending_monitor_events.is_empty();
6928                 for (funding_outpoint, mut monitor_events, counterparty_node_id) in pending_monitor_events.drain(..) {
6929                         for monitor_event in monitor_events.drain(..) {
6930                                 match monitor_event {
6931                                         MonitorEvent::HTLCEvent(htlc_update) => {
6932                                                 if let Some(preimage) = htlc_update.payment_preimage {
6933                                                         log_trace!(self.logger, "Claiming HTLC with preimage {} from our monitor", preimage);
6934                                                         self.claim_funds_internal(htlc_update.source, preimage, htlc_update.htlc_value_satoshis.map(|v| v * 1000), true, false, counterparty_node_id, funding_outpoint);
6935                                                 } else {
6936                                                         log_trace!(self.logger, "Failing HTLC with hash {} from our monitor", &htlc_update.payment_hash);
6937                                                         let receiver = HTLCDestination::NextHopChannel { node_id: counterparty_node_id, channel_id: funding_outpoint.to_channel_id() };
6938                                                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
6939                                                         self.fail_htlc_backwards_internal(&htlc_update.source, &htlc_update.payment_hash, &reason, receiver);
6940                                                 }
6941                                         },
6942                                         MonitorEvent::HolderForceClosed(funding_outpoint) => {
6943                                                 let counterparty_node_id_opt = match counterparty_node_id {
6944                                                         Some(cp_id) => Some(cp_id),
6945                                                         None => {
6946                                                                 // TODO: Once we can rely on the counterparty_node_id from the
6947                                                                 // monitor event, this and the id_to_peer map should be removed.
6948                                                                 let id_to_peer = self.id_to_peer.lock().unwrap();
6949                                                                 id_to_peer.get(&funding_outpoint.to_channel_id()).cloned()
6950                                                         }
6951                                                 };
6952                                                 if let Some(counterparty_node_id) = counterparty_node_id_opt {
6953                                                         let per_peer_state = self.per_peer_state.read().unwrap();
6954                                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
6955                                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6956                                                                 let peer_state = &mut *peer_state_lock;
6957                                                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6958                                                                 if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(funding_outpoint.to_channel_id()) {
6959                                                                         if let ChannelPhase::Funded(mut chan) = remove_channel_phase!(self, chan_phase_entry) {
6960                                                                                 failed_channels.push(chan.context.force_shutdown(false));
6961                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6962                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6963                                                                                                 msg: update
6964                                                                                         });
6965                                                                                 }
6966                                                                                 self.issue_channel_close_events(&chan.context, ClosureReason::HolderForceClosed);
6967                                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
6968                                                                                         node_id: chan.context.get_counterparty_node_id(),
6969                                                                                         action: msgs::ErrorAction::DisconnectPeer {
6970                                                                                                 msg: Some(msgs::ErrorMessage { channel_id: chan.context.channel_id(), data: "Channel force-closed".to_owned() })
6971                                                                                         },
6972                                                                                 });
6973                                                                         }
6974                                                                 }
6975                                                         }
6976                                                 }
6977                                         },
6978                                         MonitorEvent::Completed { funding_txo, monitor_update_id } => {
6979                                                 self.channel_monitor_updated(&funding_txo, monitor_update_id, counterparty_node_id.as_ref());
6980                                         },
6981                                 }
6982                         }
6983                 }
6984
6985                 for failure in failed_channels.drain(..) {
6986                         self.finish_close_channel(failure);
6987                 }
6988
6989                 has_pending_monitor_events
6990         }
6991
6992         /// In chanmon_consistency_target, we'd like to be able to restore monitor updating without
6993         /// handling all pending events (i.e. not PendingHTLCsForwardable). Thus, we expose monitor
6994         /// update events as a separate process method here.
6995         #[cfg(fuzzing)]
6996         pub fn process_monitor_events(&self) {
6997                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6998                 self.process_pending_monitor_events();
6999         }
7000
7001         /// Check the holding cell in each channel and free any pending HTLCs in them if possible.
7002         /// Returns whether there were any updates such as if pending HTLCs were freed or a monitor
7003         /// update was applied.
7004         fn check_free_holding_cells(&self) -> bool {
7005                 let mut has_monitor_update = false;
7006                 let mut failed_htlcs = Vec::new();
7007
7008                 // Walk our list of channels and find any that need to update. Note that when we do find an
7009                 // update, if it includes actions that must be taken afterwards, we have to drop the
7010                 // per-peer state lock as well as the top level per_peer_state lock. Thus, we loop until we
7011                 // manage to go through all our peers without finding a single channel to update.
7012                 'peer_loop: loop {
7013                         let per_peer_state = self.per_peer_state.read().unwrap();
7014                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7015                                 'chan_loop: loop {
7016                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7017                                         let peer_state: &mut PeerState<_> = &mut *peer_state_lock;
7018                                         for (channel_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
7019                                                 |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
7020                                         ) {
7021                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
7022                                                 let funding_txo = chan.context.get_funding_txo();
7023                                                 let (monitor_opt, holding_cell_failed_htlcs) =
7024                                                         chan.maybe_free_holding_cell_htlcs(&self.fee_estimator, &self.logger);
7025                                                 if !holding_cell_failed_htlcs.is_empty() {
7026                                                         failed_htlcs.push((holding_cell_failed_htlcs, *channel_id, counterparty_node_id));
7027                                                 }
7028                                                 if let Some(monitor_update) = monitor_opt {
7029                                                         has_monitor_update = true;
7030
7031                                                         handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update,
7032                                                                 peer_state_lock, peer_state, per_peer_state, chan);
7033                                                         continue 'peer_loop;
7034                                                 }
7035                                         }
7036                                         break 'chan_loop;
7037                                 }
7038                         }
7039                         break 'peer_loop;
7040                 }
7041
7042                 let has_update = has_monitor_update || !failed_htlcs.is_empty();
7043                 for (failures, channel_id, counterparty_node_id) in failed_htlcs.drain(..) {
7044                         self.fail_holding_cell_htlcs(failures, channel_id, &counterparty_node_id);
7045                 }
7046
7047                 has_update
7048         }
7049
7050         /// When a call to a [`ChannelSigner`] method returns an error, this indicates that the signer
7051         /// is (temporarily) unavailable, and the operation should be retried later.
7052         ///
7053         /// This method allows for that retry - either checking for any signer-pending messages to be
7054         /// attempted in every channel, or in the specifically provided channel.
7055         ///
7056         /// [`ChannelSigner`]: crate::sign::ChannelSigner
7057         #[cfg(test)] // This is only implemented for one signer method, and should be private until we
7058                      // actually finish implementing it fully.
7059         pub fn signer_unblocked(&self, channel_opt: Option<(PublicKey, ChannelId)>) {
7060                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7061
7062                 let unblock_chan = |phase: &mut ChannelPhase<SP>, pending_msg_events: &mut Vec<MessageSendEvent>| {
7063                         let node_id = phase.context().get_counterparty_node_id();
7064                         if let ChannelPhase::Funded(chan) = phase {
7065                                 let msgs = chan.signer_maybe_unblocked(&self.logger);
7066                                 if let Some(updates) = msgs.commitment_update {
7067                                         pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
7068                                                 node_id,
7069                                                 updates,
7070                                         });
7071                                 }
7072                                 if let Some(msg) = msgs.funding_signed {
7073                                         pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
7074                                                 node_id,
7075                                                 msg,
7076                                         });
7077                                 }
7078                                 if let Some(msg) = msgs.funding_created {
7079                                         pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
7080                                                 node_id,
7081                                                 msg,
7082                                         });
7083                                 }
7084                                 if let Some(msg) = msgs.channel_ready {
7085                                         send_channel_ready!(self, pending_msg_events, chan, msg);
7086                                 }
7087                         }
7088                 };
7089
7090                 let per_peer_state = self.per_peer_state.read().unwrap();
7091                 if let Some((counterparty_node_id, channel_id)) = channel_opt {
7092                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
7093                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7094                                 let peer_state = &mut *peer_state_lock;
7095                                 if let Some(chan) = peer_state.channel_by_id.get_mut(&channel_id) {
7096                                         unblock_chan(chan, &mut peer_state.pending_msg_events);
7097                                 }
7098                         }
7099                 } else {
7100                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7101                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7102                                 let peer_state = &mut *peer_state_lock;
7103                                 for (_, chan) in peer_state.channel_by_id.iter_mut() {
7104                                         unblock_chan(chan, &mut peer_state.pending_msg_events);
7105                                 }
7106                         }
7107                 }
7108         }
7109
7110         /// Check whether any channels have finished removing all pending updates after a shutdown
7111         /// exchange and can now send a closing_signed.
7112         /// Returns whether any closing_signed messages were generated.
7113         fn maybe_generate_initial_closing_signed(&self) -> bool {
7114                 let mut handle_errors: Vec<(PublicKey, Result<(), _>)> = Vec::new();
7115                 let mut has_update = false;
7116                 let mut shutdown_results = Vec::new();
7117                 {
7118                         let per_peer_state = self.per_peer_state.read().unwrap();
7119
7120                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7121                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7122                                 let peer_state = &mut *peer_state_lock;
7123                                 let pending_msg_events = &mut peer_state.pending_msg_events;
7124                                 peer_state.channel_by_id.retain(|channel_id, phase| {
7125                                         match phase {
7126                                                 ChannelPhase::Funded(chan) => {
7127                                                         match chan.maybe_propose_closing_signed(&self.fee_estimator, &self.logger) {
7128                                                                 Ok((msg_opt, tx_opt, shutdown_result_opt)) => {
7129                                                                         if let Some(msg) = msg_opt {
7130                                                                                 has_update = true;
7131                                                                                 pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
7132                                                                                         node_id: chan.context.get_counterparty_node_id(), msg,
7133                                                                                 });
7134                                                                         }
7135                                                                         debug_assert_eq!(shutdown_result_opt.is_some(), chan.is_shutdown());
7136                                                                         if let Some(shutdown_result) = shutdown_result_opt {
7137                                                                                 shutdown_results.push(shutdown_result);
7138                                                                         }
7139                                                                         if let Some(tx) = tx_opt {
7140                                                                                 // We're done with this channel. We got a closing_signed and sent back
7141                                                                                 // a closing_signed with a closing transaction to broadcast.
7142                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
7143                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
7144                                                                                                 msg: update
7145                                                                                         });
7146                                                                                 }
7147
7148                                                                                 self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
7149
7150                                                                                 log_info!(self.logger, "Broadcasting {}", log_tx!(tx));
7151                                                                                 self.tx_broadcaster.broadcast_transactions(&[&tx]);
7152                                                                                 update_maps_on_chan_removal!(self, &chan.context);
7153                                                                                 false
7154                                                                         } else { true }
7155                                                                 },
7156                                                                 Err(e) => {
7157                                                                         has_update = true;
7158                                                                         let (close_channel, res) = convert_chan_phase_err!(self, e, chan, channel_id, FUNDED_CHANNEL);
7159                                                                         handle_errors.push((chan.context.get_counterparty_node_id(), Err(res)));
7160                                                                         !close_channel
7161                                                                 }
7162                                                         }
7163                                                 },
7164                                                 _ => true, // Retain unfunded channels if present.
7165                                         }
7166                                 });
7167                         }
7168                 }
7169
7170                 for (counterparty_node_id, err) in handle_errors.drain(..) {
7171                         let _ = handle_error!(self, err, counterparty_node_id);
7172                 }
7173
7174                 for shutdown_result in shutdown_results.drain(..) {
7175                         self.finish_close_channel(shutdown_result);
7176                 }
7177
7178                 has_update
7179         }
7180
7181         /// Handle a list of channel failures during a block_connected or block_disconnected call,
7182         /// pushing the channel monitor update (if any) to the background events queue and removing the
7183         /// Channel object.
7184         fn handle_init_event_channel_failures(&self, mut failed_channels: Vec<ShutdownResult>) {
7185                 for mut failure in failed_channels.drain(..) {
7186                         // Either a commitment transactions has been confirmed on-chain or
7187                         // Channel::block_disconnected detected that the funding transaction has been
7188                         // reorganized out of the main chain.
7189                         // We cannot broadcast our latest local state via monitor update (as
7190                         // Channel::force_shutdown tries to make us do) as we may still be in initialization,
7191                         // so we track the update internally and handle it when the user next calls
7192                         // timer_tick_occurred, guaranteeing we're running normally.
7193                         if let Some((counterparty_node_id, funding_txo, update)) = failure.monitor_update.take() {
7194                                 assert_eq!(update.updates.len(), 1);
7195                                 if let ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } = update.updates[0] {
7196                                         assert!(should_broadcast);
7197                                 } else { unreachable!(); }
7198                                 self.pending_background_events.lock().unwrap().push(
7199                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
7200                                                 counterparty_node_id, funding_txo, update
7201                                         });
7202                         }
7203                         self.finish_close_channel(failure);
7204                 }
7205         }
7206
7207         /// Creates an [`OfferBuilder`] such that the [`Offer`] it builds is recognized by the
7208         /// [`ChannelManager`] when handling [`InvoiceRequest`] messages for the offer. The offer will
7209         /// not have an expiration unless otherwise set on the builder.
7210         ///
7211         /// # Privacy
7212         ///
7213         /// Uses a one-hop [`BlindedPath`] for the offer with [`ChannelManager::get_our_node_id`] as the
7214         /// introduction node and a derived signing pubkey for recipient privacy. As such, currently,
7215         /// the node must be announced. Otherwise, there is no way to find a path to the introduction
7216         /// node in order to send the [`InvoiceRequest`].
7217         ///
7218         /// # Limitations
7219         ///
7220         /// Requires a direct connection to the introduction node in the responding [`InvoiceRequest`]'s
7221         /// reply path.
7222         ///
7223         /// This is not exported to bindings users as builder patterns don't map outside of move semantics.
7224         ///
7225         /// [`Offer`]: crate::offers::offer::Offer
7226         /// [`InvoiceRequest`]: crate::offers::invoice_request::InvoiceRequest
7227         pub fn create_offer_builder(
7228                 &self, description: String
7229         ) -> OfferBuilder<DerivedMetadata, secp256k1::All> {
7230                 let node_id = self.get_our_node_id();
7231                 let expanded_key = &self.inbound_payment_key;
7232                 let entropy = &*self.entropy_source;
7233                 let secp_ctx = &self.secp_ctx;
7234                 let path = self.create_one_hop_blinded_path();
7235
7236                 OfferBuilder::deriving_signing_pubkey(description, node_id, expanded_key, entropy, secp_ctx)
7237                         .chain_hash(self.chain_hash)
7238                         .path(path)
7239         }
7240
7241         /// Creates a [`RefundBuilder`] such that the [`Refund`] it builds is recognized by the
7242         /// [`ChannelManager`] when handling [`Bolt12Invoice`] messages for the refund.
7243         ///
7244         /// # Payment
7245         ///
7246         /// The provided `payment_id` is used to ensure that only one invoice is paid for the refund.
7247         /// See [Avoiding Duplicate Payments] for other requirements once the payment has been sent.
7248         ///
7249         /// The builder will have the provided expiration set. Any changes to the expiration on the
7250         /// returned builder will not be honored by [`ChannelManager`]. For `no-std`, the highest seen
7251         /// block time minus two hours is used for the current time when determining if the refund has
7252         /// expired.
7253         ///
7254         /// To revoke the refund, use [`ChannelManager::abandon_payment`] prior to receiving the
7255         /// invoice. If abandoned, or an invoice isn't received before expiration, the payment will fail
7256         /// with an [`Event::InvoiceRequestFailed`].
7257         ///
7258         /// If `max_total_routing_fee_msat` is not specified, The default from
7259         /// [`RouteParameters::from_payment_params_and_value`] is applied.
7260         ///
7261         /// # Privacy
7262         ///
7263         /// Uses a one-hop [`BlindedPath`] for the refund with [`ChannelManager::get_our_node_id`] as
7264         /// the introduction node and a derived payer id for payer privacy. As such, currently, the
7265         /// node must be announced. Otherwise, there is no way to find a path to the introduction node
7266         /// in order to send the [`Bolt12Invoice`].
7267         ///
7268         /// # Limitations
7269         ///
7270         /// Requires a direct connection to an introduction node in the responding
7271         /// [`Bolt12Invoice::payment_paths`].
7272         ///
7273         /// # Errors
7274         ///
7275         /// Errors if a duplicate `payment_id` is provided given the caveats in the aforementioned link
7276         /// or if `amount_msats` is invalid.
7277         ///
7278         /// This is not exported to bindings users as builder patterns don't map outside of move semantics.
7279         ///
7280         /// [`Refund`]: crate::offers::refund::Refund
7281         /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
7282         /// [`Bolt12Invoice::payment_paths`]: crate::offers::invoice::Bolt12Invoice::payment_paths
7283         pub fn create_refund_builder(
7284                 &self, description: String, amount_msats: u64, absolute_expiry: Duration,
7285                 payment_id: PaymentId, retry_strategy: Retry, max_total_routing_fee_msat: Option<u64>
7286         ) -> Result<RefundBuilder<secp256k1::All>, Bolt12SemanticError> {
7287                 let node_id = self.get_our_node_id();
7288                 let expanded_key = &self.inbound_payment_key;
7289                 let entropy = &*self.entropy_source;
7290                 let secp_ctx = &self.secp_ctx;
7291                 let path = self.create_one_hop_blinded_path();
7292
7293                 let builder = RefundBuilder::deriving_payer_id(
7294                         description, node_id, expanded_key, entropy, secp_ctx, amount_msats, payment_id
7295                 )?
7296                         .chain_hash(self.chain_hash)
7297                         .absolute_expiry(absolute_expiry)
7298                         .path(path);
7299
7300                 let expiration = StaleExpiration::AbsoluteTimeout(absolute_expiry);
7301                 self.pending_outbound_payments
7302                         .add_new_awaiting_invoice(
7303                                 payment_id, expiration, retry_strategy, max_total_routing_fee_msat,
7304                         )
7305                         .map_err(|_| Bolt12SemanticError::DuplicatePaymentId)?;
7306
7307                 Ok(builder)
7308         }
7309
7310         /// Pays for an [`Offer`] using the given parameters by creating an [`InvoiceRequest`] and
7311         /// enqueuing it to be sent via an onion message. [`ChannelManager`] will pay the actual
7312         /// [`Bolt12Invoice`] once it is received.
7313         ///
7314         /// Uses [`InvoiceRequestBuilder`] such that the [`InvoiceRequest`] it builds is recognized by
7315         /// the [`ChannelManager`] when handling a [`Bolt12Invoice`] message in response to the request.
7316         /// The optional parameters are used in the builder, if `Some`:
7317         /// - `quantity` for [`InvoiceRequest::quantity`] which must be set if
7318         ///   [`Offer::expects_quantity`] is `true`.
7319         /// - `amount_msats` if overpaying what is required for the given `quantity` is desired, and
7320         /// - `payer_note` for [`InvoiceRequest::payer_note`].
7321         ///
7322         /// If `max_total_routing_fee_msat` is not specified, The default from
7323         /// [`RouteParameters::from_payment_params_and_value`] is applied.
7324         ///
7325         /// # Payment
7326         ///
7327         /// The provided `payment_id` is used to ensure that only one invoice is paid for the request
7328         /// when received. See [Avoiding Duplicate Payments] for other requirements once the payment has
7329         /// been sent.
7330         ///
7331         /// To revoke the request, use [`ChannelManager::abandon_payment`] prior to receiving the
7332         /// invoice. If abandoned, or an invoice isn't received in a reasonable amount of time, the
7333         /// payment will fail with an [`Event::InvoiceRequestFailed`].
7334         ///
7335         /// # Privacy
7336         ///
7337         /// Uses a one-hop [`BlindedPath`] for the reply path with [`ChannelManager::get_our_node_id`]
7338         /// as the introduction node and a derived payer id for payer privacy. As such, currently, the
7339         /// node must be announced. Otherwise, there is no way to find a path to the introduction node
7340         /// in order to send the [`Bolt12Invoice`].
7341         ///
7342         /// # Limitations
7343         ///
7344         /// Requires a direct connection to an introduction node in [`Offer::paths`] or to
7345         /// [`Offer::signing_pubkey`], if empty. A similar restriction applies to the responding
7346         /// [`Bolt12Invoice::payment_paths`].
7347         ///
7348         /// # Errors
7349         ///
7350         /// Errors if a duplicate `payment_id` is provided given the caveats in the aforementioned link
7351         /// or if the provided parameters are invalid for the offer.
7352         ///
7353         /// [`InvoiceRequest`]: crate::offers::invoice_request::InvoiceRequest
7354         /// [`InvoiceRequest::quantity`]: crate::offers::invoice_request::InvoiceRequest::quantity
7355         /// [`InvoiceRequest::payer_note`]: crate::offers::invoice_request::InvoiceRequest::payer_note
7356         /// [`InvoiceRequestBuilder`]: crate::offers::invoice_request::InvoiceRequestBuilder
7357         /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
7358         /// [`Bolt12Invoice::payment_paths`]: crate::offers::invoice::Bolt12Invoice::payment_paths
7359         /// [Avoiding Duplicate Payments]: #avoiding-duplicate-payments
7360         pub fn pay_for_offer(
7361                 &self, offer: &Offer, quantity: Option<u64>, amount_msats: Option<u64>,
7362                 payer_note: Option<String>, payment_id: PaymentId, retry_strategy: Retry,
7363                 max_total_routing_fee_msat: Option<u64>
7364         ) -> Result<(), Bolt12SemanticError> {
7365                 let expanded_key = &self.inbound_payment_key;
7366                 let entropy = &*self.entropy_source;
7367                 let secp_ctx = &self.secp_ctx;
7368
7369                 let builder = offer
7370                         .request_invoice_deriving_payer_id(expanded_key, entropy, secp_ctx, payment_id)?
7371                         .chain_hash(self.chain_hash)?;
7372                 let builder = match quantity {
7373                         None => builder,
7374                         Some(quantity) => builder.quantity(quantity)?,
7375                 };
7376                 let builder = match amount_msats {
7377                         None => builder,
7378                         Some(amount_msats) => builder.amount_msats(amount_msats)?,
7379                 };
7380                 let builder = match payer_note {
7381                         None => builder,
7382                         Some(payer_note) => builder.payer_note(payer_note),
7383                 };
7384
7385                 let invoice_request = builder.build_and_sign()?;
7386                 let reply_path = self.create_one_hop_blinded_path();
7387
7388                 let expiration = StaleExpiration::TimerTicks(1);
7389                 self.pending_outbound_payments
7390                         .add_new_awaiting_invoice(
7391                                 payment_id, expiration, retry_strategy, max_total_routing_fee_msat
7392                         )
7393                         .map_err(|_| Bolt12SemanticError::DuplicatePaymentId)?;
7394
7395                 let mut pending_offers_messages = self.pending_offers_messages.lock().unwrap();
7396                 if offer.paths().is_empty() {
7397                         let message = new_pending_onion_message(
7398                                 OffersMessage::InvoiceRequest(invoice_request),
7399                                 Destination::Node(offer.signing_pubkey()),
7400                                 Some(reply_path),
7401                         );
7402                         pending_offers_messages.push(message);
7403                 } else {
7404                         // Send as many invoice requests as there are paths in the offer (with an upper bound).
7405                         // Using only one path could result in a failure if the path no longer exists. But only
7406                         // one invoice for a given payment id will be paid, even if more than one is received.
7407                         const REQUEST_LIMIT: usize = 10;
7408                         for path in offer.paths().into_iter().take(REQUEST_LIMIT) {
7409                                 let message = new_pending_onion_message(
7410                                         OffersMessage::InvoiceRequest(invoice_request.clone()),
7411                                         Destination::BlindedPath(path.clone()),
7412                                         Some(reply_path.clone()),
7413                                 );
7414                                 pending_offers_messages.push(message);
7415                         }
7416                 }
7417
7418                 Ok(())
7419         }
7420
7421         /// Creates a [`Bolt12Invoice`] for a [`Refund`] and enqueues it to be sent via an onion
7422         /// message.
7423         ///
7424         /// The resulting invoice uses a [`PaymentHash`] recognized by the [`ChannelManager`] and a
7425         /// [`BlindedPath`] containing the [`PaymentSecret`] needed to reconstruct the corresponding
7426         /// [`PaymentPreimage`].
7427         ///
7428         /// # Limitations
7429         ///
7430         /// Requires a direct connection to an introduction node in [`Refund::paths`] or to
7431         /// [`Refund::payer_id`], if empty. This request is best effort; an invoice will be sent to each
7432         /// node meeting the aforementioned criteria, but there's no guarantee that they will be
7433         /// received and no retries will be made.
7434         ///
7435         /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
7436         pub fn request_refund_payment(&self, refund: &Refund) -> Result<(), Bolt12SemanticError> {
7437                 let expanded_key = &self.inbound_payment_key;
7438                 let entropy = &*self.entropy_source;
7439                 let secp_ctx = &self.secp_ctx;
7440
7441                 let amount_msats = refund.amount_msats();
7442                 let relative_expiry = DEFAULT_RELATIVE_EXPIRY.as_secs() as u32;
7443
7444                 match self.create_inbound_payment(Some(amount_msats), relative_expiry, None) {
7445                         Ok((payment_hash, payment_secret)) => {
7446                                 let payment_paths = vec![
7447                                         self.create_one_hop_blinded_payment_path(payment_secret),
7448                                 ];
7449                                 #[cfg(not(feature = "no-std"))]
7450                                 let builder = refund.respond_using_derived_keys(
7451                                         payment_paths, payment_hash, expanded_key, entropy
7452                                 )?;
7453                                 #[cfg(feature = "no-std")]
7454                                 let created_at = Duration::from_secs(
7455                                         self.highest_seen_timestamp.load(Ordering::Acquire) as u64
7456                                 );
7457                                 #[cfg(feature = "no-std")]
7458                                 let builder = refund.respond_using_derived_keys_no_std(
7459                                         payment_paths, payment_hash, created_at, expanded_key, entropy
7460                                 )?;
7461                                 let invoice = builder.allow_mpp().build_and_sign(secp_ctx)?;
7462                                 let reply_path = self.create_one_hop_blinded_path();
7463
7464                                 let mut pending_offers_messages = self.pending_offers_messages.lock().unwrap();
7465                                 if refund.paths().is_empty() {
7466                                         let message = new_pending_onion_message(
7467                                                 OffersMessage::Invoice(invoice),
7468                                                 Destination::Node(refund.payer_id()),
7469                                                 Some(reply_path),
7470                                         );
7471                                         pending_offers_messages.push(message);
7472                                 } else {
7473                                         for path in refund.paths() {
7474                                                 let message = new_pending_onion_message(
7475                                                         OffersMessage::Invoice(invoice.clone()),
7476                                                         Destination::BlindedPath(path.clone()),
7477                                                         Some(reply_path.clone()),
7478                                                 );
7479                                                 pending_offers_messages.push(message);
7480                                         }
7481                                 }
7482
7483                                 Ok(())
7484                         },
7485                         Err(()) => Err(Bolt12SemanticError::InvalidAmount),
7486                 }
7487         }
7488
7489         /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
7490         /// to pay us.
7491         ///
7492         /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
7493         /// [`PaymentHash`] and [`PaymentPreimage`] for you.
7494         ///
7495         /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentClaimable`], which
7496         /// will have the [`PaymentClaimable::purpose`] be [`PaymentPurpose::InvoicePayment`] with
7497         /// its [`PaymentPurpose::InvoicePayment::payment_preimage`] field filled in. That should then be
7498         /// passed directly to [`claim_funds`].
7499         ///
7500         /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
7501         ///
7502         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
7503         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
7504         ///
7505         /// # Note
7506         ///
7507         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
7508         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
7509         ///
7510         /// Errors if `min_value_msat` is greater than total bitcoin supply.
7511         ///
7512         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
7513         /// on versions of LDK prior to 0.0.114.
7514         ///
7515         /// [`claim_funds`]: Self::claim_funds
7516         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
7517         /// [`PaymentClaimable::purpose`]: events::Event::PaymentClaimable::purpose
7518         /// [`PaymentPurpose::InvoicePayment`]: events::PaymentPurpose::InvoicePayment
7519         /// [`PaymentPurpose::InvoicePayment::payment_preimage`]: events::PaymentPurpose::InvoicePayment::payment_preimage
7520         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
7521         pub fn create_inbound_payment(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32,
7522                 min_final_cltv_expiry_delta: Option<u16>) -> Result<(PaymentHash, PaymentSecret), ()> {
7523                 inbound_payment::create(&self.inbound_payment_key, min_value_msat, invoice_expiry_delta_secs,
7524                         &self.entropy_source, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
7525                         min_final_cltv_expiry_delta)
7526         }
7527
7528         /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
7529         /// stored external to LDK.
7530         ///
7531         /// A [`PaymentClaimable`] event will only be generated if the [`PaymentSecret`] matches a
7532         /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
7533         /// the `min_value_msat` provided here, if one is provided.
7534         ///
7535         /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) should be globally unique, though
7536         /// note that LDK will not stop you from registering duplicate payment hashes for inbound
7537         /// payments.
7538         ///
7539         /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
7540         /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
7541         /// before a [`PaymentClaimable`] event will be generated, ensuring that we do not provide the
7542         /// sender "proof-of-payment" unless they have paid the required amount.
7543         ///
7544         /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
7545         /// in excess of the current time. This should roughly match the expiry time set in the invoice.
7546         /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
7547         /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
7548         /// invoices when no timeout is set.
7549         ///
7550         /// Note that we use block header time to time-out pending inbound payments (with some margin
7551         /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
7552         /// accept a payment and generate a [`PaymentClaimable`] event for some time after the expiry.
7553         /// If you need exact expiry semantics, you should enforce them upon receipt of
7554         /// [`PaymentClaimable`].
7555         ///
7556         /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry_delta`
7557         /// set to at least [`MIN_FINAL_CLTV_EXPIRY_DELTA`].
7558         ///
7559         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
7560         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
7561         ///
7562         /// # Note
7563         ///
7564         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
7565         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
7566         ///
7567         /// Errors if `min_value_msat` is greater than total bitcoin supply.
7568         ///
7569         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
7570         /// on versions of LDK prior to 0.0.114.
7571         ///
7572         /// [`create_inbound_payment`]: Self::create_inbound_payment
7573         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
7574         pub fn create_inbound_payment_for_hash(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>,
7575                 invoice_expiry_delta_secs: u32, min_final_cltv_expiry: Option<u16>) -> Result<PaymentSecret, ()> {
7576                 inbound_payment::create_from_hash(&self.inbound_payment_key, min_value_msat, payment_hash,
7577                         invoice_expiry_delta_secs, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
7578                         min_final_cltv_expiry)
7579         }
7580
7581         /// Gets an LDK-generated payment preimage from a payment hash and payment secret that were
7582         /// previously returned from [`create_inbound_payment`].
7583         ///
7584         /// [`create_inbound_payment`]: Self::create_inbound_payment
7585         pub fn get_payment_preimage(&self, payment_hash: PaymentHash, payment_secret: PaymentSecret) -> Result<PaymentPreimage, APIError> {
7586                 inbound_payment::get_payment_preimage(payment_hash, payment_secret, &self.inbound_payment_key)
7587         }
7588
7589         /// Creates a one-hop blinded path with [`ChannelManager::get_our_node_id`] as the introduction
7590         /// node.
7591         fn create_one_hop_blinded_path(&self) -> BlindedPath {
7592                 let entropy_source = self.entropy_source.deref();
7593                 let secp_ctx = &self.secp_ctx;
7594                 BlindedPath::one_hop_for_message(self.get_our_node_id(), entropy_source, secp_ctx).unwrap()
7595         }
7596
7597         /// Creates a one-hop blinded path with [`ChannelManager::get_our_node_id`] as the introduction
7598         /// node.
7599         fn create_one_hop_blinded_payment_path(
7600                 &self, payment_secret: PaymentSecret
7601         ) -> (BlindedPayInfo, BlindedPath) {
7602                 let entropy_source = self.entropy_source.deref();
7603                 let secp_ctx = &self.secp_ctx;
7604
7605                 let payee_node_id = self.get_our_node_id();
7606                 let max_cltv_expiry = self.best_block.read().unwrap().height() + LATENCY_GRACE_PERIOD_BLOCKS;
7607                 let payee_tlvs = ReceiveTlvs {
7608                         payment_secret,
7609                         payment_constraints: PaymentConstraints {
7610                                 max_cltv_expiry,
7611                                 htlc_minimum_msat: 1,
7612                         },
7613                 };
7614                 // TODO: Err for overflow?
7615                 BlindedPath::one_hop_for_payment(
7616                         payee_node_id, payee_tlvs, entropy_source, secp_ctx
7617                 ).unwrap()
7618         }
7619
7620         /// Gets a fake short channel id for use in receiving [phantom node payments]. These fake scids
7621         /// are used when constructing the phantom invoice's route hints.
7622         ///
7623         /// [phantom node payments]: crate::sign::PhantomKeysManager
7624         pub fn get_phantom_scid(&self) -> u64 {
7625                 let best_block_height = self.best_block.read().unwrap().height();
7626                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
7627                 loop {
7628                         let scid_candidate = fake_scid::Namespace::Phantom.get_fake_scid(best_block_height, &self.chain_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
7629                         // Ensure the generated scid doesn't conflict with a real channel.
7630                         match short_to_chan_info.get(&scid_candidate) {
7631                                 Some(_) => continue,
7632                                 None => return scid_candidate
7633                         }
7634                 }
7635         }
7636
7637         /// Gets route hints for use in receiving [phantom node payments].
7638         ///
7639         /// [phantom node payments]: crate::sign::PhantomKeysManager
7640         pub fn get_phantom_route_hints(&self) -> PhantomRouteHints {
7641                 PhantomRouteHints {
7642                         channels: self.list_usable_channels(),
7643                         phantom_scid: self.get_phantom_scid(),
7644                         real_node_pubkey: self.get_our_node_id(),
7645                 }
7646         }
7647
7648         /// Gets a fake short channel id for use in receiving intercepted payments. These fake scids are
7649         /// used when constructing the route hints for HTLCs intended to be intercepted. See
7650         /// [`ChannelManager::forward_intercepted_htlc`].
7651         ///
7652         /// Note that this method is not guaranteed to return unique values, you may need to call it a few
7653         /// times to get a unique scid.
7654         pub fn get_intercept_scid(&self) -> u64 {
7655                 let best_block_height = self.best_block.read().unwrap().height();
7656                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
7657                 loop {
7658                         let scid_candidate = fake_scid::Namespace::Intercept.get_fake_scid(best_block_height, &self.chain_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
7659                         // Ensure the generated scid doesn't conflict with a real channel.
7660                         if short_to_chan_info.contains_key(&scid_candidate) { continue }
7661                         return scid_candidate
7662                 }
7663         }
7664
7665         /// Gets inflight HTLC information by processing pending outbound payments that are in
7666         /// our channels. May be used during pathfinding to account for in-use channel liquidity.
7667         pub fn compute_inflight_htlcs(&self) -> InFlightHtlcs {
7668                 let mut inflight_htlcs = InFlightHtlcs::new();
7669
7670                 let per_peer_state = self.per_peer_state.read().unwrap();
7671                 for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7672                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7673                         let peer_state = &mut *peer_state_lock;
7674                         for chan in peer_state.channel_by_id.values().filter_map(
7675                                 |phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }
7676                         ) {
7677                                 for (htlc_source, _) in chan.inflight_htlc_sources() {
7678                                         if let HTLCSource::OutboundRoute { path, .. } = htlc_source {
7679                                                 inflight_htlcs.process_path(path, self.get_our_node_id());
7680                                         }
7681                                 }
7682                         }
7683                 }
7684
7685                 inflight_htlcs
7686         }
7687
7688         #[cfg(any(test, feature = "_test_utils"))]
7689         pub fn get_and_clear_pending_events(&self) -> Vec<events::Event> {
7690                 let events = core::cell::RefCell::new(Vec::new());
7691                 let event_handler = |event: events::Event| events.borrow_mut().push(event);
7692                 self.process_pending_events(&event_handler);
7693                 events.into_inner()
7694         }
7695
7696         #[cfg(feature = "_test_utils")]
7697         pub fn push_pending_event(&self, event: events::Event) {
7698                 let mut events = self.pending_events.lock().unwrap();
7699                 events.push_back((event, None));
7700         }
7701
7702         #[cfg(test)]
7703         pub fn pop_pending_event(&self) -> Option<events::Event> {
7704                 let mut events = self.pending_events.lock().unwrap();
7705                 events.pop_front().map(|(e, _)| e)
7706         }
7707
7708         #[cfg(test)]
7709         pub fn has_pending_payments(&self) -> bool {
7710                 self.pending_outbound_payments.has_pending_payments()
7711         }
7712
7713         #[cfg(test)]
7714         pub fn clear_pending_payments(&self) {
7715                 self.pending_outbound_payments.clear_pending_payments()
7716         }
7717
7718         /// When something which was blocking a channel from updating its [`ChannelMonitor`] (e.g. an
7719         /// [`Event`] being handled) completes, this should be called to restore the channel to normal
7720         /// operation. It will double-check that nothing *else* is also blocking the same channel from
7721         /// making progress and then let any blocked [`ChannelMonitorUpdate`]s fly.
7722         fn handle_monitor_update_release(&self, counterparty_node_id: PublicKey, channel_funding_outpoint: OutPoint, mut completed_blocker: Option<RAAMonitorUpdateBlockingAction>) {
7723                 loop {
7724                         let per_peer_state = self.per_peer_state.read().unwrap();
7725                         if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
7726                                 let mut peer_state_lck = peer_state_mtx.lock().unwrap();
7727                                 let peer_state = &mut *peer_state_lck;
7728
7729                                 if let Some(blocker) = completed_blocker.take() {
7730                                         // Only do this on the first iteration of the loop.
7731                                         if let Some(blockers) = peer_state.actions_blocking_raa_monitor_updates
7732                                                 .get_mut(&channel_funding_outpoint.to_channel_id())
7733                                         {
7734                                                 blockers.retain(|iter| iter != &blocker);
7735                                         }
7736                                 }
7737
7738                                 if self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
7739                                         channel_funding_outpoint, counterparty_node_id) {
7740                                         // Check that, while holding the peer lock, we don't have anything else
7741                                         // blocking monitor updates for this channel. If we do, release the monitor
7742                                         // update(s) when those blockers complete.
7743                                         log_trace!(self.logger, "Delaying monitor unlock for channel {} as another channel's mon update needs to complete first",
7744                                                 &channel_funding_outpoint.to_channel_id());
7745                                         break;
7746                                 }
7747
7748                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(channel_funding_outpoint.to_channel_id()) {
7749                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7750                                                 debug_assert_eq!(chan.context.get_funding_txo().unwrap(), channel_funding_outpoint);
7751                                                 if let Some((monitor_update, further_update_exists)) = chan.unblock_next_blocked_monitor_update() {
7752                                                         log_debug!(self.logger, "Unlocking monitor updating for channel {} and updating monitor",
7753                                                                 channel_funding_outpoint.to_channel_id());
7754                                                         handle_new_monitor_update!(self, channel_funding_outpoint, monitor_update,
7755                                                                 peer_state_lck, peer_state, per_peer_state, chan);
7756                                                         if further_update_exists {
7757                                                                 // If there are more `ChannelMonitorUpdate`s to process, restart at the
7758                                                                 // top of the loop.
7759                                                                 continue;
7760                                                         }
7761                                                 } else {
7762                                                         log_trace!(self.logger, "Unlocked monitor updating for channel {} without monitors to update",
7763                                                                 channel_funding_outpoint.to_channel_id());
7764                                                 }
7765                                         }
7766                                 }
7767                         } else {
7768                                 log_debug!(self.logger,
7769                                         "Got a release post-RAA monitor update for peer {} but the channel is gone",
7770                                         log_pubkey!(counterparty_node_id));
7771                         }
7772                         break;
7773                 }
7774         }
7775
7776         fn handle_post_event_actions(&self, actions: Vec<EventCompletionAction>) {
7777                 for action in actions {
7778                         match action {
7779                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
7780                                         channel_funding_outpoint, counterparty_node_id
7781                                 } => {
7782                                         self.handle_monitor_update_release(counterparty_node_id, channel_funding_outpoint, None);
7783                                 }
7784                         }
7785                 }
7786         }
7787
7788         /// Processes any events asynchronously in the order they were generated since the last call
7789         /// using the given event handler.
7790         ///
7791         /// See the trait-level documentation of [`EventsProvider`] for requirements.
7792         pub async fn process_pending_events_async<Future: core::future::Future, H: Fn(Event) -> Future>(
7793                 &self, handler: H
7794         ) {
7795                 let mut ev;
7796                 process_events_body!(self, ev, { handler(ev).await });
7797         }
7798 }
7799
7800 fn create_fwd_pending_htlc_info(
7801         msg: &msgs::UpdateAddHTLC, hop_data: msgs::InboundOnionPayload, hop_hmac: [u8; 32],
7802         new_packet_bytes: [u8; onion_utils::ONION_DATA_LEN], shared_secret: [u8; 32],
7803         next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>
7804 ) -> Result<PendingHTLCInfo, InboundOnionErr> {
7805         debug_assert!(next_packet_pubkey_opt.is_some());
7806         let outgoing_packet = msgs::OnionPacket {
7807                 version: 0,
7808                 public_key: next_packet_pubkey_opt.unwrap_or(Err(secp256k1::Error::InvalidPublicKey)),
7809                 hop_data: new_packet_bytes,
7810                 hmac: hop_hmac,
7811         };
7812
7813         let (short_channel_id, amt_to_forward, outgoing_cltv_value) = match hop_data {
7814                 msgs::InboundOnionPayload::Forward { short_channel_id, amt_to_forward, outgoing_cltv_value } =>
7815                         (short_channel_id, amt_to_forward, outgoing_cltv_value),
7816                 msgs::InboundOnionPayload::Receive { .. } | msgs::InboundOnionPayload::BlindedReceive { .. } =>
7817                         return Err(InboundOnionErr {
7818                                 msg: "Final Node OnionHopData provided for us as an intermediary node",
7819                                 err_code: 0x4000 | 22,
7820                                 err_data: Vec::new(),
7821                         }),
7822         };
7823
7824         Ok(PendingHTLCInfo {
7825                 routing: PendingHTLCRouting::Forward {
7826                         onion_packet: outgoing_packet,
7827                         short_channel_id,
7828                 },
7829                 payment_hash: msg.payment_hash,
7830                 incoming_shared_secret: shared_secret,
7831                 incoming_amt_msat: Some(msg.amount_msat),
7832                 outgoing_amt_msat: amt_to_forward,
7833                 outgoing_cltv_value,
7834                 skimmed_fee_msat: None,
7835         })
7836 }
7837
7838 fn create_recv_pending_htlc_info(
7839         hop_data: msgs::InboundOnionPayload, shared_secret: [u8; 32], payment_hash: PaymentHash,
7840         amt_msat: u64, cltv_expiry: u32, phantom_shared_secret: Option<[u8; 32]>, allow_underpay: bool,
7841         counterparty_skimmed_fee_msat: Option<u64>, current_height: u32, accept_mpp_keysend: bool,
7842 ) -> Result<PendingHTLCInfo, InboundOnionErr> {
7843         let (payment_data, keysend_preimage, custom_tlvs, onion_amt_msat, outgoing_cltv_value, payment_metadata) = match hop_data {
7844                 msgs::InboundOnionPayload::Receive {
7845                         payment_data, keysend_preimage, custom_tlvs, amt_msat, outgoing_cltv_value, payment_metadata, ..
7846                 } =>
7847                         (payment_data, keysend_preimage, custom_tlvs, amt_msat, outgoing_cltv_value, payment_metadata),
7848                 msgs::InboundOnionPayload::BlindedReceive {
7849                         amt_msat, total_msat, outgoing_cltv_value, payment_secret, ..
7850                 } => {
7851                         let payment_data = msgs::FinalOnionHopData { payment_secret, total_msat };
7852                         (Some(payment_data), None, Vec::new(), amt_msat, outgoing_cltv_value, None)
7853                 }
7854                 msgs::InboundOnionPayload::Forward { .. } => {
7855                         return Err(InboundOnionErr {
7856                                 err_code: 0x4000|22,
7857                                 err_data: Vec::new(),
7858                                 msg: "Got non final data with an HMAC of 0",
7859                         })
7860                 },
7861         };
7862         // final_incorrect_cltv_expiry
7863         if outgoing_cltv_value > cltv_expiry {
7864                 return Err(InboundOnionErr {
7865                         msg: "Upstream node set CLTV to less than the CLTV set by the sender",
7866                         err_code: 18,
7867                         err_data: cltv_expiry.to_be_bytes().to_vec()
7868                 })
7869         }
7870         // final_expiry_too_soon
7871         // We have to have some headroom to broadcast on chain if we have the preimage, so make sure
7872         // we have at least HTLC_FAIL_BACK_BUFFER blocks to go.
7873         //
7874         // Also, ensure that, in the case of an unknown preimage for the received payment hash, our
7875         // payment logic has enough time to fail the HTLC backward before our onchain logic triggers a
7876         // channel closure (see HTLC_FAIL_BACK_BUFFER rationale).
7877         if cltv_expiry <= current_height + HTLC_FAIL_BACK_BUFFER + 1 {
7878                 let mut err_data = Vec::with_capacity(12);
7879                 err_data.extend_from_slice(&amt_msat.to_be_bytes());
7880                 err_data.extend_from_slice(&current_height.to_be_bytes());
7881                 return Err(InboundOnionErr {
7882                         err_code: 0x4000 | 15, err_data,
7883                         msg: "The final CLTV expiry is too soon to handle",
7884                 });
7885         }
7886         if (!allow_underpay && onion_amt_msat > amt_msat) ||
7887                 (allow_underpay && onion_amt_msat >
7888                  amt_msat.saturating_add(counterparty_skimmed_fee_msat.unwrap_or(0)))
7889         {
7890                 return Err(InboundOnionErr {
7891                         err_code: 19,
7892                         err_data: amt_msat.to_be_bytes().to_vec(),
7893                         msg: "Upstream node sent less than we were supposed to receive in payment",
7894                 });
7895         }
7896
7897         let routing = if let Some(payment_preimage) = keysend_preimage {
7898                 // We need to check that the sender knows the keysend preimage before processing this
7899                 // payment further. Otherwise, an intermediary routing hop forwarding non-keysend-HTLC X
7900                 // could discover the final destination of X, by probing the adjacent nodes on the route
7901                 // with a keysend payment of identical payment hash to X and observing the processing
7902                 // time discrepancies due to a hash collision with X.
7903                 let hashed_preimage = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
7904                 if hashed_preimage != payment_hash {
7905                         return Err(InboundOnionErr {
7906                                 err_code: 0x4000|22,
7907                                 err_data: Vec::new(),
7908                                 msg: "Payment preimage didn't match payment hash",
7909                         });
7910                 }
7911                 if !accept_mpp_keysend && payment_data.is_some() {
7912                         return Err(InboundOnionErr {
7913                                 err_code: 0x4000|22,
7914                                 err_data: Vec::new(),
7915                                 msg: "We don't support MPP keysend payments",
7916                         });
7917                 }
7918                 PendingHTLCRouting::ReceiveKeysend {
7919                         payment_data,
7920                         payment_preimage,
7921                         payment_metadata,
7922                         incoming_cltv_expiry: outgoing_cltv_value,
7923                         custom_tlvs,
7924                 }
7925         } else if let Some(data) = payment_data {
7926                 PendingHTLCRouting::Receive {
7927                         payment_data: data,
7928                         payment_metadata,
7929                         incoming_cltv_expiry: outgoing_cltv_value,
7930                         phantom_shared_secret,
7931                         custom_tlvs,
7932                 }
7933         } else {
7934                 return Err(InboundOnionErr {
7935                         err_code: 0x4000|0x2000|3,
7936                         err_data: Vec::new(),
7937                         msg: "We require payment_secrets",
7938                 });
7939         };
7940         Ok(PendingHTLCInfo {
7941                 routing,
7942                 payment_hash,
7943                 incoming_shared_secret: shared_secret,
7944                 incoming_amt_msat: Some(amt_msat),
7945                 outgoing_amt_msat: onion_amt_msat,
7946                 outgoing_cltv_value,
7947                 skimmed_fee_msat: counterparty_skimmed_fee_msat,
7948         })
7949 }
7950
7951 /// Peel one layer off an incoming onion, returning [`PendingHTLCInfo`] (either Forward or Receive).
7952 /// This does all the relevant context-free checks that LDK requires for payment relay or
7953 /// acceptance. If the payment is to be received, and the amount matches the expected amount for
7954 /// a given invoice, this indicates the [`msgs::UpdateAddHTLC`], once fully committed in the
7955 /// channel, will generate an [`Event::PaymentClaimable`].
7956 pub fn peel_payment_onion<NS: Deref, L: Deref, T: secp256k1::Verification>(
7957         msg: &msgs::UpdateAddHTLC, node_signer: &NS, logger: &L, secp_ctx: &Secp256k1<T>,
7958         cur_height: u32, accept_mpp_keysend: bool,
7959 ) -> Result<PendingHTLCInfo, InboundOnionErr>
7960 where
7961         NS::Target: NodeSigner,
7962         L::Target: Logger,
7963 {
7964         let (hop, shared_secret, next_packet_details_opt) =
7965                 decode_incoming_update_add_htlc_onion(msg, node_signer, logger, secp_ctx
7966         ).map_err(|e| {
7967                 let (err_code, err_data) = match e {
7968                         HTLCFailureMsg::Malformed(m) => (m.failure_code, Vec::new()),
7969                         HTLCFailureMsg::Relay(r) => (0x4000 | 22, r.reason.data),
7970                 };
7971                 let msg = "Failed to decode update add htlc onion";
7972                 InboundOnionErr { msg, err_code, err_data }
7973         })?;
7974         Ok(match hop {
7975                 onion_utils::Hop::Forward { next_hop_data, next_hop_hmac, new_packet_bytes } => {
7976                         let NextPacketDetails {
7977                                 next_packet_pubkey, outgoing_amt_msat: _, outgoing_scid: _, outgoing_cltv_value
7978                         } = match next_packet_details_opt {
7979                                 Some(next_packet_details) => next_packet_details,
7980                                 // Forward should always include the next hop details
7981                                 None => return Err(InboundOnionErr {
7982                                         msg: "Failed to decode update add htlc onion",
7983                                         err_code: 0x4000 | 22,
7984                                         err_data: Vec::new(),
7985                                 }),
7986                         };
7987
7988                         if let Err((err_msg, code)) = check_incoming_htlc_cltv(
7989                                 cur_height, outgoing_cltv_value, msg.cltv_expiry
7990                         ) {
7991                                 return Err(InboundOnionErr {
7992                                         msg: err_msg,
7993                                         err_code: code,
7994                                         err_data: Vec::new(),
7995                                 });
7996                         }
7997                         create_fwd_pending_htlc_info(
7998                                 msg, next_hop_data, next_hop_hmac, new_packet_bytes, shared_secret,
7999                                 Some(next_packet_pubkey)
8000                         )?
8001                 },
8002                 onion_utils::Hop::Receive(received_data) => {
8003                         create_recv_pending_htlc_info(
8004                                 received_data, shared_secret, msg.payment_hash, msg.amount_msat, msg.cltv_expiry,
8005                                 None, false, msg.skimmed_fee_msat, cur_height, accept_mpp_keysend,
8006                         )?
8007                 }
8008         })
8009 }
8010
8011 struct NextPacketDetails {
8012         next_packet_pubkey: Result<PublicKey, secp256k1::Error>,
8013         outgoing_scid: u64,
8014         outgoing_amt_msat: u64,
8015         outgoing_cltv_value: u32,
8016 }
8017
8018 fn decode_incoming_update_add_htlc_onion<NS: Deref, L: Deref, T: secp256k1::Verification>(
8019         msg: &msgs::UpdateAddHTLC, node_signer: &NS, logger: &L, secp_ctx: &Secp256k1<T>,
8020 ) -> Result<(onion_utils::Hop, [u8; 32], Option<NextPacketDetails>), HTLCFailureMsg>
8021 where
8022         NS::Target: NodeSigner,
8023         L::Target: Logger,
8024 {
8025         macro_rules! return_malformed_err {
8026                 ($msg: expr, $err_code: expr) => {
8027                         {
8028                                 log_info!(logger, "Failed to accept/forward incoming HTLC: {}", $msg);
8029                                 return Err(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
8030                                         channel_id: msg.channel_id,
8031                                         htlc_id: msg.htlc_id,
8032                                         sha256_of_onion: Sha256::hash(&msg.onion_routing_packet.hop_data).into_inner(),
8033                                         failure_code: $err_code,
8034                                 }));
8035                         }
8036                 }
8037         }
8038
8039         if let Err(_) = msg.onion_routing_packet.public_key {
8040                 return_malformed_err!("invalid ephemeral pubkey", 0x8000 | 0x4000 | 6);
8041         }
8042
8043         let shared_secret = node_signer.ecdh(
8044                 Recipient::Node, &msg.onion_routing_packet.public_key.unwrap(), None
8045         ).unwrap().secret_bytes();
8046
8047         if msg.onion_routing_packet.version != 0 {
8048                 //TODO: Spec doesn't indicate if we should only hash hop_data here (and in other
8049                 //sha256_of_onion error data packets), or the entire onion_routing_packet. Either way,
8050                 //the hash doesn't really serve any purpose - in the case of hashing all data, the
8051                 //receiving node would have to brute force to figure out which version was put in the
8052                 //packet by the node that send us the message, in the case of hashing the hop_data, the
8053                 //node knows the HMAC matched, so they already know what is there...
8054                 return_malformed_err!("Unknown onion packet version", 0x8000 | 0x4000 | 4);
8055         }
8056         macro_rules! return_err {
8057                 ($msg: expr, $err_code: expr, $data: expr) => {
8058                         {
8059                                 log_info!(logger, "Failed to accept/forward incoming HTLC: {}", $msg);
8060                                 return Err(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
8061                                         channel_id: msg.channel_id,
8062                                         htlc_id: msg.htlc_id,
8063                                         reason: HTLCFailReason::reason($err_code, $data.to_vec())
8064                                                 .get_encrypted_failure_packet(&shared_secret, &None),
8065                                 }));
8066                         }
8067                 }
8068         }
8069
8070         let next_hop = match onion_utils::decode_next_payment_hop(
8071                 shared_secret, &msg.onion_routing_packet.hop_data[..], msg.onion_routing_packet.hmac,
8072                 msg.payment_hash, node_signer
8073         ) {
8074                 Ok(res) => res,
8075                 Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
8076                         return_malformed_err!(err_msg, err_code);
8077                 },
8078                 Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
8079                         return_err!(err_msg, err_code, &[0; 0]);
8080                 },
8081         };
8082
8083         let next_packet_details = match next_hop {
8084                 onion_utils::Hop::Forward {
8085                         next_hop_data: msgs::InboundOnionPayload::Forward {
8086                                 short_channel_id, amt_to_forward, outgoing_cltv_value
8087                         }, ..
8088                 } => {
8089                         let next_packet_pubkey = onion_utils::next_hop_pubkey(secp_ctx,
8090                                 msg.onion_routing_packet.public_key.unwrap(), &shared_secret);
8091                         NextPacketDetails {
8092                                 next_packet_pubkey, outgoing_scid: short_channel_id,
8093                                 outgoing_amt_msat: amt_to_forward, outgoing_cltv_value
8094                         }
8095                 },
8096                 onion_utils::Hop::Receive { .. } => return Ok((next_hop, shared_secret, None)),
8097                 onion_utils::Hop::Forward { next_hop_data: msgs::InboundOnionPayload::Receive { .. }, .. } |
8098                         onion_utils::Hop::Forward { next_hop_data: msgs::InboundOnionPayload::BlindedReceive { .. }, .. } =>
8099                 {
8100                         return_err!("Final Node OnionHopData provided for us as an intermediary node", 0x4000 | 22, &[0; 0]);
8101                 }
8102         };
8103
8104         Ok((next_hop, shared_secret, Some(next_packet_details)))
8105 }
8106
8107 fn check_incoming_htlc_cltv(
8108         cur_height: u32, outgoing_cltv_value: u32, cltv_expiry: u32
8109 ) -> Result<(), (&'static str, u16)> {
8110         if (cltv_expiry as u64) < (outgoing_cltv_value) as u64 + MIN_CLTV_EXPIRY_DELTA as u64 {
8111                 return Err((
8112                         "Forwarding node has tampered with the intended HTLC values or origin node has an obsolete cltv_expiry_delta",
8113                         0x1000 | 13, // incorrect_cltv_expiry
8114                 ));
8115         }
8116         // Theoretically, channel counterparty shouldn't send us a HTLC expiring now,
8117         // but we want to be robust wrt to counterparty packet sanitization (see
8118         // HTLC_FAIL_BACK_BUFFER rationale).
8119         if cltv_expiry <= cur_height + HTLC_FAIL_BACK_BUFFER as u32 { // expiry_too_soon
8120                 return Err(("CLTV expiry is too close", 0x1000 | 14));
8121         }
8122         if cltv_expiry > cur_height + CLTV_FAR_FAR_AWAY as u32 { // expiry_too_far
8123                 return Err(("CLTV expiry is too far in the future", 21));
8124         }
8125         // If the HTLC expires ~now, don't bother trying to forward it to our
8126         // counterparty. They should fail it anyway, but we don't want to bother with
8127         // the round-trips or risk them deciding they definitely want the HTLC and
8128         // force-closing to ensure they get it if we're offline.
8129         // We previously had a much more aggressive check here which tried to ensure
8130         // our counterparty receives an HTLC which has *our* risk threshold met on it,
8131         // but there is no need to do that, and since we're a bit conservative with our
8132         // risk threshold it just results in failing to forward payments.
8133         if (outgoing_cltv_value) as u64 <= (cur_height + LATENCY_GRACE_PERIOD_BLOCKS) as u64 {
8134                 return Err(("Outgoing CLTV value is too soon", 0x1000 | 14));
8135         }
8136
8137         Ok(())
8138 }
8139
8140 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>
8141 where
8142         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8143         T::Target: BroadcasterInterface,
8144         ES::Target: EntropySource,
8145         NS::Target: NodeSigner,
8146         SP::Target: SignerProvider,
8147         F::Target: FeeEstimator,
8148         R::Target: Router,
8149         L::Target: Logger,
8150 {
8151         /// Returns `MessageSendEvent`s strictly ordered per-peer, in the order they were generated.
8152         /// The returned array will contain `MessageSendEvent`s for different peers if
8153         /// `MessageSendEvent`s to more than one peer exists, but `MessageSendEvent`s to the same peer
8154         /// is always placed next to each other.
8155         ///
8156         /// Note that that while `MessageSendEvent`s are strictly ordered per-peer, the peer order for
8157         /// the chunks of `MessageSendEvent`s for different peers is random. I.e. if the array contains
8158         /// `MessageSendEvent`s  for both `node_a` and `node_b`, the `MessageSendEvent`s for `node_a`
8159         /// will randomly be placed first or last in the returned array.
8160         ///
8161         /// Note that even though `BroadcastChannelAnnouncement` and `BroadcastChannelUpdate`
8162         /// `MessageSendEvent`s are intended to be broadcasted to all peers, they will be pleaced among
8163         /// the `MessageSendEvent`s to the specific peer they were generated under.
8164         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent> {
8165                 let events = RefCell::new(Vec::new());
8166                 PersistenceNotifierGuard::optionally_notify(self, || {
8167                         let mut result = NotifyOption::SkipPersistNoEvents;
8168
8169                         // TODO: This behavior should be documented. It's unintuitive that we query
8170                         // ChannelMonitors when clearing other events.
8171                         if self.process_pending_monitor_events() {
8172                                 result = NotifyOption::DoPersist;
8173                         }
8174
8175                         if self.check_free_holding_cells() {
8176                                 result = NotifyOption::DoPersist;
8177                         }
8178                         if self.maybe_generate_initial_closing_signed() {
8179                                 result = NotifyOption::DoPersist;
8180                         }
8181
8182                         let mut pending_events = Vec::new();
8183                         let per_peer_state = self.per_peer_state.read().unwrap();
8184                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
8185                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8186                                 let peer_state = &mut *peer_state_lock;
8187                                 if peer_state.pending_msg_events.len() > 0 {
8188                                         pending_events.append(&mut peer_state.pending_msg_events);
8189                                 }
8190                         }
8191
8192                         if !pending_events.is_empty() {
8193                                 events.replace(pending_events);
8194                         }
8195
8196                         result
8197                 });
8198                 events.into_inner()
8199         }
8200 }
8201
8202 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>
8203 where
8204         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8205         T::Target: BroadcasterInterface,
8206         ES::Target: EntropySource,
8207         NS::Target: NodeSigner,
8208         SP::Target: SignerProvider,
8209         F::Target: FeeEstimator,
8210         R::Target: Router,
8211         L::Target: Logger,
8212 {
8213         /// Processes events that must be periodically handled.
8214         ///
8215         /// An [`EventHandler`] may safely call back to the provider in order to handle an event.
8216         /// However, it must not call [`Writeable::write`] as doing so would result in a deadlock.
8217         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler {
8218                 let mut ev;
8219                 process_events_body!(self, ev, handler.handle_event(ev));
8220         }
8221 }
8222
8223 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>
8224 where
8225         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8226         T::Target: BroadcasterInterface,
8227         ES::Target: EntropySource,
8228         NS::Target: NodeSigner,
8229         SP::Target: SignerProvider,
8230         F::Target: FeeEstimator,
8231         R::Target: Router,
8232         L::Target: Logger,
8233 {
8234         fn filtered_block_connected(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
8235                 {
8236                         let best_block = self.best_block.read().unwrap();
8237                         assert_eq!(best_block.block_hash(), header.prev_blockhash,
8238                                 "Blocks must be connected in chain-order - the connected header must build on the last connected header");
8239                         assert_eq!(best_block.height(), height - 1,
8240                                 "Blocks must be connected in chain-order - the connected block height must be one greater than the previous height");
8241                 }
8242
8243                 self.transactions_confirmed(header, txdata, height);
8244                 self.best_block_updated(header, height);
8245         }
8246
8247         fn block_disconnected(&self, header: &BlockHeader, height: u32) {
8248                 let _persistence_guard =
8249                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
8250                                 self, || -> NotifyOption { NotifyOption::DoPersist });
8251                 let new_height = height - 1;
8252                 {
8253                         let mut best_block = self.best_block.write().unwrap();
8254                         assert_eq!(best_block.block_hash(), header.block_hash(),
8255                                 "Blocks must be disconnected in chain-order - the disconnected header must be the last connected header");
8256                         assert_eq!(best_block.height(), height,
8257                                 "Blocks must be disconnected in chain-order - the disconnected block must have the correct height");
8258                         *best_block = BestBlock::new(header.prev_blockhash, new_height)
8259                 }
8260
8261                 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, &self.logger));
8262         }
8263 }
8264
8265 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>
8266 where
8267         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8268         T::Target: BroadcasterInterface,
8269         ES::Target: EntropySource,
8270         NS::Target: NodeSigner,
8271         SP::Target: SignerProvider,
8272         F::Target: FeeEstimator,
8273         R::Target: Router,
8274         L::Target: Logger,
8275 {
8276         fn transactions_confirmed(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
8277                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
8278                 // during initialization prior to the chain_monitor being fully configured in some cases.
8279                 // See the docs for `ChannelManagerReadArgs` for more.
8280
8281                 let block_hash = header.block_hash();
8282                 log_trace!(self.logger, "{} transactions included in block {} at height {} provided", txdata.len(), block_hash, height);
8283
8284                 let _persistence_guard =
8285                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
8286                                 self, || -> NotifyOption { NotifyOption::DoPersist });
8287                 self.do_chain_event(Some(height), |channel| channel.transactions_confirmed(&block_hash, height, txdata, self.chain_hash, &self.node_signer, &self.default_configuration, &self.logger)
8288                         .map(|(a, b)| (a, Vec::new(), b)));
8289
8290                 let last_best_block_height = self.best_block.read().unwrap().height();
8291                 if height < last_best_block_height {
8292                         let timestamp = self.highest_seen_timestamp.load(Ordering::Acquire);
8293                         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, &self.logger));
8294                 }
8295         }
8296
8297         fn best_block_updated(&self, header: &BlockHeader, height: u32) {
8298                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
8299                 // during initialization prior to the chain_monitor being fully configured in some cases.
8300                 // See the docs for `ChannelManagerReadArgs` for more.
8301
8302                 let block_hash = header.block_hash();
8303                 log_trace!(self.logger, "New best block: {} at height {}", block_hash, height);
8304
8305                 let _persistence_guard =
8306                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
8307                                 self, || -> NotifyOption { NotifyOption::DoPersist });
8308                 *self.best_block.write().unwrap() = BestBlock::new(block_hash, height);
8309
8310                 self.do_chain_event(Some(height), |channel| channel.best_block_updated(height, header.time, self.chain_hash, &self.node_signer, &self.default_configuration, &self.logger));
8311
8312                 macro_rules! max_time {
8313                         ($timestamp: expr) => {
8314                                 loop {
8315                                         // Update $timestamp to be the max of its current value and the block
8316                                         // timestamp. This should keep us close to the current time without relying on
8317                                         // having an explicit local time source.
8318                                         // Just in case we end up in a race, we loop until we either successfully
8319                                         // update $timestamp or decide we don't need to.
8320                                         let old_serial = $timestamp.load(Ordering::Acquire);
8321                                         if old_serial >= header.time as usize { break; }
8322                                         if $timestamp.compare_exchange(old_serial, header.time as usize, Ordering::AcqRel, Ordering::Relaxed).is_ok() {
8323                                                 break;
8324                                         }
8325                                 }
8326                         }
8327                 }
8328                 max_time!(self.highest_seen_timestamp);
8329                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
8330                 payment_secrets.retain(|_, inbound_payment| {
8331                         inbound_payment.expiry_time > header.time as u64
8332                 });
8333         }
8334
8335         fn get_relevant_txids(&self) -> Vec<(Txid, Option<BlockHash>)> {
8336                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
8337                 for (_cp_id, peer_state_mutex) in self.per_peer_state.read().unwrap().iter() {
8338                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8339                         let peer_state = &mut *peer_state_lock;
8340                         for chan in peer_state.channel_by_id.values().filter_map(|phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }) {
8341                                 if let (Some(funding_txo), Some(block_hash)) = (chan.context.get_funding_txo(), chan.context.get_funding_tx_confirmed_in()) {
8342                                         res.push((funding_txo.txid, Some(block_hash)));
8343                                 }
8344                         }
8345                 }
8346                 res
8347         }
8348
8349         fn transaction_unconfirmed(&self, txid: &Txid) {
8350                 let _persistence_guard =
8351                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
8352                                 self, || -> NotifyOption { NotifyOption::DoPersist });
8353                 self.do_chain_event(None, |channel| {
8354                         if let Some(funding_txo) = channel.context.get_funding_txo() {
8355                                 if funding_txo.txid == *txid {
8356                                         channel.funding_transaction_unconfirmed(&self.logger).map(|()| (None, Vec::new(), None))
8357                                 } else { Ok((None, Vec::new(), None)) }
8358                         } else { Ok((None, Vec::new(), None)) }
8359                 });
8360         }
8361 }
8362
8363 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>
8364 where
8365         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8366         T::Target: BroadcasterInterface,
8367         ES::Target: EntropySource,
8368         NS::Target: NodeSigner,
8369         SP::Target: SignerProvider,
8370         F::Target: FeeEstimator,
8371         R::Target: Router,
8372         L::Target: Logger,
8373 {
8374         /// Calls a function which handles an on-chain event (blocks dis/connected, transactions
8375         /// un/confirmed, etc) on each channel, handling any resulting errors or messages generated by
8376         /// the function.
8377         fn do_chain_event<FN: Fn(&mut Channel<SP>) -> Result<(Option<msgs::ChannelReady>, Vec<(HTLCSource, PaymentHash)>, Option<msgs::AnnouncementSignatures>), ClosureReason>>
8378                         (&self, height_opt: Option<u32>, f: FN) {
8379                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
8380                 // during initialization prior to the chain_monitor being fully configured in some cases.
8381                 // See the docs for `ChannelManagerReadArgs` for more.
8382
8383                 let mut failed_channels = Vec::new();
8384                 let mut timed_out_htlcs = Vec::new();
8385                 {
8386                         let per_peer_state = self.per_peer_state.read().unwrap();
8387                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
8388                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8389                                 let peer_state = &mut *peer_state_lock;
8390                                 let pending_msg_events = &mut peer_state.pending_msg_events;
8391                                 peer_state.channel_by_id.retain(|_, phase| {
8392                                         match phase {
8393                                                 // Retain unfunded channels.
8394                                                 ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => true,
8395                                                 ChannelPhase::Funded(channel) => {
8396                                                         let res = f(channel);
8397                                                         if let Ok((channel_ready_opt, mut timed_out_pending_htlcs, announcement_sigs)) = res {
8398                                                                 for (source, payment_hash) in timed_out_pending_htlcs.drain(..) {
8399                                                                         let (failure_code, data) = self.get_htlc_inbound_temp_fail_err_and_data(0x1000|14 /* expiry_too_soon */, &channel);
8400                                                                         timed_out_htlcs.push((source, payment_hash, HTLCFailReason::reason(failure_code, data),
8401                                                                                 HTLCDestination::NextHopChannel { node_id: Some(channel.context.get_counterparty_node_id()), channel_id: channel.context.channel_id() }));
8402                                                                 }
8403                                                                 if let Some(channel_ready) = channel_ready_opt {
8404                                                                         send_channel_ready!(self, pending_msg_events, channel, channel_ready);
8405                                                                         if channel.context.is_usable() {
8406                                                                                 log_trace!(self.logger, "Sending channel_ready with private initial channel_update for our counterparty on channel {}", channel.context.channel_id());
8407                                                                                 if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
8408                                                                                         pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
8409                                                                                                 node_id: channel.context.get_counterparty_node_id(),
8410                                                                                                 msg,
8411                                                                                         });
8412                                                                                 }
8413                                                                         } else {
8414                                                                                 log_trace!(self.logger, "Sending channel_ready WITHOUT channel_update for {}", channel.context.channel_id());
8415                                                                         }
8416                                                                 }
8417
8418                                                                 {
8419                                                                         let mut pending_events = self.pending_events.lock().unwrap();
8420                                                                         emit_channel_ready_event!(pending_events, channel);
8421                                                                 }
8422
8423                                                                 if let Some(announcement_sigs) = announcement_sigs {
8424                                                                         log_trace!(self.logger, "Sending announcement_signatures for channel {}", channel.context.channel_id());
8425                                                                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
8426                                                                                 node_id: channel.context.get_counterparty_node_id(),
8427                                                                                 msg: announcement_sigs,
8428                                                                         });
8429                                                                         if let Some(height) = height_opt {
8430                                                                                 if let Some(announcement) = channel.get_signed_channel_announcement(&self.node_signer, self.chain_hash, height, &self.default_configuration) {
8431                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
8432                                                                                                 msg: announcement,
8433                                                                                                 // Note that announcement_signatures fails if the channel cannot be announced,
8434                                                                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
8435                                                                                                 update_msg: Some(self.get_channel_update_for_broadcast(channel).unwrap()),
8436                                                                                         });
8437                                                                                 }
8438                                                                         }
8439                                                                 }
8440                                                                 if channel.is_our_channel_ready() {
8441                                                                         if let Some(real_scid) = channel.context.get_short_channel_id() {
8442                                                                                 // If we sent a 0conf channel_ready, and now have an SCID, we add it
8443                                                                                 // to the short_to_chan_info map here. Note that we check whether we
8444                                                                                 // can relay using the real SCID at relay-time (i.e.
8445                                                                                 // enforce option_scid_alias then), and if the funding tx is ever
8446                                                                                 // un-confirmed we force-close the channel, ensuring short_to_chan_info
8447                                                                                 // is always consistent.
8448                                                                                 let mut short_to_chan_info = self.short_to_chan_info.write().unwrap();
8449                                                                                 let scid_insert = short_to_chan_info.insert(real_scid, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
8450                                                                                 assert!(scid_insert.is_none() || scid_insert.unwrap() == (channel.context.get_counterparty_node_id(), channel.context.channel_id()),
8451                                                                                         "SCIDs should never collide - ensure you weren't behind by a full {} blocks when creating channels",
8452                                                                                         fake_scid::MAX_SCID_BLOCKS_FROM_NOW);
8453                                                                         }
8454                                                                 }
8455                                                         } else if let Err(reason) = res {
8456                                                                 update_maps_on_chan_removal!(self, &channel.context);
8457                                                                 // It looks like our counterparty went on-chain or funding transaction was
8458                                                                 // reorged out of the main chain. Close the channel.
8459                                                                 failed_channels.push(channel.context.force_shutdown(true));
8460                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&channel) {
8461                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
8462                                                                                 msg: update
8463                                                                         });
8464                                                                 }
8465                                                                 let reason_message = format!("{}", reason);
8466                                                                 self.issue_channel_close_events(&channel.context, reason);
8467                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
8468                                                                         node_id: channel.context.get_counterparty_node_id(),
8469                                                                         action: msgs::ErrorAction::DisconnectPeer {
8470                                                                                 msg: Some(msgs::ErrorMessage {
8471                                                                                         channel_id: channel.context.channel_id(),
8472                                                                                         data: reason_message,
8473                                                                                 })
8474                                                                         },
8475                                                                 });
8476                                                                 return false;
8477                                                         }
8478                                                         true
8479                                                 }
8480                                         }
8481                                 });
8482                         }
8483                 }
8484
8485                 if let Some(height) = height_opt {
8486                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
8487                                 payment.htlcs.retain(|htlc| {
8488                                         // If height is approaching the number of blocks we think it takes us to get
8489                                         // our commitment transaction confirmed before the HTLC expires, plus the
8490                                         // number of blocks we generally consider it to take to do a commitment update,
8491                                         // just give up on it and fail the HTLC.
8492                                         if height >= htlc.cltv_expiry - HTLC_FAIL_BACK_BUFFER {
8493                                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
8494                                                 htlc_msat_height_data.extend_from_slice(&height.to_be_bytes());
8495
8496                                                 timed_out_htlcs.push((HTLCSource::PreviousHopData(htlc.prev_hop.clone()), payment_hash.clone(),
8497                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
8498                                                         HTLCDestination::FailedPayment { payment_hash: payment_hash.clone() }));
8499                                                 false
8500                                         } else { true }
8501                                 });
8502                                 !payment.htlcs.is_empty() // Only retain this entry if htlcs has at least one entry.
8503                         });
8504
8505                         let mut intercepted_htlcs = self.pending_intercepted_htlcs.lock().unwrap();
8506                         intercepted_htlcs.retain(|_, htlc| {
8507                                 if height >= htlc.forward_info.outgoing_cltv_value - HTLC_FAIL_BACK_BUFFER {
8508                                         let prev_hop_data = HTLCSource::PreviousHopData(HTLCPreviousHopData {
8509                                                 short_channel_id: htlc.prev_short_channel_id,
8510                                                 user_channel_id: Some(htlc.prev_user_channel_id),
8511                                                 htlc_id: htlc.prev_htlc_id,
8512                                                 incoming_packet_shared_secret: htlc.forward_info.incoming_shared_secret,
8513                                                 phantom_shared_secret: None,
8514                                                 outpoint: htlc.prev_funding_outpoint,
8515                                         });
8516
8517                                         let requested_forward_scid /* intercept scid */ = match htlc.forward_info.routing {
8518                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
8519                                                 _ => unreachable!(),
8520                                         };
8521                                         timed_out_htlcs.push((prev_hop_data, htlc.forward_info.payment_hash,
8522                                                         HTLCFailReason::from_failure_code(0x2000 | 2),
8523                                                         HTLCDestination::InvalidForward { requested_forward_scid }));
8524                                         log_trace!(self.logger, "Timing out intercepted HTLC with requested forward scid {}", requested_forward_scid);
8525                                         false
8526                                 } else { true }
8527                         });
8528                 }
8529
8530                 self.handle_init_event_channel_failures(failed_channels);
8531
8532                 for (source, payment_hash, reason, destination) in timed_out_htlcs.drain(..) {
8533                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, destination);
8534                 }
8535         }
8536
8537         /// Gets a [`Future`] that completes when this [`ChannelManager`] may need to be persisted or
8538         /// may have events that need processing.
8539         ///
8540         /// In order to check if this [`ChannelManager`] needs persisting, call
8541         /// [`Self::get_and_clear_needs_persistence`].
8542         ///
8543         /// Note that callbacks registered on the [`Future`] MUST NOT call back into this
8544         /// [`ChannelManager`] and should instead register actions to be taken later.
8545         pub fn get_event_or_persistence_needed_future(&self) -> Future {
8546                 self.event_persist_notifier.get_future()
8547         }
8548
8549         /// Returns true if this [`ChannelManager`] needs to be persisted.
8550         pub fn get_and_clear_needs_persistence(&self) -> bool {
8551                 self.needs_persist_flag.swap(false, Ordering::AcqRel)
8552         }
8553
8554         #[cfg(any(test, feature = "_test_utils"))]
8555         pub fn get_event_or_persist_condvar_value(&self) -> bool {
8556                 self.event_persist_notifier.notify_pending()
8557         }
8558
8559         /// Gets the latest best block which was connected either via the [`chain::Listen`] or
8560         /// [`chain::Confirm`] interfaces.
8561         pub fn current_best_block(&self) -> BestBlock {
8562                 self.best_block.read().unwrap().clone()
8563         }
8564
8565         /// Fetches the set of [`NodeFeatures`] flags that are provided by or required by
8566         /// [`ChannelManager`].
8567         pub fn node_features(&self) -> NodeFeatures {
8568                 provided_node_features(&self.default_configuration)
8569         }
8570
8571         /// Fetches the set of [`Bolt11InvoiceFeatures`] flags that are provided by or required by
8572         /// [`ChannelManager`].
8573         ///
8574         /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
8575         /// or not. Thus, this method is not public.
8576         #[cfg(any(feature = "_test_utils", test))]
8577         pub fn bolt11_invoice_features(&self) -> Bolt11InvoiceFeatures {
8578                 provided_bolt11_invoice_features(&self.default_configuration)
8579         }
8580
8581         /// Fetches the set of [`Bolt12InvoiceFeatures`] flags that are provided by or required by
8582         /// [`ChannelManager`].
8583         fn bolt12_invoice_features(&self) -> Bolt12InvoiceFeatures {
8584                 provided_bolt12_invoice_features(&self.default_configuration)
8585         }
8586
8587         /// Fetches the set of [`ChannelFeatures`] flags that are provided by or required by
8588         /// [`ChannelManager`].
8589         pub fn channel_features(&self) -> ChannelFeatures {
8590                 provided_channel_features(&self.default_configuration)
8591         }
8592
8593         /// Fetches the set of [`ChannelTypeFeatures`] flags that are provided by or required by
8594         /// [`ChannelManager`].
8595         pub fn channel_type_features(&self) -> ChannelTypeFeatures {
8596                 provided_channel_type_features(&self.default_configuration)
8597         }
8598
8599         /// Fetches the set of [`InitFeatures`] flags that are provided by or required by
8600         /// [`ChannelManager`].
8601         pub fn init_features(&self) -> InitFeatures {
8602                 provided_init_features(&self.default_configuration)
8603         }
8604 }
8605
8606 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8607         ChannelMessageHandler for ChannelManager<M, T, ES, NS, SP, F, R, L>
8608 where
8609         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8610         T::Target: BroadcasterInterface,
8611         ES::Target: EntropySource,
8612         NS::Target: NodeSigner,
8613         SP::Target: SignerProvider,
8614         F::Target: FeeEstimator,
8615         R::Target: Router,
8616         L::Target: Logger,
8617 {
8618         fn handle_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) {
8619                 // Note that we never need to persist the updated ChannelManager for an inbound
8620                 // open_channel message - pre-funded channels are never written so there should be no
8621                 // change to the contents.
8622                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
8623                         let res = self.internal_open_channel(counterparty_node_id, msg);
8624                         let persist = match &res {
8625                                 Err(e) if e.closes_channel() => {
8626                                         debug_assert!(false, "We shouldn't close a new channel");
8627                                         NotifyOption::DoPersist
8628                                 },
8629                                 _ => NotifyOption::SkipPersistHandleEvents,
8630                         };
8631                         let _ = handle_error!(self, res, *counterparty_node_id);
8632                         persist
8633                 });
8634         }
8635
8636         fn handle_open_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannelV2) {
8637                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8638                         "Dual-funded channels not supported".to_owned(),
8639                          msg.temporary_channel_id.clone())), *counterparty_node_id);
8640         }
8641
8642         fn handle_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) {
8643                 // Note that we never need to persist the updated ChannelManager for an inbound
8644                 // accept_channel message - pre-funded channels are never written so there should be no
8645                 // change to the contents.
8646                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
8647                         let _ = handle_error!(self, self.internal_accept_channel(counterparty_node_id, msg), *counterparty_node_id);
8648                         NotifyOption::SkipPersistHandleEvents
8649                 });
8650         }
8651
8652         fn handle_accept_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannelV2) {
8653                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8654                         "Dual-funded channels not supported".to_owned(),
8655                          msg.temporary_channel_id.clone())), *counterparty_node_id);
8656         }
8657
8658         fn handle_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) {
8659                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8660                 let _ = handle_error!(self, self.internal_funding_created(counterparty_node_id, msg), *counterparty_node_id);
8661         }
8662
8663         fn handle_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) {
8664                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8665                 let _ = handle_error!(self, self.internal_funding_signed(counterparty_node_id, msg), *counterparty_node_id);
8666         }
8667
8668         fn handle_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) {
8669                 // Note that we never need to persist the updated ChannelManager for an inbound
8670                 // channel_ready message - while the channel's state will change, any channel_ready message
8671                 // will ultimately be re-sent on startup and the `ChannelMonitor` won't be updated so we
8672                 // will not force-close the channel on startup.
8673                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
8674                         let res = self.internal_channel_ready(counterparty_node_id, msg);
8675                         let persist = match &res {
8676                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
8677                                 _ => NotifyOption::SkipPersistHandleEvents,
8678                         };
8679                         let _ = handle_error!(self, res, *counterparty_node_id);
8680                         persist
8681                 });
8682         }
8683
8684         fn handle_stfu(&self, counterparty_node_id: &PublicKey, msg: &msgs::Stfu) {
8685                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8686                         "Quiescence not supported".to_owned(),
8687                          msg.channel_id.clone())), *counterparty_node_id);
8688         }
8689
8690         fn handle_splice(&self, counterparty_node_id: &PublicKey, msg: &msgs::Splice) {
8691                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8692                         "Splicing not supported".to_owned(),
8693                          msg.channel_id.clone())), *counterparty_node_id);
8694         }
8695
8696         fn handle_splice_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::SpliceAck) {
8697                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8698                         "Splicing not supported (splice_ack)".to_owned(),
8699                          msg.channel_id.clone())), *counterparty_node_id);
8700         }
8701
8702         fn handle_splice_locked(&self, counterparty_node_id: &PublicKey, msg: &msgs::SpliceLocked) {
8703                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8704                         "Splicing not supported (splice_locked)".to_owned(),
8705                          msg.channel_id.clone())), *counterparty_node_id);
8706         }
8707
8708         fn handle_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) {
8709                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8710                 let _ = handle_error!(self, self.internal_shutdown(counterparty_node_id, msg), *counterparty_node_id);
8711         }
8712
8713         fn handle_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) {
8714                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8715                 let _ = handle_error!(self, self.internal_closing_signed(counterparty_node_id, msg), *counterparty_node_id);
8716         }
8717
8718         fn handle_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) {
8719                 // Note that we never need to persist the updated ChannelManager for an inbound
8720                 // update_add_htlc message - the message itself doesn't change our channel state only the
8721                 // `commitment_signed` message afterwards will.
8722                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
8723                         let res = self.internal_update_add_htlc(counterparty_node_id, msg);
8724                         let persist = match &res {
8725                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
8726                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
8727                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
8728                         };
8729                         let _ = handle_error!(self, res, *counterparty_node_id);
8730                         persist
8731                 });
8732         }
8733
8734         fn handle_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) {
8735                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8736                 let _ = handle_error!(self, self.internal_update_fulfill_htlc(counterparty_node_id, msg), *counterparty_node_id);
8737         }
8738
8739         fn handle_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) {
8740                 // Note that we never need to persist the updated ChannelManager for an inbound
8741                 // update_fail_htlc message - the message itself doesn't change our channel state only the
8742                 // `commitment_signed` message afterwards will.
8743                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
8744                         let res = self.internal_update_fail_htlc(counterparty_node_id, msg);
8745                         let persist = match &res {
8746                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
8747                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
8748                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
8749                         };
8750                         let _ = handle_error!(self, res, *counterparty_node_id);
8751                         persist
8752                 });
8753         }
8754
8755         fn handle_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) {
8756                 // Note that we never need to persist the updated ChannelManager for an inbound
8757                 // update_fail_malformed_htlc message - the message itself doesn't change our channel state
8758                 // only the `commitment_signed` message afterwards will.
8759                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
8760                         let res = self.internal_update_fail_malformed_htlc(counterparty_node_id, msg);
8761                         let persist = match &res {
8762                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
8763                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
8764                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
8765                         };
8766                         let _ = handle_error!(self, res, *counterparty_node_id);
8767                         persist
8768                 });
8769         }
8770
8771         fn handle_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) {
8772                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8773                 let _ = handle_error!(self, self.internal_commitment_signed(counterparty_node_id, msg), *counterparty_node_id);
8774         }
8775
8776         fn handle_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) {
8777                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8778                 let _ = handle_error!(self, self.internal_revoke_and_ack(counterparty_node_id, msg), *counterparty_node_id);
8779         }
8780
8781         fn handle_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) {
8782                 // Note that we never need to persist the updated ChannelManager for an inbound
8783                 // update_fee message - the message itself doesn't change our channel state only the
8784                 // `commitment_signed` message afterwards will.
8785                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
8786                         let res = self.internal_update_fee(counterparty_node_id, msg);
8787                         let persist = match &res {
8788                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
8789                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
8790                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
8791                         };
8792                         let _ = handle_error!(self, res, *counterparty_node_id);
8793                         persist
8794                 });
8795         }
8796
8797         fn handle_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) {
8798                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8799                 let _ = handle_error!(self, self.internal_announcement_signatures(counterparty_node_id, msg), *counterparty_node_id);
8800         }
8801
8802         fn handle_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) {
8803                 PersistenceNotifierGuard::optionally_notify(self, || {
8804                         if let Ok(persist) = handle_error!(self, self.internal_channel_update(counterparty_node_id, msg), *counterparty_node_id) {
8805                                 persist
8806                         } else {
8807                                 NotifyOption::DoPersist
8808                         }
8809                 });
8810         }
8811
8812         fn handle_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) {
8813                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
8814                         let res = self.internal_channel_reestablish(counterparty_node_id, msg);
8815                         let persist = match &res {
8816                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
8817                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
8818                                 Ok(persist) => *persist,
8819                         };
8820                         let _ = handle_error!(self, res, *counterparty_node_id);
8821                         persist
8822                 });
8823         }
8824
8825         fn peer_disconnected(&self, counterparty_node_id: &PublicKey) {
8826                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(
8827                         self, || NotifyOption::SkipPersistHandleEvents);
8828                 let mut failed_channels = Vec::new();
8829                 let mut per_peer_state = self.per_peer_state.write().unwrap();
8830                 let remove_peer = {
8831                         log_debug!(self.logger, "Marking channels with {} disconnected and generating channel_updates.",
8832                                 log_pubkey!(counterparty_node_id));
8833                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
8834                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8835                                 let peer_state = &mut *peer_state_lock;
8836                                 let pending_msg_events = &mut peer_state.pending_msg_events;
8837                                 peer_state.channel_by_id.retain(|_, phase| {
8838                                         let context = match phase {
8839                                                 ChannelPhase::Funded(chan) => {
8840                                                         if chan.remove_uncommitted_htlcs_and_mark_paused(&self.logger).is_ok() {
8841                                                                 // We only retain funded channels that are not shutdown.
8842                                                                 return true;
8843                                                         }
8844                                                         &mut chan.context
8845                                                 },
8846                                                 // Unfunded channels will always be removed.
8847                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
8848                                                         &mut chan.context
8849                                                 },
8850                                                 ChannelPhase::UnfundedInboundV1(chan) => {
8851                                                         &mut chan.context
8852                                                 },
8853                                         };
8854                                         // Clean up for removal.
8855                                         update_maps_on_chan_removal!(self, &context);
8856                                         self.issue_channel_close_events(&context, ClosureReason::DisconnectedPeer);
8857                                         failed_channels.push(context.force_shutdown(false));
8858                                         false
8859                                 });
8860                                 // Note that we don't bother generating any events for pre-accept channels -
8861                                 // they're not considered "channels" yet from the PoV of our events interface.
8862                                 peer_state.inbound_channel_request_by_id.clear();
8863                                 pending_msg_events.retain(|msg| {
8864                                         match msg {
8865                                                 // V1 Channel Establishment
8866                                                 &events::MessageSendEvent::SendAcceptChannel { .. } => false,
8867                                                 &events::MessageSendEvent::SendOpenChannel { .. } => false,
8868                                                 &events::MessageSendEvent::SendFundingCreated { .. } => false,
8869                                                 &events::MessageSendEvent::SendFundingSigned { .. } => false,
8870                                                 // V2 Channel Establishment
8871                                                 &events::MessageSendEvent::SendAcceptChannelV2 { .. } => false,
8872                                                 &events::MessageSendEvent::SendOpenChannelV2 { .. } => false,
8873                                                 // Common Channel Establishment
8874                                                 &events::MessageSendEvent::SendChannelReady { .. } => false,
8875                                                 &events::MessageSendEvent::SendAnnouncementSignatures { .. } => false,
8876                                                 // Quiescence
8877                                                 &events::MessageSendEvent::SendStfu { .. } => false,
8878                                                 // Splicing
8879                                                 &events::MessageSendEvent::SendSplice { .. } => false,
8880                                                 &events::MessageSendEvent::SendSpliceAck { .. } => false,
8881                                                 &events::MessageSendEvent::SendSpliceLocked { .. } => false,
8882                                                 // Interactive Transaction Construction
8883                                                 &events::MessageSendEvent::SendTxAddInput { .. } => false,
8884                                                 &events::MessageSendEvent::SendTxAddOutput { .. } => false,
8885                                                 &events::MessageSendEvent::SendTxRemoveInput { .. } => false,
8886                                                 &events::MessageSendEvent::SendTxRemoveOutput { .. } => false,
8887                                                 &events::MessageSendEvent::SendTxComplete { .. } => false,
8888                                                 &events::MessageSendEvent::SendTxSignatures { .. } => false,
8889                                                 &events::MessageSendEvent::SendTxInitRbf { .. } => false,
8890                                                 &events::MessageSendEvent::SendTxAckRbf { .. } => false,
8891                                                 &events::MessageSendEvent::SendTxAbort { .. } => false,
8892                                                 // Channel Operations
8893                                                 &events::MessageSendEvent::UpdateHTLCs { .. } => false,
8894                                                 &events::MessageSendEvent::SendRevokeAndACK { .. } => false,
8895                                                 &events::MessageSendEvent::SendClosingSigned { .. } => false,
8896                                                 &events::MessageSendEvent::SendShutdown { .. } => false,
8897                                                 &events::MessageSendEvent::SendChannelReestablish { .. } => false,
8898                                                 &events::MessageSendEvent::HandleError { .. } => false,
8899                                                 // Gossip
8900                                                 &events::MessageSendEvent::SendChannelAnnouncement { .. } => false,
8901                                                 &events::MessageSendEvent::BroadcastChannelAnnouncement { .. } => true,
8902                                                 &events::MessageSendEvent::BroadcastChannelUpdate { .. } => true,
8903                                                 &events::MessageSendEvent::BroadcastNodeAnnouncement { .. } => true,
8904                                                 &events::MessageSendEvent::SendChannelUpdate { .. } => false,
8905                                                 &events::MessageSendEvent::SendChannelRangeQuery { .. } => false,
8906                                                 &events::MessageSendEvent::SendShortIdsQuery { .. } => false,
8907                                                 &events::MessageSendEvent::SendReplyChannelRange { .. } => false,
8908                                                 &events::MessageSendEvent::SendGossipTimestampFilter { .. } => false,
8909                                         }
8910                                 });
8911                                 debug_assert!(peer_state.is_connected, "A disconnected peer cannot disconnect");
8912                                 peer_state.is_connected = false;
8913                                 peer_state.ok_to_remove(true)
8914                         } else { debug_assert!(false, "Unconnected peer disconnected"); true }
8915                 };
8916                 if remove_peer {
8917                         per_peer_state.remove(counterparty_node_id);
8918                 }
8919                 mem::drop(per_peer_state);
8920
8921                 for failure in failed_channels.drain(..) {
8922                         self.finish_close_channel(failure);
8923                 }
8924         }
8925
8926         fn peer_connected(&self, counterparty_node_id: &PublicKey, init_msg: &msgs::Init, inbound: bool) -> Result<(), ()> {
8927                 if !init_msg.features.supports_static_remote_key() {
8928                         log_debug!(self.logger, "Peer {} does not support static remote key, disconnecting", log_pubkey!(counterparty_node_id));
8929                         return Err(());
8930                 }
8931
8932                 let mut res = Ok(());
8933
8934                 PersistenceNotifierGuard::optionally_notify(self, || {
8935                         // If we have too many peers connected which don't have funded channels, disconnect the
8936                         // peer immediately (as long as it doesn't have funded channels). If we have a bunch of
8937                         // unfunded channels taking up space in memory for disconnected peers, we still let new
8938                         // peers connect, but we'll reject new channels from them.
8939                         let connected_peers_without_funded_channels = self.peers_without_funded_channels(|node| node.is_connected);
8940                         let inbound_peer_limited = inbound && connected_peers_without_funded_channels >= MAX_NO_CHANNEL_PEERS;
8941
8942                         {
8943                                 let mut peer_state_lock = self.per_peer_state.write().unwrap();
8944                                 match peer_state_lock.entry(counterparty_node_id.clone()) {
8945                                         hash_map::Entry::Vacant(e) => {
8946                                                 if inbound_peer_limited {
8947                                                         res = Err(());
8948                                                         return NotifyOption::SkipPersistNoEvents;
8949                                                 }
8950                                                 e.insert(Mutex::new(PeerState {
8951                                                         channel_by_id: HashMap::new(),
8952                                                         inbound_channel_request_by_id: HashMap::new(),
8953                                                         latest_features: init_msg.features.clone(),
8954                                                         pending_msg_events: Vec::new(),
8955                                                         in_flight_monitor_updates: BTreeMap::new(),
8956                                                         monitor_update_blocked_actions: BTreeMap::new(),
8957                                                         actions_blocking_raa_monitor_updates: BTreeMap::new(),
8958                                                         is_connected: true,
8959                                                 }));
8960                                         },
8961                                         hash_map::Entry::Occupied(e) => {
8962                                                 let mut peer_state = e.get().lock().unwrap();
8963                                                 peer_state.latest_features = init_msg.features.clone();
8964
8965                                                 let best_block_height = self.best_block.read().unwrap().height();
8966                                                 if inbound_peer_limited &&
8967                                                         Self::unfunded_channel_count(&*peer_state, best_block_height) ==
8968                                                         peer_state.channel_by_id.len()
8969                                                 {
8970                                                         res = Err(());
8971                                                         return NotifyOption::SkipPersistNoEvents;
8972                                                 }
8973
8974                                                 debug_assert!(!peer_state.is_connected, "A peer shouldn't be connected twice");
8975                                                 peer_state.is_connected = true;
8976                                         },
8977                                 }
8978                         }
8979
8980                         log_debug!(self.logger, "Generating channel_reestablish events for {}", log_pubkey!(counterparty_node_id));
8981
8982                         let per_peer_state = self.per_peer_state.read().unwrap();
8983                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
8984                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8985                                 let peer_state = &mut *peer_state_lock;
8986                                 let pending_msg_events = &mut peer_state.pending_msg_events;
8987
8988                                 peer_state.channel_by_id.iter_mut().filter_map(|(_, phase)|
8989                                         if let ChannelPhase::Funded(chan) = phase { Some(chan) } else {
8990                                                 // Since unfunded channel maps are cleared upon disconnecting a peer, and they're not persisted
8991                                                 // (so won't be recovered after a crash), they shouldn't exist here and we would never need to
8992                                                 // worry about closing and removing them.
8993                                                 debug_assert!(false);
8994                                                 None
8995                                         }
8996                                 ).for_each(|chan| {
8997                                         pending_msg_events.push(events::MessageSendEvent::SendChannelReestablish {
8998                                                 node_id: chan.context.get_counterparty_node_id(),
8999                                                 msg: chan.get_channel_reestablish(&self.logger),
9000                                         });
9001                                 });
9002                         }
9003
9004                         return NotifyOption::SkipPersistHandleEvents;
9005                         //TODO: Also re-broadcast announcement_signatures
9006                 });
9007                 res
9008         }
9009
9010         fn handle_error(&self, counterparty_node_id: &PublicKey, msg: &msgs::ErrorMessage) {
9011                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
9012
9013                 match &msg.data as &str {
9014                         "cannot co-op close channel w/ active htlcs"|
9015                         "link failed to shutdown" =>
9016                         {
9017                                 // LND hasn't properly handled shutdown messages ever, and force-closes any time we
9018                                 // send one while HTLCs are still present. The issue is tracked at
9019                                 // https://github.com/lightningnetwork/lnd/issues/6039 and has had multiple patches
9020                                 // to fix it but none so far have managed to land upstream. The issue appears to be
9021                                 // very low priority for the LND team despite being marked "P1".
9022                                 // We're not going to bother handling this in a sensible way, instead simply
9023                                 // repeating the Shutdown message on repeat until morale improves.
9024                                 if !msg.channel_id.is_zero() {
9025                                         let per_peer_state = self.per_peer_state.read().unwrap();
9026                                         let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
9027                                         if peer_state_mutex_opt.is_none() { return; }
9028                                         let mut peer_state = peer_state_mutex_opt.unwrap().lock().unwrap();
9029                                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get(&msg.channel_id) {
9030                                                 if let Some(msg) = chan.get_outbound_shutdown() {
9031                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
9032                                                                 node_id: *counterparty_node_id,
9033                                                                 msg,
9034                                                         });
9035                                                 }
9036                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::HandleError {
9037                                                         node_id: *counterparty_node_id,
9038                                                         action: msgs::ErrorAction::SendWarningMessage {
9039                                                                 msg: msgs::WarningMessage {
9040                                                                         channel_id: msg.channel_id,
9041                                                                         data: "You appear to be exhibiting LND bug 6039, we'll keep sending you shutdown messages until you handle them correctly".to_owned()
9042                                                                 },
9043                                                                 log_level: Level::Trace,
9044                                                         }
9045                                                 });
9046                                         }
9047                                 }
9048                                 return;
9049                         }
9050                         _ => {}
9051                 }
9052
9053                 if msg.channel_id.is_zero() {
9054                         let channel_ids: Vec<ChannelId> = {
9055                                 let per_peer_state = self.per_peer_state.read().unwrap();
9056                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
9057                                 if peer_state_mutex_opt.is_none() { return; }
9058                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
9059                                 let peer_state = &mut *peer_state_lock;
9060                                 // Note that we don't bother generating any events for pre-accept channels -
9061                                 // they're not considered "channels" yet from the PoV of our events interface.
9062                                 peer_state.inbound_channel_request_by_id.clear();
9063                                 peer_state.channel_by_id.keys().cloned().collect()
9064                         };
9065                         for channel_id in channel_ids {
9066                                 // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
9067                                 let _ = self.force_close_channel_with_peer(&channel_id, counterparty_node_id, Some(&msg.data), true);
9068                         }
9069                 } else {
9070                         {
9071                                 // First check if we can advance the channel type and try again.
9072                                 let per_peer_state = self.per_peer_state.read().unwrap();
9073                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
9074                                 if peer_state_mutex_opt.is_none() { return; }
9075                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
9076                                 let peer_state = &mut *peer_state_lock;
9077                                 if let Some(ChannelPhase::UnfundedOutboundV1(chan)) = peer_state.channel_by_id.get_mut(&msg.channel_id) {
9078                                         if let Ok(msg) = chan.maybe_handle_error_without_close(self.chain_hash, &self.fee_estimator) {
9079                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
9080                                                         node_id: *counterparty_node_id,
9081                                                         msg,
9082                                                 });
9083                                                 return;
9084                                         }
9085                                 }
9086                         }
9087
9088                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
9089                         let _ = self.force_close_channel_with_peer(&msg.channel_id, counterparty_node_id, Some(&msg.data), true);
9090                 }
9091         }
9092
9093         fn provided_node_features(&self) -> NodeFeatures {
9094                 provided_node_features(&self.default_configuration)
9095         }
9096
9097         fn provided_init_features(&self, _their_init_features: &PublicKey) -> InitFeatures {
9098                 provided_init_features(&self.default_configuration)
9099         }
9100
9101         fn get_chain_hashes(&self) -> Option<Vec<ChainHash>> {
9102                 Some(vec![self.chain_hash])
9103         }
9104
9105         fn handle_tx_add_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddInput) {
9106                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9107                         "Dual-funded channels not supported".to_owned(),
9108                          msg.channel_id.clone())), *counterparty_node_id);
9109         }
9110
9111         fn handle_tx_add_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddOutput) {
9112                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9113                         "Dual-funded channels not supported".to_owned(),
9114                          msg.channel_id.clone())), *counterparty_node_id);
9115         }
9116
9117         fn handle_tx_remove_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveInput) {
9118                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9119                         "Dual-funded channels not supported".to_owned(),
9120                          msg.channel_id.clone())), *counterparty_node_id);
9121         }
9122
9123         fn handle_tx_remove_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveOutput) {
9124                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9125                         "Dual-funded channels not supported".to_owned(),
9126                          msg.channel_id.clone())), *counterparty_node_id);
9127         }
9128
9129         fn handle_tx_complete(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxComplete) {
9130                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9131                         "Dual-funded channels not supported".to_owned(),
9132                          msg.channel_id.clone())), *counterparty_node_id);
9133         }
9134
9135         fn handle_tx_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxSignatures) {
9136                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9137                         "Dual-funded channels not supported".to_owned(),
9138                          msg.channel_id.clone())), *counterparty_node_id);
9139         }
9140
9141         fn handle_tx_init_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxInitRbf) {
9142                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9143                         "Dual-funded channels not supported".to_owned(),
9144                          msg.channel_id.clone())), *counterparty_node_id);
9145         }
9146
9147         fn handle_tx_ack_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAckRbf) {
9148                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9149                         "Dual-funded channels not supported".to_owned(),
9150                          msg.channel_id.clone())), *counterparty_node_id);
9151         }
9152
9153         fn handle_tx_abort(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAbort) {
9154                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
9155                         "Dual-funded channels not supported".to_owned(),
9156                          msg.channel_id.clone())), *counterparty_node_id);
9157         }
9158 }
9159
9160 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
9161 OffersMessageHandler for ChannelManager<M, T, ES, NS, SP, F, R, L>
9162 where
9163         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
9164         T::Target: BroadcasterInterface,
9165         ES::Target: EntropySource,
9166         NS::Target: NodeSigner,
9167         SP::Target: SignerProvider,
9168         F::Target: FeeEstimator,
9169         R::Target: Router,
9170         L::Target: Logger,
9171 {
9172         fn handle_message(&self, message: OffersMessage) -> Option<OffersMessage> {
9173                 let secp_ctx = &self.secp_ctx;
9174                 let expanded_key = &self.inbound_payment_key;
9175
9176                 match message {
9177                         OffersMessage::InvoiceRequest(invoice_request) => {
9178                                 let amount_msats = match InvoiceBuilder::<DerivedSigningPubkey>::amount_msats(
9179                                         &invoice_request
9180                                 ) {
9181                                         Ok(amount_msats) => Some(amount_msats),
9182                                         Err(error) => return Some(OffersMessage::InvoiceError(error.into())),
9183                                 };
9184                                 let invoice_request = match invoice_request.verify(expanded_key, secp_ctx) {
9185                                         Ok(invoice_request) => invoice_request,
9186                                         Err(()) => {
9187                                                 let error = Bolt12SemanticError::InvalidMetadata;
9188                                                 return Some(OffersMessage::InvoiceError(error.into()));
9189                                         },
9190                                 };
9191                                 let relative_expiry = DEFAULT_RELATIVE_EXPIRY.as_secs() as u32;
9192
9193                                 match self.create_inbound_payment(amount_msats, relative_expiry, None) {
9194                                         Ok((payment_hash, payment_secret)) if invoice_request.keys.is_some() => {
9195                                                 let payment_paths = vec![
9196                                                         self.create_one_hop_blinded_payment_path(payment_secret),
9197                                                 ];
9198                                                 #[cfg(not(feature = "no-std"))]
9199                                                 let builder = invoice_request.respond_using_derived_keys(
9200                                                         payment_paths, payment_hash
9201                                                 );
9202                                                 #[cfg(feature = "no-std")]
9203                                                 let created_at = Duration::from_secs(
9204                                                         self.highest_seen_timestamp.load(Ordering::Acquire) as u64
9205                                                 );
9206                                                 #[cfg(feature = "no-std")]
9207                                                 let builder = invoice_request.respond_using_derived_keys_no_std(
9208                                                         payment_paths, payment_hash, created_at
9209                                                 );
9210                                                 match builder.and_then(|b| b.allow_mpp().build_and_sign(secp_ctx)) {
9211                                                         Ok(invoice) => Some(OffersMessage::Invoice(invoice)),
9212                                                         Err(error) => Some(OffersMessage::InvoiceError(error.into())),
9213                                                 }
9214                                         },
9215                                         Ok((payment_hash, payment_secret)) => {
9216                                                 let payment_paths = vec![
9217                                                         self.create_one_hop_blinded_payment_path(payment_secret),
9218                                                 ];
9219                                                 #[cfg(not(feature = "no-std"))]
9220                                                 let builder = invoice_request.respond_with(payment_paths, payment_hash);
9221                                                 #[cfg(feature = "no-std")]
9222                                                 let created_at = Duration::from_secs(
9223                                                         self.highest_seen_timestamp.load(Ordering::Acquire) as u64
9224                                                 );
9225                                                 #[cfg(feature = "no-std")]
9226                                                 let builder = invoice_request.respond_with_no_std(
9227                                                         payment_paths, payment_hash, created_at
9228                                                 );
9229                                                 let response = builder.and_then(|builder| builder.allow_mpp().build())
9230                                                         .map_err(|e| OffersMessage::InvoiceError(e.into()))
9231                                                         .and_then(|invoice|
9232                                                                 match invoice.sign(|invoice| self.node_signer.sign_bolt12_invoice(invoice)) {
9233                                                                         Ok(invoice) => Ok(OffersMessage::Invoice(invoice)),
9234                                                                         Err(SignError::Signing(())) => Err(OffersMessage::InvoiceError(
9235                                                                                         InvoiceError::from_string("Failed signing invoice".to_string())
9236                                                                         )),
9237                                                                         Err(SignError::Verification(_)) => Err(OffersMessage::InvoiceError(
9238                                                                                         InvoiceError::from_string("Failed invoice signature verification".to_string())
9239                                                                         )),
9240                                                                 });
9241                                                 match response {
9242                                                         Ok(invoice) => Some(invoice),
9243                                                         Err(error) => Some(error),
9244                                                 }
9245                                         },
9246                                         Err(()) => {
9247                                                 Some(OffersMessage::InvoiceError(Bolt12SemanticError::InvalidAmount.into()))
9248                                         },
9249                                 }
9250                         },
9251                         OffersMessage::Invoice(invoice) => {
9252                                 match invoice.verify(expanded_key, secp_ctx) {
9253                                         Err(()) => {
9254                                                 Some(OffersMessage::InvoiceError(InvoiceError::from_string("Unrecognized invoice".to_owned())))
9255                                         },
9256                                         Ok(_) if invoice.invoice_features().requires_unknown_bits_from(&self.bolt12_invoice_features()) => {
9257                                                 Some(OffersMessage::InvoiceError(Bolt12SemanticError::UnknownRequiredFeatures.into()))
9258                                         },
9259                                         Ok(payment_id) => {
9260                                                 if let Err(e) = self.send_payment_for_bolt12_invoice(&invoice, payment_id) {
9261                                                         log_trace!(self.logger, "Failed paying invoice: {:?}", e);
9262                                                         Some(OffersMessage::InvoiceError(InvoiceError::from_string(format!("{:?}", e))))
9263                                                 } else {
9264                                                         None
9265                                                 }
9266                                         },
9267                                 }
9268                         },
9269                         OffersMessage::InvoiceError(invoice_error) => {
9270                                 log_trace!(self.logger, "Received invoice_error: {}", invoice_error);
9271                                 None
9272                         },
9273                 }
9274         }
9275
9276         fn release_pending_messages(&self) -> Vec<PendingOnionMessage<OffersMessage>> {
9277                 core::mem::take(&mut self.pending_offers_messages.lock().unwrap())
9278         }
9279 }
9280
9281 /// Fetches the set of [`NodeFeatures`] flags that are provided by or required by
9282 /// [`ChannelManager`].
9283 pub(crate) fn provided_node_features(config: &UserConfig) -> NodeFeatures {
9284         let mut node_features = provided_init_features(config).to_context();
9285         node_features.set_keysend_optional();
9286         node_features
9287 }
9288
9289 /// Fetches the set of [`Bolt11InvoiceFeatures`] flags that are provided by or required by
9290 /// [`ChannelManager`].
9291 ///
9292 /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
9293 /// or not. Thus, this method is not public.
9294 #[cfg(any(feature = "_test_utils", test))]
9295 pub(crate) fn provided_bolt11_invoice_features(config: &UserConfig) -> Bolt11InvoiceFeatures {
9296         provided_init_features(config).to_context()
9297 }
9298
9299 /// Fetches the set of [`Bolt12InvoiceFeatures`] flags that are provided by or required by
9300 /// [`ChannelManager`].
9301 pub(crate) fn provided_bolt12_invoice_features(config: &UserConfig) -> Bolt12InvoiceFeatures {
9302         provided_init_features(config).to_context()
9303 }
9304
9305 /// Fetches the set of [`ChannelFeatures`] flags that are provided by or required by
9306 /// [`ChannelManager`].
9307 pub(crate) fn provided_channel_features(config: &UserConfig) -> ChannelFeatures {
9308         provided_init_features(config).to_context()
9309 }
9310
9311 /// Fetches the set of [`ChannelTypeFeatures`] flags that are provided by or required by
9312 /// [`ChannelManager`].
9313 pub(crate) fn provided_channel_type_features(config: &UserConfig) -> ChannelTypeFeatures {
9314         ChannelTypeFeatures::from_init(&provided_init_features(config))
9315 }
9316
9317 /// Fetches the set of [`InitFeatures`] flags that are provided by or required by
9318 /// [`ChannelManager`].
9319 pub fn provided_init_features(config: &UserConfig) -> InitFeatures {
9320         // Note that if new features are added here which other peers may (eventually) require, we
9321         // should also add the corresponding (optional) bit to the [`ChannelMessageHandler`] impl for
9322         // [`ErroringMessageHandler`].
9323         let mut features = InitFeatures::empty();
9324         features.set_data_loss_protect_required();
9325         features.set_upfront_shutdown_script_optional();
9326         features.set_variable_length_onion_required();
9327         features.set_static_remote_key_required();
9328         features.set_payment_secret_required();
9329         features.set_basic_mpp_optional();
9330         features.set_wumbo_optional();
9331         features.set_shutdown_any_segwit_optional();
9332         features.set_channel_type_optional();
9333         features.set_scid_privacy_optional();
9334         features.set_zero_conf_optional();
9335         if config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx {
9336                 features.set_anchors_zero_fee_htlc_tx_optional();
9337         }
9338         features
9339 }
9340
9341 const SERIALIZATION_VERSION: u8 = 1;
9342 const MIN_SERIALIZATION_VERSION: u8 = 1;
9343
9344 impl_writeable_tlv_based!(CounterpartyForwardingInfo, {
9345         (2, fee_base_msat, required),
9346         (4, fee_proportional_millionths, required),
9347         (6, cltv_expiry_delta, required),
9348 });
9349
9350 impl_writeable_tlv_based!(ChannelCounterparty, {
9351         (2, node_id, required),
9352         (4, features, required),
9353         (6, unspendable_punishment_reserve, required),
9354         (8, forwarding_info, option),
9355         (9, outbound_htlc_minimum_msat, option),
9356         (11, outbound_htlc_maximum_msat, option),
9357 });
9358
9359 impl Writeable for ChannelDetails {
9360         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
9361                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
9362                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
9363                 let user_channel_id_low = self.user_channel_id as u64;
9364                 let user_channel_id_high_opt = Some((self.user_channel_id >> 64) as u64);
9365                 write_tlv_fields!(writer, {
9366                         (1, self.inbound_scid_alias, option),
9367                         (2, self.channel_id, required),
9368                         (3, self.channel_type, option),
9369                         (4, self.counterparty, required),
9370                         (5, self.outbound_scid_alias, option),
9371                         (6, self.funding_txo, option),
9372                         (7, self.config, option),
9373                         (8, self.short_channel_id, option),
9374                         (9, self.confirmations, option),
9375                         (10, self.channel_value_satoshis, required),
9376                         (12, self.unspendable_punishment_reserve, option),
9377                         (14, user_channel_id_low, required),
9378                         (16, self.balance_msat, required),
9379                         (18, self.outbound_capacity_msat, required),
9380                         (19, self.next_outbound_htlc_limit_msat, required),
9381                         (20, self.inbound_capacity_msat, required),
9382                         (21, self.next_outbound_htlc_minimum_msat, required),
9383                         (22, self.confirmations_required, option),
9384                         (24, self.force_close_spend_delay, option),
9385                         (26, self.is_outbound, required),
9386                         (28, self.is_channel_ready, required),
9387                         (30, self.is_usable, required),
9388                         (32, self.is_public, required),
9389                         (33, self.inbound_htlc_minimum_msat, option),
9390                         (35, self.inbound_htlc_maximum_msat, option),
9391                         (37, user_channel_id_high_opt, option),
9392                         (39, self.feerate_sat_per_1000_weight, option),
9393                         (41, self.channel_shutdown_state, option),
9394                 });
9395                 Ok(())
9396         }
9397 }
9398
9399 impl Readable for ChannelDetails {
9400         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
9401                 _init_and_read_len_prefixed_tlv_fields!(reader, {
9402                         (1, inbound_scid_alias, option),
9403                         (2, channel_id, required),
9404                         (3, channel_type, option),
9405                         (4, counterparty, required),
9406                         (5, outbound_scid_alias, option),
9407                         (6, funding_txo, option),
9408                         (7, config, option),
9409                         (8, short_channel_id, option),
9410                         (9, confirmations, option),
9411                         (10, channel_value_satoshis, required),
9412                         (12, unspendable_punishment_reserve, option),
9413                         (14, user_channel_id_low, required),
9414                         (16, balance_msat, required),
9415                         (18, outbound_capacity_msat, required),
9416                         // Note that by the time we get past the required read above, outbound_capacity_msat will be
9417                         // filled in, so we can safely unwrap it here.
9418                         (19, next_outbound_htlc_limit_msat, (default_value, outbound_capacity_msat.0.unwrap() as u64)),
9419                         (20, inbound_capacity_msat, required),
9420                         (21, next_outbound_htlc_minimum_msat, (default_value, 0)),
9421                         (22, confirmations_required, option),
9422                         (24, force_close_spend_delay, option),
9423                         (26, is_outbound, required),
9424                         (28, is_channel_ready, required),
9425                         (30, is_usable, required),
9426                         (32, is_public, required),
9427                         (33, inbound_htlc_minimum_msat, option),
9428                         (35, inbound_htlc_maximum_msat, option),
9429                         (37, user_channel_id_high_opt, option),
9430                         (39, feerate_sat_per_1000_weight, option),
9431                         (41, channel_shutdown_state, option),
9432                 });
9433
9434                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
9435                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
9436                 let user_channel_id_low: u64 = user_channel_id_low.0.unwrap();
9437                 let user_channel_id = user_channel_id_low as u128 +
9438                         ((user_channel_id_high_opt.unwrap_or(0 as u64) as u128) << 64);
9439
9440                 Ok(Self {
9441                         inbound_scid_alias,
9442                         channel_id: channel_id.0.unwrap(),
9443                         channel_type,
9444                         counterparty: counterparty.0.unwrap(),
9445                         outbound_scid_alias,
9446                         funding_txo,
9447                         config,
9448                         short_channel_id,
9449                         channel_value_satoshis: channel_value_satoshis.0.unwrap(),
9450                         unspendable_punishment_reserve,
9451                         user_channel_id,
9452                         balance_msat: balance_msat.0.unwrap(),
9453                         outbound_capacity_msat: outbound_capacity_msat.0.unwrap(),
9454                         next_outbound_htlc_limit_msat: next_outbound_htlc_limit_msat.0.unwrap(),
9455                         next_outbound_htlc_minimum_msat: next_outbound_htlc_minimum_msat.0.unwrap(),
9456                         inbound_capacity_msat: inbound_capacity_msat.0.unwrap(),
9457                         confirmations_required,
9458                         confirmations,
9459                         force_close_spend_delay,
9460                         is_outbound: is_outbound.0.unwrap(),
9461                         is_channel_ready: is_channel_ready.0.unwrap(),
9462                         is_usable: is_usable.0.unwrap(),
9463                         is_public: is_public.0.unwrap(),
9464                         inbound_htlc_minimum_msat,
9465                         inbound_htlc_maximum_msat,
9466                         feerate_sat_per_1000_weight,
9467                         channel_shutdown_state,
9468                 })
9469         }
9470 }
9471
9472 impl_writeable_tlv_based!(PhantomRouteHints, {
9473         (2, channels, required_vec),
9474         (4, phantom_scid, required),
9475         (6, real_node_pubkey, required),
9476 });
9477
9478 impl_writeable_tlv_based_enum!(PendingHTLCRouting,
9479         (0, Forward) => {
9480                 (0, onion_packet, required),
9481                 (2, short_channel_id, required),
9482         },
9483         (1, Receive) => {
9484                 (0, payment_data, required),
9485                 (1, phantom_shared_secret, option),
9486                 (2, incoming_cltv_expiry, required),
9487                 (3, payment_metadata, option),
9488                 (5, custom_tlvs, optional_vec),
9489         },
9490         (2, ReceiveKeysend) => {
9491                 (0, payment_preimage, required),
9492                 (2, incoming_cltv_expiry, required),
9493                 (3, payment_metadata, option),
9494                 (4, payment_data, option), // Added in 0.0.116
9495                 (5, custom_tlvs, optional_vec),
9496         },
9497 ;);
9498
9499 impl_writeable_tlv_based!(PendingHTLCInfo, {
9500         (0, routing, required),
9501         (2, incoming_shared_secret, required),
9502         (4, payment_hash, required),
9503         (6, outgoing_amt_msat, required),
9504         (8, outgoing_cltv_value, required),
9505         (9, incoming_amt_msat, option),
9506         (10, skimmed_fee_msat, option),
9507 });
9508
9509
9510 impl Writeable for HTLCFailureMsg {
9511         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
9512                 match self {
9513                         HTLCFailureMsg::Relay(msgs::UpdateFailHTLC { channel_id, htlc_id, reason }) => {
9514                                 0u8.write(writer)?;
9515                                 channel_id.write(writer)?;
9516                                 htlc_id.write(writer)?;
9517                                 reason.write(writer)?;
9518                         },
9519                         HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
9520                                 channel_id, htlc_id, sha256_of_onion, failure_code
9521                         }) => {
9522                                 1u8.write(writer)?;
9523                                 channel_id.write(writer)?;
9524                                 htlc_id.write(writer)?;
9525                                 sha256_of_onion.write(writer)?;
9526                                 failure_code.write(writer)?;
9527                         },
9528                 }
9529                 Ok(())
9530         }
9531 }
9532
9533 impl Readable for HTLCFailureMsg {
9534         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
9535                 let id: u8 = Readable::read(reader)?;
9536                 match id {
9537                         0 => {
9538                                 Ok(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
9539                                         channel_id: Readable::read(reader)?,
9540                                         htlc_id: Readable::read(reader)?,
9541                                         reason: Readable::read(reader)?,
9542                                 }))
9543                         },
9544                         1 => {
9545                                 Ok(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
9546                                         channel_id: Readable::read(reader)?,
9547                                         htlc_id: Readable::read(reader)?,
9548                                         sha256_of_onion: Readable::read(reader)?,
9549                                         failure_code: Readable::read(reader)?,
9550                                 }))
9551                         },
9552                         // In versions prior to 0.0.101, HTLCFailureMsg objects were written with type 0 or 1 but
9553                         // weren't length-prefixed and thus didn't support reading the TLV stream suffix of the network
9554                         // messages contained in the variants.
9555                         // In version 0.0.101, support for reading the variants with these types was added, and
9556                         // we should migrate to writing these variants when UpdateFailHTLC or
9557                         // UpdateFailMalformedHTLC get TLV fields.
9558                         2 => {
9559                                 let length: BigSize = Readable::read(reader)?;
9560                                 let mut s = FixedLengthReader::new(reader, length.0);
9561                                 let res = Readable::read(&mut s)?;
9562                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
9563                                 Ok(HTLCFailureMsg::Relay(res))
9564                         },
9565                         3 => {
9566                                 let length: BigSize = Readable::read(reader)?;
9567                                 let mut s = FixedLengthReader::new(reader, length.0);
9568                                 let res = Readable::read(&mut s)?;
9569                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
9570                                 Ok(HTLCFailureMsg::Malformed(res))
9571                         },
9572                         _ => Err(DecodeError::UnknownRequiredFeature),
9573                 }
9574         }
9575 }
9576
9577 impl_writeable_tlv_based_enum!(PendingHTLCStatus, ;
9578         (0, Forward),
9579         (1, Fail),
9580 );
9581
9582 impl_writeable_tlv_based!(HTLCPreviousHopData, {
9583         (0, short_channel_id, required),
9584         (1, phantom_shared_secret, option),
9585         (2, outpoint, required),
9586         (4, htlc_id, required),
9587         (6, incoming_packet_shared_secret, required),
9588         (7, user_channel_id, option),
9589 });
9590
9591 impl Writeable for ClaimableHTLC {
9592         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
9593                 let (payment_data, keysend_preimage) = match &self.onion_payload {
9594                         OnionPayload::Invoice { _legacy_hop_data } => (_legacy_hop_data.as_ref(), None),
9595                         OnionPayload::Spontaneous(preimage) => (None, Some(preimage)),
9596                 };
9597                 write_tlv_fields!(writer, {
9598                         (0, self.prev_hop, required),
9599                         (1, self.total_msat, required),
9600                         (2, self.value, required),
9601                         (3, self.sender_intended_value, required),
9602                         (4, payment_data, option),
9603                         (5, self.total_value_received, option),
9604                         (6, self.cltv_expiry, required),
9605                         (8, keysend_preimage, option),
9606                         (10, self.counterparty_skimmed_fee_msat, option),
9607                 });
9608                 Ok(())
9609         }
9610 }
9611
9612 impl Readable for ClaimableHTLC {
9613         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
9614                 _init_and_read_len_prefixed_tlv_fields!(reader, {
9615                         (0, prev_hop, required),
9616                         (1, total_msat, option),
9617                         (2, value_ser, required),
9618                         (3, sender_intended_value, option),
9619                         (4, payment_data_opt, option),
9620                         (5, total_value_received, option),
9621                         (6, cltv_expiry, required),
9622                         (8, keysend_preimage, option),
9623                         (10, counterparty_skimmed_fee_msat, option),
9624                 });
9625                 let payment_data: Option<msgs::FinalOnionHopData> = payment_data_opt;
9626                 let value = value_ser.0.unwrap();
9627                 let onion_payload = match keysend_preimage {
9628                         Some(p) => {
9629                                 if payment_data.is_some() {
9630                                         return Err(DecodeError::InvalidValue)
9631                                 }
9632                                 if total_msat.is_none() {
9633                                         total_msat = Some(value);
9634                                 }
9635                                 OnionPayload::Spontaneous(p)
9636                         },
9637                         None => {
9638                                 if total_msat.is_none() {
9639                                         if payment_data.is_none() {
9640                                                 return Err(DecodeError::InvalidValue)
9641                                         }
9642                                         total_msat = Some(payment_data.as_ref().unwrap().total_msat);
9643                                 }
9644                                 OnionPayload::Invoice { _legacy_hop_data: payment_data }
9645                         },
9646                 };
9647                 Ok(Self {
9648                         prev_hop: prev_hop.0.unwrap(),
9649                         timer_ticks: 0,
9650                         value,
9651                         sender_intended_value: sender_intended_value.unwrap_or(value),
9652                         total_value_received,
9653                         total_msat: total_msat.unwrap(),
9654                         onion_payload,
9655                         cltv_expiry: cltv_expiry.0.unwrap(),
9656                         counterparty_skimmed_fee_msat,
9657                 })
9658         }
9659 }
9660
9661 impl Readable for HTLCSource {
9662         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
9663                 let id: u8 = Readable::read(reader)?;
9664                 match id {
9665                         0 => {
9666                                 let mut session_priv: crate::util::ser::RequiredWrapper<SecretKey> = crate::util::ser::RequiredWrapper(None);
9667                                 let mut first_hop_htlc_msat: u64 = 0;
9668                                 let mut path_hops = Vec::new();
9669                                 let mut payment_id = None;
9670                                 let mut payment_params: Option<PaymentParameters> = None;
9671                                 let mut blinded_tail: Option<BlindedTail> = None;
9672                                 read_tlv_fields!(reader, {
9673                                         (0, session_priv, required),
9674                                         (1, payment_id, option),
9675                                         (2, first_hop_htlc_msat, required),
9676                                         (4, path_hops, required_vec),
9677                                         (5, payment_params, (option: ReadableArgs, 0)),
9678                                         (6, blinded_tail, option),
9679                                 });
9680                                 if payment_id.is_none() {
9681                                         // For backwards compat, if there was no payment_id written, use the session_priv bytes
9682                                         // instead.
9683                                         payment_id = Some(PaymentId(*session_priv.0.unwrap().as_ref()));
9684                                 }
9685                                 let path = Path { hops: path_hops, blinded_tail };
9686                                 if path.hops.len() == 0 {
9687                                         return Err(DecodeError::InvalidValue);
9688                                 }
9689                                 if let Some(params) = payment_params.as_mut() {
9690                                         if let Payee::Clear { ref mut final_cltv_expiry_delta, .. } = params.payee {
9691                                                 if final_cltv_expiry_delta == &0 {
9692                                                         *final_cltv_expiry_delta = path.final_cltv_expiry_delta().ok_or(DecodeError::InvalidValue)?;
9693                                                 }
9694                                         }
9695                                 }
9696                                 Ok(HTLCSource::OutboundRoute {
9697                                         session_priv: session_priv.0.unwrap(),
9698                                         first_hop_htlc_msat,
9699                                         path,
9700                                         payment_id: payment_id.unwrap(),
9701                                 })
9702                         }
9703                         1 => Ok(HTLCSource::PreviousHopData(Readable::read(reader)?)),
9704                         _ => Err(DecodeError::UnknownRequiredFeature),
9705                 }
9706         }
9707 }
9708
9709 impl Writeable for HTLCSource {
9710         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), crate::io::Error> {
9711                 match self {
9712                         HTLCSource::OutboundRoute { ref session_priv, ref first_hop_htlc_msat, ref path, payment_id } => {
9713                                 0u8.write(writer)?;
9714                                 let payment_id_opt = Some(payment_id);
9715                                 write_tlv_fields!(writer, {
9716                                         (0, session_priv, required),
9717                                         (1, payment_id_opt, option),
9718                                         (2, first_hop_htlc_msat, required),
9719                                         // 3 was previously used to write a PaymentSecret for the payment.
9720                                         (4, path.hops, required_vec),
9721                                         (5, None::<PaymentParameters>, option), // payment_params in LDK versions prior to 0.0.115
9722                                         (6, path.blinded_tail, option),
9723                                  });
9724                         }
9725                         HTLCSource::PreviousHopData(ref field) => {
9726                                 1u8.write(writer)?;
9727                                 field.write(writer)?;
9728                         }
9729                 }
9730                 Ok(())
9731         }
9732 }
9733
9734 impl_writeable_tlv_based!(PendingAddHTLCInfo, {
9735         (0, forward_info, required),
9736         (1, prev_user_channel_id, (default_value, 0)),
9737         (2, prev_short_channel_id, required),
9738         (4, prev_htlc_id, required),
9739         (6, prev_funding_outpoint, required),
9740 });
9741
9742 impl_writeable_tlv_based_enum!(HTLCForwardInfo,
9743         (1, FailHTLC) => {
9744                 (0, htlc_id, required),
9745                 (2, err_packet, required),
9746         };
9747         (0, AddHTLC)
9748 );
9749
9750 impl_writeable_tlv_based!(PendingInboundPayment, {
9751         (0, payment_secret, required),
9752         (2, expiry_time, required),
9753         (4, user_payment_id, required),
9754         (6, payment_preimage, required),
9755         (8, min_value_msat, required),
9756 });
9757
9758 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>
9759 where
9760         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
9761         T::Target: BroadcasterInterface,
9762         ES::Target: EntropySource,
9763         NS::Target: NodeSigner,
9764         SP::Target: SignerProvider,
9765         F::Target: FeeEstimator,
9766         R::Target: Router,
9767         L::Target: Logger,
9768 {
9769         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
9770                 let _consistency_lock = self.total_consistency_lock.write().unwrap();
9771
9772                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
9773
9774                 self.chain_hash.write(writer)?;
9775                 {
9776                         let best_block = self.best_block.read().unwrap();
9777                         best_block.height().write(writer)?;
9778                         best_block.block_hash().write(writer)?;
9779                 }
9780
9781                 let mut serializable_peer_count: u64 = 0;
9782                 {
9783                         let per_peer_state = self.per_peer_state.read().unwrap();
9784                         let mut number_of_funded_channels = 0;
9785                         for (_, peer_state_mutex) in per_peer_state.iter() {
9786                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9787                                 let peer_state = &mut *peer_state_lock;
9788                                 if !peer_state.ok_to_remove(false) {
9789                                         serializable_peer_count += 1;
9790                                 }
9791
9792                                 number_of_funded_channels += peer_state.channel_by_id.iter().filter(
9793                                         |(_, phase)| if let ChannelPhase::Funded(chan) = phase { chan.context.is_funding_broadcast() } else { false }
9794                                 ).count();
9795                         }
9796
9797                         (number_of_funded_channels as u64).write(writer)?;
9798
9799                         for (_, peer_state_mutex) in per_peer_state.iter() {
9800                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9801                                 let peer_state = &mut *peer_state_lock;
9802                                 for channel in peer_state.channel_by_id.iter().filter_map(
9803                                         |(_, phase)| if let ChannelPhase::Funded(channel) = phase {
9804                                                 if channel.context.is_funding_broadcast() { Some(channel) } else { None }
9805                                         } else { None }
9806                                 ) {
9807                                         channel.write(writer)?;
9808                                 }
9809                         }
9810                 }
9811
9812                 {
9813                         let forward_htlcs = self.forward_htlcs.lock().unwrap();
9814                         (forward_htlcs.len() as u64).write(writer)?;
9815                         for (short_channel_id, pending_forwards) in forward_htlcs.iter() {
9816                                 short_channel_id.write(writer)?;
9817                                 (pending_forwards.len() as u64).write(writer)?;
9818                                 for forward in pending_forwards {
9819                                         forward.write(writer)?;
9820                                 }
9821                         }
9822                 }
9823
9824                 let per_peer_state = self.per_peer_state.write().unwrap();
9825
9826                 let pending_inbound_payments = self.pending_inbound_payments.lock().unwrap();
9827                 let claimable_payments = self.claimable_payments.lock().unwrap();
9828                 let pending_outbound_payments = self.pending_outbound_payments.pending_outbound_payments.lock().unwrap();
9829
9830                 let mut htlc_purposes: Vec<&events::PaymentPurpose> = Vec::new();
9831                 let mut htlc_onion_fields: Vec<&_> = Vec::new();
9832                 (claimable_payments.claimable_payments.len() as u64).write(writer)?;
9833                 for (payment_hash, payment) in claimable_payments.claimable_payments.iter() {
9834                         payment_hash.write(writer)?;
9835                         (payment.htlcs.len() as u64).write(writer)?;
9836                         for htlc in payment.htlcs.iter() {
9837                                 htlc.write(writer)?;
9838                         }
9839                         htlc_purposes.push(&payment.purpose);
9840                         htlc_onion_fields.push(&payment.onion_fields);
9841                 }
9842
9843                 let mut monitor_update_blocked_actions_per_peer = None;
9844                 let mut peer_states = Vec::new();
9845                 for (_, peer_state_mutex) in per_peer_state.iter() {
9846                         // Because we're holding the owning `per_peer_state` write lock here there's no chance
9847                         // of a lockorder violation deadlock - no other thread can be holding any
9848                         // per_peer_state lock at all.
9849                         peer_states.push(peer_state_mutex.unsafe_well_ordered_double_lock_self());
9850                 }
9851
9852                 (serializable_peer_count).write(writer)?;
9853                 for ((peer_pubkey, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
9854                         // Peers which we have no channels to should be dropped once disconnected. As we
9855                         // disconnect all peers when shutting down and serializing the ChannelManager, we
9856                         // consider all peers as disconnected here. There's therefore no need write peers with
9857                         // no channels.
9858                         if !peer_state.ok_to_remove(false) {
9859                                 peer_pubkey.write(writer)?;
9860                                 peer_state.latest_features.write(writer)?;
9861                                 if !peer_state.monitor_update_blocked_actions.is_empty() {
9862                                         monitor_update_blocked_actions_per_peer
9863                                                 .get_or_insert_with(Vec::new)
9864                                                 .push((*peer_pubkey, &peer_state.monitor_update_blocked_actions));
9865                                 }
9866                         }
9867                 }
9868
9869                 let events = self.pending_events.lock().unwrap();
9870                 // LDK versions prior to 0.0.115 don't support post-event actions, thus if there's no
9871                 // actions at all, skip writing the required TLV. Otherwise, pre-0.0.115 versions will
9872                 // refuse to read the new ChannelManager.
9873                 let events_not_backwards_compatible = events.iter().any(|(_, action)| action.is_some());
9874                 if events_not_backwards_compatible {
9875                         // If we're gonna write a even TLV that will overwrite our events anyway we might as
9876                         // well save the space and not write any events here.
9877                         0u64.write(writer)?;
9878                 } else {
9879                         (events.len() as u64).write(writer)?;
9880                         for (event, _) in events.iter() {
9881                                 event.write(writer)?;
9882                         }
9883                 }
9884
9885                 // LDK versions prior to 0.0.116 wrote the `pending_background_events`
9886                 // `MonitorUpdateRegeneratedOnStartup`s here, however there was never a reason to do so -
9887                 // the closing monitor updates were always effectively replayed on startup (either directly
9888                 // by calling `broadcast_latest_holder_commitment_txn` on a `ChannelMonitor` during
9889                 // deserialization or, in 0.0.115, by regenerating the monitor update itself).
9890                 0u64.write(writer)?;
9891
9892                 // Prior to 0.0.111 we tracked node_announcement serials here, however that now happens in
9893                 // `PeerManager`, and thus we simply write the `highest_seen_timestamp` twice, which is
9894                 // likely to be identical.
9895                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
9896                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
9897
9898                 (pending_inbound_payments.len() as u64).write(writer)?;
9899                 for (hash, pending_payment) in pending_inbound_payments.iter() {
9900                         hash.write(writer)?;
9901                         pending_payment.write(writer)?;
9902                 }
9903
9904                 // For backwards compat, write the session privs and their total length.
9905                 let mut num_pending_outbounds_compat: u64 = 0;
9906                 for (_, outbound) in pending_outbound_payments.iter() {
9907                         if !outbound.is_fulfilled() && !outbound.abandoned() {
9908                                 num_pending_outbounds_compat += outbound.remaining_parts() as u64;
9909                         }
9910                 }
9911                 num_pending_outbounds_compat.write(writer)?;
9912                 for (_, outbound) in pending_outbound_payments.iter() {
9913                         match outbound {
9914                                 PendingOutboundPayment::Legacy { session_privs } |
9915                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
9916                                         for session_priv in session_privs.iter() {
9917                                                 session_priv.write(writer)?;
9918                                         }
9919                                 }
9920                                 PendingOutboundPayment::AwaitingInvoice { .. } => {},
9921                                 PendingOutboundPayment::InvoiceReceived { .. } => {},
9922                                 PendingOutboundPayment::Fulfilled { .. } => {},
9923                                 PendingOutboundPayment::Abandoned { .. } => {},
9924                         }
9925                 }
9926
9927                 // Encode without retry info for 0.0.101 compatibility.
9928                 let mut pending_outbound_payments_no_retry: HashMap<PaymentId, HashSet<[u8; 32]>> = HashMap::new();
9929                 for (id, outbound) in pending_outbound_payments.iter() {
9930                         match outbound {
9931                                 PendingOutboundPayment::Legacy { session_privs } |
9932                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
9933                                         pending_outbound_payments_no_retry.insert(*id, session_privs.clone());
9934                                 },
9935                                 _ => {},
9936                         }
9937                 }
9938
9939                 let mut pending_intercepted_htlcs = None;
9940                 let our_pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
9941                 if our_pending_intercepts.len() != 0 {
9942                         pending_intercepted_htlcs = Some(our_pending_intercepts);
9943                 }
9944
9945                 let mut pending_claiming_payments = Some(&claimable_payments.pending_claiming_payments);
9946                 if pending_claiming_payments.as_ref().unwrap().is_empty() {
9947                         // LDK versions prior to 0.0.113 do not know how to read the pending claimed payments
9948                         // map. Thus, if there are no entries we skip writing a TLV for it.
9949                         pending_claiming_payments = None;
9950                 }
9951
9952                 let mut in_flight_monitor_updates: Option<HashMap<(&PublicKey, &OutPoint), &Vec<ChannelMonitorUpdate>>> = None;
9953                 for ((counterparty_id, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
9954                         for (funding_outpoint, updates) in peer_state.in_flight_monitor_updates.iter() {
9955                                 if !updates.is_empty() {
9956                                         if in_flight_monitor_updates.is_none() { in_flight_monitor_updates = Some(HashMap::new()); }
9957                                         in_flight_monitor_updates.as_mut().unwrap().insert((counterparty_id, funding_outpoint), updates);
9958                                 }
9959                         }
9960                 }
9961
9962                 write_tlv_fields!(writer, {
9963                         (1, pending_outbound_payments_no_retry, required),
9964                         (2, pending_intercepted_htlcs, option),
9965                         (3, pending_outbound_payments, required),
9966                         (4, pending_claiming_payments, option),
9967                         (5, self.our_network_pubkey, required),
9968                         (6, monitor_update_blocked_actions_per_peer, option),
9969                         (7, self.fake_scid_rand_bytes, required),
9970                         (8, if events_not_backwards_compatible { Some(&*events) } else { None }, option),
9971                         (9, htlc_purposes, required_vec),
9972                         (10, in_flight_monitor_updates, option),
9973                         (11, self.probing_cookie_secret, required),
9974                         (13, htlc_onion_fields, optional_vec),
9975                 });
9976
9977                 Ok(())
9978         }
9979 }
9980
9981 impl Writeable for VecDeque<(Event, Option<EventCompletionAction>)> {
9982         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
9983                 (self.len() as u64).write(w)?;
9984                 for (event, action) in self.iter() {
9985                         event.write(w)?;
9986                         action.write(w)?;
9987                         #[cfg(debug_assertions)] {
9988                                 // Events are MaybeReadable, in some cases indicating that they shouldn't actually
9989                                 // be persisted and are regenerated on restart. However, if such an event has a
9990                                 // post-event-handling action we'll write nothing for the event and would have to
9991                                 // either forget the action or fail on deserialization (which we do below). Thus,
9992                                 // check that the event is sane here.
9993                                 let event_encoded = event.encode();
9994                                 let event_read: Option<Event> =
9995                                         MaybeReadable::read(&mut &event_encoded[..]).unwrap();
9996                                 if action.is_some() { assert!(event_read.is_some()); }
9997                         }
9998                 }
9999                 Ok(())
10000         }
10001 }
10002 impl Readable for VecDeque<(Event, Option<EventCompletionAction>)> {
10003         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
10004                 let len: u64 = Readable::read(reader)?;
10005                 const MAX_ALLOC_SIZE: u64 = 1024 * 16;
10006                 let mut events: Self = VecDeque::with_capacity(cmp::min(
10007                         MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>() as u64,
10008                         len) as usize);
10009                 for _ in 0..len {
10010                         let ev_opt = MaybeReadable::read(reader)?;
10011                         let action = Readable::read(reader)?;
10012                         if let Some(ev) = ev_opt {
10013                                 events.push_back((ev, action));
10014                         } else if action.is_some() {
10015                                 return Err(DecodeError::InvalidValue);
10016                         }
10017                 }
10018                 Ok(events)
10019         }
10020 }
10021
10022 impl_writeable_tlv_based_enum!(ChannelShutdownState,
10023         (0, NotShuttingDown) => {},
10024         (2, ShutdownInitiated) => {},
10025         (4, ResolvingHTLCs) => {},
10026         (6, NegotiatingClosingFee) => {},
10027         (8, ShutdownComplete) => {}, ;
10028 );
10029
10030 /// Arguments for the creation of a ChannelManager that are not deserialized.
10031 ///
10032 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
10033 /// is:
10034 /// 1) Deserialize all stored [`ChannelMonitor`]s.
10035 /// 2) Deserialize the [`ChannelManager`] by filling in this struct and calling:
10036 ///    `<(BlockHash, ChannelManager)>::read(reader, args)`
10037 ///    This may result in closing some channels if the [`ChannelMonitor`] is newer than the stored
10038 ///    [`ChannelManager`] state to ensure no loss of funds. Thus, transactions may be broadcasted.
10039 /// 3) If you are not fetching full blocks, register all relevant [`ChannelMonitor`] outpoints the
10040 ///    same way you would handle a [`chain::Filter`] call using
10041 ///    [`ChannelMonitor::get_outputs_to_watch`] and [`ChannelMonitor::get_funding_txo`].
10042 /// 4) Reconnect blocks on your [`ChannelMonitor`]s.
10043 /// 5) Disconnect/connect blocks on the [`ChannelManager`].
10044 /// 6) Re-persist the [`ChannelMonitor`]s to ensure the latest state is on disk.
10045 ///    Note that if you're using a [`ChainMonitor`] for your [`chain::Watch`] implementation, you
10046 ///    will likely accomplish this as a side-effect of calling [`chain::Watch::watch_channel`] in
10047 ///    the next step.
10048 /// 7) Move the [`ChannelMonitor`]s into your local [`chain::Watch`]. If you're using a
10049 ///    [`ChainMonitor`], this is done by calling [`chain::Watch::watch_channel`].
10050 ///
10051 /// Note that the ordering of #4-7 is not of importance, however all four must occur before you
10052 /// call any other methods on the newly-deserialized [`ChannelManager`].
10053 ///
10054 /// Note that because some channels may be closed during deserialization, it is critical that you
10055 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
10056 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
10057 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
10058 /// not force-close the same channels but consider them live), you may end up revoking a state for
10059 /// which you've already broadcasted the transaction.
10060 ///
10061 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
10062 pub struct ChannelManagerReadArgs<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
10063 where
10064         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
10065         T::Target: BroadcasterInterface,
10066         ES::Target: EntropySource,
10067         NS::Target: NodeSigner,
10068         SP::Target: SignerProvider,
10069         F::Target: FeeEstimator,
10070         R::Target: Router,
10071         L::Target: Logger,
10072 {
10073         /// A cryptographically secure source of entropy.
10074         pub entropy_source: ES,
10075
10076         /// A signer that is able to perform node-scoped cryptographic operations.
10077         pub node_signer: NS,
10078
10079         /// The keys provider which will give us relevant keys. Some keys will be loaded during
10080         /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
10081         /// signing data.
10082         pub signer_provider: SP,
10083
10084         /// The fee_estimator for use in the ChannelManager in the future.
10085         ///
10086         /// No calls to the FeeEstimator will be made during deserialization.
10087         pub fee_estimator: F,
10088         /// The chain::Watch for use in the ChannelManager in the future.
10089         ///
10090         /// No calls to the chain::Watch will be made during deserialization. It is assumed that
10091         /// you have deserialized ChannelMonitors separately and will add them to your
10092         /// chain::Watch after deserializing this ChannelManager.
10093         pub chain_monitor: M,
10094
10095         /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
10096         /// used to broadcast the latest local commitment transactions of channels which must be
10097         /// force-closed during deserialization.
10098         pub tx_broadcaster: T,
10099         /// The router which will be used in the ChannelManager in the future for finding routes
10100         /// on-the-fly for trampoline payments. Absent in private nodes that don't support forwarding.
10101         ///
10102         /// No calls to the router will be made during deserialization.
10103         pub router: R,
10104         /// The Logger for use in the ChannelManager and which may be used to log information during
10105         /// deserialization.
10106         pub logger: L,
10107         /// Default settings used for new channels. Any existing channels will continue to use the
10108         /// runtime settings which were stored when the ChannelManager was serialized.
10109         pub default_config: UserConfig,
10110
10111         /// A map from channel funding outpoints to ChannelMonitors for those channels (ie
10112         /// value.context.get_funding_txo() should be the key).
10113         ///
10114         /// If a monitor is inconsistent with the channel state during deserialization the channel will
10115         /// be force-closed using the data in the ChannelMonitor and the channel will be dropped. This
10116         /// is true for missing channels as well. If there is a monitor missing for which we find
10117         /// channel data Err(DecodeError::InvalidValue) will be returned.
10118         ///
10119         /// In such cases the latest local transactions will be sent to the tx_broadcaster included in
10120         /// this struct.
10121         ///
10122         /// This is not exported to bindings users because we have no HashMap bindings
10123         pub channel_monitors: HashMap<OutPoint, &'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>,
10124 }
10125
10126 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
10127                 ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>
10128 where
10129         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
10130         T::Target: BroadcasterInterface,
10131         ES::Target: EntropySource,
10132         NS::Target: NodeSigner,
10133         SP::Target: SignerProvider,
10134         F::Target: FeeEstimator,
10135         R::Target: Router,
10136         L::Target: Logger,
10137 {
10138         /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
10139         /// HashMap for you. This is primarily useful for C bindings where it is not practical to
10140         /// populate a HashMap directly from C.
10141         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,
10142                         mut channel_monitors: Vec<&'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>) -> Self {
10143                 Self {
10144                         entropy_source, node_signer, signer_provider, fee_estimator, chain_monitor, tx_broadcaster, router, logger, default_config,
10145                         channel_monitors: channel_monitors.drain(..).map(|monitor| { (monitor.get_funding_txo().0, monitor) }).collect()
10146                 }
10147         }
10148 }
10149
10150 // Implement ReadableArgs for an Arc'd ChannelManager to make it a bit easier to work with the
10151 // SipmleArcChannelManager type:
10152 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
10153         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, Arc<ChannelManager<M, T, ES, NS, SP, F, R, L>>)
10154 where
10155         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
10156         T::Target: BroadcasterInterface,
10157         ES::Target: EntropySource,
10158         NS::Target: NodeSigner,
10159         SP::Target: SignerProvider,
10160         F::Target: FeeEstimator,
10161         R::Target: Router,
10162         L::Target: Logger,
10163 {
10164         fn read<Reader: io::Read>(reader: &mut Reader, args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
10165                 let (blockhash, chan_manager) = <(BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)>::read(reader, args)?;
10166                 Ok((blockhash, Arc::new(chan_manager)))
10167         }
10168 }
10169
10170 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
10171         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)
10172 where
10173         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
10174         T::Target: BroadcasterInterface,
10175         ES::Target: EntropySource,
10176         NS::Target: NodeSigner,
10177         SP::Target: SignerProvider,
10178         F::Target: FeeEstimator,
10179         R::Target: Router,
10180         L::Target: Logger,
10181 {
10182         fn read<Reader: io::Read>(reader: &mut Reader, mut args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
10183                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
10184
10185                 let chain_hash: ChainHash = Readable::read(reader)?;
10186                 let best_block_height: u32 = Readable::read(reader)?;
10187                 let best_block_hash: BlockHash = Readable::read(reader)?;
10188
10189                 let mut failed_htlcs = Vec::new();
10190
10191                 let channel_count: u64 = Readable::read(reader)?;
10192                 let mut funding_txo_set = HashSet::with_capacity(cmp::min(channel_count as usize, 128));
10193                 let mut funded_peer_channels: HashMap<PublicKey, HashMap<ChannelId, ChannelPhase<SP>>> = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
10194                 let mut id_to_peer = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
10195                 let mut short_to_chan_info = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
10196                 let mut channel_closures = VecDeque::new();
10197                 let mut close_background_events = Vec::new();
10198                 for _ in 0..channel_count {
10199                         let mut channel: Channel<SP> = Channel::read(reader, (
10200                                 &args.entropy_source, &args.signer_provider, best_block_height, &provided_channel_type_features(&args.default_config)
10201                         ))?;
10202                         let funding_txo = channel.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
10203                         funding_txo_set.insert(funding_txo.clone());
10204                         if let Some(ref mut monitor) = args.channel_monitors.get_mut(&funding_txo) {
10205                                 if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() ||
10206                                                 channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() ||
10207                                                 channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() ||
10208                                                 channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
10209                                         // But if the channel is behind of the monitor, close the channel:
10210                                         log_error!(args.logger, "A ChannelManager is stale compared to the current ChannelMonitor!");
10211                                         log_error!(args.logger, " The channel will be force-closed and the latest commitment transaction from the ChannelMonitor broadcast.");
10212                                         if channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
10213                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
10214                                                         &channel.context.channel_id(), monitor.get_latest_update_id(), channel.context.get_latest_monitor_update_id());
10215                                         }
10216                                         if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() {
10217                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at holder commitment number {} but the ChannelManager is at holder commitment number {}.",
10218                                                         &channel.context.channel_id(), monitor.get_cur_holder_commitment_number(), channel.get_cur_holder_commitment_transaction_number());
10219                                         }
10220                                         if channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() {
10221                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at revoked counterparty transaction number {} but the ChannelManager is at revoked counterparty transaction number {}.",
10222                                                         &channel.context.channel_id(), monitor.get_min_seen_secret(), channel.get_revoked_counterparty_commitment_transaction_number());
10223                                         }
10224                                         if channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() {
10225                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at counterparty commitment transaction number {} but the ChannelManager is at counterparty commitment transaction number {}.",
10226                                                         &channel.context.channel_id(), monitor.get_cur_counterparty_commitment_number(), channel.get_cur_counterparty_commitment_transaction_number());
10227                                         }
10228                                         let mut shutdown_result = channel.context.force_shutdown(true);
10229                                         if shutdown_result.unbroadcasted_batch_funding_txid.is_some() {
10230                                                 return Err(DecodeError::InvalidValue);
10231                                         }
10232                                         if let Some((counterparty_node_id, funding_txo, update)) = shutdown_result.monitor_update {
10233                                                 close_background_events.push(BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
10234                                                         counterparty_node_id, funding_txo, update
10235                                                 });
10236                                         }
10237                                         failed_htlcs.append(&mut shutdown_result.dropped_outbound_htlcs);
10238                                         channel_closures.push_back((events::Event::ChannelClosed {
10239                                                 channel_id: channel.context.channel_id(),
10240                                                 user_channel_id: channel.context.get_user_id(),
10241                                                 reason: ClosureReason::OutdatedChannelManager,
10242                                                 counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
10243                                                 channel_capacity_sats: Some(channel.context.get_value_satoshis()),
10244                                         }, None));
10245                                         for (channel_htlc_source, payment_hash) in channel.inflight_htlc_sources() {
10246                                                 let mut found_htlc = false;
10247                                                 for (monitor_htlc_source, _) in monitor.get_all_current_outbound_htlcs() {
10248                                                         if *channel_htlc_source == monitor_htlc_source { found_htlc = true; break; }
10249                                                 }
10250                                                 if !found_htlc {
10251                                                         // If we have some HTLCs in the channel which are not present in the newer
10252                                                         // ChannelMonitor, they have been removed and should be failed back to
10253                                                         // ensure we don't forget them entirely. Note that if the missing HTLC(s)
10254                                                         // were actually claimed we'd have generated and ensured the previous-hop
10255                                                         // claim update ChannelMonitor updates were persisted prior to persising
10256                                                         // the ChannelMonitor update for the forward leg, so attempting to fail the
10257                                                         // backwards leg of the HTLC will simply be rejected.
10258                                                         log_info!(args.logger,
10259                                                                 "Failing HTLC with hash {} as it is missing in the ChannelMonitor for channel {} but was present in the (stale) ChannelManager",
10260                                                                 &channel.context.channel_id(), &payment_hash);
10261                                                         failed_htlcs.push((channel_htlc_source.clone(), *payment_hash, channel.context.get_counterparty_node_id(), channel.context.channel_id()));
10262                                                 }
10263                                         }
10264                                 } else {
10265                                         log_info!(args.logger, "Successfully loaded channel {} at update_id {} against monitor at update id {}",
10266                                                 &channel.context.channel_id(), channel.context.get_latest_monitor_update_id(),
10267                                                 monitor.get_latest_update_id());
10268                                         if let Some(short_channel_id) = channel.context.get_short_channel_id() {
10269                                                 short_to_chan_info.insert(short_channel_id, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
10270                                         }
10271                                         if channel.context.is_funding_broadcast() {
10272                                                 id_to_peer.insert(channel.context.channel_id(), channel.context.get_counterparty_node_id());
10273                                         }
10274                                         match funded_peer_channels.entry(channel.context.get_counterparty_node_id()) {
10275                                                 hash_map::Entry::Occupied(mut entry) => {
10276                                                         let by_id_map = entry.get_mut();
10277                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
10278                                                 },
10279                                                 hash_map::Entry::Vacant(entry) => {
10280                                                         let mut by_id_map = HashMap::new();
10281                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
10282                                                         entry.insert(by_id_map);
10283                                                 }
10284                                         }
10285                                 }
10286                         } else if channel.is_awaiting_initial_mon_persist() {
10287                                 // If we were persisted and shut down while the initial ChannelMonitor persistence
10288                                 // was in-progress, we never broadcasted the funding transaction and can still
10289                                 // safely discard the channel.
10290                                 let _ = channel.context.force_shutdown(false);
10291                                 channel_closures.push_back((events::Event::ChannelClosed {
10292                                         channel_id: channel.context.channel_id(),
10293                                         user_channel_id: channel.context.get_user_id(),
10294                                         reason: ClosureReason::DisconnectedPeer,
10295                                         counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
10296                                         channel_capacity_sats: Some(channel.context.get_value_satoshis()),
10297                                 }, None));
10298                         } else {
10299                                 log_error!(args.logger, "Missing ChannelMonitor for channel {} needed by ChannelManager.", &channel.context.channel_id());
10300                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
10301                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
10302                                 log_error!(args.logger, " Without the ChannelMonitor we cannot continue without risking funds.");
10303                                 log_error!(args.logger, " Please ensure the chain::Watch API requirements are met and file a bug report at https://github.com/lightningdevkit/rust-lightning");
10304                                 return Err(DecodeError::InvalidValue);
10305                         }
10306                 }
10307
10308                 for (funding_txo, _) in args.channel_monitors.iter() {
10309                         if !funding_txo_set.contains(funding_txo) {
10310                                 log_info!(args.logger, "Queueing monitor update to ensure missing channel {} is force closed",
10311                                         &funding_txo.to_channel_id());
10312                                 let monitor_update = ChannelMonitorUpdate {
10313                                         update_id: CLOSED_CHANNEL_UPDATE_ID,
10314                                         updates: vec![ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast: true }],
10315                                 };
10316                                 close_background_events.push(BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((*funding_txo, monitor_update)));
10317                         }
10318                 }
10319
10320                 const MAX_ALLOC_SIZE: usize = 1024 * 64;
10321                 let forward_htlcs_count: u64 = Readable::read(reader)?;
10322                 let mut forward_htlcs = HashMap::with_capacity(cmp::min(forward_htlcs_count as usize, 128));
10323                 for _ in 0..forward_htlcs_count {
10324                         let short_channel_id = Readable::read(reader)?;
10325                         let pending_forwards_count: u64 = Readable::read(reader)?;
10326                         let mut pending_forwards = Vec::with_capacity(cmp::min(pending_forwards_count as usize, MAX_ALLOC_SIZE/mem::size_of::<HTLCForwardInfo>()));
10327                         for _ in 0..pending_forwards_count {
10328                                 pending_forwards.push(Readable::read(reader)?);
10329                         }
10330                         forward_htlcs.insert(short_channel_id, pending_forwards);
10331                 }
10332
10333                 let claimable_htlcs_count: u64 = Readable::read(reader)?;
10334                 let mut claimable_htlcs_list = Vec::with_capacity(cmp::min(claimable_htlcs_count as usize, 128));
10335                 for _ in 0..claimable_htlcs_count {
10336                         let payment_hash = Readable::read(reader)?;
10337                         let previous_hops_len: u64 = Readable::read(reader)?;
10338                         let mut previous_hops = Vec::with_capacity(cmp::min(previous_hops_len as usize, MAX_ALLOC_SIZE/mem::size_of::<ClaimableHTLC>()));
10339                         for _ in 0..previous_hops_len {
10340                                 previous_hops.push(<ClaimableHTLC as Readable>::read(reader)?);
10341                         }
10342                         claimable_htlcs_list.push((payment_hash, previous_hops));
10343                 }
10344
10345                 let peer_state_from_chans = |channel_by_id| {
10346                         PeerState {
10347                                 channel_by_id,
10348                                 inbound_channel_request_by_id: HashMap::new(),
10349                                 latest_features: InitFeatures::empty(),
10350                                 pending_msg_events: Vec::new(),
10351                                 in_flight_monitor_updates: BTreeMap::new(),
10352                                 monitor_update_blocked_actions: BTreeMap::new(),
10353                                 actions_blocking_raa_monitor_updates: BTreeMap::new(),
10354                                 is_connected: false,
10355                         }
10356                 };
10357
10358                 let peer_count: u64 = Readable::read(reader)?;
10359                 let mut per_peer_state = HashMap::with_capacity(cmp::min(peer_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(PublicKey, Mutex<PeerState<SP>>)>()));
10360                 for _ in 0..peer_count {
10361                         let peer_pubkey = Readable::read(reader)?;
10362                         let peer_chans = funded_peer_channels.remove(&peer_pubkey).unwrap_or(HashMap::new());
10363                         let mut peer_state = peer_state_from_chans(peer_chans);
10364                         peer_state.latest_features = Readable::read(reader)?;
10365                         per_peer_state.insert(peer_pubkey, Mutex::new(peer_state));
10366                 }
10367
10368                 let event_count: u64 = Readable::read(reader)?;
10369                 let mut pending_events_read: VecDeque<(events::Event, Option<EventCompletionAction>)> =
10370                         VecDeque::with_capacity(cmp::min(event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>()));
10371                 for _ in 0..event_count {
10372                         match MaybeReadable::read(reader)? {
10373                                 Some(event) => pending_events_read.push_back((event, None)),
10374                                 None => continue,
10375                         }
10376                 }
10377
10378                 let background_event_count: u64 = Readable::read(reader)?;
10379                 for _ in 0..background_event_count {
10380                         match <u8 as Readable>::read(reader)? {
10381                                 0 => {
10382                                         // LDK versions prior to 0.0.116 wrote pending `MonitorUpdateRegeneratedOnStartup`s here,
10383                                         // however we really don't (and never did) need them - we regenerate all
10384                                         // on-startup monitor updates.
10385                                         let _: OutPoint = Readable::read(reader)?;
10386                                         let _: ChannelMonitorUpdate = Readable::read(reader)?;
10387                                 }
10388                                 _ => return Err(DecodeError::InvalidValue),
10389                         }
10390                 }
10391
10392                 let _last_node_announcement_serial: u32 = Readable::read(reader)?; // Only used < 0.0.111
10393                 let highest_seen_timestamp: u32 = Readable::read(reader)?;
10394
10395                 let pending_inbound_payment_count: u64 = Readable::read(reader)?;
10396                 let mut pending_inbound_payments: HashMap<PaymentHash, PendingInboundPayment> = HashMap::with_capacity(cmp::min(pending_inbound_payment_count as usize, MAX_ALLOC_SIZE/(3*32)));
10397                 for _ in 0..pending_inbound_payment_count {
10398                         if pending_inbound_payments.insert(Readable::read(reader)?, Readable::read(reader)?).is_some() {
10399                                 return Err(DecodeError::InvalidValue);
10400                         }
10401                 }
10402
10403                 let pending_outbound_payments_count_compat: u64 = Readable::read(reader)?;
10404                 let mut pending_outbound_payments_compat: HashMap<PaymentId, PendingOutboundPayment> =
10405                         HashMap::with_capacity(cmp::min(pending_outbound_payments_count_compat as usize, MAX_ALLOC_SIZE/32));
10406                 for _ in 0..pending_outbound_payments_count_compat {
10407                         let session_priv = Readable::read(reader)?;
10408                         let payment = PendingOutboundPayment::Legacy {
10409                                 session_privs: [session_priv].iter().cloned().collect()
10410                         };
10411                         if pending_outbound_payments_compat.insert(PaymentId(session_priv), payment).is_some() {
10412                                 return Err(DecodeError::InvalidValue)
10413                         };
10414                 }
10415
10416                 // pending_outbound_payments_no_retry is for compatibility with 0.0.101 clients.
10417                 let mut pending_outbound_payments_no_retry: Option<HashMap<PaymentId, HashSet<[u8; 32]>>> = None;
10418                 let mut pending_outbound_payments = None;
10419                 let mut pending_intercepted_htlcs: Option<HashMap<InterceptId, PendingAddHTLCInfo>> = Some(HashMap::new());
10420                 let mut received_network_pubkey: Option<PublicKey> = None;
10421                 let mut fake_scid_rand_bytes: Option<[u8; 32]> = None;
10422                 let mut probing_cookie_secret: Option<[u8; 32]> = None;
10423                 let mut claimable_htlc_purposes = None;
10424                 let mut claimable_htlc_onion_fields = None;
10425                 let mut pending_claiming_payments = Some(HashMap::new());
10426                 let mut monitor_update_blocked_actions_per_peer: Option<Vec<(_, BTreeMap<_, Vec<_>>)>> = Some(Vec::new());
10427                 let mut events_override = None;
10428                 let mut in_flight_monitor_updates: Option<HashMap<(PublicKey, OutPoint), Vec<ChannelMonitorUpdate>>> = None;
10429                 read_tlv_fields!(reader, {
10430                         (1, pending_outbound_payments_no_retry, option),
10431                         (2, pending_intercepted_htlcs, option),
10432                         (3, pending_outbound_payments, option),
10433                         (4, pending_claiming_payments, option),
10434                         (5, received_network_pubkey, option),
10435                         (6, monitor_update_blocked_actions_per_peer, option),
10436                         (7, fake_scid_rand_bytes, option),
10437                         (8, events_override, option),
10438                         (9, claimable_htlc_purposes, optional_vec),
10439                         (10, in_flight_monitor_updates, option),
10440                         (11, probing_cookie_secret, option),
10441                         (13, claimable_htlc_onion_fields, optional_vec),
10442                 });
10443                 if fake_scid_rand_bytes.is_none() {
10444                         fake_scid_rand_bytes = Some(args.entropy_source.get_secure_random_bytes());
10445                 }
10446
10447                 if probing_cookie_secret.is_none() {
10448                         probing_cookie_secret = Some(args.entropy_source.get_secure_random_bytes());
10449                 }
10450
10451                 if let Some(events) = events_override {
10452                         pending_events_read = events;
10453                 }
10454
10455                 if !channel_closures.is_empty() {
10456                         pending_events_read.append(&mut channel_closures);
10457                 }
10458
10459                 if pending_outbound_payments.is_none() && pending_outbound_payments_no_retry.is_none() {
10460                         pending_outbound_payments = Some(pending_outbound_payments_compat);
10461                 } else if pending_outbound_payments.is_none() {
10462                         let mut outbounds = HashMap::new();
10463                         for (id, session_privs) in pending_outbound_payments_no_retry.unwrap().drain() {
10464                                 outbounds.insert(id, PendingOutboundPayment::Legacy { session_privs });
10465                         }
10466                         pending_outbound_payments = Some(outbounds);
10467                 }
10468                 let pending_outbounds = OutboundPayments {
10469                         pending_outbound_payments: Mutex::new(pending_outbound_payments.unwrap()),
10470                         retry_lock: Mutex::new(())
10471                 };
10472
10473                 // We have to replay (or skip, if they were completed after we wrote the `ChannelManager`)
10474                 // each `ChannelMonitorUpdate` in `in_flight_monitor_updates`. After doing so, we have to
10475                 // check that each channel we have isn't newer than the latest `ChannelMonitorUpdate`(s) we
10476                 // replayed, and for each monitor update we have to replay we have to ensure there's a
10477                 // `ChannelMonitor` for it.
10478                 //
10479                 // In order to do so we first walk all of our live channels (so that we can check their
10480                 // state immediately after doing the update replays, when we have the `update_id`s
10481                 // available) and then walk any remaining in-flight updates.
10482                 //
10483                 // Because the actual handling of the in-flight updates is the same, it's macro'ized here:
10484                 let mut pending_background_events = Vec::new();
10485                 macro_rules! handle_in_flight_updates {
10486                         ($counterparty_node_id: expr, $chan_in_flight_upds: expr, $funding_txo: expr,
10487                          $monitor: expr, $peer_state: expr, $channel_info_log: expr
10488                         ) => { {
10489                                 let mut max_in_flight_update_id = 0;
10490                                 $chan_in_flight_upds.retain(|upd| upd.update_id > $monitor.get_latest_update_id());
10491                                 for update in $chan_in_flight_upds.iter() {
10492                                         log_trace!(args.logger, "Replaying ChannelMonitorUpdate {} for {}channel {}",
10493                                                 update.update_id, $channel_info_log, &$funding_txo.to_channel_id());
10494                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id, update.update_id);
10495                                         pending_background_events.push(
10496                                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
10497                                                         counterparty_node_id: $counterparty_node_id,
10498                                                         funding_txo: $funding_txo,
10499                                                         update: update.clone(),
10500                                                 });
10501                                 }
10502                                 if $chan_in_flight_upds.is_empty() {
10503                                         // We had some updates to apply, but it turns out they had completed before we
10504                                         // were serialized, we just weren't notified of that. Thus, we may have to run
10505                                         // the completion actions for any monitor updates, but otherwise are done.
10506                                         pending_background_events.push(
10507                                                 BackgroundEvent::MonitorUpdatesComplete {
10508                                                         counterparty_node_id: $counterparty_node_id,
10509                                                         channel_id: $funding_txo.to_channel_id(),
10510                                                 });
10511                                 }
10512                                 if $peer_state.in_flight_monitor_updates.insert($funding_txo, $chan_in_flight_upds).is_some() {
10513                                         log_error!(args.logger, "Duplicate in-flight monitor update set for the same channel!");
10514                                         return Err(DecodeError::InvalidValue);
10515                                 }
10516                                 max_in_flight_update_id
10517                         } }
10518                 }
10519
10520                 for (counterparty_id, peer_state_mtx) in per_peer_state.iter_mut() {
10521                         let mut peer_state_lock = peer_state_mtx.lock().unwrap();
10522                         let peer_state = &mut *peer_state_lock;
10523                         for phase in peer_state.channel_by_id.values() {
10524                                 if let ChannelPhase::Funded(chan) = phase {
10525                                         // Channels that were persisted have to be funded, otherwise they should have been
10526                                         // discarded.
10527                                         let funding_txo = chan.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
10528                                         let monitor = args.channel_monitors.get(&funding_txo)
10529                                                 .expect("We already checked for monitor presence when loading channels");
10530                                         let mut max_in_flight_update_id = monitor.get_latest_update_id();
10531                                         if let Some(in_flight_upds) = &mut in_flight_monitor_updates {
10532                                                 if let Some(mut chan_in_flight_upds) = in_flight_upds.remove(&(*counterparty_id, funding_txo)) {
10533                                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id,
10534                                                                 handle_in_flight_updates!(*counterparty_id, chan_in_flight_upds,
10535                                                                         funding_txo, monitor, peer_state, ""));
10536                                                 }
10537                                         }
10538                                         if chan.get_latest_unblocked_monitor_update_id() > max_in_flight_update_id {
10539                                                 // If the channel is ahead of the monitor, return InvalidValue:
10540                                                 log_error!(args.logger, "A ChannelMonitor is stale compared to the current ChannelManager! This indicates a potentially-critical violation of the chain::Watch API!");
10541                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} with update_id through {} in-flight",
10542                                                         chan.context.channel_id(), monitor.get_latest_update_id(), max_in_flight_update_id);
10543                                                 log_error!(args.logger, " but the ChannelManager is at update_id {}.", chan.get_latest_unblocked_monitor_update_id());
10544                                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
10545                                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
10546                                                 log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
10547                                                 log_error!(args.logger, " Please ensure the chain::Watch API requirements are met and file a bug report at https://github.com/lightningdevkit/rust-lightning");
10548                                                 return Err(DecodeError::InvalidValue);
10549                                         }
10550                                 } else {
10551                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
10552                                         // created in this `channel_by_id` map.
10553                                         debug_assert!(false);
10554                                         return Err(DecodeError::InvalidValue);
10555                                 }
10556                         }
10557                 }
10558
10559                 if let Some(in_flight_upds) = in_flight_monitor_updates {
10560                         for ((counterparty_id, funding_txo), mut chan_in_flight_updates) in in_flight_upds {
10561                                 if let Some(monitor) = args.channel_monitors.get(&funding_txo) {
10562                                         // Now that we've removed all the in-flight monitor updates for channels that are
10563                                         // still open, we need to replay any monitor updates that are for closed channels,
10564                                         // creating the neccessary peer_state entries as we go.
10565                                         let peer_state_mutex = per_peer_state.entry(counterparty_id).or_insert_with(|| {
10566                                                 Mutex::new(peer_state_from_chans(HashMap::new()))
10567                                         });
10568                                         let mut peer_state = peer_state_mutex.lock().unwrap();
10569                                         handle_in_flight_updates!(counterparty_id, chan_in_flight_updates,
10570                                                 funding_txo, monitor, peer_state, "closed ");
10571                                 } else {
10572                                         log_error!(args.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!");
10573                                         log_error!(args.logger, " The ChannelMonitor for channel {} is missing.",
10574                                                 &funding_txo.to_channel_id());
10575                                         log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
10576                                         log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
10577                                         log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
10578                                         log_error!(args.logger, " Please ensure the chain::Watch API requirements are met and file a bug report at https://github.com/lightningdevkit/rust-lightning");
10579                                         return Err(DecodeError::InvalidValue);
10580                                 }
10581                         }
10582                 }
10583
10584                 // Note that we have to do the above replays before we push new monitor updates.
10585                 pending_background_events.append(&mut close_background_events);
10586
10587                 // If there's any preimages for forwarded HTLCs hanging around in ChannelMonitors we
10588                 // should ensure we try them again on the inbound edge. We put them here and do so after we
10589                 // have a fully-constructed `ChannelManager` at the end.
10590                 let mut pending_claims_to_replay = Vec::new();
10591
10592                 {
10593                         // If we're tracking pending payments, ensure we haven't lost any by looking at the
10594                         // ChannelMonitor data for any channels for which we do not have authorative state
10595                         // (i.e. those for which we just force-closed above or we otherwise don't have a
10596                         // corresponding `Channel` at all).
10597                         // This avoids several edge-cases where we would otherwise "forget" about pending
10598                         // payments which are still in-flight via their on-chain state.
10599                         // We only rebuild the pending payments map if we were most recently serialized by
10600                         // 0.0.102+
10601                         for (_, monitor) in args.channel_monitors.iter() {
10602                                 let counterparty_opt = id_to_peer.get(&monitor.get_funding_txo().0.to_channel_id());
10603                                 if counterparty_opt.is_none() {
10604                                         for (htlc_source, (htlc, _)) in monitor.get_pending_or_resolved_outbound_htlcs() {
10605                                                 if let HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } = htlc_source {
10606                                                         if path.hops.is_empty() {
10607                                                                 log_error!(args.logger, "Got an empty path for a pending payment");
10608                                                                 return Err(DecodeError::InvalidValue);
10609                                                         }
10610
10611                                                         let path_amt = path.final_value_msat();
10612                                                         let mut session_priv_bytes = [0; 32];
10613                                                         session_priv_bytes[..].copy_from_slice(&session_priv[..]);
10614                                                         match pending_outbounds.pending_outbound_payments.lock().unwrap().entry(payment_id) {
10615                                                                 hash_map::Entry::Occupied(mut entry) => {
10616                                                                         let newly_added = entry.get_mut().insert(session_priv_bytes, &path);
10617                                                                         log_info!(args.logger, "{} a pending payment path for {} msat for session priv {} on an existing pending payment with payment hash {}",
10618                                                                                 if newly_added { "Added" } else { "Had" }, path_amt, log_bytes!(session_priv_bytes), &htlc.payment_hash);
10619                                                                 },
10620                                                                 hash_map::Entry::Vacant(entry) => {
10621                                                                         let path_fee = path.fee_msat();
10622                                                                         entry.insert(PendingOutboundPayment::Retryable {
10623                                                                                 retry_strategy: None,
10624                                                                                 attempts: PaymentAttempts::new(),
10625                                                                                 payment_params: None,
10626                                                                                 session_privs: [session_priv_bytes].iter().map(|a| *a).collect(),
10627                                                                                 payment_hash: htlc.payment_hash,
10628                                                                                 payment_secret: None, // only used for retries, and we'll never retry on startup
10629                                                                                 payment_metadata: None, // only used for retries, and we'll never retry on startup
10630                                                                                 keysend_preimage: None, // only used for retries, and we'll never retry on startup
10631                                                                                 custom_tlvs: Vec::new(), // only used for retries, and we'll never retry on startup
10632                                                                                 pending_amt_msat: path_amt,
10633                                                                                 pending_fee_msat: Some(path_fee),
10634                                                                                 total_msat: path_amt,
10635                                                                                 starting_block_height: best_block_height,
10636                                                                                 remaining_max_total_routing_fee_msat: None, // only used for retries, and we'll never retry on startup
10637                                                                         });
10638                                                                         log_info!(args.logger, "Added a pending payment for {} msat with payment hash {} for path with session priv {}",
10639                                                                                 path_amt, &htlc.payment_hash,  log_bytes!(session_priv_bytes));
10640                                                                 }
10641                                                         }
10642                                                 }
10643                                         }
10644                                         for (htlc_source, (htlc, preimage_opt)) in monitor.get_all_current_outbound_htlcs() {
10645                                                 match htlc_source {
10646                                                         HTLCSource::PreviousHopData(prev_hop_data) => {
10647                                                                 let pending_forward_matches_htlc = |info: &PendingAddHTLCInfo| {
10648                                                                         info.prev_funding_outpoint == prev_hop_data.outpoint &&
10649                                                                                 info.prev_htlc_id == prev_hop_data.htlc_id
10650                                                                 };
10651                                                                 // The ChannelMonitor is now responsible for this HTLC's
10652                                                                 // failure/success and will let us know what its outcome is. If we
10653                                                                 // still have an entry for this HTLC in `forward_htlcs` or
10654                                                                 // `pending_intercepted_htlcs`, we were apparently not persisted after
10655                                                                 // the monitor was when forwarding the payment.
10656                                                                 forward_htlcs.retain(|_, forwards| {
10657                                                                         forwards.retain(|forward| {
10658                                                                                 if let HTLCForwardInfo::AddHTLC(htlc_info) = forward {
10659                                                                                         if pending_forward_matches_htlc(&htlc_info) {
10660                                                                                                 log_info!(args.logger, "Removing pending to-forward HTLC with hash {} as it was forwarded to the closed channel {}",
10661                                                                                                         &htlc.payment_hash, &monitor.get_funding_txo().0.to_channel_id());
10662                                                                                                 false
10663                                                                                         } else { true }
10664                                                                                 } else { true }
10665                                                                         });
10666                                                                         !forwards.is_empty()
10667                                                                 });
10668                                                                 pending_intercepted_htlcs.as_mut().unwrap().retain(|intercepted_id, htlc_info| {
10669                                                                         if pending_forward_matches_htlc(&htlc_info) {
10670                                                                                 log_info!(args.logger, "Removing pending intercepted HTLC with hash {} as it was forwarded to the closed channel {}",
10671                                                                                         &htlc.payment_hash, &monitor.get_funding_txo().0.to_channel_id());
10672                                                                                 pending_events_read.retain(|(event, _)| {
10673                                                                                         if let Event::HTLCIntercepted { intercept_id: ev_id, .. } = event {
10674                                                                                                 intercepted_id != ev_id
10675                                                                                         } else { true }
10676                                                                                 });
10677                                                                                 false
10678                                                                         } else { true }
10679                                                                 });
10680                                                         },
10681                                                         HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } => {
10682                                                                 if let Some(preimage) = preimage_opt {
10683                                                                         let pending_events = Mutex::new(pending_events_read);
10684                                                                         // Note that we set `from_onchain` to "false" here,
10685                                                                         // deliberately keeping the pending payment around forever.
10686                                                                         // Given it should only occur when we have a channel we're
10687                                                                         // force-closing for being stale that's okay.
10688                                                                         // The alternative would be to wipe the state when claiming,
10689                                                                         // generating a `PaymentPathSuccessful` event but regenerating
10690                                                                         // it and the `PaymentSent` on every restart until the
10691                                                                         // `ChannelMonitor` is removed.
10692                                                                         let compl_action =
10693                                                                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
10694                                                                                         channel_funding_outpoint: monitor.get_funding_txo().0,
10695                                                                                         counterparty_node_id: path.hops[0].pubkey,
10696                                                                                 };
10697                                                                         pending_outbounds.claim_htlc(payment_id, preimage, session_priv,
10698                                                                                 path, false, compl_action, &pending_events, &args.logger);
10699                                                                         pending_events_read = pending_events.into_inner().unwrap();
10700                                                                 }
10701                                                         },
10702                                                 }
10703                                         }
10704                                 }
10705
10706                                 // Whether the downstream channel was closed or not, try to re-apply any payment
10707                                 // preimages from it which may be needed in upstream channels for forwarded
10708                                 // payments.
10709                                 let outbound_claimed_htlcs_iter = monitor.get_all_current_outbound_htlcs()
10710                                         .into_iter()
10711                                         .filter_map(|(htlc_source, (htlc, preimage_opt))| {
10712                                                 if let HTLCSource::PreviousHopData(_) = htlc_source {
10713                                                         if let Some(payment_preimage) = preimage_opt {
10714                                                                 Some((htlc_source, payment_preimage, htlc.amount_msat,
10715                                                                         // Check if `counterparty_opt.is_none()` to see if the
10716                                                                         // downstream chan is closed (because we don't have a
10717                                                                         // channel_id -> peer map entry).
10718                                                                         counterparty_opt.is_none(),
10719                                                                         counterparty_opt.cloned().or(monitor.get_counterparty_node_id()),
10720                                                                         monitor.get_funding_txo().0))
10721                                                         } else { None }
10722                                                 } else {
10723                                                         // If it was an outbound payment, we've handled it above - if a preimage
10724                                                         // came in and we persisted the `ChannelManager` we either handled it and
10725                                                         // are good to go or the channel force-closed - we don't have to handle the
10726                                                         // channel still live case here.
10727                                                         None
10728                                                 }
10729                                         });
10730                                 for tuple in outbound_claimed_htlcs_iter {
10731                                         pending_claims_to_replay.push(tuple);
10732                                 }
10733                         }
10734                 }
10735
10736                 if !forward_htlcs.is_empty() || pending_outbounds.needs_abandon() {
10737                         // If we have pending HTLCs to forward, assume we either dropped a
10738                         // `PendingHTLCsForwardable` or the user received it but never processed it as they
10739                         // shut down before the timer hit. Either way, set the time_forwardable to a small
10740                         // constant as enough time has likely passed that we should simply handle the forwards
10741                         // now, or at least after the user gets a chance to reconnect to our peers.
10742                         pending_events_read.push_back((events::Event::PendingHTLCsForwardable {
10743                                 time_forwardable: Duration::from_secs(2),
10744                         }, None));
10745                 }
10746
10747                 let inbound_pmt_key_material = args.node_signer.get_inbound_payment_key_material();
10748                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
10749
10750                 let mut claimable_payments = HashMap::with_capacity(claimable_htlcs_list.len());
10751                 if let Some(purposes) = claimable_htlc_purposes {
10752                         if purposes.len() != claimable_htlcs_list.len() {
10753                                 return Err(DecodeError::InvalidValue);
10754                         }
10755                         if let Some(onion_fields) = claimable_htlc_onion_fields {
10756                                 if onion_fields.len() != claimable_htlcs_list.len() {
10757                                         return Err(DecodeError::InvalidValue);
10758                                 }
10759                                 for (purpose, (onion, (payment_hash, htlcs))) in
10760                                         purposes.into_iter().zip(onion_fields.into_iter().zip(claimable_htlcs_list.into_iter()))
10761                                 {
10762                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
10763                                                 purpose, htlcs, onion_fields: onion,
10764                                         });
10765                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
10766                                 }
10767                         } else {
10768                                 for (purpose, (payment_hash, htlcs)) in purposes.into_iter().zip(claimable_htlcs_list.into_iter()) {
10769                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
10770                                                 purpose, htlcs, onion_fields: None,
10771                                         });
10772                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
10773                                 }
10774                         }
10775                 } else {
10776                         // LDK versions prior to 0.0.107 did not write a `pending_htlc_purposes`, but do
10777                         // include a `_legacy_hop_data` in the `OnionPayload`.
10778                         for (payment_hash, htlcs) in claimable_htlcs_list.drain(..) {
10779                                 if htlcs.is_empty() {
10780                                         return Err(DecodeError::InvalidValue);
10781                                 }
10782                                 let purpose = match &htlcs[0].onion_payload {
10783                                         OnionPayload::Invoice { _legacy_hop_data } => {
10784                                                 if let Some(hop_data) = _legacy_hop_data {
10785                                                         events::PaymentPurpose::InvoicePayment {
10786                                                                 payment_preimage: match pending_inbound_payments.get(&payment_hash) {
10787                                                                         Some(inbound_payment) => inbound_payment.payment_preimage,
10788                                                                         None => match inbound_payment::verify(payment_hash, &hop_data, 0, &expanded_inbound_key, &args.logger) {
10789                                                                                 Ok((payment_preimage, _)) => payment_preimage,
10790                                                                                 Err(()) => {
10791                                                                                         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);
10792                                                                                         return Err(DecodeError::InvalidValue);
10793                                                                                 }
10794                                                                         }
10795                                                                 },
10796                                                                 payment_secret: hop_data.payment_secret,
10797                                                         }
10798                                                 } else { return Err(DecodeError::InvalidValue); }
10799                                         },
10800                                         OnionPayload::Spontaneous(payment_preimage) =>
10801                                                 events::PaymentPurpose::SpontaneousPayment(*payment_preimage),
10802                                 };
10803                                 claimable_payments.insert(payment_hash, ClaimablePayment {
10804                                         purpose, htlcs, onion_fields: None,
10805                                 });
10806                         }
10807                 }
10808
10809                 let mut secp_ctx = Secp256k1::new();
10810                 secp_ctx.seeded_randomize(&args.entropy_source.get_secure_random_bytes());
10811
10812                 let our_network_pubkey = match args.node_signer.get_node_id(Recipient::Node) {
10813                         Ok(key) => key,
10814                         Err(()) => return Err(DecodeError::InvalidValue)
10815                 };
10816                 if let Some(network_pubkey) = received_network_pubkey {
10817                         if network_pubkey != our_network_pubkey {
10818                                 log_error!(args.logger, "Key that was generated does not match the existing key.");
10819                                 return Err(DecodeError::InvalidValue);
10820                         }
10821                 }
10822
10823                 let mut outbound_scid_aliases = HashSet::new();
10824                 for (_peer_node_id, peer_state_mutex) in per_peer_state.iter_mut() {
10825                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
10826                         let peer_state = &mut *peer_state_lock;
10827                         for (chan_id, phase) in peer_state.channel_by_id.iter_mut() {
10828                                 if let ChannelPhase::Funded(chan) = phase {
10829                                         if chan.context.outbound_scid_alias() == 0 {
10830                                                 let mut outbound_scid_alias;
10831                                                 loop {
10832                                                         outbound_scid_alias = fake_scid::Namespace::OutboundAlias
10833                                                                 .get_fake_scid(best_block_height, &chain_hash, fake_scid_rand_bytes.as_ref().unwrap(), &args.entropy_source);
10834                                                         if outbound_scid_aliases.insert(outbound_scid_alias) { break; }
10835                                                 }
10836                                                 chan.context.set_outbound_scid_alias(outbound_scid_alias);
10837                                         } else if !outbound_scid_aliases.insert(chan.context.outbound_scid_alias()) {
10838                                                 // Note that in rare cases its possible to hit this while reading an older
10839                                                 // channel if we just happened to pick a colliding outbound alias above.
10840                                                 log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
10841                                                 return Err(DecodeError::InvalidValue);
10842                                         }
10843                                         if chan.context.is_usable() {
10844                                                 if short_to_chan_info.insert(chan.context.outbound_scid_alias(), (chan.context.get_counterparty_node_id(), *chan_id)).is_some() {
10845                                                         // Note that in rare cases its possible to hit this while reading an older
10846                                                         // channel if we just happened to pick a colliding outbound alias above.
10847                                                         log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
10848                                                         return Err(DecodeError::InvalidValue);
10849                                                 }
10850                                         }
10851                                 } else {
10852                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
10853                                         // created in this `channel_by_id` map.
10854                                         debug_assert!(false);
10855                                         return Err(DecodeError::InvalidValue);
10856                                 }
10857                         }
10858                 }
10859
10860                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(args.fee_estimator);
10861
10862                 for (_, monitor) in args.channel_monitors.iter() {
10863                         for (payment_hash, payment_preimage) in monitor.get_stored_preimages() {
10864                                 if let Some(payment) = claimable_payments.remove(&payment_hash) {
10865                                         log_info!(args.logger, "Re-claiming HTLCs with payment hash {} as we've released the preimage to a ChannelMonitor!", &payment_hash);
10866                                         let mut claimable_amt_msat = 0;
10867                                         let mut receiver_node_id = Some(our_network_pubkey);
10868                                         let phantom_shared_secret = payment.htlcs[0].prev_hop.phantom_shared_secret;
10869                                         if phantom_shared_secret.is_some() {
10870                                                 let phantom_pubkey = args.node_signer.get_node_id(Recipient::PhantomNode)
10871                                                         .expect("Failed to get node_id for phantom node recipient");
10872                                                 receiver_node_id = Some(phantom_pubkey)
10873                                         }
10874                                         for claimable_htlc in &payment.htlcs {
10875                                                 claimable_amt_msat += claimable_htlc.value;
10876
10877                                                 // Add a holding-cell claim of the payment to the Channel, which should be
10878                                                 // applied ~immediately on peer reconnection. Because it won't generate a
10879                                                 // new commitment transaction we can just provide the payment preimage to
10880                                                 // the corresponding ChannelMonitor and nothing else.
10881                                                 //
10882                                                 // We do so directly instead of via the normal ChannelMonitor update
10883                                                 // procedure as the ChainMonitor hasn't yet been initialized, implying
10884                                                 // we're not allowed to call it directly yet. Further, we do the update
10885                                                 // without incrementing the ChannelMonitor update ID as there isn't any
10886                                                 // reason to.
10887                                                 // If we were to generate a new ChannelMonitor update ID here and then
10888                                                 // crash before the user finishes block connect we'd end up force-closing
10889                                                 // this channel as well. On the flip side, there's no harm in restarting
10890                                                 // without the new monitor persisted - we'll end up right back here on
10891                                                 // restart.
10892                                                 let previous_channel_id = claimable_htlc.prev_hop.outpoint.to_channel_id();
10893                                                 if let Some(peer_node_id) = id_to_peer.get(&previous_channel_id){
10894                                                         let peer_state_mutex = per_peer_state.get(peer_node_id).unwrap();
10895                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
10896                                                         let peer_state = &mut *peer_state_lock;
10897                                                         if let Some(ChannelPhase::Funded(channel)) = peer_state.channel_by_id.get_mut(&previous_channel_id) {
10898                                                                 channel.claim_htlc_while_disconnected_dropping_mon_update(claimable_htlc.prev_hop.htlc_id, payment_preimage, &args.logger);
10899                                                         }
10900                                                 }
10901                                                 if let Some(previous_hop_monitor) = args.channel_monitors.get(&claimable_htlc.prev_hop.outpoint) {
10902                                                         previous_hop_monitor.provide_payment_preimage(&payment_hash, &payment_preimage, &args.tx_broadcaster, &bounded_fee_estimator, &args.logger);
10903                                                 }
10904                                         }
10905                                         pending_events_read.push_back((events::Event::PaymentClaimed {
10906                                                 receiver_node_id,
10907                                                 payment_hash,
10908                                                 purpose: payment.purpose,
10909                                                 amount_msat: claimable_amt_msat,
10910                                                 htlcs: payment.htlcs.iter().map(events::ClaimedHTLC::from).collect(),
10911                                                 sender_intended_total_msat: payment.htlcs.first().map(|htlc| htlc.total_msat),
10912                                         }, None));
10913                                 }
10914                         }
10915                 }
10916
10917                 for (node_id, monitor_update_blocked_actions) in monitor_update_blocked_actions_per_peer.unwrap() {
10918                         if let Some(peer_state) = per_peer_state.get(&node_id) {
10919                                 for (_, actions) in monitor_update_blocked_actions.iter() {
10920                                         for action in actions.iter() {
10921                                                 if let MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
10922                                                         downstream_counterparty_and_funding_outpoint:
10923                                                                 Some((blocked_node_id, blocked_channel_outpoint, blocking_action)), ..
10924                                                 } = action {
10925                                                         if let Some(blocked_peer_state) = per_peer_state.get(&blocked_node_id) {
10926                                                                 log_trace!(args.logger,
10927                                                                         "Holding the next revoke_and_ack from {} until the preimage is durably persisted in the inbound edge's ChannelMonitor",
10928                                                                         blocked_channel_outpoint.to_channel_id());
10929                                                                 blocked_peer_state.lock().unwrap().actions_blocking_raa_monitor_updates
10930                                                                         .entry(blocked_channel_outpoint.to_channel_id())
10931                                                                         .or_insert_with(Vec::new).push(blocking_action.clone());
10932                                                         } else {
10933                                                                 // If the channel we were blocking has closed, we don't need to
10934                                                                 // worry about it - the blocked monitor update should never have
10935                                                                 // been released from the `Channel` object so it can't have
10936                                                                 // completed, and if the channel closed there's no reason to bother
10937                                                                 // anymore.
10938                                                         }
10939                                                 }
10940                                                 if let MonitorUpdateCompletionAction::FreeOtherChannelImmediately { .. } = action {
10941                                                         debug_assert!(false, "Non-event-generating channel freeing should not appear in our queue");
10942                                                 }
10943                                         }
10944                                 }
10945                                 peer_state.lock().unwrap().monitor_update_blocked_actions = monitor_update_blocked_actions;
10946                         } else {
10947                                 log_error!(args.logger, "Got blocked actions without a per-peer-state for {}", node_id);
10948                                 return Err(DecodeError::InvalidValue);
10949                         }
10950                 }
10951
10952                 let channel_manager = ChannelManager {
10953                         chain_hash,
10954                         fee_estimator: bounded_fee_estimator,
10955                         chain_monitor: args.chain_monitor,
10956                         tx_broadcaster: args.tx_broadcaster,
10957                         router: args.router,
10958
10959                         best_block: RwLock::new(BestBlock::new(best_block_hash, best_block_height)),
10960
10961                         inbound_payment_key: expanded_inbound_key,
10962                         pending_inbound_payments: Mutex::new(pending_inbound_payments),
10963                         pending_outbound_payments: pending_outbounds,
10964                         pending_intercepted_htlcs: Mutex::new(pending_intercepted_htlcs.unwrap()),
10965
10966                         forward_htlcs: Mutex::new(forward_htlcs),
10967                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments, pending_claiming_payments: pending_claiming_payments.unwrap() }),
10968                         outbound_scid_aliases: Mutex::new(outbound_scid_aliases),
10969                         id_to_peer: Mutex::new(id_to_peer),
10970                         short_to_chan_info: FairRwLock::new(short_to_chan_info),
10971                         fake_scid_rand_bytes: fake_scid_rand_bytes.unwrap(),
10972
10973                         probing_cookie_secret: probing_cookie_secret.unwrap(),
10974
10975                         our_network_pubkey,
10976                         secp_ctx,
10977
10978                         highest_seen_timestamp: AtomicUsize::new(highest_seen_timestamp as usize),
10979
10980                         per_peer_state: FairRwLock::new(per_peer_state),
10981
10982                         pending_events: Mutex::new(pending_events_read),
10983                         pending_events_processor: AtomicBool::new(false),
10984                         pending_background_events: Mutex::new(pending_background_events),
10985                         total_consistency_lock: RwLock::new(()),
10986                         background_events_processed_since_startup: AtomicBool::new(false),
10987
10988                         event_persist_notifier: Notifier::new(),
10989                         needs_persist_flag: AtomicBool::new(false),
10990
10991                         funding_batch_states: Mutex::new(BTreeMap::new()),
10992
10993                         pending_offers_messages: Mutex::new(Vec::new()),
10994
10995                         entropy_source: args.entropy_source,
10996                         node_signer: args.node_signer,
10997                         signer_provider: args.signer_provider,
10998
10999                         logger: args.logger,
11000                         default_configuration: args.default_config,
11001                 };
11002
11003                 for htlc_source in failed_htlcs.drain(..) {
11004                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
11005                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
11006                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
11007                         channel_manager.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
11008                 }
11009
11010                 for (source, preimage, downstream_value, downstream_closed, downstream_node_id, downstream_funding) in pending_claims_to_replay {
11011                         // We use `downstream_closed` in place of `from_onchain` here just as a guess - we
11012                         // don't remember in the `ChannelMonitor` where we got a preimage from, but if the
11013                         // channel is closed we just assume that it probably came from an on-chain claim.
11014                         channel_manager.claim_funds_internal(source, preimage, Some(downstream_value),
11015                                 downstream_closed, true, downstream_node_id, downstream_funding);
11016                 }
11017
11018                 //TODO: Broadcast channel update for closed channels, but only after we've made a
11019                 //connection or two.
11020
11021                 Ok((best_block_hash.clone(), channel_manager))
11022         }
11023 }
11024
11025 #[cfg(test)]
11026 mod tests {
11027         use bitcoin::hashes::Hash;
11028         use bitcoin::hashes::sha256::Hash as Sha256;
11029         use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
11030         use core::sync::atomic::Ordering;
11031         use crate::events::{Event, HTLCDestination, MessageSendEvent, MessageSendEventsProvider, ClosureReason};
11032         use crate::ln::{PaymentPreimage, PaymentHash, PaymentSecret};
11033         use crate::ln::ChannelId;
11034         use crate::ln::channelmanager::{create_recv_pending_htlc_info, inbound_payment, PaymentId, PaymentSendFailure, RecipientOnionFields, InterceptId};
11035         use crate::ln::features::{ChannelFeatures, NodeFeatures};
11036         use crate::ln::functional_test_utils::*;
11037         use crate::ln::msgs::{self, ErrorAction};
11038         use crate::ln::msgs::ChannelMessageHandler;
11039         use crate::routing::router::{Path, PaymentParameters, RouteHop, RouteParameters, find_route};
11040         use crate::util::errors::APIError;
11041         use crate::util::test_utils;
11042         use crate::util::config::{ChannelConfig, ChannelConfigUpdate};
11043         use crate::sign::EntropySource;
11044
11045         #[test]
11046         fn test_notify_limits() {
11047                 // Check that a few cases which don't require the persistence of a new ChannelManager,
11048                 // indeed, do not cause the persistence of a new ChannelManager.
11049                 let chanmon_cfgs = create_chanmon_cfgs(3);
11050                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
11051                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
11052                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
11053
11054                 // All nodes start with a persistable update pending as `create_network` connects each node
11055                 // with all other nodes to make most tests simpler.
11056                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
11057                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
11058                 assert!(nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
11059
11060                 let mut chan = create_announced_chan_between_nodes(&nodes, 0, 1);
11061
11062                 // We check that the channel info nodes have doesn't change too early, even though we try
11063                 // to connect messages with new values
11064                 chan.0.contents.fee_base_msat *= 2;
11065                 chan.1.contents.fee_base_msat *= 2;
11066                 let node_a_chan_info = nodes[0].node.list_channels_with_counterparty(
11067                         &nodes[1].node.get_our_node_id()).pop().unwrap();
11068                 let node_b_chan_info = nodes[1].node.list_channels_with_counterparty(
11069                         &nodes[0].node.get_our_node_id()).pop().unwrap();
11070
11071                 // The first two nodes (which opened a channel) should now require fresh persistence
11072                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
11073                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
11074                 // ... but the last node should not.
11075                 assert!(!nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
11076                 // After persisting the first two nodes they should no longer need fresh persistence.
11077                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
11078                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
11079
11080                 // Node 3, unrelated to the only channel, shouldn't care if it receives a channel_update
11081                 // about the channel.
11082                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.0);
11083                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.1);
11084                 assert!(!nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
11085
11086                 // The nodes which are a party to the channel should also ignore messages from unrelated
11087                 // parties.
11088                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
11089                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
11090                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
11091                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
11092                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
11093                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
11094
11095                 // At this point the channel info given by peers should still be the same.
11096                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
11097                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
11098
11099                 // An earlier version of handle_channel_update didn't check the directionality of the
11100                 // update message and would always update the local fee info, even if our peer was
11101                 // (spuriously) forwarding us our own channel_update.
11102                 let as_node_one = nodes[0].node.get_our_node_id().serialize()[..] < nodes[1].node.get_our_node_id().serialize()[..];
11103                 let as_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.0 } else { &chan.1 };
11104                 let bs_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.1 } else { &chan.0 };
11105
11106                 // First deliver each peers' own message, checking that the node doesn't need to be
11107                 // persisted and that its channel info remains the same.
11108                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &as_update);
11109                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &bs_update);
11110                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
11111                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
11112                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
11113                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
11114
11115                 // Finally, deliver the other peers' message, ensuring each node needs to be persisted and
11116                 // the channel info has updated.
11117                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &bs_update);
11118                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &as_update);
11119                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
11120                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
11121                 assert_ne!(nodes[0].node.list_channels()[0], node_a_chan_info);
11122                 assert_ne!(nodes[1].node.list_channels()[0], node_b_chan_info);
11123         }
11124
11125         #[test]
11126         fn test_keysend_dup_hash_partial_mpp() {
11127                 // Test that a keysend payment with a duplicate hash to an existing partial MPP payment fails as
11128                 // expected.
11129                 let chanmon_cfgs = create_chanmon_cfgs(2);
11130                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
11131                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
11132                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
11133                 create_announced_chan_between_nodes(&nodes, 0, 1);
11134
11135                 // First, send a partial MPP payment.
11136                 let (route, our_payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100_000);
11137                 let mut mpp_route = route.clone();
11138                 mpp_route.paths.push(mpp_route.paths[0].clone());
11139
11140                 let payment_id = PaymentId([42; 32]);
11141                 // Use the utility function send_payment_along_path to send the payment with MPP data which
11142                 // indicates there are more HTLCs coming.
11143                 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.
11144                 let session_privs = nodes[0].node.test_add_new_pending_payment(our_payment_hash,
11145                         RecipientOnionFields::secret_only(payment_secret), payment_id, &mpp_route).unwrap();
11146                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[0], &our_payment_hash,
11147                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[0]).unwrap();
11148                 check_added_monitors!(nodes[0], 1);
11149                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
11150                 assert_eq!(events.len(), 1);
11151                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), false, None);
11152
11153                 // Next, send a keysend payment with the same payment_hash and make sure it fails.
11154                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
11155                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
11156                 check_added_monitors!(nodes[0], 1);
11157                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
11158                 assert_eq!(events.len(), 1);
11159                 let ev = events.drain(..).next().unwrap();
11160                 let payment_event = SendEvent::from_event(ev);
11161                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
11162                 check_added_monitors!(nodes[1], 0);
11163                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
11164                 expect_pending_htlcs_forwardable!(nodes[1]);
11165                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
11166                 check_added_monitors!(nodes[1], 1);
11167                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
11168                 assert!(updates.update_add_htlcs.is_empty());
11169                 assert!(updates.update_fulfill_htlcs.is_empty());
11170                 assert_eq!(updates.update_fail_htlcs.len(), 1);
11171                 assert!(updates.update_fail_malformed_htlcs.is_empty());
11172                 assert!(updates.update_fee.is_none());
11173                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
11174                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
11175                 expect_payment_failed!(nodes[0], our_payment_hash, true);
11176
11177                 // Send the second half of the original MPP payment.
11178                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[1], &our_payment_hash,
11179                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[1]).unwrap();
11180                 check_added_monitors!(nodes[0], 1);
11181                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
11182                 assert_eq!(events.len(), 1);
11183                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), true, None);
11184
11185                 // Claim the full MPP payment. Note that we can't use a test utility like
11186                 // claim_funds_along_route because the ordering of the messages causes the second half of the
11187                 // payment to be put in the holding cell, which confuses the test utilities. So we exchange the
11188                 // lightning messages manually.
11189                 nodes[1].node.claim_funds(payment_preimage);
11190                 expect_payment_claimed!(nodes[1], our_payment_hash, 200_000);
11191                 check_added_monitors!(nodes[1], 2);
11192
11193                 let bs_first_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
11194                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_first_updates.update_fulfill_htlcs[0]);
11195                 expect_payment_sent(&nodes[0], payment_preimage, None, false, false);
11196                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_first_updates.commitment_signed);
11197                 check_added_monitors!(nodes[0], 1);
11198                 let (as_first_raa, as_first_cs) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
11199                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_first_raa);
11200                 check_added_monitors!(nodes[1], 1);
11201                 let bs_second_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
11202                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_first_cs);
11203                 check_added_monitors!(nodes[1], 1);
11204                 let bs_first_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
11205                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_second_updates.update_fulfill_htlcs[0]);
11206                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_second_updates.commitment_signed);
11207                 check_added_monitors!(nodes[0], 1);
11208                 let as_second_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
11209                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_first_raa);
11210                 let as_second_updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
11211                 check_added_monitors!(nodes[0], 1);
11212                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_second_raa);
11213                 check_added_monitors!(nodes[1], 1);
11214                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_second_updates.commitment_signed);
11215                 check_added_monitors!(nodes[1], 1);
11216                 let bs_third_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
11217                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_third_raa);
11218                 check_added_monitors!(nodes[0], 1);
11219
11220                 // Note that successful MPP payments will generate a single PaymentSent event upon the first
11221                 // path's success and a PaymentPathSuccessful event for each path's success.
11222                 let events = nodes[0].node.get_and_clear_pending_events();
11223                 assert_eq!(events.len(), 2);
11224                 match events[0] {
11225                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
11226                                 assert_eq!(payment_id, *actual_payment_id);
11227                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
11228                                 assert_eq!(route.paths[0], *path);
11229                         },
11230                         _ => panic!("Unexpected event"),
11231                 }
11232                 match events[1] {
11233                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
11234                                 assert_eq!(payment_id, *actual_payment_id);
11235                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
11236                                 assert_eq!(route.paths[0], *path);
11237                         },
11238                         _ => panic!("Unexpected event"),
11239                 }
11240         }
11241
11242         #[test]
11243         fn test_keysend_dup_payment_hash() {
11244                 do_test_keysend_dup_payment_hash(false);
11245                 do_test_keysend_dup_payment_hash(true);
11246         }
11247
11248         fn do_test_keysend_dup_payment_hash(accept_mpp_keysend: bool) {
11249                 // (1): Test that a keysend payment with a duplicate payment hash to an existing pending
11250                 //      outbound regular payment fails as expected.
11251                 // (2): Test that a regular payment with a duplicate payment hash to an existing keysend payment
11252                 //      fails as expected.
11253                 // (3): Test that a keysend payment with a duplicate payment hash to an existing keysend
11254                 //      payment fails as expected. When `accept_mpp_keysend` is false, this tests that we
11255                 //      reject MPP keysend payments, since in this case where the payment has no payment
11256                 //      secret, a keysend payment with a duplicate hash is basically an MPP keysend. If
11257                 //      `accept_mpp_keysend` is true, this tests that we only accept MPP keysends with
11258                 //      payment secrets and reject otherwise.
11259                 let chanmon_cfgs = create_chanmon_cfgs(2);
11260                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
11261                 let mut mpp_keysend_cfg = test_default_channel_config();
11262                 mpp_keysend_cfg.accept_mpp_keysend = accept_mpp_keysend;
11263                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(mpp_keysend_cfg)]);
11264                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
11265                 create_announced_chan_between_nodes(&nodes, 0, 1);
11266                 let scorer = test_utils::TestScorer::new();
11267                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
11268
11269                 // To start (1), send a regular payment but don't claim it.
11270                 let expected_route = [&nodes[1]];
11271                 let (payment_preimage, payment_hash, ..) = route_payment(&nodes[0], &expected_route, 100_000);
11272
11273                 // Next, attempt a keysend payment and make sure it fails.
11274                 let route_params = RouteParameters::from_payment_params_and_value(
11275                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(),
11276                         TEST_FINAL_CLTV, false), 100_000);
11277                 let route = find_route(
11278                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
11279                         None, nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
11280                 ).unwrap();
11281                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
11282                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
11283                 check_added_monitors!(nodes[0], 1);
11284                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
11285                 assert_eq!(events.len(), 1);
11286                 let ev = events.drain(..).next().unwrap();
11287                 let payment_event = SendEvent::from_event(ev);
11288                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
11289                 check_added_monitors!(nodes[1], 0);
11290                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
11291                 // We have to forward pending HTLCs twice - once tries to forward the payment forward (and
11292                 // fails), the second will process the resulting failure and fail the HTLC backward
11293                 expect_pending_htlcs_forwardable!(nodes[1]);
11294                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
11295                 check_added_monitors!(nodes[1], 1);
11296                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
11297                 assert!(updates.update_add_htlcs.is_empty());
11298                 assert!(updates.update_fulfill_htlcs.is_empty());
11299                 assert_eq!(updates.update_fail_htlcs.len(), 1);
11300                 assert!(updates.update_fail_malformed_htlcs.is_empty());
11301                 assert!(updates.update_fee.is_none());
11302                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
11303                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
11304                 expect_payment_failed!(nodes[0], payment_hash, true);
11305
11306                 // Finally, claim the original payment.
11307                 claim_payment(&nodes[0], &expected_route, payment_preimage);
11308
11309                 // To start (2), send a keysend payment but don't claim it.
11310                 let payment_preimage = PaymentPreimage([42; 32]);
11311                 let route = find_route(
11312                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
11313                         None, nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
11314                 ).unwrap();
11315                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
11316                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
11317                 check_added_monitors!(nodes[0], 1);
11318                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
11319                 assert_eq!(events.len(), 1);
11320                 let event = events.pop().unwrap();
11321                 let path = vec![&nodes[1]];
11322                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
11323
11324                 // Next, attempt a regular payment and make sure it fails.
11325                 let payment_secret = PaymentSecret([43; 32]);
11326                 nodes[0].node.send_payment_with_route(&route, payment_hash,
11327                         RecipientOnionFields::secret_only(payment_secret), PaymentId(payment_hash.0)).unwrap();
11328                 check_added_monitors!(nodes[0], 1);
11329                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
11330                 assert_eq!(events.len(), 1);
11331                 let ev = events.drain(..).next().unwrap();
11332                 let payment_event = SendEvent::from_event(ev);
11333                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
11334                 check_added_monitors!(nodes[1], 0);
11335                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
11336                 expect_pending_htlcs_forwardable!(nodes[1]);
11337                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
11338                 check_added_monitors!(nodes[1], 1);
11339                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
11340                 assert!(updates.update_add_htlcs.is_empty());
11341                 assert!(updates.update_fulfill_htlcs.is_empty());
11342                 assert_eq!(updates.update_fail_htlcs.len(), 1);
11343                 assert!(updates.update_fail_malformed_htlcs.is_empty());
11344                 assert!(updates.update_fee.is_none());
11345                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
11346                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
11347                 expect_payment_failed!(nodes[0], payment_hash, true);
11348
11349                 // Finally, succeed the keysend payment.
11350                 claim_payment(&nodes[0], &expected_route, payment_preimage);
11351
11352                 // To start (3), send a keysend payment but don't claim it.
11353                 let payment_id_1 = PaymentId([44; 32]);
11354                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
11355                         RecipientOnionFields::spontaneous_empty(), payment_id_1).unwrap();
11356                 check_added_monitors!(nodes[0], 1);
11357                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
11358                 assert_eq!(events.len(), 1);
11359                 let event = events.pop().unwrap();
11360                 let path = vec![&nodes[1]];
11361                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
11362
11363                 // Next, attempt a keysend payment and make sure it fails.
11364                 let route_params = RouteParameters::from_payment_params_and_value(
11365                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(), TEST_FINAL_CLTV, false),
11366                         100_000
11367                 );
11368                 let route = find_route(
11369                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
11370                         None, nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
11371                 ).unwrap();
11372                 let payment_id_2 = PaymentId([45; 32]);
11373                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
11374                         RecipientOnionFields::spontaneous_empty(), payment_id_2).unwrap();
11375                 check_added_monitors!(nodes[0], 1);
11376                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
11377                 assert_eq!(events.len(), 1);
11378                 let ev = events.drain(..).next().unwrap();
11379                 let payment_event = SendEvent::from_event(ev);
11380                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
11381                 check_added_monitors!(nodes[1], 0);
11382                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
11383                 expect_pending_htlcs_forwardable!(nodes[1]);
11384                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
11385                 check_added_monitors!(nodes[1], 1);
11386                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
11387                 assert!(updates.update_add_htlcs.is_empty());
11388                 assert!(updates.update_fulfill_htlcs.is_empty());
11389                 assert_eq!(updates.update_fail_htlcs.len(), 1);
11390                 assert!(updates.update_fail_malformed_htlcs.is_empty());
11391                 assert!(updates.update_fee.is_none());
11392                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
11393                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
11394                 expect_payment_failed!(nodes[0], payment_hash, true);
11395
11396                 // Finally, claim the original payment.
11397                 claim_payment(&nodes[0], &expected_route, payment_preimage);
11398         }
11399
11400         #[test]
11401         fn test_keysend_hash_mismatch() {
11402                 // Test that if we receive a keysend `update_add_htlc` msg, we fail as expected if the keysend
11403                 // preimage doesn't match the msg's payment hash.
11404                 let chanmon_cfgs = create_chanmon_cfgs(2);
11405                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
11406                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
11407                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
11408
11409                 let payer_pubkey = nodes[0].node.get_our_node_id();
11410                 let payee_pubkey = nodes[1].node.get_our_node_id();
11411
11412                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
11413                 let route_params = RouteParameters::from_payment_params_and_value(
11414                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
11415                 let network_graph = nodes[0].network_graph.clone();
11416                 let first_hops = nodes[0].node.list_usable_channels();
11417                 let scorer = test_utils::TestScorer::new();
11418                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
11419                 let route = find_route(
11420                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
11421                         nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
11422                 ).unwrap();
11423
11424                 let test_preimage = PaymentPreimage([42; 32]);
11425                 let mismatch_payment_hash = PaymentHash([43; 32]);
11426                 let session_privs = nodes[0].node.test_add_new_pending_payment(mismatch_payment_hash,
11427                         RecipientOnionFields::spontaneous_empty(), PaymentId(mismatch_payment_hash.0), &route).unwrap();
11428                 nodes[0].node.test_send_payment_internal(&route, mismatch_payment_hash,
11429                         RecipientOnionFields::spontaneous_empty(), Some(test_preimage), PaymentId(mismatch_payment_hash.0), None, session_privs).unwrap();
11430                 check_added_monitors!(nodes[0], 1);
11431
11432                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
11433                 assert_eq!(updates.update_add_htlcs.len(), 1);
11434                 assert!(updates.update_fulfill_htlcs.is_empty());
11435                 assert!(updates.update_fail_htlcs.is_empty());
11436                 assert!(updates.update_fail_malformed_htlcs.is_empty());
11437                 assert!(updates.update_fee.is_none());
11438                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
11439
11440                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "Payment preimage didn't match payment hash", 1);
11441         }
11442
11443         #[test]
11444         fn test_keysend_msg_with_secret_err() {
11445                 // Test that we error as expected if we receive a keysend payment that includes a payment
11446                 // secret when we don't support MPP keysend.
11447                 let mut reject_mpp_keysend_cfg = test_default_channel_config();
11448                 reject_mpp_keysend_cfg.accept_mpp_keysend = false;
11449                 let chanmon_cfgs = create_chanmon_cfgs(2);
11450                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
11451                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(reject_mpp_keysend_cfg)]);
11452                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
11453
11454                 let payer_pubkey = nodes[0].node.get_our_node_id();
11455                 let payee_pubkey = nodes[1].node.get_our_node_id();
11456
11457                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
11458                 let route_params = RouteParameters::from_payment_params_and_value(
11459                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
11460                 let network_graph = nodes[0].network_graph.clone();
11461                 let first_hops = nodes[0].node.list_usable_channels();
11462                 let scorer = test_utils::TestScorer::new();
11463                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
11464                 let route = find_route(
11465                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
11466                         nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
11467                 ).unwrap();
11468
11469                 let test_preimage = PaymentPreimage([42; 32]);
11470                 let test_secret = PaymentSecret([43; 32]);
11471                 let payment_hash = PaymentHash(Sha256::hash(&test_preimage.0).into_inner());
11472                 let session_privs = nodes[0].node.test_add_new_pending_payment(payment_hash,
11473                         RecipientOnionFields::secret_only(test_secret), PaymentId(payment_hash.0), &route).unwrap();
11474                 nodes[0].node.test_send_payment_internal(&route, payment_hash,
11475                         RecipientOnionFields::secret_only(test_secret), Some(test_preimage),
11476                         PaymentId(payment_hash.0), None, session_privs).unwrap();
11477                 check_added_monitors!(nodes[0], 1);
11478
11479                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
11480                 assert_eq!(updates.update_add_htlcs.len(), 1);
11481                 assert!(updates.update_fulfill_htlcs.is_empty());
11482                 assert!(updates.update_fail_htlcs.is_empty());
11483                 assert!(updates.update_fail_malformed_htlcs.is_empty());
11484                 assert!(updates.update_fee.is_none());
11485                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
11486
11487                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "We don't support MPP keysend payments", 1);
11488         }
11489
11490         #[test]
11491         fn test_multi_hop_missing_secret() {
11492                 let chanmon_cfgs = create_chanmon_cfgs(4);
11493                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
11494                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
11495                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
11496
11497                 let chan_1_id = create_announced_chan_between_nodes(&nodes, 0, 1).0.contents.short_channel_id;
11498                 let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2).0.contents.short_channel_id;
11499                 let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3).0.contents.short_channel_id;
11500                 let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3).0.contents.short_channel_id;
11501
11502                 // Marshall an MPP route.
11503                 let (mut route, payment_hash, _, _) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
11504                 let path = route.paths[0].clone();
11505                 route.paths.push(path);
11506                 route.paths[0].hops[0].pubkey = nodes[1].node.get_our_node_id();
11507                 route.paths[0].hops[0].short_channel_id = chan_1_id;
11508                 route.paths[0].hops[1].short_channel_id = chan_3_id;
11509                 route.paths[1].hops[0].pubkey = nodes[2].node.get_our_node_id();
11510                 route.paths[1].hops[0].short_channel_id = chan_2_id;
11511                 route.paths[1].hops[1].short_channel_id = chan_4_id;
11512
11513                 match nodes[0].node.send_payment_with_route(&route, payment_hash,
11514                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_hash.0))
11515                 .unwrap_err() {
11516                         PaymentSendFailure::ParameterError(APIError::APIMisuseError { ref err }) => {
11517                                 assert!(regex::Regex::new(r"Payment secret is required for multi-path payments").unwrap().is_match(err))
11518                         },
11519                         _ => panic!("unexpected error")
11520                 }
11521         }
11522
11523         #[test]
11524         fn test_drop_disconnected_peers_when_removing_channels() {
11525                 let chanmon_cfgs = create_chanmon_cfgs(2);
11526                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
11527                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
11528                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
11529
11530                 let chan = create_announced_chan_between_nodes(&nodes, 0, 1);
11531
11532                 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
11533                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
11534
11535                 nodes[0].node.force_close_broadcasting_latest_txn(&chan.2, &nodes[1].node.get_our_node_id()).unwrap();
11536                 check_closed_broadcast!(nodes[0], true);
11537                 check_added_monitors!(nodes[0], 1);
11538                 check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed, [nodes[1].node.get_our_node_id()], 100000);
11539
11540                 {
11541                         // Assert that nodes[1] is awaiting removal for nodes[0] once nodes[1] has been
11542                         // disconnected and the channel between has been force closed.
11543                         let nodes_0_per_peer_state = nodes[0].node.per_peer_state.read().unwrap();
11544                         // Assert that nodes[1] isn't removed before `timer_tick_occurred` has been executed.
11545                         assert_eq!(nodes_0_per_peer_state.len(), 1);
11546                         assert!(nodes_0_per_peer_state.get(&nodes[1].node.get_our_node_id()).is_some());
11547                 }
11548
11549                 nodes[0].node.timer_tick_occurred();
11550
11551                 {
11552                         // Assert that nodes[1] has now been removed.
11553                         assert_eq!(nodes[0].node.per_peer_state.read().unwrap().len(), 0);
11554                 }
11555         }
11556
11557         #[test]
11558         fn bad_inbound_payment_hash() {
11559                 // Add coverage for checking that a user-provided payment hash matches the payment secret.
11560                 let chanmon_cfgs = create_chanmon_cfgs(2);
11561                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
11562                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
11563                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
11564
11565                 let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[0]);
11566                 let payment_data = msgs::FinalOnionHopData {
11567                         payment_secret,
11568                         total_msat: 100_000,
11569                 };
11570
11571                 // Ensure that if the payment hash given to `inbound_payment::verify` differs from the original,
11572                 // payment verification fails as expected.
11573                 let mut bad_payment_hash = payment_hash.clone();
11574                 bad_payment_hash.0[0] += 1;
11575                 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) {
11576                         Ok(_) => panic!("Unexpected ok"),
11577                         Err(()) => {
11578                                 nodes[0].logger.assert_log_contains("lightning::ln::inbound_payment", "Failing HTLC with user-generated payment_hash", 1);
11579                         }
11580                 }
11581
11582                 // Check that using the original payment hash succeeds.
11583                 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());
11584         }
11585
11586         #[test]
11587         fn test_id_to_peer_coverage() {
11588                 // Test that the `ChannelManager:id_to_peer` contains channels which have been assigned
11589                 // a `channel_id` (i.e. have had the funding tx created), and that they are removed once
11590                 // the channel is successfully closed.
11591                 let chanmon_cfgs = create_chanmon_cfgs(2);
11592                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
11593                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
11594                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
11595
11596                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1_000_000, 500_000_000, 42, None, None).unwrap();
11597                 let open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
11598                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel);
11599                 let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
11600                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
11601
11602                 let (temporary_channel_id, tx, _funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 1_000_000, 42);
11603                 let channel_id = ChannelId::from_bytes(tx.txid().into_inner());
11604                 {
11605                         // Ensure that the `id_to_peer` map is empty until either party has received the
11606                         // funding transaction, and have the real `channel_id`.
11607                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
11608                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
11609                 }
11610
11611                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
11612                 {
11613                         // Assert that `nodes[0]`'s `id_to_peer` map is populated with the channel as soon as
11614                         // as it has the funding transaction.
11615                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
11616                         assert_eq!(nodes_0_lock.len(), 1);
11617                         assert!(nodes_0_lock.contains_key(&channel_id));
11618                 }
11619
11620                 assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
11621
11622                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
11623
11624                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
11625                 {
11626                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
11627                         assert_eq!(nodes_0_lock.len(), 1);
11628                         assert!(nodes_0_lock.contains_key(&channel_id));
11629                 }
11630                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
11631
11632                 {
11633                         // Assert that `nodes[1]`'s `id_to_peer` map is populated with the channel as soon as
11634                         // as it has the funding transaction.
11635                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
11636                         assert_eq!(nodes_1_lock.len(), 1);
11637                         assert!(nodes_1_lock.contains_key(&channel_id));
11638                 }
11639                 check_added_monitors!(nodes[1], 1);
11640                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
11641                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
11642                 check_added_monitors!(nodes[0], 1);
11643                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
11644                 let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
11645                 let (announcement, nodes_0_update, nodes_1_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
11646                 update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &nodes_0_update, &nodes_1_update);
11647
11648                 nodes[0].node.close_channel(&channel_id, &nodes[1].node.get_our_node_id()).unwrap();
11649                 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()));
11650                 let nodes_1_shutdown = get_event_msg!(nodes[1], MessageSendEvent::SendShutdown, nodes[0].node.get_our_node_id());
11651                 nodes[0].node.handle_shutdown(&nodes[1].node.get_our_node_id(), &nodes_1_shutdown);
11652
11653                 let closing_signed_node_0 = get_event_msg!(nodes[0], MessageSendEvent::SendClosingSigned, nodes[1].node.get_our_node_id());
11654                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0);
11655                 {
11656                         // Assert that the channel is kept in the `id_to_peer` map for both nodes until the
11657                         // channel can be fully closed by both parties (i.e. no outstanding htlcs exists, the
11658                         // fee for the closing transaction has been negotiated and the parties has the other
11659                         // party's signature for the fee negotiated closing transaction.)
11660                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
11661                         assert_eq!(nodes_0_lock.len(), 1);
11662                         assert!(nodes_0_lock.contains_key(&channel_id));
11663                 }
11664
11665                 {
11666                         // At this stage, `nodes[1]` has proposed a fee for the closing transaction in the
11667                         // `handle_closing_signed` call above. As `nodes[1]` has not yet received the signature
11668                         // from `nodes[0]` for the closing transaction with the proposed fee, the channel is
11669                         // kept in the `nodes[1]`'s `id_to_peer` map.
11670                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
11671                         assert_eq!(nodes_1_lock.len(), 1);
11672                         assert!(nodes_1_lock.contains_key(&channel_id));
11673                 }
11674
11675                 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()));
11676                 {
11677                         // `nodes[0]` accepts `nodes[1]`'s proposed fee for the closing transaction, and
11678                         // therefore has all it needs to fully close the channel (both signatures for the
11679                         // closing transaction).
11680                         // Assert that the channel is removed from `nodes[0]`'s `id_to_peer` map as it can be
11681                         // fully closed by `nodes[0]`.
11682                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
11683
11684                         // Assert that the channel is still in `nodes[1]`'s  `id_to_peer` map, as `nodes[1]`
11685                         // doesn't have `nodes[0]`'s signature for the closing transaction yet.
11686                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
11687                         assert_eq!(nodes_1_lock.len(), 1);
11688                         assert!(nodes_1_lock.contains_key(&channel_id));
11689                 }
11690
11691                 let (_nodes_0_update, closing_signed_node_0) = get_closing_signed_broadcast!(nodes[0].node, nodes[1].node.get_our_node_id());
11692
11693                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0.unwrap());
11694                 {
11695                         // Assert that the channel has now been removed from both parties `id_to_peer` map once
11696                         // they both have everything required to fully close the channel.
11697                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
11698                 }
11699                 let (_nodes_1_update, _none) = get_closing_signed_broadcast!(nodes[1].node, nodes[0].node.get_our_node_id());
11700
11701                 check_closed_event!(nodes[0], 1, ClosureReason::CooperativeClosure, [nodes[1].node.get_our_node_id()], 1000000);
11702                 check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure, [nodes[0].node.get_our_node_id()], 1000000);
11703         }
11704
11705         fn check_not_connected_to_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
11706                 let expected_message = format!("Not connected to node: {}", expected_public_key);
11707                 check_api_error_message(expected_message, res_err)
11708         }
11709
11710         fn check_unkown_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
11711                 let expected_message = format!("Can't find a peer matching the passed counterparty node_id {}", expected_public_key);
11712                 check_api_error_message(expected_message, res_err)
11713         }
11714
11715         fn check_channel_unavailable_error<T>(res_err: Result<T, APIError>, expected_channel_id: ChannelId, peer_node_id: PublicKey) {
11716                 let expected_message = format!("Channel with id {} not found for the passed counterparty node_id {}", expected_channel_id, peer_node_id);
11717                 check_api_error_message(expected_message, res_err)
11718         }
11719
11720         fn check_api_misuse_error<T>(res_err: Result<T, APIError>) {
11721                 let expected_message = "No such channel awaiting to be accepted.".to_string();
11722                 check_api_error_message(expected_message, res_err)
11723         }
11724
11725         fn check_api_error_message<T>(expected_err_message: String, res_err: Result<T, APIError>) {
11726                 match res_err {
11727                         Err(APIError::APIMisuseError { err }) => {
11728                                 assert_eq!(err, expected_err_message);
11729                         },
11730                         Err(APIError::ChannelUnavailable { err }) => {
11731                                 assert_eq!(err, expected_err_message);
11732                         },
11733                         Ok(_) => panic!("Unexpected Ok"),
11734                         Err(_) => panic!("Unexpected Error"),
11735                 }
11736         }
11737
11738         #[test]
11739         fn test_api_calls_with_unkown_counterparty_node() {
11740                 // Tests that our API functions that expects a `counterparty_node_id` as input, behaves as
11741                 // expected if the `counterparty_node_id` is an unkown peer in the
11742                 // `ChannelManager::per_peer_state` map.
11743                 let chanmon_cfg = create_chanmon_cfgs(2);
11744                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
11745                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[None, None]);
11746                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
11747
11748                 // Dummy values
11749                 let channel_id = ChannelId::from_bytes([4; 32]);
11750                 let unkown_public_key = PublicKey::from_secret_key(&Secp256k1::signing_only(), &SecretKey::from_slice(&[42; 32]).unwrap());
11751                 let intercept_id = InterceptId([0; 32]);
11752
11753                 // Test the API functions.
11754                 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);
11755
11756                 check_unkown_peer_error(nodes[0].node.accept_inbound_channel(&channel_id, &unkown_public_key, 42), unkown_public_key);
11757
11758                 check_unkown_peer_error(nodes[0].node.close_channel(&channel_id, &unkown_public_key), unkown_public_key);
11759
11760                 check_unkown_peer_error(nodes[0].node.force_close_broadcasting_latest_txn(&channel_id, &unkown_public_key), unkown_public_key);
11761
11762                 check_unkown_peer_error(nodes[0].node.force_close_without_broadcasting_txn(&channel_id, &unkown_public_key), unkown_public_key);
11763
11764                 check_unkown_peer_error(nodes[0].node.forward_intercepted_htlc(intercept_id, &channel_id, unkown_public_key, 1_000_000), unkown_public_key);
11765
11766                 check_unkown_peer_error(nodes[0].node.update_channel_config(&unkown_public_key, &[channel_id], &ChannelConfig::default()), unkown_public_key);
11767         }
11768
11769         #[test]
11770         fn test_api_calls_with_unavailable_channel() {
11771                 // Tests that our API functions that expects a `counterparty_node_id` and a `channel_id`
11772                 // as input, behaves as expected if the `counterparty_node_id` is a known peer in the
11773                 // `ChannelManager::per_peer_state` map, but the peer state doesn't contain a channel with
11774                 // the given `channel_id`.
11775                 let chanmon_cfg = create_chanmon_cfgs(2);
11776                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
11777                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[None, None]);
11778                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
11779
11780                 let counterparty_node_id = nodes[1].node.get_our_node_id();
11781
11782                 // Dummy values
11783                 let channel_id = ChannelId::from_bytes([4; 32]);
11784
11785                 // Test the API functions.
11786                 check_api_misuse_error(nodes[0].node.accept_inbound_channel(&channel_id, &counterparty_node_id, 42));
11787
11788                 check_channel_unavailable_error(nodes[0].node.close_channel(&channel_id, &counterparty_node_id), channel_id, counterparty_node_id);
11789
11790                 check_channel_unavailable_error(nodes[0].node.force_close_broadcasting_latest_txn(&channel_id, &counterparty_node_id), channel_id, counterparty_node_id);
11791
11792                 check_channel_unavailable_error(nodes[0].node.force_close_without_broadcasting_txn(&channel_id, &counterparty_node_id), channel_id, counterparty_node_id);
11793
11794                 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);
11795
11796                 check_channel_unavailable_error(nodes[0].node.update_channel_config(&counterparty_node_id, &[channel_id], &ChannelConfig::default()), channel_id, counterparty_node_id);
11797         }
11798
11799         #[test]
11800         fn test_connection_limiting() {
11801                 // Test that we limit un-channel'd peers and un-funded channels properly.
11802                 let chanmon_cfgs = create_chanmon_cfgs(2);
11803                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
11804                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
11805                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
11806
11807                 // Note that create_network connects the nodes together for us
11808
11809                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None, None).unwrap();
11810                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
11811
11812                 let mut funding_tx = None;
11813                 for idx in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
11814                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
11815                         let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
11816
11817                         if idx == 0 {
11818                                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
11819                                 let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100_000, 42);
11820                                 funding_tx = Some(tx.clone());
11821                                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx).unwrap();
11822                                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
11823
11824                                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
11825                                 check_added_monitors!(nodes[1], 1);
11826                                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
11827
11828                                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
11829
11830                                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
11831                                 check_added_monitors!(nodes[0], 1);
11832                                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
11833                         }
11834                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
11835                 }
11836
11837                 // A MAX_UNFUNDED_CHANS_PER_PEER + 1 channel will be summarily rejected
11838                 open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
11839                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
11840                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
11841                         open_channel_msg.temporary_channel_id);
11842
11843                 // Further, because all of our channels with nodes[0] are inbound, and none of them funded,
11844                 // it doesn't count as a "protected" peer, i.e. it counts towards the MAX_NO_CHANNEL_PEERS
11845                 // limit.
11846                 let mut peer_pks = Vec::with_capacity(super::MAX_NO_CHANNEL_PEERS);
11847                 for _ in 1..super::MAX_NO_CHANNEL_PEERS {
11848                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
11849                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
11850                         peer_pks.push(random_pk);
11851                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
11852                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
11853                         }, true).unwrap();
11854                 }
11855                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
11856                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
11857                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
11858                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
11859                 }, true).unwrap_err();
11860
11861                 // Also importantly, because nodes[0] isn't "protected", we will refuse a reconnection from
11862                 // them if we have too many un-channel'd peers.
11863                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
11864                 let chan_closed_events = nodes[1].node.get_and_clear_pending_events();
11865                 assert_eq!(chan_closed_events.len(), super::MAX_UNFUNDED_CHANS_PER_PEER - 1);
11866                 for ev in chan_closed_events {
11867                         if let Event::ChannelClosed { .. } = ev { } else { panic!(); }
11868                 }
11869                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
11870                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
11871                 }, true).unwrap();
11872                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
11873                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
11874                 }, true).unwrap_err();
11875
11876                 // but of course if the connection is outbound its allowed...
11877                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
11878                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
11879                 }, false).unwrap();
11880                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
11881
11882                 // Now nodes[0] is disconnected but still has a pending, un-funded channel lying around.
11883                 // Even though we accept one more connection from new peers, we won't actually let them
11884                 // open channels.
11885                 assert!(peer_pks.len() > super::MAX_UNFUNDED_CHANNEL_PEERS - 1);
11886                 for i in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
11887                         nodes[1].node.handle_open_channel(&peer_pks[i], &open_channel_msg);
11888                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, peer_pks[i]);
11889                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
11890                 }
11891                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
11892                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
11893                         open_channel_msg.temporary_channel_id);
11894
11895                 // Of course, however, outbound channels are always allowed
11896                 nodes[1].node.create_channel(last_random_pk, 100_000, 0, 42, None, None).unwrap();
11897                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, last_random_pk);
11898
11899                 // If we fund the first channel, nodes[0] has a live on-chain channel with us, it is now
11900                 // "protected" and can connect again.
11901                 mine_transaction(&nodes[1], funding_tx.as_ref().unwrap());
11902                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
11903                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
11904                 }, true).unwrap();
11905                 get_event_msg!(nodes[1], MessageSendEvent::SendChannelReestablish, nodes[0].node.get_our_node_id());
11906
11907                 // Further, because the first channel was funded, we can open another channel with
11908                 // last_random_pk.
11909                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
11910                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
11911         }
11912
11913         #[test]
11914         fn test_outbound_chans_unlimited() {
11915                 // Test that we never refuse an outbound channel even if a peer is unfuned-channel-limited
11916                 let chanmon_cfgs = create_chanmon_cfgs(2);
11917                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
11918                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
11919                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
11920
11921                 // Note that create_network connects the nodes together for us
11922
11923                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None, None).unwrap();
11924                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
11925
11926                 for _ in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
11927                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
11928                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
11929                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
11930                 }
11931
11932                 // Once we have MAX_UNFUNDED_CHANS_PER_PEER unfunded channels, new inbound channels will be
11933                 // rejected.
11934                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
11935                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
11936                         open_channel_msg.temporary_channel_id);
11937
11938                 // but we can still open an outbound channel.
11939                 nodes[1].node.create_channel(nodes[0].node.get_our_node_id(), 100_000, 0, 42, None, None).unwrap();
11940                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
11941
11942                 // but even with such an outbound channel, additional inbound channels will still fail.
11943                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
11944                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
11945                         open_channel_msg.temporary_channel_id);
11946         }
11947
11948         #[test]
11949         fn test_0conf_limiting() {
11950                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
11951                 // flag set and (sometimes) accept channels as 0conf.
11952                 let chanmon_cfgs = create_chanmon_cfgs(2);
11953                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
11954                 let mut settings = test_default_channel_config();
11955                 settings.manually_accept_inbound_channels = true;
11956                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(settings)]);
11957                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
11958
11959                 // Note that create_network connects the nodes together for us
11960
11961                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None, None).unwrap();
11962                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
11963
11964                 // First, get us up to MAX_UNFUNDED_CHANNEL_PEERS so we can test at the edge
11965                 for _ in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
11966                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
11967                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
11968                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
11969                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
11970                         }, true).unwrap();
11971
11972                         nodes[1].node.handle_open_channel(&random_pk, &open_channel_msg);
11973                         let events = nodes[1].node.get_and_clear_pending_events();
11974                         match events[0] {
11975                                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
11976                                         nodes[1].node.accept_inbound_channel(&temporary_channel_id, &random_pk, 23).unwrap();
11977                                 }
11978                                 _ => panic!("Unexpected event"),
11979                         }
11980                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, random_pk);
11981                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
11982                 }
11983
11984                 // If we try to accept a channel from another peer non-0conf it will fail.
11985                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
11986                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
11987                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
11988                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
11989                 }, true).unwrap();
11990                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
11991                 let events = nodes[1].node.get_and_clear_pending_events();
11992                 match events[0] {
11993                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
11994                                 match nodes[1].node.accept_inbound_channel(&temporary_channel_id, &last_random_pk, 23) {
11995                                         Err(APIError::APIMisuseError { err }) =>
11996                                                 assert_eq!(err, "Too many peers with unfunded channels, refusing to accept new ones"),
11997                                         _ => panic!(),
11998                                 }
11999                         }
12000                         _ => panic!("Unexpected event"),
12001                 }
12002                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
12003                         open_channel_msg.temporary_channel_id);
12004
12005                 // ...however if we accept the same channel 0conf it should work just fine.
12006                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
12007                 let events = nodes[1].node.get_and_clear_pending_events();
12008                 match events[0] {
12009                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
12010                                 nodes[1].node.accept_inbound_channel_from_trusted_peer_0conf(&temporary_channel_id, &last_random_pk, 23).unwrap();
12011                         }
12012                         _ => panic!("Unexpected event"),
12013                 }
12014                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
12015         }
12016
12017         #[test]
12018         fn reject_excessively_underpaying_htlcs() {
12019                 let chanmon_cfg = create_chanmon_cfgs(1);
12020                 let node_cfg = create_node_cfgs(1, &chanmon_cfg);
12021                 let node_chanmgr = create_node_chanmgrs(1, &node_cfg, &[None]);
12022                 let node = create_network(1, &node_cfg, &node_chanmgr);
12023                 let sender_intended_amt_msat = 100;
12024                 let extra_fee_msat = 10;
12025                 let hop_data = msgs::InboundOnionPayload::Receive {
12026                         amt_msat: 100,
12027                         outgoing_cltv_value: 42,
12028                         payment_metadata: None,
12029                         keysend_preimage: None,
12030                         payment_data: Some(msgs::FinalOnionHopData {
12031                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
12032                         }),
12033                         custom_tlvs: Vec::new(),
12034                 };
12035                 // Check that if the amount we received + the penultimate hop extra fee is less than the sender
12036                 // intended amount, we fail the payment.
12037                 let current_height: u32 = node[0].node.best_block.read().unwrap().height();
12038                 if let Err(crate::ln::channelmanager::InboundOnionErr { err_code, .. }) =
12039                         create_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
12040                                 sender_intended_amt_msat - extra_fee_msat - 1, 42, None, true, Some(extra_fee_msat),
12041                                 current_height, node[0].node.default_configuration.accept_mpp_keysend)
12042                 {
12043                         assert_eq!(err_code, 19);
12044                 } else { panic!(); }
12045
12046                 // If amt_received + extra_fee is equal to the sender intended amount, we're fine.
12047                 let hop_data = msgs::InboundOnionPayload::Receive { // This is the same payload as above, InboundOnionPayload doesn't implement Clone
12048                         amt_msat: 100,
12049                         outgoing_cltv_value: 42,
12050                         payment_metadata: None,
12051                         keysend_preimage: None,
12052                         payment_data: Some(msgs::FinalOnionHopData {
12053                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
12054                         }),
12055                         custom_tlvs: Vec::new(),
12056                 };
12057                 let current_height: u32 = node[0].node.best_block.read().unwrap().height();
12058                 assert!(create_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
12059                         sender_intended_amt_msat - extra_fee_msat, 42, None, true, Some(extra_fee_msat),
12060                         current_height, node[0].node.default_configuration.accept_mpp_keysend).is_ok());
12061         }
12062
12063         #[test]
12064         fn test_final_incorrect_cltv(){
12065                 let chanmon_cfg = create_chanmon_cfgs(1);
12066                 let node_cfg = create_node_cfgs(1, &chanmon_cfg);
12067                 let node_chanmgr = create_node_chanmgrs(1, &node_cfg, &[None]);
12068                 let node = create_network(1, &node_cfg, &node_chanmgr);
12069
12070                 let current_height: u32 = node[0].node.best_block.read().unwrap().height();
12071                 let result = create_recv_pending_htlc_info(msgs::InboundOnionPayload::Receive {
12072                         amt_msat: 100,
12073                         outgoing_cltv_value: 22,
12074                         payment_metadata: None,
12075                         keysend_preimage: None,
12076                         payment_data: Some(msgs::FinalOnionHopData {
12077                                 payment_secret: PaymentSecret([0; 32]), total_msat: 100,
12078                         }),
12079                         custom_tlvs: Vec::new(),
12080                 }, [0; 32], PaymentHash([0; 32]), 100, 23, None, true, None, current_height,
12081                         node[0].node.default_configuration.accept_mpp_keysend);
12082
12083                 // Should not return an error as this condition:
12084                 // https://github.com/lightning/bolts/blob/4dcc377209509b13cf89a4b91fde7d478f5b46d8/04-onion-routing.md?plain=1#L334
12085                 // is not satisfied.
12086                 assert!(result.is_ok());
12087         }
12088
12089         #[test]
12090         fn test_inbound_anchors_manual_acceptance() {
12091                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
12092                 // flag set and (sometimes) accept channels as 0conf.
12093                 let mut anchors_cfg = test_default_channel_config();
12094                 anchors_cfg.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
12095
12096                 let mut anchors_manual_accept_cfg = anchors_cfg.clone();
12097                 anchors_manual_accept_cfg.manually_accept_inbound_channels = true;
12098
12099                 let chanmon_cfgs = create_chanmon_cfgs(3);
12100                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
12101                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs,
12102                         &[Some(anchors_cfg.clone()), Some(anchors_cfg.clone()), Some(anchors_manual_accept_cfg.clone())]);
12103                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
12104
12105                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None, None).unwrap();
12106                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
12107
12108                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
12109                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
12110                 let msg_events = nodes[1].node.get_and_clear_pending_msg_events();
12111                 match &msg_events[0] {
12112                         MessageSendEvent::HandleError { node_id, action } => {
12113                                 assert_eq!(*node_id, nodes[0].node.get_our_node_id());
12114                                 match action {
12115                                         ErrorAction::SendErrorMessage { msg } =>
12116                                                 assert_eq!(msg.data, "No channels with anchor outputs accepted".to_owned()),
12117                                         _ => panic!("Unexpected error action"),
12118                                 }
12119                         }
12120                         _ => panic!("Unexpected event"),
12121                 }
12122
12123                 nodes[2].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
12124                 let events = nodes[2].node.get_and_clear_pending_events();
12125                 match events[0] {
12126                         Event::OpenChannelRequest { temporary_channel_id, .. } =>
12127                                 nodes[2].node.accept_inbound_channel(&temporary_channel_id, &nodes[0].node.get_our_node_id(), 23).unwrap(),
12128                         _ => panic!("Unexpected event"),
12129                 }
12130                 get_event_msg!(nodes[2], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
12131         }
12132
12133         #[test]
12134         fn test_anchors_zero_fee_htlc_tx_fallback() {
12135                 // Tests that if both nodes support anchors, but the remote node does not want to accept
12136                 // anchor channels at the moment, an error it sent to the local node such that it can retry
12137                 // the channel without the anchors feature.
12138                 let chanmon_cfgs = create_chanmon_cfgs(2);
12139                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
12140                 let mut anchors_config = test_default_channel_config();
12141                 anchors_config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
12142                 anchors_config.manually_accept_inbound_channels = true;
12143                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(anchors_config.clone()), Some(anchors_config.clone())]);
12144                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
12145
12146                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 0, None, None).unwrap();
12147                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
12148                 assert!(open_channel_msg.channel_type.as_ref().unwrap().supports_anchors_zero_fee_htlc_tx());
12149
12150                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
12151                 let events = nodes[1].node.get_and_clear_pending_events();
12152                 match events[0] {
12153                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
12154                                 nodes[1].node.force_close_broadcasting_latest_txn(&temporary_channel_id, &nodes[0].node.get_our_node_id()).unwrap();
12155                         }
12156                         _ => panic!("Unexpected event"),
12157                 }
12158
12159                 let error_msg = get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id());
12160                 nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &error_msg);
12161
12162                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
12163                 assert!(!open_channel_msg.channel_type.unwrap().supports_anchors_zero_fee_htlc_tx());
12164
12165                 // Since nodes[1] should not have accepted the channel, it should
12166                 // not have generated any events.
12167                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
12168         }
12169
12170         #[test]
12171         fn test_update_channel_config() {
12172                 let chanmon_cfg = create_chanmon_cfgs(2);
12173                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
12174                 let mut user_config = test_default_channel_config();
12175                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config), Some(user_config)]);
12176                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
12177                 let _ = create_announced_chan_between_nodes(&nodes, 0, 1);
12178                 let channel = &nodes[0].node.list_channels()[0];
12179
12180                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
12181                 let events = nodes[0].node.get_and_clear_pending_msg_events();
12182                 assert_eq!(events.len(), 0);
12183
12184                 user_config.channel_config.forwarding_fee_base_msat += 10;
12185                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
12186                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_base_msat, user_config.channel_config.forwarding_fee_base_msat);
12187                 let events = nodes[0].node.get_and_clear_pending_msg_events();
12188                 assert_eq!(events.len(), 1);
12189                 match &events[0] {
12190                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
12191                         _ => panic!("expected BroadcastChannelUpdate event"),
12192                 }
12193
12194                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate::default()).unwrap();
12195                 let events = nodes[0].node.get_and_clear_pending_msg_events();
12196                 assert_eq!(events.len(), 0);
12197
12198                 let new_cltv_expiry_delta = user_config.channel_config.cltv_expiry_delta + 6;
12199                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
12200                         cltv_expiry_delta: Some(new_cltv_expiry_delta),
12201                         ..Default::default()
12202                 }).unwrap();
12203                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
12204                 let events = nodes[0].node.get_and_clear_pending_msg_events();
12205                 assert_eq!(events.len(), 1);
12206                 match &events[0] {
12207                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
12208                         _ => panic!("expected BroadcastChannelUpdate event"),
12209                 }
12210
12211                 let new_fee = user_config.channel_config.forwarding_fee_proportional_millionths + 100;
12212                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
12213                         forwarding_fee_proportional_millionths: Some(new_fee),
12214                         ..Default::default()
12215                 }).unwrap();
12216                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
12217                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, new_fee);
12218                 let events = nodes[0].node.get_and_clear_pending_msg_events();
12219                 assert_eq!(events.len(), 1);
12220                 match &events[0] {
12221                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
12222                         _ => panic!("expected BroadcastChannelUpdate event"),
12223                 }
12224
12225                 // If we provide a channel_id not associated with the peer, we should get an error and no updates
12226                 // should be applied to ensure update atomicity as specified in the API docs.
12227                 let bad_channel_id = ChannelId::v1_from_funding_txid(&[10; 32], 10);
12228                 let current_fee = nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths;
12229                 let new_fee = current_fee + 100;
12230                 assert!(
12231                         matches!(
12232                                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id, bad_channel_id], &ChannelConfigUpdate {
12233                                         forwarding_fee_proportional_millionths: Some(new_fee),
12234                                         ..Default::default()
12235                                 }),
12236                                 Err(APIError::ChannelUnavailable { err: _ }),
12237                         )
12238                 );
12239                 // Check that the fee hasn't changed for the channel that exists.
12240                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, current_fee);
12241                 let events = nodes[0].node.get_and_clear_pending_msg_events();
12242                 assert_eq!(events.len(), 0);
12243         }
12244
12245         #[test]
12246         fn test_payment_display() {
12247                 let payment_id = PaymentId([42; 32]);
12248                 assert_eq!(format!("{}", &payment_id), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
12249                 let payment_hash = PaymentHash([42; 32]);
12250                 assert_eq!(format!("{}", &payment_hash), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
12251                 let payment_preimage = PaymentPreimage([42; 32]);
12252                 assert_eq!(format!("{}", &payment_preimage), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
12253         }
12254
12255         #[test]
12256         fn test_trigger_lnd_force_close() {
12257                 let chanmon_cfg = create_chanmon_cfgs(2);
12258                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
12259                 let user_config = test_default_channel_config();
12260                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config), Some(user_config)]);
12261                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
12262
12263                 // Open a channel, immediately disconnect each other, and broadcast Alice's latest state.
12264                 let (_, _, chan_id, funding_tx) = create_announced_chan_between_nodes(&nodes, 0, 1);
12265                 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
12266                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
12267                 nodes[0].node.force_close_broadcasting_latest_txn(&chan_id, &nodes[1].node.get_our_node_id()).unwrap();
12268                 check_closed_broadcast(&nodes[0], 1, true);
12269                 check_added_monitors(&nodes[0], 1);
12270                 check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed, [nodes[1].node.get_our_node_id()], 100000);
12271                 {
12272                         let txn = nodes[0].tx_broadcaster.txn_broadcast();
12273                         assert_eq!(txn.len(), 1);
12274                         check_spends!(txn[0], funding_tx);
12275                 }
12276
12277                 // Since they're disconnected, Bob won't receive Alice's `Error` message. Reconnect them
12278                 // such that Bob sends a `ChannelReestablish` to Alice since the channel is still open from
12279                 // their side.
12280                 nodes[0].node.peer_connected(&nodes[1].node.get_our_node_id(), &msgs::Init {
12281                         features: nodes[1].node.init_features(), networks: None, remote_network_address: None
12282                 }, true).unwrap();
12283                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
12284                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
12285                 }, false).unwrap();
12286                 assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
12287                 let channel_reestablish = get_event_msg!(
12288                         nodes[1], MessageSendEvent::SendChannelReestablish, nodes[0].node.get_our_node_id()
12289                 );
12290                 nodes[0].node.handle_channel_reestablish(&nodes[1].node.get_our_node_id(), &channel_reestablish);
12291
12292                 // Alice should respond with an error since the channel isn't known, but a bogus
12293                 // `ChannelReestablish` should be sent first, such that we actually trigger Bob to force
12294                 // close even if it was an lnd node.
12295                 let msg_events = nodes[0].node.get_and_clear_pending_msg_events();
12296                 assert_eq!(msg_events.len(), 2);
12297                 if let MessageSendEvent::SendChannelReestablish { node_id, msg } = &msg_events[0] {
12298                         assert_eq!(*node_id, nodes[1].node.get_our_node_id());
12299                         assert_eq!(msg.next_local_commitment_number, 0);
12300                         assert_eq!(msg.next_remote_commitment_number, 0);
12301                         nodes[1].node.handle_channel_reestablish(&nodes[0].node.get_our_node_id(), &msg);
12302                 } else { panic!() };
12303                 check_closed_broadcast(&nodes[1], 1, true);
12304                 check_added_monitors(&nodes[1], 1);
12305                 let expected_close_reason = ClosureReason::ProcessingError {
12306                         err: "Peer sent an invalid channel_reestablish to force close in a non-standard way".to_string()
12307                 };
12308                 check_closed_event!(nodes[1], 1, expected_close_reason, [nodes[0].node.get_our_node_id()], 100000);
12309                 {
12310                         let txn = nodes[1].tx_broadcaster.txn_broadcast();
12311                         assert_eq!(txn.len(), 1);
12312                         check_spends!(txn[0], funding_tx);
12313                 }
12314         }
12315
12316         #[test]
12317         fn test_peel_payment_onion() {
12318                 use super::*;
12319                 let secp_ctx = Secp256k1::new();
12320
12321                 let bob = crate::sign::KeysManager::new(&[2; 32], 42, 42);
12322                 let bob_pk = PublicKey::from_secret_key(&secp_ctx, &bob.get_node_secret_key());
12323                 let charlie = crate::sign::KeysManager::new(&[3; 32], 42, 42);
12324                 let charlie_pk = PublicKey::from_secret_key(&secp_ctx, &charlie.get_node_secret_key());
12325
12326                 let (session_priv, total_amt_msat, cur_height, recipient_onion, preimage, payment_hash,
12327                         prng_seed, hops, recipient_amount, pay_secret) = payment_onion_args(bob_pk, charlie_pk);
12328
12329                 let path = Path {
12330                         hops: hops,
12331                         blinded_tail: None,
12332                 };
12333
12334                 let (amount_msat, cltv_expiry, onion) = create_payment_onion(
12335                         &secp_ctx, &path, &session_priv, total_amt_msat, recipient_onion, cur_height,
12336                         payment_hash, Some(preimage), prng_seed
12337                 ).unwrap();
12338
12339                 let msg = make_update_add_msg(amount_msat, cltv_expiry, payment_hash, onion);
12340                 let logger = test_utils::TestLogger::with_id("bob".to_string());
12341
12342                 let peeled = peel_payment_onion(&msg, &&bob, &&logger, &secp_ctx, cur_height, true)
12343                         .map_err(|e| e.msg).unwrap();
12344
12345                 let next_onion = match peeled.routing {
12346                         PendingHTLCRouting::Forward { onion_packet, short_channel_id: _ } => {
12347                                 onion_packet
12348                         },
12349                         _ => panic!("expected a forwarded onion"),
12350                 };
12351
12352                 let msg2 = make_update_add_msg(amount_msat, cltv_expiry, payment_hash, next_onion);
12353                 let peeled2 = peel_payment_onion(&msg2, &&charlie, &&logger, &secp_ctx, cur_height, true)
12354                         .map_err(|e| e.msg).unwrap();
12355
12356                 match peeled2.routing {
12357                         PendingHTLCRouting::ReceiveKeysend { payment_preimage, payment_data, incoming_cltv_expiry, .. } => {
12358                                 assert_eq!(payment_preimage, preimage);
12359                                 assert_eq!(peeled2.outgoing_amt_msat, recipient_amount);
12360                                 assert_eq!(incoming_cltv_expiry, peeled2.outgoing_cltv_value);
12361                                 let msgs::FinalOnionHopData{total_msat, payment_secret} = payment_data.unwrap();
12362                                 assert_eq!(total_msat, total_amt_msat);
12363                                 assert_eq!(payment_secret, pay_secret);
12364                         },
12365                         _ => panic!("expected a received keysend"),
12366                 };
12367         }
12368
12369         fn make_update_add_msg(
12370                 amount_msat: u64, cltv_expiry: u32, payment_hash: PaymentHash,
12371                 onion_routing_packet: msgs::OnionPacket
12372         ) -> msgs::UpdateAddHTLC {
12373                 msgs::UpdateAddHTLC {
12374                         channel_id: ChannelId::from_bytes([0; 32]),
12375                         htlc_id: 0,
12376                         amount_msat,
12377                         cltv_expiry,
12378                         payment_hash,
12379                         onion_routing_packet,
12380                         skimmed_fee_msat: None,
12381                 }
12382         }
12383
12384         fn payment_onion_args(hop_pk: PublicKey, recipient_pk: PublicKey) -> (
12385                 SecretKey, u64, u32, RecipientOnionFields, PaymentPreimage, PaymentHash, [u8; 32],
12386                 Vec<RouteHop>, u64, PaymentSecret,
12387         ) {
12388                 let session_priv_bytes = [42; 32];
12389                 let session_priv = SecretKey::from_slice(&session_priv_bytes).unwrap();
12390                 let total_amt_msat = 1000;
12391                 let cur_height = 1000;
12392                 let pay_secret = PaymentSecret([99; 32]);
12393                 let recipient_onion = RecipientOnionFields::secret_only(pay_secret);
12394                 let preimage_bytes = [43; 32];
12395                 let preimage = PaymentPreimage(preimage_bytes);
12396                 let rhash_bytes = Sha256::hash(&preimage_bytes).into_inner();
12397                 let payment_hash = PaymentHash(rhash_bytes);
12398                 let prng_seed = [44; 32];
12399
12400                 // make a route alice -> bob -> charlie
12401                 let hop_fee = 1;
12402                 let recipient_amount = total_amt_msat - hop_fee;
12403                 let hops = vec![
12404                         RouteHop {
12405                                 pubkey: hop_pk,
12406                                 fee_msat: hop_fee,
12407                                 cltv_expiry_delta: 42,
12408                                 short_channel_id: 1,
12409                                 node_features: NodeFeatures::empty(),
12410                                 channel_features: ChannelFeatures::empty(),
12411                                 maybe_announced_channel: false,
12412                         },
12413                         RouteHop {
12414                                 pubkey: recipient_pk,
12415                                 fee_msat: recipient_amount,
12416                                 cltv_expiry_delta: 42,
12417                                 short_channel_id: 2,
12418                                 node_features: NodeFeatures::empty(),
12419                                 channel_features: ChannelFeatures::empty(),
12420                                 maybe_announced_channel: false,
12421                         }
12422                 ];
12423
12424                 (session_priv, total_amt_msat, cur_height, recipient_onion, preimage, payment_hash,
12425                         prng_seed, hops, recipient_amount, pay_secret)
12426         }
12427
12428         pub fn create_payment_onion<T: bitcoin::secp256k1::Signing>(
12429                 secp_ctx: &Secp256k1<T>, path: &Path, session_priv: &SecretKey, total_msat: u64,
12430                 recipient_onion: RecipientOnionFields, best_block_height: u32, payment_hash: PaymentHash,
12431                 keysend_preimage: Option<PaymentPreimage>, prng_seed: [u8; 32]
12432         ) -> Result<(u64, u32, msgs::OnionPacket), ()> {
12433                 let onion_keys = super::onion_utils::construct_onion_keys(&secp_ctx, &path, &session_priv).map_err(|_| ())?;
12434                 let (onion_payloads, htlc_msat, htlc_cltv) = super::onion_utils::build_onion_payloads(
12435                         &path,
12436                         total_msat,
12437                         recipient_onion,
12438                         best_block_height + 1,
12439                         &keysend_preimage,
12440                 ).map_err(|_| ())?;
12441                 let onion_packet = super::onion_utils::construct_onion_packet(
12442                         onion_payloads, onion_keys, prng_seed, &payment_hash
12443                 )?;
12444                 Ok((htlc_msat, htlc_cltv, onion_packet))
12445         }
12446 }
12447
12448 #[cfg(ldk_bench)]
12449 pub mod bench {
12450         use crate::chain::Listen;
12451         use crate::chain::chainmonitor::{ChainMonitor, Persist};
12452         use crate::sign::{KeysManager, InMemorySigner};
12453         use crate::events::{Event, MessageSendEvent, MessageSendEventsProvider};
12454         use crate::ln::channelmanager::{BestBlock, ChainParameters, ChannelManager, PaymentHash, PaymentPreimage, PaymentId, RecipientOnionFields, Retry};
12455         use crate::ln::functional_test_utils::*;
12456         use crate::ln::msgs::{ChannelMessageHandler, Init};
12457         use crate::routing::gossip::NetworkGraph;
12458         use crate::routing::router::{PaymentParameters, RouteParameters};
12459         use crate::util::test_utils;
12460         use crate::util::config::{UserConfig, MaxDustHTLCExposure};
12461
12462         use bitcoin::hashes::Hash;
12463         use bitcoin::hashes::sha256::Hash as Sha256;
12464         use bitcoin::{Block, BlockHeader, PackedLockTime, Transaction, TxMerkleNode, TxOut};
12465
12466         use crate::sync::{Arc, Mutex, RwLock};
12467
12468         use criterion::Criterion;
12469
12470         type Manager<'a, P> = ChannelManager<
12471                 &'a ChainMonitor<InMemorySigner, &'a test_utils::TestChainSource,
12472                         &'a test_utils::TestBroadcaster, &'a test_utils::TestFeeEstimator,
12473                         &'a test_utils::TestLogger, &'a P>,
12474                 &'a test_utils::TestBroadcaster, &'a KeysManager, &'a KeysManager, &'a KeysManager,
12475                 &'a test_utils::TestFeeEstimator, &'a test_utils::TestRouter<'a>,
12476                 &'a test_utils::TestLogger>;
12477
12478         struct ANodeHolder<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> {
12479                 node: &'node_cfg Manager<'chan_mon_cfg, P>,
12480         }
12481         impl<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> NodeHolder for ANodeHolder<'node_cfg, 'chan_mon_cfg, P> {
12482                 type CM = Manager<'chan_mon_cfg, P>;
12483                 #[inline]
12484                 fn node(&self) -> &Manager<'chan_mon_cfg, P> { self.node }
12485                 #[inline]
12486                 fn chain_monitor(&self) -> Option<&test_utils::TestChainMonitor> { None }
12487         }
12488
12489         pub fn bench_sends(bench: &mut Criterion) {
12490                 bench_two_sends(bench, "bench_sends", test_utils::TestPersister::new(), test_utils::TestPersister::new());
12491         }
12492
12493         pub fn bench_two_sends<P: Persist<InMemorySigner>>(bench: &mut Criterion, bench_name: &str, persister_a: P, persister_b: P) {
12494                 // Do a simple benchmark of sending a payment back and forth between two nodes.
12495                 // Note that this is unrealistic as each payment send will require at least two fsync
12496                 // calls per node.
12497                 let network = bitcoin::Network::Testnet;
12498                 let genesis_block = bitcoin::blockdata::constants::genesis_block(network);
12499
12500                 let tx_broadcaster = test_utils::TestBroadcaster::new(network);
12501                 let fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
12502                 let logger_a = test_utils::TestLogger::with_id("node a".to_owned());
12503                 let scorer = RwLock::new(test_utils::TestScorer::new());
12504                 let router = test_utils::TestRouter::new(Arc::new(NetworkGraph::new(network, &logger_a)), &scorer);
12505
12506                 let mut config: UserConfig = Default::default();
12507                 config.channel_config.max_dust_htlc_exposure = MaxDustHTLCExposure::FeeRateMultiplier(5_000_000 / 253);
12508                 config.channel_handshake_config.minimum_depth = 1;
12509
12510                 let chain_monitor_a = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_a);
12511                 let seed_a = [1u8; 32];
12512                 let keys_manager_a = KeysManager::new(&seed_a, 42, 42);
12513                 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 {
12514                         network,
12515                         best_block: BestBlock::from_network(network),
12516                 }, genesis_block.header.time);
12517                 let node_a_holder = ANodeHolder { node: &node_a };
12518
12519                 let logger_b = test_utils::TestLogger::with_id("node a".to_owned());
12520                 let chain_monitor_b = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_b);
12521                 let seed_b = [2u8; 32];
12522                 let keys_manager_b = KeysManager::new(&seed_b, 42, 42);
12523                 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 {
12524                         network,
12525                         best_block: BestBlock::from_network(network),
12526                 }, genesis_block.header.time);
12527                 let node_b_holder = ANodeHolder { node: &node_b };
12528
12529                 node_a.peer_connected(&node_b.get_our_node_id(), &Init {
12530                         features: node_b.init_features(), networks: None, remote_network_address: None
12531                 }, true).unwrap();
12532                 node_b.peer_connected(&node_a.get_our_node_id(), &Init {
12533                         features: node_a.init_features(), networks: None, remote_network_address: None
12534                 }, false).unwrap();
12535                 node_a.create_channel(node_b.get_our_node_id(), 8_000_000, 100_000_000, 42, None, None).unwrap();
12536                 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()));
12537                 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()));
12538
12539                 let tx;
12540                 if let Event::FundingGenerationReady { temporary_channel_id, output_script, .. } = get_event!(node_a_holder, Event::FundingGenerationReady) {
12541                         tx = Transaction { version: 2, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: vec![TxOut {
12542                                 value: 8_000_000, script_pubkey: output_script,
12543                         }]};
12544                         node_a.funding_transaction_generated(&temporary_channel_id, &node_b.get_our_node_id(), tx.clone()).unwrap();
12545                 } else { panic!(); }
12546
12547                 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()));
12548                 let events_b = node_b.get_and_clear_pending_events();
12549                 assert_eq!(events_b.len(), 1);
12550                 match events_b[0] {
12551                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
12552                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
12553                         },
12554                         _ => panic!("Unexpected event"),
12555                 }
12556
12557                 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()));
12558                 let events_a = node_a.get_and_clear_pending_events();
12559                 assert_eq!(events_a.len(), 1);
12560                 match events_a[0] {
12561                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
12562                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
12563                         },
12564                         _ => panic!("Unexpected event"),
12565                 }
12566
12567                 assert_eq!(&tx_broadcaster.txn_broadcasted.lock().unwrap()[..], &[tx.clone()]);
12568
12569                 let block = create_dummy_block(BestBlock::from_network(network).block_hash(), 42, vec![tx]);
12570                 Listen::block_connected(&node_a, &block, 1);
12571                 Listen::block_connected(&node_b, &block, 1);
12572
12573                 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()));
12574                 let msg_events = node_a.get_and_clear_pending_msg_events();
12575                 assert_eq!(msg_events.len(), 2);
12576                 match msg_events[0] {
12577                         MessageSendEvent::SendChannelReady { ref msg, .. } => {
12578                                 node_b.handle_channel_ready(&node_a.get_our_node_id(), msg);
12579                                 get_event_msg!(node_b_holder, MessageSendEvent::SendChannelUpdate, node_a.get_our_node_id());
12580                         },
12581                         _ => panic!(),
12582                 }
12583                 match msg_events[1] {
12584                         MessageSendEvent::SendChannelUpdate { .. } => {},
12585                         _ => panic!(),
12586                 }
12587
12588                 let events_a = node_a.get_and_clear_pending_events();
12589                 assert_eq!(events_a.len(), 1);
12590                 match events_a[0] {
12591                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
12592                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
12593                         },
12594                         _ => panic!("Unexpected event"),
12595                 }
12596
12597                 let events_b = node_b.get_and_clear_pending_events();
12598                 assert_eq!(events_b.len(), 1);
12599                 match events_b[0] {
12600                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
12601                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
12602                         },
12603                         _ => panic!("Unexpected event"),
12604                 }
12605
12606                 let mut payment_count: u64 = 0;
12607                 macro_rules! send_payment {
12608                         ($node_a: expr, $node_b: expr) => {
12609                                 let payment_params = PaymentParameters::from_node_id($node_b.get_our_node_id(), TEST_FINAL_CLTV)
12610                                         .with_bolt11_features($node_b.bolt11_invoice_features()).unwrap();
12611                                 let mut payment_preimage = PaymentPreimage([0; 32]);
12612                                 payment_preimage.0[0..8].copy_from_slice(&payment_count.to_le_bytes());
12613                                 payment_count += 1;
12614                                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner());
12615                                 let payment_secret = $node_b.create_inbound_payment_for_hash(payment_hash, None, 7200, None).unwrap();
12616
12617                                 $node_a.send_payment(payment_hash, RecipientOnionFields::secret_only(payment_secret),
12618                                         PaymentId(payment_hash.0),
12619                                         RouteParameters::from_payment_params_and_value(payment_params, 10_000),
12620                                         Retry::Attempts(0)).unwrap();
12621                                 let payment_event = SendEvent::from_event($node_a.get_and_clear_pending_msg_events().pop().unwrap());
12622                                 $node_b.handle_update_add_htlc(&$node_a.get_our_node_id(), &payment_event.msgs[0]);
12623                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &payment_event.commitment_msg);
12624                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_b }, &$node_a.get_our_node_id());
12625                                 $node_a.handle_revoke_and_ack(&$node_b.get_our_node_id(), &raa);
12626                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &cs);
12627                                 $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()));
12628
12629                                 expect_pending_htlcs_forwardable!(ANodeHolder { node: &$node_b });
12630                                 expect_payment_claimable!(ANodeHolder { node: &$node_b }, payment_hash, payment_secret, 10_000);
12631                                 $node_b.claim_funds(payment_preimage);
12632                                 expect_payment_claimed!(ANodeHolder { node: &$node_b }, payment_hash, 10_000);
12633
12634                                 match $node_b.get_and_clear_pending_msg_events().pop().unwrap() {
12635                                         MessageSendEvent::UpdateHTLCs { node_id, updates } => {
12636                                                 assert_eq!(node_id, $node_a.get_our_node_id());
12637                                                 $node_a.handle_update_fulfill_htlc(&$node_b.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
12638                                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &updates.commitment_signed);
12639                                         },
12640                                         _ => panic!("Failed to generate claim event"),
12641                                 }
12642
12643                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_a }, &$node_b.get_our_node_id());
12644                                 $node_b.handle_revoke_and_ack(&$node_a.get_our_node_id(), &raa);
12645                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &cs);
12646                                 $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()));
12647
12648                                 expect_payment_sent!(ANodeHolder { node: &$node_a }, payment_preimage);
12649                         }
12650                 }
12651
12652                 bench.bench_function(bench_name, |b| b.iter(|| {
12653                         send_payment!(node_a, node_b);
12654                         send_payment!(node_b, node_a);
12655                 }));
12656         }
12657 }