Move next hop packet pubkey calculation to outside channel lock
[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::{genesis_block, 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::chain;
34 use crate::chain::{Confirm, ChannelMonitorUpdateStatus, Watch, BestBlock};
35 use crate::chain::chaininterface::{BroadcasterInterface, ConfirmationTarget, FeeEstimator, LowerBoundedFeeEstimator};
36 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};
37 use crate::chain::transaction::{OutPoint, TransactionData};
38 use crate::events;
39 use crate::events::{Event, EventHandler, EventsProvider, MessageSendEvent, MessageSendEventsProvider, ClosureReason, HTLCDestination, PaymentFailureReason};
40 // Since this struct is returned in `list_channels` methods, expose it here in case users want to
41 // construct one themselves.
42 use crate::ln::{inbound_payment, PaymentHash, PaymentPreimage, PaymentSecret};
43 use crate::ln::channel::{Channel, ChannelContext, ChannelError, ChannelUpdateStatus, ShutdownResult, UpdateFulfillCommitFetch, OutboundV1Channel, InboundV1Channel};
44 use crate::ln::features::{ChannelFeatures, ChannelTypeFeatures, InitFeatures, NodeFeatures};
45 #[cfg(any(feature = "_test_utils", test))]
46 use crate::ln::features::InvoiceFeatures;
47 use crate::routing::gossip::NetworkGraph;
48 use crate::routing::router::{BlindedTail, DefaultRouter, InFlightHtlcs, Path, Payee, PaymentParameters, Route, RouteHop, RouteParameters, Router};
49 use crate::routing::scoring::{ProbabilisticScorer, ProbabilisticScoringFeeParameters};
50 use crate::ln::msgs;
51 use crate::ln::onion_utils;
52 use crate::ln::onion_utils::HTLCFailReason;
53 use crate::ln::msgs::{ChannelMessageHandler, DecodeError, LightningError, MAX_VALUE_MSAT};
54 #[cfg(test)]
55 use crate::ln::outbound_payment;
56 use crate::ln::outbound_payment::{OutboundPayments, PaymentAttempts, PendingOutboundPayment};
57 use crate::ln::wire::Encode;
58 use crate::sign::{EntropySource, KeysManager, NodeSigner, Recipient, SignerProvider, ChannelSigner, WriteableEcdsaChannelSigner};
59 use crate::util::config::{UserConfig, ChannelConfig, ChannelConfigUpdate};
60 use crate::util::wakers::{Future, Notifier};
61 use crate::util::scid_utils::fake_scid;
62 use crate::util::string::UntrustedString;
63 use crate::util::ser::{BigSize, FixedLengthReader, Readable, ReadableArgs, MaybeReadable, Writeable, Writer, VecWriter};
64 use crate::util::logger::{Level, Logger};
65 use crate::util::errors::APIError;
66
67 use alloc::collections::BTreeMap;
68
69 use crate::io;
70 use crate::prelude::*;
71 use core::{cmp, mem};
72 use core::cell::RefCell;
73 use crate::io::Read;
74 use crate::sync::{Arc, Mutex, RwLock, RwLockReadGuard, FairRwLock, LockTestExt, LockHeldState};
75 use core::sync::atomic::{AtomicUsize, AtomicBool, Ordering};
76 use core::time::Duration;
77 use core::ops::Deref;
78
79 // Re-export this for use in the public API.
80 pub use crate::ln::outbound_payment::{PaymentSendFailure, Retry, RetryableSendFailure, RecipientOnionFields};
81 use crate::ln::script::ShutdownScript;
82
83 // We hold various information about HTLC relay in the HTLC objects in Channel itself:
84 //
85 // Upon receipt of an HTLC from a peer, we'll give it a PendingHTLCStatus indicating if it should
86 // forward the HTLC with information it will give back to us when it does so, or if it should Fail
87 // the HTLC with the relevant message for the Channel to handle giving to the remote peer.
88 //
89 // Once said HTLC is committed in the Channel, if the PendingHTLCStatus indicated Forward, the
90 // Channel will return the PendingHTLCInfo back to us, and we will create an HTLCForwardInfo
91 // with it to track where it came from (in case of onwards-forward error), waiting a random delay
92 // before we forward it.
93 //
94 // We will then use HTLCForwardInfo's PendingHTLCInfo to construct an outbound HTLC, with a
95 // relevant HTLCSource::PreviousHopData filled in to indicate where it came from (which we can use
96 // to either fail-backwards or fulfill the HTLC backwards along the relevant path).
97 // Alternatively, we can fill an outbound HTLC with a HTLCSource::OutboundRoute indicating this is
98 // our payment, which we can use to decode errors or inform the user that the payment was sent.
99
100 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
101 pub(super) enum PendingHTLCRouting {
102         Forward {
103                 onion_packet: msgs::OnionPacket,
104                 /// The SCID from the onion that we should forward to. This could be a real SCID or a fake one
105                 /// generated using `get_fake_scid` from the scid_utils::fake_scid module.
106                 short_channel_id: u64, // This should be NonZero<u64> eventually when we bump MSRV
107         },
108         Receive {
109                 payment_data: msgs::FinalOnionHopData,
110                 payment_metadata: Option<Vec<u8>>,
111                 incoming_cltv_expiry: u32, // Used to track when we should expire pending HTLCs that go unclaimed
112                 phantom_shared_secret: Option<[u8; 32]>,
113         },
114         ReceiveKeysend {
115                 /// This was added in 0.0.116 and will break deserialization on downgrades.
116                 payment_data: Option<msgs::FinalOnionHopData>,
117                 payment_preimage: PaymentPreimage,
118                 payment_metadata: Option<Vec<u8>>,
119                 incoming_cltv_expiry: u32, // Used to track when we should expire pending HTLCs that go unclaimed
120         },
121 }
122
123 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
124 pub(super) struct PendingHTLCInfo {
125         pub(super) routing: PendingHTLCRouting,
126         pub(super) incoming_shared_secret: [u8; 32],
127         payment_hash: PaymentHash,
128         /// Amount received
129         pub(super) incoming_amt_msat: Option<u64>, // Added in 0.0.113
130         /// Sender intended amount to forward or receive (actual amount received
131         /// may overshoot this in either case)
132         pub(super) outgoing_amt_msat: u64,
133         pub(super) outgoing_cltv_value: u32,
134 }
135
136 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
137 pub(super) enum HTLCFailureMsg {
138         Relay(msgs::UpdateFailHTLC),
139         Malformed(msgs::UpdateFailMalformedHTLC),
140 }
141
142 /// Stores whether we can't forward an HTLC or relevant forwarding info
143 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
144 pub(super) enum PendingHTLCStatus {
145         Forward(PendingHTLCInfo),
146         Fail(HTLCFailureMsg),
147 }
148
149 pub(super) struct PendingAddHTLCInfo {
150         pub(super) forward_info: PendingHTLCInfo,
151
152         // These fields are produced in `forward_htlcs()` and consumed in
153         // `process_pending_htlc_forwards()` for constructing the
154         // `HTLCSource::PreviousHopData` for failed and forwarded
155         // HTLCs.
156         //
157         // Note that this may be an outbound SCID alias for the associated channel.
158         prev_short_channel_id: u64,
159         prev_htlc_id: u64,
160         prev_funding_outpoint: OutPoint,
161         prev_user_channel_id: u128,
162 }
163
164 pub(super) enum HTLCForwardInfo {
165         AddHTLC(PendingAddHTLCInfo),
166         FailHTLC {
167                 htlc_id: u64,
168                 err_packet: msgs::OnionErrorPacket,
169         },
170 }
171
172 /// Tracks the inbound corresponding to an outbound HTLC
173 #[derive(Clone, Hash, PartialEq, Eq)]
174 pub(crate) struct HTLCPreviousHopData {
175         // Note that this may be an outbound SCID alias for the associated channel.
176         short_channel_id: u64,
177         htlc_id: u64,
178         incoming_packet_shared_secret: [u8; 32],
179         phantom_shared_secret: Option<[u8; 32]>,
180
181         // This field is consumed by `claim_funds_from_hop()` when updating a force-closed backwards
182         // channel with a preimage provided by the forward channel.
183         outpoint: OutPoint,
184 }
185
186 enum OnionPayload {
187         /// Indicates this incoming onion payload is for the purpose of paying an invoice.
188         Invoice {
189                 /// This is only here for backwards-compatibility in serialization, in the future it can be
190                 /// removed, breaking clients running 0.0.106 and earlier.
191                 _legacy_hop_data: Option<msgs::FinalOnionHopData>,
192         },
193         /// Contains the payer-provided preimage.
194         Spontaneous(PaymentPreimage),
195 }
196
197 /// HTLCs that are to us and can be failed/claimed by the user
198 struct ClaimableHTLC {
199         prev_hop: HTLCPreviousHopData,
200         cltv_expiry: u32,
201         /// The amount (in msats) of this MPP part
202         value: u64,
203         /// The amount (in msats) that the sender intended to be sent in this MPP
204         /// part (used for validating total MPP amount)
205         sender_intended_value: u64,
206         onion_payload: OnionPayload,
207         timer_ticks: u8,
208         /// The total value received for a payment (sum of all MPP parts if the payment is a MPP).
209         /// Gets set to the amount reported when pushing [`Event::PaymentClaimable`].
210         total_value_received: Option<u64>,
211         /// The sender intended sum total of all MPP parts specified in the onion
212         total_msat: u64,
213 }
214
215 /// A payment identifier used to uniquely identify a payment to LDK.
216 ///
217 /// This is not exported to bindings users as we just use [u8; 32] directly
218 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
219 pub struct PaymentId(pub [u8; 32]);
220
221 impl Writeable for PaymentId {
222         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
223                 self.0.write(w)
224         }
225 }
226
227 impl Readable for PaymentId {
228         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
229                 let buf: [u8; 32] = Readable::read(r)?;
230                 Ok(PaymentId(buf))
231         }
232 }
233
234 /// An identifier used to uniquely identify an intercepted HTLC to LDK.
235 ///
236 /// This is not exported to bindings users as we just use [u8; 32] directly
237 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
238 pub struct InterceptId(pub [u8; 32]);
239
240 impl Writeable for InterceptId {
241         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
242                 self.0.write(w)
243         }
244 }
245
246 impl Readable for InterceptId {
247         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
248                 let buf: [u8; 32] = Readable::read(r)?;
249                 Ok(InterceptId(buf))
250         }
251 }
252
253 #[derive(Clone, Copy, PartialEq, Eq, Hash)]
254 /// Uniquely describes an HTLC by its source. Just the guaranteed-unique subset of [`HTLCSource`].
255 pub(crate) enum SentHTLCId {
256         PreviousHopData { short_channel_id: u64, htlc_id: u64 },
257         OutboundRoute { session_priv: SecretKey },
258 }
259 impl SentHTLCId {
260         pub(crate) fn from_source(source: &HTLCSource) -> Self {
261                 match source {
262                         HTLCSource::PreviousHopData(hop_data) => Self::PreviousHopData {
263                                 short_channel_id: hop_data.short_channel_id,
264                                 htlc_id: hop_data.htlc_id,
265                         },
266                         HTLCSource::OutboundRoute { session_priv, .. } =>
267                                 Self::OutboundRoute { session_priv: *session_priv },
268                 }
269         }
270 }
271 impl_writeable_tlv_based_enum!(SentHTLCId,
272         (0, PreviousHopData) => {
273                 (0, short_channel_id, required),
274                 (2, htlc_id, required),
275         },
276         (2, OutboundRoute) => {
277                 (0, session_priv, required),
278         };
279 );
280
281
282 /// Tracks the inbound corresponding to an outbound HTLC
283 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
284 #[derive(Clone, PartialEq, Eq)]
285 pub(crate) enum HTLCSource {
286         PreviousHopData(HTLCPreviousHopData),
287         OutboundRoute {
288                 path: Path,
289                 session_priv: SecretKey,
290                 /// Technically we can recalculate this from the route, but we cache it here to avoid
291                 /// doing a double-pass on route when we get a failure back
292                 first_hop_htlc_msat: u64,
293                 payment_id: PaymentId,
294         },
295 }
296 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
297 impl core::hash::Hash for HTLCSource {
298         fn hash<H: core::hash::Hasher>(&self, hasher: &mut H) {
299                 match self {
300                         HTLCSource::PreviousHopData(prev_hop_data) => {
301                                 0u8.hash(hasher);
302                                 prev_hop_data.hash(hasher);
303                         },
304                         HTLCSource::OutboundRoute { path, session_priv, payment_id, first_hop_htlc_msat } => {
305                                 1u8.hash(hasher);
306                                 path.hash(hasher);
307                                 session_priv[..].hash(hasher);
308                                 payment_id.hash(hasher);
309                                 first_hop_htlc_msat.hash(hasher);
310                         },
311                 }
312         }
313 }
314 impl HTLCSource {
315         #[cfg(not(feature = "grind_signatures"))]
316         #[cfg(test)]
317         pub fn dummy() -> Self {
318                 HTLCSource::OutboundRoute {
319                         path: Path { hops: Vec::new(), blinded_tail: None },
320                         session_priv: SecretKey::from_slice(&[1; 32]).unwrap(),
321                         first_hop_htlc_msat: 0,
322                         payment_id: PaymentId([2; 32]),
323                 }
324         }
325
326         #[cfg(debug_assertions)]
327         /// Checks whether this HTLCSource could possibly match the given HTLC output in a commitment
328         /// transaction. Useful to ensure different datastructures match up.
329         pub(crate) fn possibly_matches_output(&self, htlc: &super::chan_utils::HTLCOutputInCommitment) -> bool {
330                 if let HTLCSource::OutboundRoute { first_hop_htlc_msat, .. } = self {
331                         *first_hop_htlc_msat == htlc.amount_msat
332                 } else {
333                         // There's nothing we can check for forwarded HTLCs
334                         true
335                 }
336         }
337 }
338
339 struct ReceiveError {
340         err_code: u16,
341         err_data: Vec<u8>,
342         msg: &'static str,
343 }
344
345 /// This enum is used to specify which error data to send to peers when failing back an HTLC
346 /// using [`ChannelManager::fail_htlc_backwards_with_reason`].
347 ///
348 /// For more info on failure codes, see <https://github.com/lightning/bolts/blob/master/04-onion-routing.md#failure-messages>.
349 #[derive(Clone, Copy)]
350 pub enum FailureCode {
351         /// We had a temporary error processing the payment. Useful if no other error codes fit
352         /// and you want to indicate that the payer may want to retry.
353         TemporaryNodeFailure             = 0x2000 | 2,
354         /// We have a required feature which was not in this onion. For example, you may require
355         /// some additional metadata that was not provided with this payment.
356         RequiredNodeFeatureMissing       = 0x4000 | 0x2000 | 3,
357         /// You may wish to use this when a `payment_preimage` is unknown, or the CLTV expiry of
358         /// the HTLC is too close to the current block height for safe handling.
359         /// Using this failure code in [`ChannelManager::fail_htlc_backwards_with_reason`] is
360         /// equivalent to calling [`ChannelManager::fail_htlc_backwards`].
361         IncorrectOrUnknownPaymentDetails = 0x4000 | 15,
362 }
363
364 /// Error type returned across the peer_state mutex boundary. When an Err is generated for a
365 /// Channel, we generally end up with a ChannelError::Close for which we have to close the channel
366 /// immediately (ie with no further calls on it made). Thus, this step happens inside a
367 /// peer_state lock. We then return the set of things that need to be done outside the lock in
368 /// this struct and call handle_error!() on it.
369
370 struct MsgHandleErrInternal {
371         err: msgs::LightningError,
372         chan_id: Option<([u8; 32], u128)>, // If Some a channel of ours has been closed
373         shutdown_finish: Option<(ShutdownResult, Option<msgs::ChannelUpdate>)>,
374 }
375 impl MsgHandleErrInternal {
376         #[inline]
377         fn send_err_msg_no_close(err: String, channel_id: [u8; 32]) -> Self {
378                 Self {
379                         err: LightningError {
380                                 err: err.clone(),
381                                 action: msgs::ErrorAction::SendErrorMessage {
382                                         msg: msgs::ErrorMessage {
383                                                 channel_id,
384                                                 data: err
385                                         },
386                                 },
387                         },
388                         chan_id: None,
389                         shutdown_finish: None,
390                 }
391         }
392         #[inline]
393         fn from_no_close(err: msgs::LightningError) -> Self {
394                 Self { err, chan_id: None, shutdown_finish: None }
395         }
396         #[inline]
397         fn from_finish_shutdown(err: String, channel_id: [u8; 32], user_channel_id: u128, shutdown_res: ShutdownResult, channel_update: Option<msgs::ChannelUpdate>) -> Self {
398                 Self {
399                         err: LightningError {
400                                 err: err.clone(),
401                                 action: msgs::ErrorAction::SendErrorMessage {
402                                         msg: msgs::ErrorMessage {
403                                                 channel_id,
404                                                 data: err
405                                         },
406                                 },
407                         },
408                         chan_id: Some((channel_id, user_channel_id)),
409                         shutdown_finish: Some((shutdown_res, channel_update)),
410                 }
411         }
412         #[inline]
413         fn from_chan_no_close(err: ChannelError, channel_id: [u8; 32]) -> Self {
414                 Self {
415                         err: match err {
416                                 ChannelError::Warn(msg) =>  LightningError {
417                                         err: msg.clone(),
418                                         action: msgs::ErrorAction::SendWarningMessage {
419                                                 msg: msgs::WarningMessage {
420                                                         channel_id,
421                                                         data: msg
422                                                 },
423                                                 log_level: Level::Warn,
424                                         },
425                                 },
426                                 ChannelError::Ignore(msg) => LightningError {
427                                         err: msg,
428                                         action: msgs::ErrorAction::IgnoreError,
429                                 },
430                                 ChannelError::Close(msg) => LightningError {
431                                         err: msg.clone(),
432                                         action: msgs::ErrorAction::SendErrorMessage {
433                                                 msg: msgs::ErrorMessage {
434                                                         channel_id,
435                                                         data: msg
436                                                 },
437                                         },
438                                 },
439                         },
440                         chan_id: None,
441                         shutdown_finish: None,
442                 }
443         }
444 }
445
446 /// We hold back HTLCs we intend to relay for a random interval greater than this (see
447 /// Event::PendingHTLCsForwardable for the API guidelines indicating how long should be waited).
448 /// This provides some limited amount of privacy. Ideally this would range from somewhere like one
449 /// second to 30 seconds, but people expect lightning to be, you know, kinda fast, sadly.
450 pub(super) const MIN_HTLC_RELAY_HOLDING_CELL_MILLIS: u64 = 100;
451
452 /// For events which result in both a RevokeAndACK and a CommitmentUpdate, by default they should
453 /// be sent in the order they appear in the return value, however sometimes the order needs to be
454 /// variable at runtime (eg Channel::channel_reestablish needs to re-send messages in the order
455 /// they were originally sent). In those cases, this enum is also returned.
456 #[derive(Clone, PartialEq)]
457 pub(super) enum RAACommitmentOrder {
458         /// Send the CommitmentUpdate messages first
459         CommitmentFirst,
460         /// Send the RevokeAndACK message first
461         RevokeAndACKFirst,
462 }
463
464 /// Information about a payment which is currently being claimed.
465 struct ClaimingPayment {
466         amount_msat: u64,
467         payment_purpose: events::PaymentPurpose,
468         receiver_node_id: PublicKey,
469 }
470 impl_writeable_tlv_based!(ClaimingPayment, {
471         (0, amount_msat, required),
472         (2, payment_purpose, required),
473         (4, receiver_node_id, required),
474 });
475
476 struct ClaimablePayment {
477         purpose: events::PaymentPurpose,
478         onion_fields: Option<RecipientOnionFields>,
479         htlcs: Vec<ClaimableHTLC>,
480 }
481
482 /// Information about claimable or being-claimed payments
483 struct ClaimablePayments {
484         /// Map from payment hash to the payment data and any HTLCs which are to us and can be
485         /// failed/claimed by the user.
486         ///
487         /// Note that, no consistency guarantees are made about the channels given here actually
488         /// existing anymore by the time you go to read them!
489         ///
490         /// When adding to the map, [`Self::pending_claiming_payments`] must also be checked to ensure
491         /// we don't get a duplicate payment.
492         claimable_payments: HashMap<PaymentHash, ClaimablePayment>,
493
494         /// Map from payment hash to the payment data for HTLCs which we have begun claiming, but which
495         /// are waiting on a [`ChannelMonitorUpdate`] to complete in order to be surfaced to the user
496         /// as an [`events::Event::PaymentClaimed`].
497         pending_claiming_payments: HashMap<PaymentHash, ClaimingPayment>,
498 }
499
500 /// Events which we process internally but cannot be processed immediately at the generation site
501 /// usually because we're running pre-full-init. They are handled immediately once we detect we are
502 /// running normally, and specifically must be processed before any other non-background
503 /// [`ChannelMonitorUpdate`]s are applied.
504 enum BackgroundEvent {
505         /// Handle a ChannelMonitorUpdate which closes the channel. This is only separated from
506         /// [`Self::MonitorUpdateRegeneratedOnStartup`] as the maybe-non-closing variant needs a public
507         /// key to handle channel resumption, whereas if the channel has been force-closed we do not
508         /// need the counterparty node_id.
509         ///
510         /// Note that any such events are lost on shutdown, so in general they must be updates which
511         /// are regenerated on startup.
512         ClosingMonitorUpdateRegeneratedOnStartup((OutPoint, ChannelMonitorUpdate)),
513         /// Handle a ChannelMonitorUpdate which may or may not close the channel and may unblock the
514         /// channel to continue normal operation.
515         ///
516         /// In general this should be used rather than
517         /// [`Self::ClosingMonitorUpdateRegeneratedOnStartup`], however in cases where the
518         /// `counterparty_node_id` is not available as the channel has closed from a [`ChannelMonitor`]
519         /// error the other variant is acceptable.
520         ///
521         /// Note that any such events are lost on shutdown, so in general they must be updates which
522         /// are regenerated on startup.
523         MonitorUpdateRegeneratedOnStartup {
524                 counterparty_node_id: PublicKey,
525                 funding_txo: OutPoint,
526                 update: ChannelMonitorUpdate
527         },
528 }
529
530 #[derive(Debug)]
531 pub(crate) enum MonitorUpdateCompletionAction {
532         /// Indicates that a payment ultimately destined for us was claimed and we should emit an
533         /// [`events::Event::PaymentClaimed`] to the user if we haven't yet generated such an event for
534         /// this payment. Note that this is only best-effort. On restart it's possible such a duplicate
535         /// event can be generated.
536         PaymentClaimed { payment_hash: PaymentHash },
537         /// Indicates an [`events::Event`] should be surfaced to the user and possibly resume the
538         /// operation of another channel.
539         ///
540         /// This is usually generated when we've forwarded an HTLC and want to block the outbound edge
541         /// from completing a monitor update which removes the payment preimage until the inbound edge
542         /// completes a monitor update containing the payment preimage. In that case, after the inbound
543         /// edge completes, we will surface an [`Event::PaymentForwarded`] as well as unblock the
544         /// outbound edge.
545         EmitEventAndFreeOtherChannel {
546                 event: events::Event,
547                 downstream_counterparty_and_funding_outpoint: Option<(PublicKey, OutPoint, RAAMonitorUpdateBlockingAction)>,
548         },
549 }
550
551 impl_writeable_tlv_based_enum_upgradable!(MonitorUpdateCompletionAction,
552         (0, PaymentClaimed) => { (0, payment_hash, required) },
553         (2, EmitEventAndFreeOtherChannel) => {
554                 (0, event, upgradable_required),
555                 // LDK prior to 0.0.116 did not have this field as the monitor update application order was
556                 // required by clients. If we downgrade to something prior to 0.0.116 this may result in
557                 // monitor updates which aren't properly blocked or resumed, however that's fine - we don't
558                 // support async monitor updates even in LDK 0.0.116 and once we do we'll require no
559                 // downgrades to prior versions.
560                 (1, downstream_counterparty_and_funding_outpoint, option),
561         },
562 );
563
564 #[derive(Clone, Debug, PartialEq, Eq)]
565 pub(crate) enum EventCompletionAction {
566         ReleaseRAAChannelMonitorUpdate {
567                 counterparty_node_id: PublicKey,
568                 channel_funding_outpoint: OutPoint,
569         },
570 }
571 impl_writeable_tlv_based_enum!(EventCompletionAction,
572         (0, ReleaseRAAChannelMonitorUpdate) => {
573                 (0, channel_funding_outpoint, required),
574                 (2, counterparty_node_id, required),
575         };
576 );
577
578 #[derive(Clone, PartialEq, Eq, Debug)]
579 /// If something is blocked on the completion of an RAA-generated [`ChannelMonitorUpdate`] we track
580 /// the blocked action here. See enum variants for more info.
581 pub(crate) enum RAAMonitorUpdateBlockingAction {
582         /// A forwarded payment was claimed. We block the downstream channel completing its monitor
583         /// update which removes the HTLC preimage until the upstream channel has gotten the preimage
584         /// durably to disk.
585         ForwardedPaymentInboundClaim {
586                 /// The upstream channel ID (i.e. the inbound edge).
587                 channel_id: [u8; 32],
588                 /// The HTLC ID on the inbound edge.
589                 htlc_id: u64,
590         },
591 }
592
593 impl RAAMonitorUpdateBlockingAction {
594         #[allow(unused)]
595         fn from_prev_hop_data(prev_hop: &HTLCPreviousHopData) -> Self {
596                 Self::ForwardedPaymentInboundClaim {
597                         channel_id: prev_hop.outpoint.to_channel_id(),
598                         htlc_id: prev_hop.htlc_id,
599                 }
600         }
601 }
602
603 impl_writeable_tlv_based_enum!(RAAMonitorUpdateBlockingAction,
604         (0, ForwardedPaymentInboundClaim) => { (0, channel_id, required), (2, htlc_id, required) }
605 ;);
606
607
608 /// State we hold per-peer.
609 pub(super) struct PeerState<Signer: ChannelSigner> {
610         /// `channel_id` -> `Channel`.
611         ///
612         /// Holds all funded channels where the peer is the counterparty.
613         pub(super) channel_by_id: HashMap<[u8; 32], Channel<Signer>>,
614         /// `temporary_channel_id` -> `OutboundV1Channel`.
615         ///
616         /// Holds all outbound V1 channels where the peer is the counterparty. Once an outbound channel has
617         /// been assigned a `channel_id`, the entry in this map is removed and one is created in
618         /// `channel_by_id`.
619         pub(super) outbound_v1_channel_by_id: HashMap<[u8; 32], OutboundV1Channel<Signer>>,
620         /// `temporary_channel_id` -> `InboundV1Channel`.
621         ///
622         /// Holds all inbound V1 channels where the peer is the counterparty. Once an inbound channel has
623         /// been assigned a `channel_id`, the entry in this map is removed and one is created in
624         /// `channel_by_id`.
625         pub(super) inbound_v1_channel_by_id: HashMap<[u8; 32], InboundV1Channel<Signer>>,
626         /// The latest `InitFeatures` we heard from the peer.
627         latest_features: InitFeatures,
628         /// Messages to send to the peer - pushed to in the same lock that they are generated in (except
629         /// for broadcast messages, where ordering isn't as strict).
630         pub(super) pending_msg_events: Vec<MessageSendEvent>,
631         /// Map from a specific channel to some action(s) that should be taken when all pending
632         /// [`ChannelMonitorUpdate`]s for the channel complete updating.
633         ///
634         /// Note that because we generally only have one entry here a HashMap is pretty overkill. A
635         /// BTreeMap currently stores more than ten elements per leaf node, so even up to a few
636         /// channels with a peer this will just be one allocation and will amount to a linear list of
637         /// channels to walk, avoiding the whole hashing rigmarole.
638         ///
639         /// Note that the channel may no longer exist. For example, if a channel was closed but we
640         /// later needed to claim an HTLC which is pending on-chain, we may generate a monitor update
641         /// for a missing channel. While a malicious peer could construct a second channel with the
642         /// same `temporary_channel_id` (or final `channel_id` in the case of 0conf channels or prior
643         /// to funding appearing on-chain), the downstream `ChannelMonitor` set is required to ensure
644         /// duplicates do not occur, so such channels should fail without a monitor update completing.
645         monitor_update_blocked_actions: BTreeMap<[u8; 32], Vec<MonitorUpdateCompletionAction>>,
646         /// If another channel's [`ChannelMonitorUpdate`] needs to complete before a channel we have
647         /// with this peer can complete an RAA [`ChannelMonitorUpdate`] (e.g. because the RAA update
648         /// will remove a preimage that needs to be durably in an upstream channel first), we put an
649         /// entry here to note that the channel with the key's ID is blocked on a set of actions.
650         actions_blocking_raa_monitor_updates: BTreeMap<[u8; 32], Vec<RAAMonitorUpdateBlockingAction>>,
651         /// The peer is currently connected (i.e. we've seen a
652         /// [`ChannelMessageHandler::peer_connected`] and no corresponding
653         /// [`ChannelMessageHandler::peer_disconnected`].
654         is_connected: bool,
655 }
656
657 impl <Signer: ChannelSigner> PeerState<Signer> {
658         /// Indicates that a peer meets the criteria where we're ok to remove it from our storage.
659         /// If true is passed for `require_disconnected`, the function will return false if we haven't
660         /// disconnected from the node already, ie. `PeerState::is_connected` is set to `true`.
661         fn ok_to_remove(&self, require_disconnected: bool) -> bool {
662                 if require_disconnected && self.is_connected {
663                         return false
664                 }
665                 self.channel_by_id.is_empty() && self.monitor_update_blocked_actions.is_empty()
666         }
667
668         // Returns a count of all channels we have with this peer, including pending channels.
669         fn total_channel_count(&self) -> usize {
670                 self.channel_by_id.len() +
671                         self.outbound_v1_channel_by_id.len() +
672                         self.inbound_v1_channel_by_id.len()
673         }
674
675         // Returns a bool indicating if the given `channel_id` matches a channel we have with this peer.
676         fn has_channel(&self, channel_id: &[u8; 32]) -> bool {
677                 self.channel_by_id.contains_key(channel_id) ||
678                         self.outbound_v1_channel_by_id.contains_key(channel_id) ||
679                         self.inbound_v1_channel_by_id.contains_key(channel_id)
680         }
681 }
682
683 /// Stores a PaymentSecret and any other data we may need to validate an inbound payment is
684 /// actually ours and not some duplicate HTLC sent to us by a node along the route.
685 ///
686 /// For users who don't want to bother doing their own payment preimage storage, we also store that
687 /// here.
688 ///
689 /// Note that this struct will be removed entirely soon, in favor of storing no inbound payment data
690 /// and instead encoding it in the payment secret.
691 struct PendingInboundPayment {
692         /// The payment secret that the sender must use for us to accept this payment
693         payment_secret: PaymentSecret,
694         /// Time at which this HTLC expires - blocks with a header time above this value will result in
695         /// this payment being removed.
696         expiry_time: u64,
697         /// Arbitrary identifier the user specifies (or not)
698         user_payment_id: u64,
699         // Other required attributes of the payment, optionally enforced:
700         payment_preimage: Option<PaymentPreimage>,
701         min_value_msat: Option<u64>,
702 }
703
704 /// [`SimpleArcChannelManager`] is useful when you need a [`ChannelManager`] with a static lifetime, e.g.
705 /// when you're using `lightning-net-tokio` (since `tokio::spawn` requires parameters with static
706 /// lifetimes). Other times you can afford a reference, which is more efficient, in which case
707 /// [`SimpleRefChannelManager`] is the more appropriate type. Defining these type aliases prevents
708 /// issues such as overly long function definitions. Note that the `ChannelManager` can take any type
709 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
710 /// or, respectively, [`Router`] for its router, but this type alias chooses the concrete types
711 /// of [`KeysManager`] and [`DefaultRouter`].
712 ///
713 /// This is not exported to bindings users as Arcs don't make sense in bindings
714 pub type SimpleArcChannelManager<M, T, F, L> = ChannelManager<
715         Arc<M>,
716         Arc<T>,
717         Arc<KeysManager>,
718         Arc<KeysManager>,
719         Arc<KeysManager>,
720         Arc<F>,
721         Arc<DefaultRouter<
722                 Arc<NetworkGraph<Arc<L>>>,
723                 Arc<L>,
724                 Arc<Mutex<ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>>>,
725                 ProbabilisticScoringFeeParameters,
726                 ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>,
727         >>,
728         Arc<L>
729 >;
730
731 /// [`SimpleRefChannelManager`] is a type alias for a ChannelManager reference, and is the reference
732 /// counterpart to the [`SimpleArcChannelManager`] type alias. Use this type by default when you don't
733 /// need a ChannelManager with a static lifetime. You'll need a static lifetime in cases such as
734 /// usage of lightning-net-tokio (since `tokio::spawn` requires parameters with static lifetimes).
735 /// But if this is not necessary, using a reference is more efficient. Defining these type aliases
736 /// issues such as overly long function definitions. Note that the ChannelManager can take any type
737 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
738 /// or, respectively, [`Router`]  for its router, but this type alias chooses the concrete types
739 /// of [`KeysManager`] and [`DefaultRouter`].
740 ///
741 /// This is not exported to bindings users as Arcs don't make sense in bindings
742 pub type SimpleRefChannelManager<'a, 'b, 'c, 'd, 'e, 'f, 'g, 'h, M, T, F, L> = ChannelManager<&'a M, &'b T, &'c KeysManager, &'c KeysManager, &'c KeysManager, &'d F, &'e DefaultRouter<&'f NetworkGraph<&'g L>, &'g L, &'h Mutex<ProbabilisticScorer<&'f NetworkGraph<&'g L>, &'g L>>, ProbabilisticScoringFeeParameters, ProbabilisticScorer<&'f NetworkGraph<&'g L>, &'g L>>, &'g L>;
743
744 macro_rules! define_test_pub_trait { ($vis: vis) => {
745 /// A trivial trait which describes any [`ChannelManager`] used in testing.
746 $vis trait AChannelManager {
747         type Watch: chain::Watch<Self::Signer> + ?Sized;
748         type M: Deref<Target = Self::Watch>;
749         type Broadcaster: BroadcasterInterface + ?Sized;
750         type T: Deref<Target = Self::Broadcaster>;
751         type EntropySource: EntropySource + ?Sized;
752         type ES: Deref<Target = Self::EntropySource>;
753         type NodeSigner: NodeSigner + ?Sized;
754         type NS: Deref<Target = Self::NodeSigner>;
755         type Signer: WriteableEcdsaChannelSigner + Sized;
756         type SignerProvider: SignerProvider<Signer = Self::Signer> + ?Sized;
757         type SP: Deref<Target = Self::SignerProvider>;
758         type FeeEstimator: FeeEstimator + ?Sized;
759         type F: Deref<Target = Self::FeeEstimator>;
760         type Router: Router + ?Sized;
761         type R: Deref<Target = Self::Router>;
762         type Logger: Logger + ?Sized;
763         type L: Deref<Target = Self::Logger>;
764         fn get_cm(&self) -> &ChannelManager<Self::M, Self::T, Self::ES, Self::NS, Self::SP, Self::F, Self::R, Self::L>;
765 }
766 } }
767 #[cfg(any(test, feature = "_test_utils"))]
768 define_test_pub_trait!(pub);
769 #[cfg(not(any(test, feature = "_test_utils")))]
770 define_test_pub_trait!(pub(crate));
771 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref> AChannelManager
772 for ChannelManager<M, T, ES, NS, SP, F, R, L>
773 where
774         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
775         T::Target: BroadcasterInterface,
776         ES::Target: EntropySource,
777         NS::Target: NodeSigner,
778         SP::Target: SignerProvider,
779         F::Target: FeeEstimator,
780         R::Target: Router,
781         L::Target: Logger,
782 {
783         type Watch = M::Target;
784         type M = M;
785         type Broadcaster = T::Target;
786         type T = T;
787         type EntropySource = ES::Target;
788         type ES = ES;
789         type NodeSigner = NS::Target;
790         type NS = NS;
791         type Signer = <SP::Target as SignerProvider>::Signer;
792         type SignerProvider = SP::Target;
793         type SP = SP;
794         type FeeEstimator = F::Target;
795         type F = F;
796         type Router = R::Target;
797         type R = R;
798         type Logger = L::Target;
799         type L = L;
800         fn get_cm(&self) -> &ChannelManager<M, T, ES, NS, SP, F, R, L> { self }
801 }
802
803 /// Manager which keeps track of a number of channels and sends messages to the appropriate
804 /// channel, also tracking HTLC preimages and forwarding onion packets appropriately.
805 ///
806 /// Implements [`ChannelMessageHandler`], handling the multi-channel parts and passing things through
807 /// to individual Channels.
808 ///
809 /// Implements [`Writeable`] to write out all channel state to disk. Implies [`peer_disconnected`] for
810 /// all peers during write/read (though does not modify this instance, only the instance being
811 /// serialized). This will result in any channels which have not yet exchanged [`funding_created`] (i.e.,
812 /// called [`funding_transaction_generated`] for outbound channels) being closed.
813 ///
814 /// Note that you can be a bit lazier about writing out `ChannelManager` than you can be with
815 /// [`ChannelMonitor`]. With [`ChannelMonitor`] you MUST write each monitor update out to disk before
816 /// returning from [`chain::Watch::watch_channel`]/[`update_channel`], with ChannelManagers, writing updates
817 /// happens out-of-band (and will prevent any other `ChannelManager` operations from occurring during
818 /// the serialization process). If the deserialized version is out-of-date compared to the
819 /// [`ChannelMonitor`] passed by reference to [`read`], those channels will be force-closed based on the
820 /// `ChannelMonitor` state and no funds will be lost (mod on-chain transaction fees).
821 ///
822 /// Note that the deserializer is only implemented for `(`[`BlockHash`]`, `[`ChannelManager`]`)`, which
823 /// tells you the last block hash which was connected. You should get the best block tip before using the manager.
824 /// See [`chain::Listen`] and [`chain::Confirm`] for more details.
825 ///
826 /// Note that `ChannelManager` is responsible for tracking liveness of its channels and generating
827 /// [`ChannelUpdate`] messages informing peers that the channel is temporarily disabled. To avoid
828 /// spam due to quick disconnection/reconnection, updates are not sent until the channel has been
829 /// offline for a full minute. In order to track this, you must call
830 /// [`timer_tick_occurred`] roughly once per minute, though it doesn't have to be perfect.
831 ///
832 /// To avoid trivial DoS issues, `ChannelManager` limits the number of inbound connections and
833 /// inbound channels without confirmed funding transactions. This may result in nodes which we do
834 /// not have a channel with being unable to connect to us or open new channels with us if we have
835 /// many peers with unfunded channels.
836 ///
837 /// Because it is an indication of trust, inbound channels which we've accepted as 0conf are
838 /// exempted from the count of unfunded channels. Similarly, outbound channels and connections are
839 /// never limited. Please ensure you limit the count of such channels yourself.
840 ///
841 /// Rather than using a plain `ChannelManager`, it is preferable to use either a [`SimpleArcChannelManager`]
842 /// a [`SimpleRefChannelManager`], for conciseness. See their documentation for more details, but
843 /// essentially you should default to using a [`SimpleRefChannelManager`], and use a
844 /// [`SimpleArcChannelManager`] when you require a `ChannelManager` with a static lifetime, such as when
845 /// you're using lightning-net-tokio.
846 ///
847 /// [`peer_disconnected`]: msgs::ChannelMessageHandler::peer_disconnected
848 /// [`funding_created`]: msgs::FundingCreated
849 /// [`funding_transaction_generated`]: Self::funding_transaction_generated
850 /// [`BlockHash`]: bitcoin::hash_types::BlockHash
851 /// [`update_channel`]: chain::Watch::update_channel
852 /// [`ChannelUpdate`]: msgs::ChannelUpdate
853 /// [`timer_tick_occurred`]: Self::timer_tick_occurred
854 /// [`read`]: ReadableArgs::read
855 //
856 // Lock order:
857 // The tree structure below illustrates the lock order requirements for the different locks of the
858 // `ChannelManager`. Locks can be held at the same time if they are on the same branch in the tree,
859 // and should then be taken in the order of the lowest to the highest level in the tree.
860 // Note that locks on different branches shall not be taken at the same time, as doing so will
861 // create a new lock order for those specific locks in the order they were taken.
862 //
863 // Lock order tree:
864 //
865 // `total_consistency_lock`
866 //  |
867 //  |__`forward_htlcs`
868 //  |   |
869 //  |   |__`pending_intercepted_htlcs`
870 //  |
871 //  |__`per_peer_state`
872 //  |   |
873 //  |   |__`pending_inbound_payments`
874 //  |       |
875 //  |       |__`claimable_payments`
876 //  |       |
877 //  |       |__`pending_outbound_payments` // This field's struct contains a map of pending outbounds
878 //  |           |
879 //  |           |__`peer_state`
880 //  |               |
881 //  |               |__`id_to_peer`
882 //  |               |
883 //  |               |__`short_to_chan_info`
884 //  |               |
885 //  |               |__`outbound_scid_aliases`
886 //  |               |
887 //  |               |__`best_block`
888 //  |               |
889 //  |               |__`pending_events`
890 //  |                   |
891 //  |                   |__`pending_background_events`
892 //
893 pub struct ChannelManager<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
894 where
895         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
896         T::Target: BroadcasterInterface,
897         ES::Target: EntropySource,
898         NS::Target: NodeSigner,
899         SP::Target: SignerProvider,
900         F::Target: FeeEstimator,
901         R::Target: Router,
902         L::Target: Logger,
903 {
904         default_configuration: UserConfig,
905         genesis_hash: BlockHash,
906         fee_estimator: LowerBoundedFeeEstimator<F>,
907         chain_monitor: M,
908         tx_broadcaster: T,
909         #[allow(unused)]
910         router: R,
911
912         /// See `ChannelManager` struct-level documentation for lock order requirements.
913         #[cfg(test)]
914         pub(super) best_block: RwLock<BestBlock>,
915         #[cfg(not(test))]
916         best_block: RwLock<BestBlock>,
917         secp_ctx: Secp256k1<secp256k1::All>,
918
919         /// Storage for PaymentSecrets and any requirements on future inbound payments before we will
920         /// expose them to users via a PaymentClaimable event. HTLCs which do not meet the requirements
921         /// here are failed when we process them as pending-forwardable-HTLCs, and entries are removed
922         /// after we generate a PaymentClaimable upon receipt of all MPP parts or when they time out.
923         ///
924         /// See `ChannelManager` struct-level documentation for lock order requirements.
925         pending_inbound_payments: Mutex<HashMap<PaymentHash, PendingInboundPayment>>,
926
927         /// The session_priv bytes and retry metadata of outbound payments which are pending resolution.
928         /// The authoritative state of these HTLCs resides either within Channels or ChannelMonitors
929         /// (if the channel has been force-closed), however we track them here to prevent duplicative
930         /// PaymentSent/PaymentPathFailed events. Specifically, in the case of a duplicative
931         /// update_fulfill_htlc message after a reconnect, we may "claim" a payment twice.
932         /// Additionally, because ChannelMonitors are often not re-serialized after connecting block(s)
933         /// which may generate a claim event, we may receive similar duplicate claim/fail MonitorEvents
934         /// after reloading from disk while replaying blocks against ChannelMonitors.
935         ///
936         /// See `PendingOutboundPayment` documentation for more info.
937         ///
938         /// See `ChannelManager` struct-level documentation for lock order requirements.
939         pending_outbound_payments: OutboundPayments,
940
941         /// SCID/SCID Alias -> forward infos. Key of 0 means payments received.
942         ///
943         /// Note that because we may have an SCID Alias as the key we can have two entries per channel,
944         /// though in practice we probably won't be receiving HTLCs for a channel both via the alias
945         /// and via the classic SCID.
946         ///
947         /// Note that no consistency guarantees are made about the existence of a channel with the
948         /// `short_channel_id` here, nor the `short_channel_id` in the `PendingHTLCInfo`!
949         ///
950         /// See `ChannelManager` struct-level documentation for lock order requirements.
951         #[cfg(test)]
952         pub(super) forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
953         #[cfg(not(test))]
954         forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
955         /// Storage for HTLCs that have been intercepted and bubbled up to the user. We hold them here
956         /// until the user tells us what we should do with them.
957         ///
958         /// See `ChannelManager` struct-level documentation for lock order requirements.
959         pending_intercepted_htlcs: Mutex<HashMap<InterceptId, PendingAddHTLCInfo>>,
960
961         /// The sets of payments which are claimable or currently being claimed. See
962         /// [`ClaimablePayments`]' individual field docs for more info.
963         ///
964         /// See `ChannelManager` struct-level documentation for lock order requirements.
965         claimable_payments: Mutex<ClaimablePayments>,
966
967         /// The set of outbound SCID aliases across all our channels, including unconfirmed channels
968         /// and some closed channels which reached a usable state prior to being closed. This is used
969         /// only to avoid duplicates, and is not persisted explicitly to disk, but rebuilt from the
970         /// active channel list on load.
971         ///
972         /// See `ChannelManager` struct-level documentation for lock order requirements.
973         outbound_scid_aliases: Mutex<HashSet<u64>>,
974
975         /// `channel_id` -> `counterparty_node_id`.
976         ///
977         /// Only `channel_id`s are allowed as keys in this map, and not `temporary_channel_id`s. As
978         /// multiple channels with the same `temporary_channel_id` to different peers can exist,
979         /// allowing `temporary_channel_id`s in this map would cause collisions for such channels.
980         ///
981         /// Note that this map should only be used for `MonitorEvent` handling, to be able to access
982         /// the corresponding channel for the event, as we only have access to the `channel_id` during
983         /// the handling of the events.
984         ///
985         /// Note that no consistency guarantees are made about the existence of a peer with the
986         /// `counterparty_node_id` in our other maps.
987         ///
988         /// TODO:
989         /// The `counterparty_node_id` isn't passed with `MonitorEvent`s currently. To pass it, we need
990         /// to make `counterparty_node_id`'s a required field in `ChannelMonitor`s, which unfortunately
991         /// would break backwards compatability.
992         /// We should add `counterparty_node_id`s to `MonitorEvent`s, and eventually rely on it in the
993         /// future. That would make this map redundant, as only the `ChannelManager::per_peer_state` is
994         /// required to access the channel with the `counterparty_node_id`.
995         ///
996         /// See `ChannelManager` struct-level documentation for lock order requirements.
997         id_to_peer: Mutex<HashMap<[u8; 32], PublicKey>>,
998
999         /// SCIDs (and outbound SCID aliases) -> `counterparty_node_id`s and `channel_id`s.
1000         ///
1001         /// Outbound SCID aliases are added here once the channel is available for normal use, with
1002         /// SCIDs being added once the funding transaction is confirmed at the channel's required
1003         /// confirmation depth.
1004         ///
1005         /// Note that while this holds `counterparty_node_id`s and `channel_id`s, no consistency
1006         /// guarantees are made about the existence of a peer with the `counterparty_node_id` nor a
1007         /// channel with the `channel_id` in our other maps.
1008         ///
1009         /// See `ChannelManager` struct-level documentation for lock order requirements.
1010         #[cfg(test)]
1011         pub(super) short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, [u8; 32])>>,
1012         #[cfg(not(test))]
1013         short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, [u8; 32])>>,
1014
1015         our_network_pubkey: PublicKey,
1016
1017         inbound_payment_key: inbound_payment::ExpandedKey,
1018
1019         /// LDK puts the [fake scids] that it generates into namespaces, to identify the type of an
1020         /// incoming payment. To make it harder for a third-party to identify the type of a payment,
1021         /// we encrypt the namespace identifier using these bytes.
1022         ///
1023         /// [fake scids]: crate::util::scid_utils::fake_scid
1024         fake_scid_rand_bytes: [u8; 32],
1025
1026         /// When we send payment probes, we generate the [`PaymentHash`] based on this cookie secret
1027         /// and a random [`PaymentId`]. This allows us to discern probes from real payments, without
1028         /// keeping additional state.
1029         probing_cookie_secret: [u8; 32],
1030
1031         /// The highest block timestamp we've seen, which is usually a good guess at the current time.
1032         /// Assuming most miners are generating blocks with reasonable timestamps, this shouldn't be
1033         /// very far in the past, and can only ever be up to two hours in the future.
1034         highest_seen_timestamp: AtomicUsize,
1035
1036         /// The bulk of our storage. Currently the `per_peer_state` stores our channels on a per-peer
1037         /// basis, as well as the peer's latest features.
1038         ///
1039         /// If we are connected to a peer we always at least have an entry here, even if no channels
1040         /// are currently open with that peer.
1041         ///
1042         /// Because adding or removing an entry is rare, we usually take an outer read lock and then
1043         /// operate on the inner value freely. This opens up for parallel per-peer operation for
1044         /// channels.
1045         ///
1046         /// Note that the same thread must never acquire two inner `PeerState` locks at the same time.
1047         ///
1048         /// See `ChannelManager` struct-level documentation for lock order requirements.
1049         #[cfg(not(any(test, feature = "_test_utils")))]
1050         per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<<SP::Target as SignerProvider>::Signer>>>>,
1051         #[cfg(any(test, feature = "_test_utils"))]
1052         pub(super) per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<<SP::Target as SignerProvider>::Signer>>>>,
1053
1054         /// The set of events which we need to give to the user to handle. In some cases an event may
1055         /// require some further action after the user handles it (currently only blocking a monitor
1056         /// update from being handed to the user to ensure the included changes to the channel state
1057         /// are handled by the user before they're persisted durably to disk). In that case, the second
1058         /// element in the tuple is set to `Some` with further details of the action.
1059         ///
1060         /// Note that events MUST NOT be removed from pending_events after deserialization, as they
1061         /// could be in the middle of being processed without the direct mutex held.
1062         ///
1063         /// See `ChannelManager` struct-level documentation for lock order requirements.
1064         pending_events: Mutex<VecDeque<(events::Event, Option<EventCompletionAction>)>>,
1065         /// A simple atomic flag to ensure only one task at a time can be processing events asynchronously.
1066         pending_events_processor: AtomicBool,
1067
1068         /// If we are running during init (either directly during the deserialization method or in
1069         /// block connection methods which run after deserialization but before normal operation) we
1070         /// cannot provide the user with [`ChannelMonitorUpdate`]s through the normal update flow -
1071         /// prior to normal operation the user may not have loaded the [`ChannelMonitor`]s into their
1072         /// [`ChainMonitor`] and thus attempting to update it will fail or panic.
1073         ///
1074         /// Thus, we place them here to be handled as soon as possible once we are running normally.
1075         ///
1076         /// See `ChannelManager` struct-level documentation for lock order requirements.
1077         ///
1078         /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
1079         pending_background_events: Mutex<Vec<BackgroundEvent>>,
1080         /// Used when we have to take a BIG lock to make sure everything is self-consistent.
1081         /// Essentially just when we're serializing ourselves out.
1082         /// Taken first everywhere where we are making changes before any other locks.
1083         /// When acquiring this lock in read mode, rather than acquiring it directly, call
1084         /// `PersistenceNotifierGuard::notify_on_drop(..)` and pass the lock to it, to ensure the
1085         /// Notifier the lock contains sends out a notification when the lock is released.
1086         total_consistency_lock: RwLock<()>,
1087
1088         #[cfg(debug_assertions)]
1089         background_events_processed_since_startup: AtomicBool,
1090
1091         persistence_notifier: Notifier,
1092
1093         entropy_source: ES,
1094         node_signer: NS,
1095         signer_provider: SP,
1096
1097         logger: L,
1098 }
1099
1100 /// Chain-related parameters used to construct a new `ChannelManager`.
1101 ///
1102 /// Typically, the block-specific parameters are derived from the best block hash for the network,
1103 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
1104 /// are not needed when deserializing a previously constructed `ChannelManager`.
1105 #[derive(Clone, Copy, PartialEq)]
1106 pub struct ChainParameters {
1107         /// The network for determining the `chain_hash` in Lightning messages.
1108         pub network: Network,
1109
1110         /// The hash and height of the latest block successfully connected.
1111         ///
1112         /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
1113         pub best_block: BestBlock,
1114 }
1115
1116 #[derive(Copy, Clone, PartialEq)]
1117 #[must_use]
1118 enum NotifyOption {
1119         DoPersist,
1120         SkipPersist,
1121 }
1122
1123 /// Whenever we release the `ChannelManager`'s `total_consistency_lock`, from read mode, it is
1124 /// desirable to notify any listeners on `await_persistable_update_timeout`/
1125 /// `await_persistable_update` when new updates are available for persistence. Therefore, this
1126 /// struct is responsible for locking the total consistency lock and, upon going out of scope,
1127 /// sending the aforementioned notification (since the lock being released indicates that the
1128 /// updates are ready for persistence).
1129 ///
1130 /// We allow callers to either always notify by constructing with `notify_on_drop` or choose to
1131 /// notify or not based on whether relevant changes have been made, providing a closure to
1132 /// `optionally_notify` which returns a `NotifyOption`.
1133 struct PersistenceNotifierGuard<'a, F: Fn() -> NotifyOption> {
1134         persistence_notifier: &'a Notifier,
1135         should_persist: F,
1136         // We hold onto this result so the lock doesn't get released immediately.
1137         _read_guard: RwLockReadGuard<'a, ()>,
1138 }
1139
1140 impl<'a> PersistenceNotifierGuard<'a, fn() -> NotifyOption> { // We don't care what the concrete F is here, it's unused
1141         fn notify_on_drop<C: AChannelManager>(cm: &'a C) -> PersistenceNotifierGuard<'a, impl Fn() -> NotifyOption> {
1142                 let read_guard = cm.get_cm().total_consistency_lock.read().unwrap();
1143                 let _ = cm.get_cm().process_background_events(); // We always persist
1144
1145                 PersistenceNotifierGuard {
1146                         persistence_notifier: &cm.get_cm().persistence_notifier,
1147                         should_persist: || -> NotifyOption { NotifyOption::DoPersist },
1148                         _read_guard: read_guard,
1149                 }
1150
1151         }
1152
1153         /// Note that if any [`ChannelMonitorUpdate`]s are possibly generated,
1154         /// [`ChannelManager::process_background_events`] MUST be called first.
1155         fn optionally_notify<F: Fn() -> NotifyOption>(lock: &'a RwLock<()>, notifier: &'a Notifier, persist_check: F) -> PersistenceNotifierGuard<'a, F> {
1156                 let read_guard = lock.read().unwrap();
1157
1158                 PersistenceNotifierGuard {
1159                         persistence_notifier: notifier,
1160                         should_persist: persist_check,
1161                         _read_guard: read_guard,
1162                 }
1163         }
1164 }
1165
1166 impl<'a, F: Fn() -> NotifyOption> Drop for PersistenceNotifierGuard<'a, F> {
1167         fn drop(&mut self) {
1168                 if (self.should_persist)() == NotifyOption::DoPersist {
1169                         self.persistence_notifier.notify();
1170                 }
1171         }
1172 }
1173
1174 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
1175 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
1176 ///
1177 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
1178 ///
1179 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
1180 pub const BREAKDOWN_TIMEOUT: u16 = 6 * 24;
1181 /// The amount of time in blocks we're willing to wait to claim money back to us. This matches
1182 /// the maximum required amount in lnd as of March 2021.
1183 pub(crate) const MAX_LOCAL_BREAKDOWN_TIMEOUT: u16 = 2 * 6 * 24 * 7;
1184
1185 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
1186 /// HTLC's CLTV. The current default represents roughly seven hours of blocks at six blocks/hour.
1187 ///
1188 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
1189 ///
1190 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
1191 // This should always be a few blocks greater than channelmonitor::CLTV_CLAIM_BUFFER,
1192 // i.e. the node we forwarded the payment on to should always have enough room to reliably time out
1193 // the HTLC via a full update_fail_htlc/commitment_signed dance before we hit the
1194 // CLTV_CLAIM_BUFFER point (we static assert that it's at least 3 blocks more).
1195 pub const MIN_CLTV_EXPIRY_DELTA: u16 = 6*7;
1196 // This should be long enough to allow a payment path drawn across multiple routing hops with substantial
1197 // `cltv_expiry_delta`. Indeed, the length of those values is the reaction delay offered to a routing node
1198 // in case of HTLC on-chain settlement. While appearing less competitive, a node operator could decide to
1199 // scale them up to suit its security policy. At the network-level, we shouldn't constrain them too much,
1200 // while avoiding to introduce a DoS vector. Further, a low CTLV_FAR_FAR_AWAY could be a source of
1201 // routing failure for any HTLC sender picking up an LDK node among the first hops.
1202 pub(super) const CLTV_FAR_FAR_AWAY: u32 = 14 * 24 * 6;
1203
1204 /// Minimum CLTV difference between the current block height and received inbound payments.
1205 /// Invoices generated for payment to us must set their `min_final_cltv_expiry_delta` field to at least
1206 /// this value.
1207 // Note that we fail if exactly HTLC_FAIL_BACK_BUFFER + 1 was used, so we need to add one for
1208 // any payments to succeed. Further, we don't want payments to fail if a block was found while
1209 // a payment was being routed, so we add an extra block to be safe.
1210 pub const MIN_FINAL_CLTV_EXPIRY_DELTA: u16 = HTLC_FAIL_BACK_BUFFER as u16 + 3;
1211
1212 // Check that our CLTV_EXPIRY is at least CLTV_CLAIM_BUFFER + ANTI_REORG_DELAY + LATENCY_GRACE_PERIOD_BLOCKS,
1213 // ie that if the next-hop peer fails the HTLC within
1214 // LATENCY_GRACE_PERIOD_BLOCKS then we'll still have CLTV_CLAIM_BUFFER left to timeout it onchain,
1215 // then waiting ANTI_REORG_DELAY to be reorg-safe on the outbound HLTC and
1216 // failing the corresponding htlc backward, and us now seeing the last block of ANTI_REORG_DELAY before
1217 // LATENCY_GRACE_PERIOD_BLOCKS.
1218 #[deny(const_err)]
1219 #[allow(dead_code)]
1220 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;
1221
1222 // Check for ability of an attacker to make us fail on-chain by delaying an HTLC claim. See
1223 // ChannelMonitor::should_broadcast_holder_commitment_txn for a description of why this is needed.
1224 #[deny(const_err)]
1225 #[allow(dead_code)]
1226 const CHECK_CLTV_EXPIRY_SANITY_2: u32 = MIN_CLTV_EXPIRY_DELTA as u32 - LATENCY_GRACE_PERIOD_BLOCKS - 2*CLTV_CLAIM_BUFFER;
1227
1228 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until expiry of incomplete MPPs
1229 pub(crate) const MPP_TIMEOUT_TICKS: u8 = 3;
1230
1231 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until we time-out the
1232 /// idempotency of payments by [`PaymentId`]. See
1233 /// [`OutboundPayments::remove_stale_resolved_payments`].
1234 pub(crate) const IDEMPOTENCY_TIMEOUT_TICKS: u8 = 7;
1235
1236 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is disconnected
1237 /// until we mark the channel disabled and gossip the update.
1238 pub(crate) const DISABLE_GOSSIP_TICKS: u8 = 10;
1239
1240 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is connected until
1241 /// we mark the channel enabled and gossip the update.
1242 pub(crate) const ENABLE_GOSSIP_TICKS: u8 = 5;
1243
1244 /// The maximum number of unfunded channels we can have per-peer before we start rejecting new
1245 /// (inbound) ones. The number of peers with unfunded channels is limited separately in
1246 /// [`MAX_UNFUNDED_CHANNEL_PEERS`].
1247 const MAX_UNFUNDED_CHANS_PER_PEER: usize = 4;
1248
1249 /// The maximum number of peers from which we will allow pending unfunded channels. Once we reach
1250 /// this many peers we reject new (inbound) channels from peers with which we don't have a channel.
1251 const MAX_UNFUNDED_CHANNEL_PEERS: usize = 50;
1252
1253 /// The maximum number of peers which we do not have a (funded) channel with. Once we reach this
1254 /// many peers we reject new (inbound) connections.
1255 const MAX_NO_CHANNEL_PEERS: usize = 250;
1256
1257 /// Information needed for constructing an invoice route hint for this channel.
1258 #[derive(Clone, Debug, PartialEq)]
1259 pub struct CounterpartyForwardingInfo {
1260         /// Base routing fee in millisatoshis.
1261         pub fee_base_msat: u32,
1262         /// Amount in millionths of a satoshi the channel will charge per transferred satoshi.
1263         pub fee_proportional_millionths: u32,
1264         /// The minimum difference in cltv_expiry between an ingoing HTLC and its outgoing counterpart,
1265         /// such that the outgoing HTLC is forwardable to this counterparty. See `msgs::ChannelUpdate`'s
1266         /// `cltv_expiry_delta` for more details.
1267         pub cltv_expiry_delta: u16,
1268 }
1269
1270 /// Channel parameters which apply to our counterparty. These are split out from [`ChannelDetails`]
1271 /// to better separate parameters.
1272 #[derive(Clone, Debug, PartialEq)]
1273 pub struct ChannelCounterparty {
1274         /// The node_id of our counterparty
1275         pub node_id: PublicKey,
1276         /// The Features the channel counterparty provided upon last connection.
1277         /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
1278         /// many routing-relevant features are present in the init context.
1279         pub features: InitFeatures,
1280         /// The value, in satoshis, that must always be held in the channel for our counterparty. This
1281         /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
1282         /// claiming at least this value on chain.
1283         ///
1284         /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
1285         ///
1286         /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
1287         pub unspendable_punishment_reserve: u64,
1288         /// Information on the fees and requirements that the counterparty requires when forwarding
1289         /// payments to us through this channel.
1290         pub forwarding_info: Option<CounterpartyForwardingInfo>,
1291         /// The smallest value HTLC (in msat) the remote peer will accept, for this channel. This field
1292         /// is only `None` before we have received either the `OpenChannel` or `AcceptChannel` message
1293         /// from the remote peer, or for `ChannelCounterparty` objects serialized prior to LDK 0.0.107.
1294         pub outbound_htlc_minimum_msat: Option<u64>,
1295         /// The largest value HTLC (in msat) the remote peer currently will accept, for this channel.
1296         pub outbound_htlc_maximum_msat: Option<u64>,
1297 }
1298
1299 /// Details of a channel, as returned by [`ChannelManager::list_channels`] and [`ChannelManager::list_usable_channels`]
1300 #[derive(Clone, Debug, PartialEq)]
1301 pub struct ChannelDetails {
1302         /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
1303         /// thereafter this is the txid of the funding transaction xor the funding transaction output).
1304         /// Note that this means this value is *not* persistent - it can change once during the
1305         /// lifetime of the channel.
1306         pub channel_id: [u8; 32],
1307         /// Parameters which apply to our counterparty. See individual fields for more information.
1308         pub counterparty: ChannelCounterparty,
1309         /// The Channel's funding transaction output, if we've negotiated the funding transaction with
1310         /// our counterparty already.
1311         ///
1312         /// Note that, if this has been set, `channel_id` will be equivalent to
1313         /// `funding_txo.unwrap().to_channel_id()`.
1314         pub funding_txo: Option<OutPoint>,
1315         /// The features which this channel operates with. See individual features for more info.
1316         ///
1317         /// `None` until negotiation completes and the channel type is finalized.
1318         pub channel_type: Option<ChannelTypeFeatures>,
1319         /// The position of the funding transaction in the chain. None if the funding transaction has
1320         /// not yet been confirmed and the channel fully opened.
1321         ///
1322         /// Note that if [`inbound_scid_alias`] is set, it must be used for invoices and inbound
1323         /// payments instead of this. See [`get_inbound_payment_scid`].
1324         ///
1325         /// For channels with [`confirmations_required`] set to `Some(0)`, [`outbound_scid_alias`] may
1326         /// be used in place of this in outbound routes. See [`get_outbound_payment_scid`].
1327         ///
1328         /// [`inbound_scid_alias`]: Self::inbound_scid_alias
1329         /// [`outbound_scid_alias`]: Self::outbound_scid_alias
1330         /// [`get_inbound_payment_scid`]: Self::get_inbound_payment_scid
1331         /// [`get_outbound_payment_scid`]: Self::get_outbound_payment_scid
1332         /// [`confirmations_required`]: Self::confirmations_required
1333         pub short_channel_id: Option<u64>,
1334         /// An optional [`short_channel_id`] alias for this channel, randomly generated by us and
1335         /// usable in place of [`short_channel_id`] to reference the channel in outbound routes when
1336         /// the channel has not yet been confirmed (as long as [`confirmations_required`] is
1337         /// `Some(0)`).
1338         ///
1339         /// This will be `None` as long as the channel is not available for routing outbound payments.
1340         ///
1341         /// [`short_channel_id`]: Self::short_channel_id
1342         /// [`confirmations_required`]: Self::confirmations_required
1343         pub outbound_scid_alias: Option<u64>,
1344         /// An optional [`short_channel_id`] alias for this channel, randomly generated by our
1345         /// counterparty and usable in place of [`short_channel_id`] in invoice route hints. Our
1346         /// counterparty will recognize the alias provided here in place of the [`short_channel_id`]
1347         /// when they see a payment to be routed to us.
1348         ///
1349         /// Our counterparty may choose to rotate this value at any time, though will always recognize
1350         /// previous values for inbound payment forwarding.
1351         ///
1352         /// [`short_channel_id`]: Self::short_channel_id
1353         pub inbound_scid_alias: Option<u64>,
1354         /// The value, in satoshis, of this channel as appears in the funding output
1355         pub channel_value_satoshis: u64,
1356         /// The value, in satoshis, that must always be held in the channel for us. This value ensures
1357         /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
1358         /// this value on chain.
1359         ///
1360         /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
1361         ///
1362         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1363         ///
1364         /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
1365         pub unspendable_punishment_reserve: Option<u64>,
1366         /// The `user_channel_id` passed in to create_channel, or a random value if the channel was
1367         /// inbound. This may be zero for inbound channels serialized with LDK versions prior to
1368         /// 0.0.113.
1369         pub user_channel_id: u128,
1370         /// The currently negotiated fee rate denominated in satoshi per 1000 weight units,
1371         /// which is applied to commitment and HTLC transactions.
1372         ///
1373         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.115.
1374         pub feerate_sat_per_1000_weight: Option<u32>,
1375         /// Our total balance.  This is the amount we would get if we close the channel.
1376         /// This value is not exact. Due to various in-flight changes and feerate changes, exactly this
1377         /// amount is not likely to be recoverable on close.
1378         ///
1379         /// This does not include any pending HTLCs which are not yet fully resolved (and, thus, whose
1380         /// balance is not available for inclusion in new outbound HTLCs). This further does not include
1381         /// any pending outgoing HTLCs which are awaiting some other resolution to be sent.
1382         /// This does not consider any on-chain fees.
1383         ///
1384         /// See also [`ChannelDetails::outbound_capacity_msat`]
1385         pub balance_msat: u64,
1386         /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
1387         /// any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1388         /// available for inclusion in new outbound HTLCs). This further does not include any pending
1389         /// outgoing HTLCs which are awaiting some other resolution to be sent.
1390         ///
1391         /// See also [`ChannelDetails::balance_msat`]
1392         ///
1393         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1394         /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
1395         /// should be able to spend nearly this amount.
1396         pub outbound_capacity_msat: u64,
1397         /// The available outbound capacity for sending a single HTLC to the remote peer. This is
1398         /// similar to [`ChannelDetails::outbound_capacity_msat`] but it may be further restricted by
1399         /// the current state and per-HTLC limit(s). This is intended for use when routing, allowing us
1400         /// to use a limit as close as possible to the HTLC limit we can currently send.
1401         ///
1402         /// See also [`ChannelDetails::next_outbound_htlc_minimum_msat`],
1403         /// [`ChannelDetails::balance_msat`], and [`ChannelDetails::outbound_capacity_msat`].
1404         pub next_outbound_htlc_limit_msat: u64,
1405         /// The minimum value for sending a single HTLC to the remote peer. This is the equivalent of
1406         /// [`ChannelDetails::next_outbound_htlc_limit_msat`] but represents a lower-bound, rather than
1407         /// an upper-bound. This is intended for use when routing, allowing us to ensure we pick a
1408         /// route which is valid.
1409         pub next_outbound_htlc_minimum_msat: u64,
1410         /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
1411         /// include any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1412         /// available for inclusion in new inbound HTLCs).
1413         /// Note that there are some corner cases not fully handled here, so the actual available
1414         /// inbound capacity may be slightly higher than this.
1415         ///
1416         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1417         /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
1418         /// However, our counterparty should be able to spend nearly this amount.
1419         pub inbound_capacity_msat: u64,
1420         /// The number of required confirmations on the funding transaction before the funding will be
1421         /// considered "locked". This number is selected by the channel fundee (i.e. us if
1422         /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
1423         /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
1424         /// [`ChannelHandshakeLimits::max_minimum_depth`].
1425         ///
1426         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1427         ///
1428         /// [`is_outbound`]: ChannelDetails::is_outbound
1429         /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
1430         /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
1431         pub confirmations_required: Option<u32>,
1432         /// The current number of confirmations on the funding transaction.
1433         ///
1434         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.113.
1435         pub confirmations: Option<u32>,
1436         /// The number of blocks (after our commitment transaction confirms) that we will need to wait
1437         /// until we can claim our funds after we force-close the channel. During this time our
1438         /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
1439         /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
1440         /// time to claim our non-HTLC-encumbered funds.
1441         ///
1442         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1443         pub force_close_spend_delay: Option<u16>,
1444         /// True if the channel was initiated (and thus funded) by us.
1445         pub is_outbound: bool,
1446         /// True if the channel is confirmed, channel_ready messages have been exchanged, and the
1447         /// channel is not currently being shut down. `channel_ready` message exchange implies the
1448         /// required confirmation count has been reached (and we were connected to the peer at some
1449         /// point after the funding transaction received enough confirmations). The required
1450         /// confirmation count is provided in [`confirmations_required`].
1451         ///
1452         /// [`confirmations_required`]: ChannelDetails::confirmations_required
1453         pub is_channel_ready: bool,
1454         /// True if the channel is (a) confirmed and channel_ready messages have been exchanged, (b)
1455         /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
1456         ///
1457         /// This is a strict superset of `is_channel_ready`.
1458         pub is_usable: bool,
1459         /// True if this channel is (or will be) publicly-announced.
1460         pub is_public: bool,
1461         /// The smallest value HTLC (in msat) we will accept, for this channel. This field
1462         /// is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.107
1463         pub inbound_htlc_minimum_msat: Option<u64>,
1464         /// The largest value HTLC (in msat) we currently will accept, for this channel.
1465         pub inbound_htlc_maximum_msat: Option<u64>,
1466         /// Set of configurable parameters that affect channel operation.
1467         ///
1468         /// This field is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.109.
1469         pub config: Option<ChannelConfig>,
1470 }
1471
1472 impl ChannelDetails {
1473         /// Gets the current SCID which should be used to identify this channel for inbound payments.
1474         /// This should be used for providing invoice hints or in any other context where our
1475         /// counterparty will forward a payment to us.
1476         ///
1477         /// This is either the [`ChannelDetails::inbound_scid_alias`], if set, or the
1478         /// [`ChannelDetails::short_channel_id`]. See those for more information.
1479         pub fn get_inbound_payment_scid(&self) -> Option<u64> {
1480                 self.inbound_scid_alias.or(self.short_channel_id)
1481         }
1482
1483         /// Gets the current SCID which should be used to identify this channel for outbound payments.
1484         /// This should be used in [`Route`]s to describe the first hop or in other contexts where
1485         /// we're sending or forwarding a payment outbound over this channel.
1486         ///
1487         /// This is either the [`ChannelDetails::short_channel_id`], if set, or the
1488         /// [`ChannelDetails::outbound_scid_alias`]. See those for more information.
1489         pub fn get_outbound_payment_scid(&self) -> Option<u64> {
1490                 self.short_channel_id.or(self.outbound_scid_alias)
1491         }
1492
1493         fn from_channel_context<Signer: WriteableEcdsaChannelSigner>(context: &ChannelContext<Signer>,
1494                 best_block_height: u32, latest_features: InitFeatures) -> Self {
1495
1496                 let balance = context.get_available_balances();
1497                 let (to_remote_reserve_satoshis, to_self_reserve_satoshis) =
1498                         context.get_holder_counterparty_selected_channel_reserve_satoshis();
1499                 ChannelDetails {
1500                         channel_id: context.channel_id(),
1501                         counterparty: ChannelCounterparty {
1502                                 node_id: context.get_counterparty_node_id(),
1503                                 features: latest_features,
1504                                 unspendable_punishment_reserve: to_remote_reserve_satoshis,
1505                                 forwarding_info: context.counterparty_forwarding_info(),
1506                                 // Ensures that we have actually received the `htlc_minimum_msat` value
1507                                 // from the counterparty through the `OpenChannel` or `AcceptChannel`
1508                                 // message (as they are always the first message from the counterparty).
1509                                 // Else `Channel::get_counterparty_htlc_minimum_msat` could return the
1510                                 // default `0` value set by `Channel::new_outbound`.
1511                                 outbound_htlc_minimum_msat: if context.have_received_message() {
1512                                         Some(context.get_counterparty_htlc_minimum_msat()) } else { None },
1513                                 outbound_htlc_maximum_msat: context.get_counterparty_htlc_maximum_msat(),
1514                         },
1515                         funding_txo: context.get_funding_txo(),
1516                         // Note that accept_channel (or open_channel) is always the first message, so
1517                         // `have_received_message` indicates that type negotiation has completed.
1518                         channel_type: if context.have_received_message() { Some(context.get_channel_type().clone()) } else { None },
1519                         short_channel_id: context.get_short_channel_id(),
1520                         outbound_scid_alias: if context.is_usable() { Some(context.outbound_scid_alias()) } else { None },
1521                         inbound_scid_alias: context.latest_inbound_scid_alias(),
1522                         channel_value_satoshis: context.get_value_satoshis(),
1523                         feerate_sat_per_1000_weight: Some(context.get_feerate_sat_per_1000_weight()),
1524                         unspendable_punishment_reserve: to_self_reserve_satoshis,
1525                         balance_msat: balance.balance_msat,
1526                         inbound_capacity_msat: balance.inbound_capacity_msat,
1527                         outbound_capacity_msat: balance.outbound_capacity_msat,
1528                         next_outbound_htlc_limit_msat: balance.next_outbound_htlc_limit_msat,
1529                         next_outbound_htlc_minimum_msat: balance.next_outbound_htlc_minimum_msat,
1530                         user_channel_id: context.get_user_id(),
1531                         confirmations_required: context.minimum_depth(),
1532                         confirmations: Some(context.get_funding_tx_confirmations(best_block_height)),
1533                         force_close_spend_delay: context.get_counterparty_selected_contest_delay(),
1534                         is_outbound: context.is_outbound(),
1535                         is_channel_ready: context.is_usable(),
1536                         is_usable: context.is_live(),
1537                         is_public: context.should_announce(),
1538                         inbound_htlc_minimum_msat: Some(context.get_holder_htlc_minimum_msat()),
1539                         inbound_htlc_maximum_msat: context.get_holder_htlc_maximum_msat(),
1540                         config: Some(context.config()),
1541                 }
1542         }
1543 }
1544
1545 /// Used by [`ChannelManager::list_recent_payments`] to express the status of recent payments.
1546 /// These include payments that have yet to find a successful path, or have unresolved HTLCs.
1547 #[derive(Debug, PartialEq)]
1548 pub enum RecentPaymentDetails {
1549         /// When a payment is still being sent and awaiting successful delivery.
1550         Pending {
1551                 /// Hash of the payment that is currently being sent but has yet to be fulfilled or
1552                 /// abandoned.
1553                 payment_hash: PaymentHash,
1554                 /// Total amount (in msat, excluding fees) across all paths for this payment,
1555                 /// not just the amount currently inflight.
1556                 total_msat: u64,
1557         },
1558         /// When a pending payment is fulfilled, we continue tracking it until all pending HTLCs have
1559         /// been resolved. Upon receiving [`Event::PaymentSent`], we delay for a few minutes before the
1560         /// payment is removed from tracking.
1561         Fulfilled {
1562                 /// Hash of the payment that was claimed. `None` for serializations of [`ChannelManager`]
1563                 /// made before LDK version 0.0.104.
1564                 payment_hash: Option<PaymentHash>,
1565         },
1566         /// After a payment's retries are exhausted per the provided [`Retry`], or it is explicitly
1567         /// abandoned via [`ChannelManager::abandon_payment`], it is marked as abandoned until all
1568         /// pending HTLCs for this payment resolve and an [`Event::PaymentFailed`] is generated.
1569         Abandoned {
1570                 /// Hash of the payment that we have given up trying to send.
1571                 payment_hash: PaymentHash,
1572         },
1573 }
1574
1575 /// Route hints used in constructing invoices for [phantom node payents].
1576 ///
1577 /// [phantom node payments]: crate::sign::PhantomKeysManager
1578 #[derive(Clone)]
1579 pub struct PhantomRouteHints {
1580         /// The list of channels to be included in the invoice route hints.
1581         pub channels: Vec<ChannelDetails>,
1582         /// A fake scid used for representing the phantom node's fake channel in generating the invoice
1583         /// route hints.
1584         pub phantom_scid: u64,
1585         /// The pubkey of the real backing node that would ultimately receive the payment.
1586         pub real_node_pubkey: PublicKey,
1587 }
1588
1589 macro_rules! handle_error {
1590         ($self: ident, $internal: expr, $counterparty_node_id: expr) => { {
1591                 // In testing, ensure there are no deadlocks where the lock is already held upon
1592                 // entering the macro.
1593                 debug_assert_ne!($self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
1594                 debug_assert_ne!($self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
1595
1596                 match $internal {
1597                         Ok(msg) => Ok(msg),
1598                         Err(MsgHandleErrInternal { err, chan_id, shutdown_finish }) => {
1599                                 let mut msg_events = Vec::with_capacity(2);
1600
1601                                 if let Some((shutdown_res, update_option)) = shutdown_finish {
1602                                         $self.finish_force_close_channel(shutdown_res);
1603                                         if let Some(update) = update_option {
1604                                                 msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
1605                                                         msg: update
1606                                                 });
1607                                         }
1608                                         if let Some((channel_id, user_channel_id)) = chan_id {
1609                                                 $self.pending_events.lock().unwrap().push_back((events::Event::ChannelClosed {
1610                                                         channel_id, user_channel_id,
1611                                                         reason: ClosureReason::ProcessingError { err: err.err.clone() }
1612                                                 }, None));
1613                                         }
1614                                 }
1615
1616                                 log_error!($self.logger, "{}", err.err);
1617                                 if let msgs::ErrorAction::IgnoreError = err.action {
1618                                 } else {
1619                                         msg_events.push(events::MessageSendEvent::HandleError {
1620                                                 node_id: $counterparty_node_id,
1621                                                 action: err.action.clone()
1622                                         });
1623                                 }
1624
1625                                 if !msg_events.is_empty() {
1626                                         let per_peer_state = $self.per_peer_state.read().unwrap();
1627                                         if let Some(peer_state_mutex) = per_peer_state.get(&$counterparty_node_id) {
1628                                                 let mut peer_state = peer_state_mutex.lock().unwrap();
1629                                                 peer_state.pending_msg_events.append(&mut msg_events);
1630                                         }
1631                                 }
1632
1633                                 // Return error in case higher-API need one
1634                                 Err(err)
1635                         },
1636                 }
1637         } };
1638         ($self: ident, $internal: expr) => {
1639                 match $internal {
1640                         Ok(res) => Ok(res),
1641                         Err((chan, msg_handle_err)) => {
1642                                 let counterparty_node_id = chan.get_counterparty_node_id();
1643                                 handle_error!($self, Err(msg_handle_err), counterparty_node_id).map_err(|err| (chan, err))
1644                         },
1645                 }
1646         };
1647 }
1648
1649 macro_rules! update_maps_on_chan_removal {
1650         ($self: expr, $channel_context: expr) => {{
1651                 $self.id_to_peer.lock().unwrap().remove(&$channel_context.channel_id());
1652                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1653                 if let Some(short_id) = $channel_context.get_short_channel_id() {
1654                         short_to_chan_info.remove(&short_id);
1655                 } else {
1656                         // If the channel was never confirmed on-chain prior to its closure, remove the
1657                         // outbound SCID alias we used for it from the collision-prevention set. While we
1658                         // generally want to avoid ever re-using an outbound SCID alias across all channels, we
1659                         // also don't want a counterparty to be able to trivially cause a memory leak by simply
1660                         // opening a million channels with us which are closed before we ever reach the funding
1661                         // stage.
1662                         let alias_removed = $self.outbound_scid_aliases.lock().unwrap().remove(&$channel_context.outbound_scid_alias());
1663                         debug_assert!(alias_removed);
1664                 }
1665                 short_to_chan_info.remove(&$channel_context.outbound_scid_alias());
1666         }}
1667 }
1668
1669 /// Returns (boolean indicating if we should remove the Channel object from memory, a mapped error)
1670 macro_rules! convert_chan_err {
1671         ($self: ident, $err: expr, $channel: expr, $channel_id: expr) => {
1672                 match $err {
1673                         ChannelError::Warn(msg) => {
1674                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Warn(msg), $channel_id.clone()))
1675                         },
1676                         ChannelError::Ignore(msg) => {
1677                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore(msg), $channel_id.clone()))
1678                         },
1679                         ChannelError::Close(msg) => {
1680                                 log_error!($self.logger, "Closing channel {} due to close-required error: {}", log_bytes!($channel_id[..]), msg);
1681                                 update_maps_on_chan_removal!($self, &$channel.context);
1682                                 let shutdown_res = $channel.context.force_shutdown(true);
1683                                 (true, MsgHandleErrInternal::from_finish_shutdown(msg, *$channel_id, $channel.context.get_user_id(),
1684                                         shutdown_res, $self.get_channel_update_for_broadcast(&$channel).ok()))
1685                         },
1686                 }
1687         };
1688         ($self: ident, $err: expr, $channel_context: expr, $channel_id: expr, PREFUNDED) => {
1689                 match $err {
1690                         // We should only ever have `ChannelError::Close` when prefunded channels error.
1691                         // In any case, just close the channel.
1692                         ChannelError::Warn(msg) | ChannelError::Ignore(msg) | ChannelError::Close(msg) => {
1693                                 log_error!($self.logger, "Closing prefunded channel {} due to an error: {}", log_bytes!($channel_id[..]), msg);
1694                                 update_maps_on_chan_removal!($self, &$channel_context);
1695                                 let shutdown_res = $channel_context.force_shutdown(false);
1696                                 (true, MsgHandleErrInternal::from_finish_shutdown(msg, *$channel_id, $channel_context.get_user_id(),
1697                                         shutdown_res, None))
1698                         },
1699                 }
1700         }
1701 }
1702
1703 macro_rules! break_chan_entry {
1704         ($self: ident, $res: expr, $entry: expr) => {
1705                 match $res {
1706                         Ok(res) => res,
1707                         Err(e) => {
1708                                 let (drop, res) = convert_chan_err!($self, e, $entry.get_mut(), $entry.key());
1709                                 if drop {
1710                                         $entry.remove_entry();
1711                                 }
1712                                 break Err(res);
1713                         }
1714                 }
1715         }
1716 }
1717
1718 macro_rules! try_v1_outbound_chan_entry {
1719         ($self: ident, $res: expr, $entry: expr) => {
1720                 match $res {
1721                         Ok(res) => res,
1722                         Err(e) => {
1723                                 let (drop, res) = convert_chan_err!($self, e, $entry.get_mut().context, $entry.key(), PREFUNDED);
1724                                 if drop {
1725                                         $entry.remove_entry();
1726                                 }
1727                                 return Err(res);
1728                         }
1729                 }
1730         }
1731 }
1732
1733 macro_rules! try_chan_entry {
1734         ($self: ident, $res: expr, $entry: expr) => {
1735                 match $res {
1736                         Ok(res) => res,
1737                         Err(e) => {
1738                                 let (drop, res) = convert_chan_err!($self, e, $entry.get_mut(), $entry.key());
1739                                 if drop {
1740                                         $entry.remove_entry();
1741                                 }
1742                                 return Err(res);
1743                         }
1744                 }
1745         }
1746 }
1747
1748 macro_rules! remove_channel {
1749         ($self: expr, $entry: expr) => {
1750                 {
1751                         let channel = $entry.remove_entry().1;
1752                         update_maps_on_chan_removal!($self, &channel.context);
1753                         channel
1754                 }
1755         }
1756 }
1757
1758 macro_rules! send_channel_ready {
1759         ($self: ident, $pending_msg_events: expr, $channel: expr, $channel_ready_msg: expr) => {{
1760                 $pending_msg_events.push(events::MessageSendEvent::SendChannelReady {
1761                         node_id: $channel.context.get_counterparty_node_id(),
1762                         msg: $channel_ready_msg,
1763                 });
1764                 // Note that we may send a `channel_ready` multiple times for a channel if we reconnect, so
1765                 // we allow collisions, but we shouldn't ever be updating the channel ID pointed to.
1766                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1767                 let outbound_alias_insert = short_to_chan_info.insert($channel.context.outbound_scid_alias(), ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
1768                 assert!(outbound_alias_insert.is_none() || outbound_alias_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
1769                         "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1770                 if let Some(real_scid) = $channel.context.get_short_channel_id() {
1771                         let scid_insert = short_to_chan_info.insert(real_scid, ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
1772                         assert!(scid_insert.is_none() || scid_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
1773                                 "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1774                 }
1775         }}
1776 }
1777
1778 macro_rules! emit_channel_pending_event {
1779         ($locked_events: expr, $channel: expr) => {
1780                 if $channel.context.should_emit_channel_pending_event() {
1781                         $locked_events.push_back((events::Event::ChannelPending {
1782                                 channel_id: $channel.context.channel_id(),
1783                                 former_temporary_channel_id: $channel.context.temporary_channel_id(),
1784                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
1785                                 user_channel_id: $channel.context.get_user_id(),
1786                                 funding_txo: $channel.context.get_funding_txo().unwrap().into_bitcoin_outpoint(),
1787                         }, None));
1788                         $channel.context.set_channel_pending_event_emitted();
1789                 }
1790         }
1791 }
1792
1793 macro_rules! emit_channel_ready_event {
1794         ($locked_events: expr, $channel: expr) => {
1795                 if $channel.context.should_emit_channel_ready_event() {
1796                         debug_assert!($channel.context.channel_pending_event_emitted());
1797                         $locked_events.push_back((events::Event::ChannelReady {
1798                                 channel_id: $channel.context.channel_id(),
1799                                 user_channel_id: $channel.context.get_user_id(),
1800                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
1801                                 channel_type: $channel.context.get_channel_type().clone(),
1802                         }, None));
1803                         $channel.context.set_channel_ready_event_emitted();
1804                 }
1805         }
1806 }
1807
1808 macro_rules! handle_monitor_update_completion {
1809         ($self: ident, $update_id: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr) => { {
1810                 let mut updates = $chan.monitor_updating_restored(&$self.logger,
1811                         &$self.node_signer, $self.genesis_hash, &$self.default_configuration,
1812                         $self.best_block.read().unwrap().height());
1813                 let counterparty_node_id = $chan.context.get_counterparty_node_id();
1814                 let channel_update = if updates.channel_ready.is_some() && $chan.context.is_usable() {
1815                         // We only send a channel_update in the case where we are just now sending a
1816                         // channel_ready and the channel is in a usable state. We may re-send a
1817                         // channel_update later through the announcement_signatures process for public
1818                         // channels, but there's no reason not to just inform our counterparty of our fees
1819                         // now.
1820                         if let Ok(msg) = $self.get_channel_update_for_unicast($chan) {
1821                                 Some(events::MessageSendEvent::SendChannelUpdate {
1822                                         node_id: counterparty_node_id,
1823                                         msg,
1824                                 })
1825                         } else { None }
1826                 } else { None };
1827
1828                 let update_actions = $peer_state.monitor_update_blocked_actions
1829                         .remove(&$chan.context.channel_id()).unwrap_or(Vec::new());
1830
1831                 let htlc_forwards = $self.handle_channel_resumption(
1832                         &mut $peer_state.pending_msg_events, $chan, updates.raa,
1833                         updates.commitment_update, updates.order, updates.accepted_htlcs,
1834                         updates.funding_broadcastable, updates.channel_ready,
1835                         updates.announcement_sigs);
1836                 if let Some(upd) = channel_update {
1837                         $peer_state.pending_msg_events.push(upd);
1838                 }
1839
1840                 let channel_id = $chan.context.channel_id();
1841                 core::mem::drop($peer_state_lock);
1842                 core::mem::drop($per_peer_state_lock);
1843
1844                 $self.handle_monitor_update_completion_actions(update_actions);
1845
1846                 if let Some(forwards) = htlc_forwards {
1847                         $self.forward_htlcs(&mut [forwards][..]);
1848                 }
1849                 $self.finalize_claims(updates.finalized_claimed_htlcs);
1850                 for failure in updates.failed_htlcs.drain(..) {
1851                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
1852                         $self.fail_htlc_backwards_internal(&failure.0, &failure.1, &failure.2, receiver);
1853                 }
1854         } }
1855 }
1856
1857 macro_rules! handle_new_monitor_update {
1858         ($self: ident, $update_res: expr, $update_id: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr, MANUALLY_REMOVING, $remove: expr) => { {
1859                 // update_maps_on_chan_removal needs to be able to take id_to_peer, so make sure we can in
1860                 // any case so that it won't deadlock.
1861                 debug_assert_ne!($self.id_to_peer.held_by_thread(), LockHeldState::HeldByThread);
1862                 #[cfg(debug_assertions)] {
1863                         debug_assert!($self.background_events_processed_since_startup.load(Ordering::Acquire));
1864                 }
1865                 match $update_res {
1866                         ChannelMonitorUpdateStatus::InProgress => {
1867                                 log_debug!($self.logger, "ChannelMonitor update for {} in flight, holding messages until the update completes.",
1868                                         log_bytes!($chan.context.channel_id()[..]));
1869                                 Ok(())
1870                         },
1871                         ChannelMonitorUpdateStatus::PermanentFailure => {
1872                                 log_error!($self.logger, "Closing channel {} due to monitor update ChannelMonitorUpdateStatus::PermanentFailure",
1873                                         log_bytes!($chan.context.channel_id()[..]));
1874                                 update_maps_on_chan_removal!($self, &$chan.context);
1875                                 let res: Result<(), _> = Err(MsgHandleErrInternal::from_finish_shutdown(
1876                                         "ChannelMonitor storage failure".to_owned(), $chan.context.channel_id(),
1877                                         $chan.context.get_user_id(), $chan.context.force_shutdown(false),
1878                                         $self.get_channel_update_for_broadcast(&$chan).ok()));
1879                                 $remove;
1880                                 res
1881                         },
1882                         ChannelMonitorUpdateStatus::Completed => {
1883                                 $chan.complete_one_mon_update($update_id);
1884                                 if $chan.no_monitor_updates_pending() {
1885                                         handle_monitor_update_completion!($self, $update_id, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan);
1886                                 }
1887                                 Ok(())
1888                         },
1889                 }
1890         } };
1891         ($self: ident, $update_res: expr, $update_id: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan_entry: expr) => {
1892                 handle_new_monitor_update!($self, $update_res, $update_id, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan_entry.get_mut(), MANUALLY_REMOVING, $chan_entry.remove_entry())
1893         }
1894 }
1895
1896 macro_rules! process_events_body {
1897         ($self: expr, $event_to_handle: expr, $handle_event: expr) => {
1898                 let mut processed_all_events = false;
1899                 while !processed_all_events {
1900                         if $self.pending_events_processor.compare_exchange(false, true, Ordering::Acquire, Ordering::Relaxed).is_err() {
1901                                 return;
1902                         }
1903
1904                         let mut result = NotifyOption::SkipPersist;
1905
1906                         {
1907                                 // We'll acquire our total consistency lock so that we can be sure no other
1908                                 // persists happen while processing monitor events.
1909                                 let _read_guard = $self.total_consistency_lock.read().unwrap();
1910
1911                                 // Because `handle_post_event_actions` may send `ChannelMonitorUpdate`s to the user we must
1912                                 // ensure any startup-generated background events are handled first.
1913                                 if $self.process_background_events() == NotifyOption::DoPersist { result = NotifyOption::DoPersist; }
1914
1915                                 // TODO: This behavior should be documented. It's unintuitive that we query
1916                                 // ChannelMonitors when clearing other events.
1917                                 if $self.process_pending_monitor_events() {
1918                                         result = NotifyOption::DoPersist;
1919                                 }
1920                         }
1921
1922                         let pending_events = $self.pending_events.lock().unwrap().clone();
1923                         let num_events = pending_events.len();
1924                         if !pending_events.is_empty() {
1925                                 result = NotifyOption::DoPersist;
1926                         }
1927
1928                         let mut post_event_actions = Vec::new();
1929
1930                         for (event, action_opt) in pending_events {
1931                                 $event_to_handle = event;
1932                                 $handle_event;
1933                                 if let Some(action) = action_opt {
1934                                         post_event_actions.push(action);
1935                                 }
1936                         }
1937
1938                         {
1939                                 let mut pending_events = $self.pending_events.lock().unwrap();
1940                                 pending_events.drain(..num_events);
1941                                 processed_all_events = pending_events.is_empty();
1942                                 $self.pending_events_processor.store(false, Ordering::Release);
1943                         }
1944
1945                         if !post_event_actions.is_empty() {
1946                                 $self.handle_post_event_actions(post_event_actions);
1947                                 // If we had some actions, go around again as we may have more events now
1948                                 processed_all_events = false;
1949                         }
1950
1951                         if result == NotifyOption::DoPersist {
1952                                 $self.persistence_notifier.notify();
1953                         }
1954                 }
1955         }
1956 }
1957
1958 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>
1959 where
1960         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
1961         T::Target: BroadcasterInterface,
1962         ES::Target: EntropySource,
1963         NS::Target: NodeSigner,
1964         SP::Target: SignerProvider,
1965         F::Target: FeeEstimator,
1966         R::Target: Router,
1967         L::Target: Logger,
1968 {
1969         /// Constructs a new `ChannelManager` to hold several channels and route between them.
1970         ///
1971         /// This is the main "logic hub" for all channel-related actions, and implements
1972         /// [`ChannelMessageHandler`].
1973         ///
1974         /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
1975         ///
1976         /// Users need to notify the new `ChannelManager` when a new block is connected or
1977         /// disconnected using its [`block_connected`] and [`block_disconnected`] methods, starting
1978         /// from after [`params.best_block.block_hash`]. See [`chain::Listen`] and [`chain::Confirm`] for
1979         /// more details.
1980         ///
1981         /// [`block_connected`]: chain::Listen::block_connected
1982         /// [`block_disconnected`]: chain::Listen::block_disconnected
1983         /// [`params.best_block.block_hash`]: chain::BestBlock::block_hash
1984         pub fn new(fee_est: F, chain_monitor: M, tx_broadcaster: T, router: R, logger: L, entropy_source: ES, node_signer: NS, signer_provider: SP, config: UserConfig, params: ChainParameters) -> Self {
1985                 let mut secp_ctx = Secp256k1::new();
1986                 secp_ctx.seeded_randomize(&entropy_source.get_secure_random_bytes());
1987                 let inbound_pmt_key_material = node_signer.get_inbound_payment_key_material();
1988                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
1989                 ChannelManager {
1990                         default_configuration: config.clone(),
1991                         genesis_hash: genesis_block(params.network).header.block_hash(),
1992                         fee_estimator: LowerBoundedFeeEstimator::new(fee_est),
1993                         chain_monitor,
1994                         tx_broadcaster,
1995                         router,
1996
1997                         best_block: RwLock::new(params.best_block),
1998
1999                         outbound_scid_aliases: Mutex::new(HashSet::new()),
2000                         pending_inbound_payments: Mutex::new(HashMap::new()),
2001                         pending_outbound_payments: OutboundPayments::new(),
2002                         forward_htlcs: Mutex::new(HashMap::new()),
2003                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments: HashMap::new(), pending_claiming_payments: HashMap::new() }),
2004                         pending_intercepted_htlcs: Mutex::new(HashMap::new()),
2005                         id_to_peer: Mutex::new(HashMap::new()),
2006                         short_to_chan_info: FairRwLock::new(HashMap::new()),
2007
2008                         our_network_pubkey: node_signer.get_node_id(Recipient::Node).unwrap(),
2009                         secp_ctx,
2010
2011                         inbound_payment_key: expanded_inbound_key,
2012                         fake_scid_rand_bytes: entropy_source.get_secure_random_bytes(),
2013
2014                         probing_cookie_secret: entropy_source.get_secure_random_bytes(),
2015
2016                         highest_seen_timestamp: AtomicUsize::new(0),
2017
2018                         per_peer_state: FairRwLock::new(HashMap::new()),
2019
2020                         pending_events: Mutex::new(VecDeque::new()),
2021                         pending_events_processor: AtomicBool::new(false),
2022                         pending_background_events: Mutex::new(Vec::new()),
2023                         total_consistency_lock: RwLock::new(()),
2024                         #[cfg(debug_assertions)]
2025                         background_events_processed_since_startup: AtomicBool::new(false),
2026                         persistence_notifier: Notifier::new(),
2027
2028                         entropy_source,
2029                         node_signer,
2030                         signer_provider,
2031
2032                         logger,
2033                 }
2034         }
2035
2036         /// Gets the current configuration applied to all new channels.
2037         pub fn get_current_default_configuration(&self) -> &UserConfig {
2038                 &self.default_configuration
2039         }
2040
2041         fn create_and_insert_outbound_scid_alias(&self) -> u64 {
2042                 let height = self.best_block.read().unwrap().height();
2043                 let mut outbound_scid_alias = 0;
2044                 let mut i = 0;
2045                 loop {
2046                         if cfg!(fuzzing) { // fuzzing chacha20 doesn't use the key at all so we always get the same alias
2047                                 outbound_scid_alias += 1;
2048                         } else {
2049                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias.get_fake_scid(height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
2050                         }
2051                         if outbound_scid_alias != 0 && self.outbound_scid_aliases.lock().unwrap().insert(outbound_scid_alias) {
2052                                 break;
2053                         }
2054                         i += 1;
2055                         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"); }
2056                 }
2057                 outbound_scid_alias
2058         }
2059
2060         /// Creates a new outbound channel to the given remote node and with the given value.
2061         ///
2062         /// `user_channel_id` will be provided back as in
2063         /// [`Event::FundingGenerationReady::user_channel_id`] to allow tracking of which events
2064         /// correspond with which `create_channel` call. Note that the `user_channel_id` defaults to a
2065         /// randomized value for inbound channels. `user_channel_id` has no meaning inside of LDK, it
2066         /// is simply copied to events and otherwise ignored.
2067         ///
2068         /// Raises [`APIError::APIMisuseError`] when `channel_value_satoshis` > 2**24 or `push_msat` is
2069         /// greater than `channel_value_satoshis * 1k` or `channel_value_satoshis < 1000`.
2070         ///
2071         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be opened due to failing to
2072         /// generate a shutdown scriptpubkey or destination script set by
2073         /// [`SignerProvider::get_shutdown_scriptpubkey`] or [`SignerProvider::get_destination_script`].
2074         ///
2075         /// Note that we do not check if you are currently connected to the given peer. If no
2076         /// connection is available, the outbound `open_channel` message may fail to send, resulting in
2077         /// the channel eventually being silently forgotten (dropped on reload).
2078         ///
2079         /// Returns the new Channel's temporary `channel_id`. This ID will appear as
2080         /// [`Event::FundingGenerationReady::temporary_channel_id`] and in
2081         /// [`ChannelDetails::channel_id`] until after
2082         /// [`ChannelManager::funding_transaction_generated`] is called, swapping the Channel's ID for
2083         /// one derived from the funding transaction's TXID. If the counterparty rejects the channel
2084         /// immediately, this temporary ID will appear in [`Event::ChannelClosed::channel_id`].
2085         ///
2086         /// [`Event::FundingGenerationReady::user_channel_id`]: events::Event::FundingGenerationReady::user_channel_id
2087         /// [`Event::FundingGenerationReady::temporary_channel_id`]: events::Event::FundingGenerationReady::temporary_channel_id
2088         /// [`Event::ChannelClosed::channel_id`]: events::Event::ChannelClosed::channel_id
2089         pub fn create_channel(&self, their_network_key: PublicKey, channel_value_satoshis: u64, push_msat: u64, user_channel_id: u128, override_config: Option<UserConfig>) -> Result<[u8; 32], APIError> {
2090                 if channel_value_satoshis < 1000 {
2091                         return Err(APIError::APIMisuseError { err: format!("Channel value must be at least 1000 satoshis. It was {}", channel_value_satoshis) });
2092                 }
2093
2094                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2095                 // We want to make sure the lock is actually acquired by PersistenceNotifierGuard.
2096                 debug_assert!(&self.total_consistency_lock.try_write().is_err());
2097
2098                 let per_peer_state = self.per_peer_state.read().unwrap();
2099
2100                 let peer_state_mutex = per_peer_state.get(&their_network_key)
2101                         .ok_or_else(|| APIError::APIMisuseError{ err: format!("Not connected to node: {}", their_network_key) })?;
2102
2103                 let mut peer_state = peer_state_mutex.lock().unwrap();
2104                 let channel = {
2105                         let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
2106                         let their_features = &peer_state.latest_features;
2107                         let config = if override_config.is_some() { override_config.as_ref().unwrap() } else { &self.default_configuration };
2108                         match OutboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider, their_network_key,
2109                                 their_features, channel_value_satoshis, push_msat, user_channel_id, config,
2110                                 self.best_block.read().unwrap().height(), outbound_scid_alias)
2111                         {
2112                                 Ok(res) => res,
2113                                 Err(e) => {
2114                                         self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
2115                                         return Err(e);
2116                                 },
2117                         }
2118                 };
2119                 let res = channel.get_open_channel(self.genesis_hash.clone());
2120
2121                 let temporary_channel_id = channel.context.channel_id();
2122                 match peer_state.outbound_v1_channel_by_id.entry(temporary_channel_id) {
2123                         hash_map::Entry::Occupied(_) => {
2124                                 if cfg!(fuzzing) {
2125                                         return Err(APIError::APIMisuseError { err: "Fuzzy bad RNG".to_owned() });
2126                                 } else {
2127                                         panic!("RNG is bad???");
2128                                 }
2129                         },
2130                         hash_map::Entry::Vacant(entry) => { entry.insert(channel); }
2131                 }
2132
2133                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
2134                         node_id: their_network_key,
2135                         msg: res,
2136                 });
2137                 Ok(temporary_channel_id)
2138         }
2139
2140         fn list_funded_channels_with_filter<Fn: FnMut(&(&[u8; 32], &Channel<<SP::Target as SignerProvider>::Signer>)) -> bool + Copy>(&self, f: Fn) -> Vec<ChannelDetails> {
2141                 // Allocate our best estimate of the number of channels we have in the `res`
2142                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2143                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2144                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2145                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2146                 // the same channel.
2147                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2148                 {
2149                         let best_block_height = self.best_block.read().unwrap().height();
2150                         let per_peer_state = self.per_peer_state.read().unwrap();
2151                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2152                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2153                                 let peer_state = &mut *peer_state_lock;
2154                                 for (_channel_id, channel) in peer_state.channel_by_id.iter().filter(f) {
2155                                         let details = ChannelDetails::from_channel_context(&channel.context, best_block_height,
2156                                                 peer_state.latest_features.clone());
2157                                         res.push(details);
2158                                 }
2159                         }
2160                 }
2161                 res
2162         }
2163
2164         /// Gets the list of open channels, in random order. See [`ChannelDetails`] field documentation for
2165         /// more information.
2166         pub fn list_channels(&self) -> Vec<ChannelDetails> {
2167                 // Allocate our best estimate of the number of channels we have in the `res`
2168                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2169                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2170                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2171                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2172                 // the same channel.
2173                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2174                 {
2175                         let best_block_height = self.best_block.read().unwrap().height();
2176                         let per_peer_state = self.per_peer_state.read().unwrap();
2177                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2178                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2179                                 let peer_state = &mut *peer_state_lock;
2180                                 for (_channel_id, channel) in peer_state.channel_by_id.iter() {
2181                                         let details = ChannelDetails::from_channel_context(&channel.context, best_block_height,
2182                                                 peer_state.latest_features.clone());
2183                                         res.push(details);
2184                                 }
2185                                 for (_channel_id, channel) in peer_state.inbound_v1_channel_by_id.iter() {
2186                                         let details = ChannelDetails::from_channel_context(&channel.context, best_block_height,
2187                                                 peer_state.latest_features.clone());
2188                                         res.push(details);
2189                                 }
2190                                 for (_channel_id, channel) in peer_state.outbound_v1_channel_by_id.iter() {
2191                                         let details = ChannelDetails::from_channel_context(&channel.context, best_block_height,
2192                                                 peer_state.latest_features.clone());
2193                                         res.push(details);
2194                                 }
2195                         }
2196                 }
2197                 res
2198         }
2199
2200         /// Gets the list of usable channels, in random order. Useful as an argument to
2201         /// [`Router::find_route`] to ensure non-announced channels are used.
2202         ///
2203         /// These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
2204         /// documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
2205         /// are.
2206         pub fn list_usable_channels(&self) -> Vec<ChannelDetails> {
2207                 // Note we use is_live here instead of usable which leads to somewhat confused
2208                 // internal/external nomenclature, but that's ok cause that's probably what the user
2209                 // really wanted anyway.
2210                 self.list_funded_channels_with_filter(|&(_, ref channel)| channel.context.is_live())
2211         }
2212
2213         /// Gets the list of channels we have with a given counterparty, in random order.
2214         pub fn list_channels_with_counterparty(&self, counterparty_node_id: &PublicKey) -> Vec<ChannelDetails> {
2215                 let best_block_height = self.best_block.read().unwrap().height();
2216                 let per_peer_state = self.per_peer_state.read().unwrap();
2217
2218                 if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
2219                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2220                         let peer_state = &mut *peer_state_lock;
2221                         let features = &peer_state.latest_features;
2222                         return peer_state.channel_by_id
2223                                 .iter()
2224                                 .map(|(_, channel)|
2225                                         ChannelDetails::from_channel_context(&channel.context, best_block_height, features.clone()))
2226                                 .collect();
2227                 }
2228                 vec![]
2229         }
2230
2231         /// Returns in an undefined order recent payments that -- if not fulfilled -- have yet to find a
2232         /// successful path, or have unresolved HTLCs.
2233         ///
2234         /// This can be useful for payments that may have been prepared, but ultimately not sent, as a
2235         /// result of a crash. If such a payment exists, is not listed here, and an
2236         /// [`Event::PaymentSent`] has not been received, you may consider resending the payment.
2237         ///
2238         /// [`Event::PaymentSent`]: events::Event::PaymentSent
2239         pub fn list_recent_payments(&self) -> Vec<RecentPaymentDetails> {
2240                 self.pending_outbound_payments.pending_outbound_payments.lock().unwrap().iter()
2241                         .filter_map(|(_, pending_outbound_payment)| match pending_outbound_payment {
2242                                 PendingOutboundPayment::Retryable { payment_hash, total_msat, .. } => {
2243                                         Some(RecentPaymentDetails::Pending {
2244                                                 payment_hash: *payment_hash,
2245                                                 total_msat: *total_msat,
2246                                         })
2247                                 },
2248                                 PendingOutboundPayment::Abandoned { payment_hash, .. } => {
2249                                         Some(RecentPaymentDetails::Abandoned { payment_hash: *payment_hash })
2250                                 },
2251                                 PendingOutboundPayment::Fulfilled { payment_hash, .. } => {
2252                                         Some(RecentPaymentDetails::Fulfilled { payment_hash: *payment_hash })
2253                                 },
2254                                 PendingOutboundPayment::Legacy { .. } => None
2255                         })
2256                         .collect()
2257         }
2258
2259         /// Helper function that issues the channel close events
2260         fn issue_channel_close_events(&self, context: &ChannelContext<<SP::Target as SignerProvider>::Signer>, closure_reason: ClosureReason) {
2261                 let mut pending_events_lock = self.pending_events.lock().unwrap();
2262                 match context.unbroadcasted_funding() {
2263                         Some(transaction) => {
2264                                 pending_events_lock.push_back((events::Event::DiscardFunding {
2265                                         channel_id: context.channel_id(), transaction
2266                                 }, None));
2267                         },
2268                         None => {},
2269                 }
2270                 pending_events_lock.push_back((events::Event::ChannelClosed {
2271                         channel_id: context.channel_id(),
2272                         user_channel_id: context.get_user_id(),
2273                         reason: closure_reason
2274                 }, None));
2275         }
2276
2277         fn close_channel_internal(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey, target_feerate_sats_per_1000_weight: Option<u32>, override_shutdown_script: Option<ShutdownScript>) -> Result<(), APIError> {
2278                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2279
2280                 let mut failed_htlcs: Vec<(HTLCSource, PaymentHash)>;
2281                 let result: Result<(), _> = loop {
2282                         let per_peer_state = self.per_peer_state.read().unwrap();
2283
2284                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
2285                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
2286
2287                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2288                         let peer_state = &mut *peer_state_lock;
2289                         match peer_state.channel_by_id.entry(channel_id.clone()) {
2290                                 hash_map::Entry::Occupied(mut chan_entry) => {
2291                                         let funding_txo_opt = chan_entry.get().context.get_funding_txo();
2292                                         let their_features = &peer_state.latest_features;
2293                                         let (shutdown_msg, mut monitor_update_opt, htlcs) = chan_entry.get_mut()
2294                                                 .get_shutdown(&self.signer_provider, their_features, target_feerate_sats_per_1000_weight, override_shutdown_script)?;
2295                                         failed_htlcs = htlcs;
2296
2297                                         // We can send the `shutdown` message before updating the `ChannelMonitor`
2298                                         // here as we don't need the monitor update to complete until we send a
2299                                         // `shutdown_signed`, which we'll delay if we're pending a monitor update.
2300                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
2301                                                 node_id: *counterparty_node_id,
2302                                                 msg: shutdown_msg,
2303                                         });
2304
2305                                         // Update the monitor with the shutdown script if necessary.
2306                                         if let Some(monitor_update) = monitor_update_opt.take() {
2307                                                 let update_id = monitor_update.update_id;
2308                                                 let update_res = self.chain_monitor.update_channel(funding_txo_opt.unwrap(), monitor_update);
2309                                                 break handle_new_monitor_update!(self, update_res, update_id, peer_state_lock, peer_state, per_peer_state, chan_entry);
2310                                         }
2311
2312                                         if chan_entry.get().is_shutdown() {
2313                                                 let channel = remove_channel!(self, chan_entry);
2314                                                 if let Ok(channel_update) = self.get_channel_update_for_broadcast(&channel) {
2315                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2316                                                                 msg: channel_update
2317                                                         });
2318                                                 }
2319                                                 self.issue_channel_close_events(&channel.context, ClosureReason::HolderForceClosed);
2320                                         }
2321                                         break Ok(());
2322                                 },
2323                                 hash_map::Entry::Vacant(_) => return Err(APIError::ChannelUnavailable{err: format!("Channel with id {} not found for the passed counterparty node_id {}", log_bytes!(*channel_id), counterparty_node_id) })
2324                         }
2325                 };
2326
2327                 for htlc_source in failed_htlcs.drain(..) {
2328                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2329                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(*counterparty_node_id), channel_id: *channel_id };
2330                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
2331                 }
2332
2333                 let _ = handle_error!(self, result, *counterparty_node_id);
2334                 Ok(())
2335         }
2336
2337         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2338         /// will be accepted on the given channel, and after additional timeout/the closing of all
2339         /// pending HTLCs, the channel will be closed on chain.
2340         ///
2341         ///  * If we are the channel initiator, we will pay between our [`Background`] and
2342         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2343         ///    estimate.
2344         ///  * If our counterparty is the channel initiator, we will require a channel closing
2345         ///    transaction feerate of at least our [`Background`] feerate or the feerate which
2346         ///    would appear on a force-closure transaction, whichever is lower. We will allow our
2347         ///    counterparty to pay as much fee as they'd like, however.
2348         ///
2349         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2350         ///
2351         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2352         /// generate a shutdown scriptpubkey or destination script set by
2353         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2354         /// channel.
2355         ///
2356         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2357         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2358         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2359         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2360         pub fn close_channel(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey) -> Result<(), APIError> {
2361                 self.close_channel_internal(channel_id, counterparty_node_id, None, None)
2362         }
2363
2364         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2365         /// will be accepted on the given channel, and after additional timeout/the closing of all
2366         /// pending HTLCs, the channel will be closed on chain.
2367         ///
2368         /// `target_feerate_sat_per_1000_weight` has different meanings depending on if we initiated
2369         /// the channel being closed or not:
2370         ///  * If we are the channel initiator, we will pay at least this feerate on the closing
2371         ///    transaction. The upper-bound is set by
2372         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2373         ///    estimate (or `target_feerate_sat_per_1000_weight`, if it is greater).
2374         ///  * If our counterparty is the channel initiator, we will refuse to accept a channel closure
2375         ///    transaction feerate below `target_feerate_sat_per_1000_weight` (or the feerate which
2376         ///    will appear on a force-closure transaction, whichever is lower).
2377         ///
2378         /// The `shutdown_script` provided  will be used as the `scriptPubKey` for the closing transaction.
2379         /// Will fail if a shutdown script has already been set for this channel by
2380         /// ['ChannelHandshakeConfig::commit_upfront_shutdown_pubkey`]. The given shutdown script must
2381         /// also be compatible with our and the counterparty's features.
2382         ///
2383         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2384         ///
2385         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2386         /// generate a shutdown scriptpubkey or destination script set by
2387         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2388         /// channel.
2389         ///
2390         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2391         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2392         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2393         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2394         pub fn close_channel_with_feerate_and_script(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey, target_feerate_sats_per_1000_weight: Option<u32>, shutdown_script: Option<ShutdownScript>) -> Result<(), APIError> {
2395                 self.close_channel_internal(channel_id, counterparty_node_id, target_feerate_sats_per_1000_weight, shutdown_script)
2396         }
2397
2398         #[inline]
2399         fn finish_force_close_channel(&self, shutdown_res: ShutdownResult) {
2400                 let (monitor_update_option, mut failed_htlcs) = shutdown_res;
2401                 log_debug!(self.logger, "Finishing force-closure of channel with {} HTLCs to fail", failed_htlcs.len());
2402                 for htlc_source in failed_htlcs.drain(..) {
2403                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
2404                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2405                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2406                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
2407                 }
2408                 if let Some((_, funding_txo, monitor_update)) = monitor_update_option {
2409                         // There isn't anything we can do if we get an update failure - we're already
2410                         // force-closing. The monitor update on the required in-memory copy should broadcast
2411                         // the latest local state, which is the best we can do anyway. Thus, it is safe to
2412                         // ignore the result here.
2413                         let _ = self.chain_monitor.update_channel(funding_txo, &monitor_update);
2414                 }
2415         }
2416
2417         /// `peer_msg` should be set when we receive a message from a peer, but not set when the
2418         /// user closes, which will be re-exposed as the `ChannelClosed` reason.
2419         fn force_close_channel_with_peer(&self, channel_id: &[u8; 32], peer_node_id: &PublicKey, peer_msg: Option<&String>, broadcast: bool)
2420         -> Result<PublicKey, APIError> {
2421                 let per_peer_state = self.per_peer_state.read().unwrap();
2422                 let peer_state_mutex = per_peer_state.get(peer_node_id)
2423                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", peer_node_id) })?;
2424                 let (update_opt, counterparty_node_id) = {
2425                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2426                         let peer_state = &mut *peer_state_lock;
2427                         let closure_reason = if let Some(peer_msg) = peer_msg {
2428                                 ClosureReason::CounterpartyForceClosed { peer_msg: UntrustedString(peer_msg.to_string()) }
2429                         } else {
2430                                 ClosureReason::HolderForceClosed
2431                         };
2432                         if let hash_map::Entry::Occupied(chan) = peer_state.channel_by_id.entry(channel_id.clone()) {
2433                                 log_error!(self.logger, "Force-closing channel {}", log_bytes!(channel_id[..]));
2434                                 self.issue_channel_close_events(&chan.get().context, closure_reason);
2435                                 let mut chan = remove_channel!(self, chan);
2436                                 self.finish_force_close_channel(chan.context.force_shutdown(broadcast));
2437                                 (self.get_channel_update_for_broadcast(&chan).ok(), chan.context.get_counterparty_node_id())
2438                         } else if let hash_map::Entry::Occupied(chan) = peer_state.outbound_v1_channel_by_id.entry(channel_id.clone()) {
2439                                 log_error!(self.logger, "Force-closing channel {}", log_bytes!(channel_id[..]));
2440                                 self.issue_channel_close_events(&chan.get().context, closure_reason);
2441                                 let mut chan = remove_channel!(self, chan);
2442                                 self.finish_force_close_channel(chan.context.force_shutdown(false));
2443                                 // Prefunded channel has no update
2444                                 (None, chan.context.get_counterparty_node_id())
2445                         } else if let hash_map::Entry::Occupied(chan) = peer_state.inbound_v1_channel_by_id.entry(channel_id.clone()) {
2446                                 log_error!(self.logger, "Force-closing channel {}", log_bytes!(channel_id[..]));
2447                                 self.issue_channel_close_events(&chan.get().context, closure_reason);
2448                                 let mut chan = remove_channel!(self, chan);
2449                                 self.finish_force_close_channel(chan.context.force_shutdown(false));
2450                                 // Prefunded channel has no update
2451                                 (None, chan.context.get_counterparty_node_id())
2452                         } else {
2453                                 return Err(APIError::ChannelUnavailable{ err: format!("Channel with id {} not found for the passed counterparty node_id {}", log_bytes!(*channel_id), peer_node_id) });
2454                         }
2455                 };
2456                 if let Some(update) = update_opt {
2457                         let mut peer_state = peer_state_mutex.lock().unwrap();
2458                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2459                                 msg: update
2460                         });
2461                 }
2462
2463                 Ok(counterparty_node_id)
2464         }
2465
2466         fn force_close_sending_error(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey, broadcast: bool) -> Result<(), APIError> {
2467                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2468                 match self.force_close_channel_with_peer(channel_id, counterparty_node_id, None, broadcast) {
2469                         Ok(counterparty_node_id) => {
2470                                 let per_peer_state = self.per_peer_state.read().unwrap();
2471                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2472                                         let mut peer_state = peer_state_mutex.lock().unwrap();
2473                                         peer_state.pending_msg_events.push(
2474                                                 events::MessageSendEvent::HandleError {
2475                                                         node_id: counterparty_node_id,
2476                                                         action: msgs::ErrorAction::SendErrorMessage {
2477                                                                 msg: msgs::ErrorMessage { channel_id: *channel_id, data: "Channel force-closed".to_owned() }
2478                                                         },
2479                                                 }
2480                                         );
2481                                 }
2482                                 Ok(())
2483                         },
2484                         Err(e) => Err(e)
2485                 }
2486         }
2487
2488         /// Force closes a channel, immediately broadcasting the latest local transaction(s) and
2489         /// rejecting new HTLCs on the given channel. Fails if `channel_id` is unknown to
2490         /// the manager, or if the `counterparty_node_id` isn't the counterparty of the corresponding
2491         /// channel.
2492         pub fn force_close_broadcasting_latest_txn(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey)
2493         -> Result<(), APIError> {
2494                 self.force_close_sending_error(channel_id, counterparty_node_id, true)
2495         }
2496
2497         /// Force closes a channel, rejecting new HTLCs on the given channel but skips broadcasting
2498         /// the latest local transaction(s). Fails if `channel_id` is unknown to the manager, or if the
2499         /// `counterparty_node_id` isn't the counterparty of the corresponding channel.
2500         ///
2501         /// You can always get the latest local transaction(s) to broadcast from
2502         /// [`ChannelMonitor::get_latest_holder_commitment_txn`].
2503         pub fn force_close_without_broadcasting_txn(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey)
2504         -> Result<(), APIError> {
2505                 self.force_close_sending_error(channel_id, counterparty_node_id, false)
2506         }
2507
2508         /// Force close all channels, immediately broadcasting the latest local commitment transaction
2509         /// for each to the chain and rejecting new HTLCs on each.
2510         pub fn force_close_all_channels_broadcasting_latest_txn(&self) {
2511                 for chan in self.list_channels() {
2512                         let _ = self.force_close_broadcasting_latest_txn(&chan.channel_id, &chan.counterparty.node_id);
2513                 }
2514         }
2515
2516         /// Force close all channels rejecting new HTLCs on each but without broadcasting the latest
2517         /// local transaction(s).
2518         pub fn force_close_all_channels_without_broadcasting_txn(&self) {
2519                 for chan in self.list_channels() {
2520                         let _ = self.force_close_without_broadcasting_txn(&chan.channel_id, &chan.counterparty.node_id);
2521                 }
2522         }
2523
2524         fn construct_recv_pending_htlc_info(&self, hop_data: msgs::OnionHopData, shared_secret: [u8; 32],
2525                 payment_hash: PaymentHash, amt_msat: u64, cltv_expiry: u32, phantom_shared_secret: Option<[u8; 32]>) -> Result<PendingHTLCInfo, ReceiveError>
2526         {
2527                 // final_incorrect_cltv_expiry
2528                 if hop_data.outgoing_cltv_value > cltv_expiry {
2529                         return Err(ReceiveError {
2530                                 msg: "Upstream node set CLTV to less than the CLTV set by the sender",
2531                                 err_code: 18,
2532                                 err_data: cltv_expiry.to_be_bytes().to_vec()
2533                         })
2534                 }
2535                 // final_expiry_too_soon
2536                 // We have to have some headroom to broadcast on chain if we have the preimage, so make sure
2537                 // we have at least HTLC_FAIL_BACK_BUFFER blocks to go.
2538                 //
2539                 // Also, ensure that, in the case of an unknown preimage for the received payment hash, our
2540                 // payment logic has enough time to fail the HTLC backward before our onchain logic triggers a
2541                 // channel closure (see HTLC_FAIL_BACK_BUFFER rationale).
2542                 let current_height: u32 = self.best_block.read().unwrap().height();
2543                 if (hop_data.outgoing_cltv_value as u64) <= current_height as u64 + HTLC_FAIL_BACK_BUFFER as u64 + 1 {
2544                         let mut err_data = Vec::with_capacity(12);
2545                         err_data.extend_from_slice(&amt_msat.to_be_bytes());
2546                         err_data.extend_from_slice(&current_height.to_be_bytes());
2547                         return Err(ReceiveError {
2548                                 err_code: 0x4000 | 15, err_data,
2549                                 msg: "The final CLTV expiry is too soon to handle",
2550                         });
2551                 }
2552                 if hop_data.amt_to_forward > amt_msat {
2553                         return Err(ReceiveError {
2554                                 err_code: 19,
2555                                 err_data: amt_msat.to_be_bytes().to_vec(),
2556                                 msg: "Upstream node sent less than we were supposed to receive in payment",
2557                         });
2558                 }
2559
2560                 let routing = match hop_data.format {
2561                         msgs::OnionHopDataFormat::NonFinalNode { .. } => {
2562                                 return Err(ReceiveError {
2563                                         err_code: 0x4000|22,
2564                                         err_data: Vec::new(),
2565                                         msg: "Got non final data with an HMAC of 0",
2566                                 });
2567                         },
2568                         msgs::OnionHopDataFormat::FinalNode { payment_data, keysend_preimage, payment_metadata } => {
2569                                 if let Some(payment_preimage) = keysend_preimage {
2570                                         // We need to check that the sender knows the keysend preimage before processing this
2571                                         // payment further. Otherwise, an intermediary routing hop forwarding non-keysend-HTLC X
2572                                         // could discover the final destination of X, by probing the adjacent nodes on the route
2573                                         // with a keysend payment of identical payment hash to X and observing the processing
2574                                         // time discrepancies due to a hash collision with X.
2575                                         let hashed_preimage = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
2576                                         if hashed_preimage != payment_hash {
2577                                                 return Err(ReceiveError {
2578                                                         err_code: 0x4000|22,
2579                                                         err_data: Vec::new(),
2580                                                         msg: "Payment preimage didn't match payment hash",
2581                                                 });
2582                                         }
2583                                         if !self.default_configuration.accept_mpp_keysend && payment_data.is_some() {
2584                                                 return Err(ReceiveError {
2585                                                         err_code: 0x4000|22,
2586                                                         err_data: Vec::new(),
2587                                                         msg: "We don't support MPP keysend payments",
2588                                                 });
2589                                         }
2590                                         PendingHTLCRouting::ReceiveKeysend {
2591                                                 payment_data,
2592                                                 payment_preimage,
2593                                                 payment_metadata,
2594                                                 incoming_cltv_expiry: hop_data.outgoing_cltv_value,
2595                                         }
2596                                 } else if let Some(data) = payment_data {
2597                                         PendingHTLCRouting::Receive {
2598                                                 payment_data: data,
2599                                                 payment_metadata,
2600                                                 incoming_cltv_expiry: hop_data.outgoing_cltv_value,
2601                                                 phantom_shared_secret,
2602                                         }
2603                                 } else {
2604                                         return Err(ReceiveError {
2605                                                 err_code: 0x4000|0x2000|3,
2606                                                 err_data: Vec::new(),
2607                                                 msg: "We require payment_secrets",
2608                                         });
2609                                 }
2610                         },
2611                 };
2612                 Ok(PendingHTLCInfo {
2613                         routing,
2614                         payment_hash,
2615                         incoming_shared_secret: shared_secret,
2616                         incoming_amt_msat: Some(amt_msat),
2617                         outgoing_amt_msat: hop_data.amt_to_forward,
2618                         outgoing_cltv_value: hop_data.outgoing_cltv_value,
2619                 })
2620         }
2621
2622         fn decode_update_add_htlc_onion(
2623                 &self, msg: &msgs::UpdateAddHTLC
2624         ) -> Result<(onion_utils::Hop, [u8; 32], Option<Result<PublicKey, secp256k1::Error>>), HTLCFailureMsg> {
2625                 macro_rules! return_malformed_err {
2626                         ($msg: expr, $err_code: expr) => {
2627                                 {
2628                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2629                                         return Err(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
2630                                                 channel_id: msg.channel_id,
2631                                                 htlc_id: msg.htlc_id,
2632                                                 sha256_of_onion: Sha256::hash(&msg.onion_routing_packet.hop_data).into_inner(),
2633                                                 failure_code: $err_code,
2634                                         }));
2635                                 }
2636                         }
2637                 }
2638
2639                 if let Err(_) = msg.onion_routing_packet.public_key {
2640                         return_malformed_err!("invalid ephemeral pubkey", 0x8000 | 0x4000 | 6);
2641                 }
2642
2643                 let shared_secret = self.node_signer.ecdh(
2644                         Recipient::Node, &msg.onion_routing_packet.public_key.unwrap(), None
2645                 ).unwrap().secret_bytes();
2646
2647                 if msg.onion_routing_packet.version != 0 {
2648                         //TODO: Spec doesn't indicate if we should only hash hop_data here (and in other
2649                         //sha256_of_onion error data packets), or the entire onion_routing_packet. Either way,
2650                         //the hash doesn't really serve any purpose - in the case of hashing all data, the
2651                         //receiving node would have to brute force to figure out which version was put in the
2652                         //packet by the node that send us the message, in the case of hashing the hop_data, the
2653                         //node knows the HMAC matched, so they already know what is there...
2654                         return_malformed_err!("Unknown onion packet version", 0x8000 | 0x4000 | 4);
2655                 }
2656                 macro_rules! return_err {
2657                         ($msg: expr, $err_code: expr, $data: expr) => {
2658                                 {
2659                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2660                                         return Err(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
2661                                                 channel_id: msg.channel_id,
2662                                                 htlc_id: msg.htlc_id,
2663                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
2664                                                         .get_encrypted_failure_packet(&shared_secret, &None),
2665                                         }));
2666                                 }
2667                         }
2668                 }
2669
2670                 let next_hop = match onion_utils::decode_next_payment_hop(shared_secret, &msg.onion_routing_packet.hop_data[..], msg.onion_routing_packet.hmac, msg.payment_hash) {
2671                         Ok(res) => res,
2672                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
2673                                 return_malformed_err!(err_msg, err_code);
2674                         },
2675                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
2676                                 return_err!(err_msg, err_code, &[0; 0]);
2677                         },
2678                 };
2679                 let (outgoing_scid, outgoing_amt_msat, outgoing_cltv_value, next_packet_pk_opt) = match next_hop {
2680                         onion_utils::Hop::Forward {
2681                                 next_hop_data: msgs::OnionHopData {
2682                                         format: msgs::OnionHopDataFormat::NonFinalNode { short_channel_id }, amt_to_forward,
2683                                         outgoing_cltv_value,
2684                                 }, ..
2685                         } => {
2686                                 let next_pk = onion_utils::next_hop_packet_pubkey(&self.secp_ctx,
2687                                         msg.onion_routing_packet.public_key.unwrap(), &shared_secret);
2688                                 (short_channel_id, amt_to_forward, outgoing_cltv_value, Some(next_pk))
2689                         },
2690                         // We'll do receive checks in [`Self::construct_pending_htlc_info`] so we have access to the
2691                         // inbound channel's state.
2692                         onion_utils::Hop::Receive { .. } => return Ok((next_hop, shared_secret, None)),
2693                         onion_utils::Hop::Forward {
2694                                 next_hop_data: msgs::OnionHopData { format: msgs::OnionHopDataFormat::FinalNode { .. }, .. }, ..
2695                         } => {
2696                                 return_err!("Final Node OnionHopData provided for us as an intermediary node", 0x4000 | 22, &[0; 0]);
2697                         }
2698                 };
2699
2700                 // Perform outbound checks here instead of in [`Self::construct_pending_htlc_info`] because we
2701                 // can't hold the outbound peer state lock at the same time as the inbound peer state lock.
2702                 if let Some((err, mut code, chan_update)) = loop {
2703                         let id_option = self.short_to_chan_info.read().unwrap().get(&outgoing_scid).cloned();
2704                         let forwarding_chan_info_opt = match id_option {
2705                                 None => { // unknown_next_peer
2706                                         // Note that this is likely a timing oracle for detecting whether an scid is a
2707                                         // phantom or an intercept.
2708                                         if (self.default_configuration.accept_intercept_htlcs &&
2709                                                 fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, outgoing_scid, &self.genesis_hash)) ||
2710                                                 fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, outgoing_scid, &self.genesis_hash)
2711                                         {
2712                                                 None
2713                                         } else {
2714                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2715                                         }
2716                                 },
2717                                 Some((cp_id, id)) => Some((cp_id.clone(), id.clone())),
2718                         };
2719                         let chan_update_opt = if let Some((counterparty_node_id, forwarding_id)) = forwarding_chan_info_opt {
2720                                 let per_peer_state = self.per_peer_state.read().unwrap();
2721                                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
2722                                 if peer_state_mutex_opt.is_none() {
2723                                         break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2724                                 }
2725                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
2726                                 let peer_state = &mut *peer_state_lock;
2727                                 let chan = match peer_state.channel_by_id.get_mut(&forwarding_id) {
2728                                         None => {
2729                                                 // Channel was removed. The short_to_chan_info and channel_by_id maps
2730                                                 // have no consistency guarantees.
2731                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2732                                         },
2733                                         Some(chan) => chan
2734                                 };
2735                                 if !chan.context.should_announce() && !self.default_configuration.accept_forwards_to_priv_channels {
2736                                         // Note that the behavior here should be identical to the above block - we
2737                                         // should NOT reveal the existence or non-existence of a private channel if
2738                                         // we don't allow forwards outbound over them.
2739                                         break Some(("Refusing to forward to a private channel based on our config.", 0x4000 | 10, None));
2740                                 }
2741                                 if chan.context.get_channel_type().supports_scid_privacy() && outgoing_scid != chan.context.outbound_scid_alias() {
2742                                         // `option_scid_alias` (referred to in LDK as `scid_privacy`) means
2743                                         // "refuse to forward unless the SCID alias was used", so we pretend
2744                                         // we don't have the channel here.
2745                                         break Some(("Refusing to forward over real channel SCID as our counterparty requested.", 0x4000 | 10, None));
2746                                 }
2747                                 let chan_update_opt = self.get_channel_update_for_onion(outgoing_scid, chan).ok();
2748
2749                                 // Note that we could technically not return an error yet here and just hope
2750                                 // that the connection is reestablished or monitor updated by the time we get
2751                                 // around to doing the actual forward, but better to fail early if we can and
2752                                 // hopefully an attacker trying to path-trace payments cannot make this occur
2753                                 // on a small/per-node/per-channel scale.
2754                                 if !chan.context.is_live() { // channel_disabled
2755                                         // If the channel_update we're going to return is disabled (i.e. the
2756                                         // peer has been disabled for some time), return `channel_disabled`,
2757                                         // otherwise return `temporary_channel_failure`.
2758                                         if chan_update_opt.as_ref().map(|u| u.contents.flags & 2 == 2).unwrap_or(false) {
2759                                                 break Some(("Forwarding channel has been disconnected for some time.", 0x1000 | 20, chan_update_opt));
2760                                         } else {
2761                                                 break Some(("Forwarding channel is not in a ready state.", 0x1000 | 7, chan_update_opt));
2762                                         }
2763                                 }
2764                                 if outgoing_amt_msat < chan.context.get_counterparty_htlc_minimum_msat() { // amount_below_minimum
2765                                         break Some(("HTLC amount was below the htlc_minimum_msat", 0x1000 | 11, chan_update_opt));
2766                                 }
2767                                 if let Err((err, code)) = chan.htlc_satisfies_config(&msg, outgoing_amt_msat, outgoing_cltv_value) {
2768                                         break Some((err, code, chan_update_opt));
2769                                 }
2770                                 chan_update_opt
2771                         } else {
2772                                 if (msg.cltv_expiry as u64) < (outgoing_cltv_value) as u64 + MIN_CLTV_EXPIRY_DELTA as u64 {
2773                                         // We really should set `incorrect_cltv_expiry` here but as we're not
2774                                         // forwarding over a real channel we can't generate a channel_update
2775                                         // for it. Instead we just return a generic temporary_node_failure.
2776                                         break Some((
2777                                                         "Forwarding node has tampered with the intended HTLC values or origin node has an obsolete cltv_expiry_delta",
2778                                                         0x2000 | 2, None,
2779                                         ));
2780                                 }
2781                                 None
2782                         };
2783
2784                         let cur_height = self.best_block.read().unwrap().height() + 1;
2785                         // Theoretically, channel counterparty shouldn't send us a HTLC expiring now,
2786                         // but we want to be robust wrt to counterparty packet sanitization (see
2787                         // HTLC_FAIL_BACK_BUFFER rationale).
2788                         if msg.cltv_expiry <= cur_height + HTLC_FAIL_BACK_BUFFER as u32 { // expiry_too_soon
2789                                 break Some(("CLTV expiry is too close", 0x1000 | 14, chan_update_opt));
2790                         }
2791                         if msg.cltv_expiry > cur_height + CLTV_FAR_FAR_AWAY as u32 { // expiry_too_far
2792                                 break Some(("CLTV expiry is too far in the future", 21, None));
2793                         }
2794                         // If the HTLC expires ~now, don't bother trying to forward it to our
2795                         // counterparty. They should fail it anyway, but we don't want to bother with
2796                         // the round-trips or risk them deciding they definitely want the HTLC and
2797                         // force-closing to ensure they get it if we're offline.
2798                         // We previously had a much more aggressive check here which tried to ensure
2799                         // our counterparty receives an HTLC which has *our* risk threshold met on it,
2800                         // but there is no need to do that, and since we're a bit conservative with our
2801                         // risk threshold it just results in failing to forward payments.
2802                         if (outgoing_cltv_value) as u64 <= (cur_height + LATENCY_GRACE_PERIOD_BLOCKS) as u64 {
2803                                 break Some(("Outgoing CLTV value is too soon", 0x1000 | 14, chan_update_opt));
2804                         }
2805
2806                         break None;
2807                 }
2808                 {
2809                         let mut res = VecWriter(Vec::with_capacity(chan_update.serialized_length() + 2 + 8 + 2));
2810                         if let Some(chan_update) = chan_update {
2811                                 if code == 0x1000 | 11 || code == 0x1000 | 12 {
2812                                         msg.amount_msat.write(&mut res).expect("Writes cannot fail");
2813                                 }
2814                                 else if code == 0x1000 | 13 {
2815                                         msg.cltv_expiry.write(&mut res).expect("Writes cannot fail");
2816                                 }
2817                                 else if code == 0x1000 | 20 {
2818                                         // TODO: underspecified, follow https://github.com/lightning/bolts/issues/791
2819                                         0u16.write(&mut res).expect("Writes cannot fail");
2820                                 }
2821                                 (chan_update.serialized_length() as u16 + 2).write(&mut res).expect("Writes cannot fail");
2822                                 msgs::ChannelUpdate::TYPE.write(&mut res).expect("Writes cannot fail");
2823                                 chan_update.write(&mut res).expect("Writes cannot fail");
2824                         } else if code & 0x1000 == 0x1000 {
2825                                 // If we're trying to return an error that requires a `channel_update` but
2826                                 // we're forwarding to a phantom or intercept "channel" (i.e. cannot
2827                                 // generate an update), just use the generic "temporary_node_failure"
2828                                 // instead.
2829                                 code = 0x2000 | 2;
2830                         }
2831                         return_err!(err, code, &res.0[..]);
2832                 }
2833                 Ok((next_hop, shared_secret, next_packet_pk_opt))
2834         }
2835
2836         fn construct_pending_htlc_status<'a>(
2837                 &self, msg: &msgs::UpdateAddHTLC, shared_secret: [u8; 32], decoded_hop: onion_utils::Hop,
2838                 next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>
2839         ) -> PendingHTLCStatus {
2840                 macro_rules! return_err {
2841                         ($msg: expr, $err_code: expr, $data: expr) => {
2842                                 {
2843                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2844                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
2845                                                 channel_id: msg.channel_id,
2846                                                 htlc_id: msg.htlc_id,
2847                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
2848                                                         .get_encrypted_failure_packet(&shared_secret, &None),
2849                                         }));
2850                                 }
2851                         }
2852                 }
2853                 match decoded_hop {
2854                         onion_utils::Hop::Receive(next_hop_data) => {
2855                                 // OUR PAYMENT!
2856                                 match self.construct_recv_pending_htlc_info(next_hop_data, shared_secret, msg.payment_hash, msg.amount_msat, msg.cltv_expiry, None) {
2857                                         Ok(info) => {
2858                                                 // Note that we could obviously respond immediately with an update_fulfill_htlc
2859                                                 // message, however that would leak that we are the recipient of this payment, so
2860                                                 // instead we stay symmetric with the forwarding case, only responding (after a
2861                                                 // delay) once they've send us a commitment_signed!
2862                                                 PendingHTLCStatus::Forward(info)
2863                                         },
2864                                         Err(ReceiveError { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
2865                                 }
2866                         },
2867                         onion_utils::Hop::Forward { next_hop_data, next_hop_hmac, new_packet_bytes } => {
2868                                 debug_assert!(next_packet_pubkey_opt.is_some());
2869                                 let outgoing_packet = msgs::OnionPacket {
2870                                         version: 0,
2871                                         public_key: next_packet_pubkey_opt.unwrap_or(Err(secp256k1::Error::InvalidPublicKey)),
2872                                         hop_data: new_packet_bytes,
2873                                         hmac: next_hop_hmac.clone(),
2874                                 };
2875
2876                                 let short_channel_id = match next_hop_data.format {
2877                                         msgs::OnionHopDataFormat::NonFinalNode { short_channel_id } => short_channel_id,
2878                                         msgs::OnionHopDataFormat::FinalNode { .. } => {
2879                                                 return_err!("Final Node OnionHopData provided for us as an intermediary node", 0x4000 | 22, &[0;0]);
2880                                         },
2881                                 };
2882
2883                                 PendingHTLCStatus::Forward(PendingHTLCInfo {
2884                                         routing: PendingHTLCRouting::Forward {
2885                                                 onion_packet: outgoing_packet,
2886                                                 short_channel_id,
2887                                         },
2888                                         payment_hash: msg.payment_hash.clone(),
2889                                         incoming_shared_secret: shared_secret,
2890                                         incoming_amt_msat: Some(msg.amount_msat),
2891                                         outgoing_amt_msat: next_hop_data.amt_to_forward,
2892                                         outgoing_cltv_value: next_hop_data.outgoing_cltv_value,
2893                                 })
2894                         }
2895                 }
2896         }
2897
2898         /// Gets the current [`channel_update`] for the given channel. This first checks if the channel is
2899         /// public, and thus should be called whenever the result is going to be passed out in a
2900         /// [`MessageSendEvent::BroadcastChannelUpdate`] event.
2901         ///
2902         /// Note that in [`internal_closing_signed`], this function is called without the `peer_state`
2903         /// corresponding to the channel's counterparty locked, as the channel been removed from the
2904         /// storage and the `peer_state` lock has been dropped.
2905         ///
2906         /// [`channel_update`]: msgs::ChannelUpdate
2907         /// [`internal_closing_signed`]: Self::internal_closing_signed
2908         fn get_channel_update_for_broadcast(&self, chan: &Channel<<SP::Target as SignerProvider>::Signer>) -> Result<msgs::ChannelUpdate, LightningError> {
2909                 if !chan.context.should_announce() {
2910                         return Err(LightningError {
2911                                 err: "Cannot broadcast a channel_update for a private channel".to_owned(),
2912                                 action: msgs::ErrorAction::IgnoreError
2913                         });
2914                 }
2915                 if chan.context.get_short_channel_id().is_none() {
2916                         return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError});
2917                 }
2918                 log_trace!(self.logger, "Attempting to generate broadcast channel update for channel {}", log_bytes!(chan.context.channel_id()));
2919                 self.get_channel_update_for_unicast(chan)
2920         }
2921
2922         /// Gets the current [`channel_update`] for the given channel. This does not check if the channel
2923         /// is public (only returning an `Err` if the channel does not yet have an assigned SCID),
2924         /// and thus MUST NOT be called unless the recipient of the resulting message has already
2925         /// provided evidence that they know about the existence of the channel.
2926         ///
2927         /// Note that through [`internal_closing_signed`], this function is called without the
2928         /// `peer_state`  corresponding to the channel's counterparty locked, as the channel been
2929         /// removed from the storage and the `peer_state` lock has been dropped.
2930         ///
2931         /// [`channel_update`]: msgs::ChannelUpdate
2932         /// [`internal_closing_signed`]: Self::internal_closing_signed
2933         fn get_channel_update_for_unicast(&self, chan: &Channel<<SP::Target as SignerProvider>::Signer>) -> Result<msgs::ChannelUpdate, LightningError> {
2934                 log_trace!(self.logger, "Attempting to generate channel update for channel {}", log_bytes!(chan.context.channel_id()));
2935                 let short_channel_id = match chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias()) {
2936                         None => return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError}),
2937                         Some(id) => id,
2938                 };
2939
2940                 self.get_channel_update_for_onion(short_channel_id, chan)
2941         }
2942
2943         fn get_channel_update_for_onion(&self, short_channel_id: u64, chan: &Channel<<SP::Target as SignerProvider>::Signer>) -> Result<msgs::ChannelUpdate, LightningError> {
2944                 log_trace!(self.logger, "Generating channel update for channel {}", log_bytes!(chan.context.channel_id()));
2945                 let were_node_one = self.our_network_pubkey.serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
2946
2947                 let enabled = chan.context.is_usable() && match chan.channel_update_status() {
2948                         ChannelUpdateStatus::Enabled => true,
2949                         ChannelUpdateStatus::DisabledStaged(_) => true,
2950                         ChannelUpdateStatus::Disabled => false,
2951                         ChannelUpdateStatus::EnabledStaged(_) => false,
2952                 };
2953
2954                 let unsigned = msgs::UnsignedChannelUpdate {
2955                         chain_hash: self.genesis_hash,
2956                         short_channel_id,
2957                         timestamp: chan.context.get_update_time_counter(),
2958                         flags: (!were_node_one) as u8 | ((!enabled as u8) << 1),
2959                         cltv_expiry_delta: chan.context.get_cltv_expiry_delta(),
2960                         htlc_minimum_msat: chan.context.get_counterparty_htlc_minimum_msat(),
2961                         htlc_maximum_msat: chan.context.get_announced_htlc_max_msat(),
2962                         fee_base_msat: chan.context.get_outbound_forwarding_fee_base_msat(),
2963                         fee_proportional_millionths: chan.context.get_fee_proportional_millionths(),
2964                         excess_data: Vec::new(),
2965                 };
2966                 // Panic on failure to signal LDK should be restarted to retry signing the `ChannelUpdate`.
2967                 // If we returned an error and the `node_signer` cannot provide a signature for whatever
2968                 // reason`, we wouldn't be able to receive inbound payments through the corresponding
2969                 // channel.
2970                 let sig = self.node_signer.sign_gossip_message(msgs::UnsignedGossipMessage::ChannelUpdate(&unsigned)).unwrap();
2971
2972                 Ok(msgs::ChannelUpdate {
2973                         signature: sig,
2974                         contents: unsigned
2975                 })
2976         }
2977
2978         #[cfg(test)]
2979         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> {
2980                 let _lck = self.total_consistency_lock.read().unwrap();
2981                 self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv_bytes)
2982         }
2983
2984         fn 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> {
2985                 // The top-level caller should hold the total_consistency_lock read lock.
2986                 debug_assert!(self.total_consistency_lock.try_write().is_err());
2987
2988                 log_trace!(self.logger, "Attempting to send payment for path with next hop {}", path.hops.first().unwrap().short_channel_id);
2989                 let prng_seed = self.entropy_source.get_secure_random_bytes();
2990                 let session_priv = SecretKey::from_slice(&session_priv_bytes[..]).expect("RNG is busted");
2991
2992                 let onion_keys = onion_utils::construct_onion_keys(&self.secp_ctx, &path, &session_priv)
2993                         .map_err(|_| APIError::InvalidRoute{err: "Pubkey along hop was maliciously selected".to_owned()})?;
2994                 let (onion_payloads, htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(path, total_value, recipient_onion, cur_height, keysend_preimage)?;
2995
2996                 let onion_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, prng_seed, payment_hash)
2997                         .map_err(|_| APIError::InvalidRoute { err: "Route size too large considering onion data".to_owned()})?;
2998
2999                 let err: Result<(), _> = loop {
3000                         let (counterparty_node_id, id) = match self.short_to_chan_info.read().unwrap().get(&path.hops.first().unwrap().short_channel_id) {
3001                                 None => return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()}),
3002                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
3003                         };
3004
3005                         let per_peer_state = self.per_peer_state.read().unwrap();
3006                         let peer_state_mutex = per_peer_state.get(&counterparty_node_id)
3007                                 .ok_or_else(|| APIError::ChannelUnavailable{err: "No peer matching the path's first hop found!".to_owned() })?;
3008                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3009                         let peer_state = &mut *peer_state_lock;
3010                         if let hash_map::Entry::Occupied(mut chan) = peer_state.channel_by_id.entry(id) {
3011                                 if !chan.get().context.is_live() {
3012                                         return Err(APIError::ChannelUnavailable{err: "Peer for first hop currently disconnected".to_owned()});
3013                                 }
3014                                 let funding_txo = chan.get().context.get_funding_txo().unwrap();
3015                                 let send_res = chan.get_mut().send_htlc_and_commit(htlc_msat, payment_hash.clone(),
3016                                         htlc_cltv, HTLCSource::OutboundRoute {
3017                                                 path: path.clone(),
3018                                                 session_priv: session_priv.clone(),
3019                                                 first_hop_htlc_msat: htlc_msat,
3020                                                 payment_id,
3021                                         }, onion_packet, &self.logger);
3022                                 match break_chan_entry!(self, send_res, chan) {
3023                                         Some(monitor_update) => {
3024                                                 let update_id = monitor_update.update_id;
3025                                                 let update_res = self.chain_monitor.update_channel(funding_txo, monitor_update);
3026                                                 if let Err(e) = handle_new_monitor_update!(self, update_res, update_id, peer_state_lock, peer_state, per_peer_state, chan) {
3027                                                         break Err(e);
3028                                                 }
3029                                                 if update_res == ChannelMonitorUpdateStatus::InProgress {
3030                                                         // Note that MonitorUpdateInProgress here indicates (per function
3031                                                         // docs) that we will resend the commitment update once monitor
3032                                                         // updating completes. Therefore, we must return an error
3033                                                         // indicating that it is unsafe to retry the payment wholesale,
3034                                                         // which we do in the send_payment check for
3035                                                         // MonitorUpdateInProgress, below.
3036                                                         return Err(APIError::MonitorUpdateInProgress);
3037                                                 }
3038                                         },
3039                                         None => { },
3040                                 }
3041                         } else {
3042                                 // The channel was likely removed after we fetched the id from the
3043                                 // `short_to_chan_info` map, but before we successfully locked the
3044                                 // `channel_by_id` map.
3045                                 // This can occur as no consistency guarantees exists between the two maps.
3046                                 return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()});
3047                         }
3048                         return Ok(());
3049                 };
3050
3051                 match handle_error!(self, err, path.hops.first().unwrap().pubkey) {
3052                         Ok(_) => unreachable!(),
3053                         Err(e) => {
3054                                 Err(APIError::ChannelUnavailable { err: e.err })
3055                         },
3056                 }
3057         }
3058
3059         /// Sends a payment along a given route.
3060         ///
3061         /// Value parameters are provided via the last hop in route, see documentation for [`RouteHop`]
3062         /// fields for more info.
3063         ///
3064         /// May generate [`UpdateHTLCs`] message(s) event on success, which should be relayed (e.g. via
3065         /// [`PeerManager::process_events`]).
3066         ///
3067         /// # Avoiding Duplicate Payments
3068         ///
3069         /// If a pending payment is currently in-flight with the same [`PaymentId`] provided, this
3070         /// method will error with an [`APIError::InvalidRoute`]. Note, however, that once a payment
3071         /// is no longer pending (either via [`ChannelManager::abandon_payment`], or handling of an
3072         /// [`Event::PaymentSent`] or [`Event::PaymentFailed`]) LDK will not stop you from sending a
3073         /// second payment with the same [`PaymentId`].
3074         ///
3075         /// Thus, in order to ensure duplicate payments are not sent, you should implement your own
3076         /// tracking of payments, including state to indicate once a payment has completed. Because you
3077         /// should also ensure that [`PaymentHash`]es are not re-used, for simplicity, you should
3078         /// consider using the [`PaymentHash`] as the key for tracking payments. In that case, the
3079         /// [`PaymentId`] should be a copy of the [`PaymentHash`] bytes.
3080         ///
3081         /// Additionally, in the scenario where we begin the process of sending a payment, but crash
3082         /// before `send_payment` returns (or prior to [`ChannelMonitorUpdate`] persistence if you're
3083         /// using [`ChannelMonitorUpdateStatus::InProgress`]), the payment may be lost on restart. See
3084         /// [`ChannelManager::list_recent_payments`] for more information.
3085         ///
3086         /// # Possible Error States on [`PaymentSendFailure`]
3087         ///
3088         /// Each path may have a different return value, and [`PaymentSendFailure`] may return a `Vec` with
3089         /// each entry matching the corresponding-index entry in the route paths, see
3090         /// [`PaymentSendFailure`] for more info.
3091         ///
3092         /// In general, a path may raise:
3093         ///  * [`APIError::InvalidRoute`] when an invalid route or forwarding parameter (cltv_delta, fee,
3094         ///    node public key) is specified.
3095         ///  * [`APIError::ChannelUnavailable`] if the next-hop channel is not available for updates
3096         ///    (including due to previous monitor update failure or new permanent monitor update
3097         ///    failure).
3098         ///  * [`APIError::MonitorUpdateInProgress`] if a new monitor update failure prevented sending the
3099         ///    relevant updates.
3100         ///
3101         /// Note that depending on the type of the [`PaymentSendFailure`] the HTLC may have been
3102         /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
3103         /// different route unless you intend to pay twice!
3104         ///
3105         /// [`Event::PaymentSent`]: events::Event::PaymentSent
3106         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
3107         /// [`UpdateHTLCs`]: events::MessageSendEvent::UpdateHTLCs
3108         /// [`PeerManager::process_events`]: crate::ln::peer_handler::PeerManager::process_events
3109         /// [`ChannelMonitorUpdateStatus::InProgress`]: crate::chain::ChannelMonitorUpdateStatus::InProgress
3110         pub fn send_payment_with_route(&self, route: &Route, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<(), PaymentSendFailure> {
3111                 let best_block_height = self.best_block.read().unwrap().height();
3112                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3113                 self.pending_outbound_payments
3114                         .send_payment_with_route(route, payment_hash, recipient_onion, payment_id, &self.entropy_source, &self.node_signer, best_block_height,
3115                                 |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
3116                                 self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv))
3117         }
3118
3119         /// Similar to [`ChannelManager::send_payment_with_route`], but will automatically find a route based on
3120         /// `route_params` and retry failed payment paths based on `retry_strategy`.
3121         pub fn send_payment(&self, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId, route_params: RouteParameters, retry_strategy: Retry) -> Result<(), RetryableSendFailure> {
3122                 let best_block_height = self.best_block.read().unwrap().height();
3123                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3124                 self.pending_outbound_payments
3125                         .send_payment(payment_hash, recipient_onion, payment_id, retry_strategy, route_params,
3126                                 &self.router, self.list_usable_channels(), || self.compute_inflight_htlcs(),
3127                                 &self.entropy_source, &self.node_signer, best_block_height, &self.logger,
3128                                 &self.pending_events,
3129                                 |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
3130                                 self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv))
3131         }
3132
3133         #[cfg(test)]
3134         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> {
3135                 let best_block_height = self.best_block.read().unwrap().height();
3136                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3137                 self.pending_outbound_payments.test_send_payment_internal(route, payment_hash, recipient_onion, keysend_preimage, payment_id, recv_value_msat, onion_session_privs, &self.node_signer, best_block_height,
3138                         |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
3139                         self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv))
3140         }
3141
3142         #[cfg(test)]
3143         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> {
3144                 let best_block_height = self.best_block.read().unwrap().height();
3145                 self.pending_outbound_payments.test_add_new_pending_payment(payment_hash, recipient_onion, payment_id, route, None, &self.entropy_source, best_block_height)
3146         }
3147
3148         #[cfg(test)]
3149         pub(crate) fn test_set_payment_metadata(&self, payment_id: PaymentId, new_payment_metadata: Option<Vec<u8>>) {
3150                 self.pending_outbound_payments.test_set_payment_metadata(payment_id, new_payment_metadata);
3151         }
3152
3153
3154         /// Signals that no further retries for the given payment should occur. Useful if you have a
3155         /// pending outbound payment with retries remaining, but wish to stop retrying the payment before
3156         /// retries are exhausted.
3157         ///
3158         /// If no [`Event::PaymentFailed`] event had been generated before, one will be generated as soon
3159         /// as there are no remaining pending HTLCs for this payment.
3160         ///
3161         /// Note that calling this method does *not* prevent a payment from succeeding. You must still
3162         /// wait until you receive either a [`Event::PaymentFailed`] or [`Event::PaymentSent`] event to
3163         /// determine the ultimate status of a payment.
3164         ///
3165         /// If an [`Event::PaymentFailed`] event is generated and we restart without this
3166         /// [`ChannelManager`] having been persisted, another [`Event::PaymentFailed`] may be generated.
3167         ///
3168         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
3169         /// [`Event::PaymentSent`]: events::Event::PaymentSent
3170         pub fn abandon_payment(&self, payment_id: PaymentId) {
3171                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3172                 self.pending_outbound_payments.abandon_payment(payment_id, PaymentFailureReason::UserAbandoned, &self.pending_events);
3173         }
3174
3175         /// Send a spontaneous payment, which is a payment that does not require the recipient to have
3176         /// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
3177         /// the preimage, it must be a cryptographically secure random value that no intermediate node
3178         /// would be able to guess -- otherwise, an intermediate node may claim the payment and it will
3179         /// never reach the recipient.
3180         ///
3181         /// See [`send_payment`] documentation for more details on the return value of this function
3182         /// and idempotency guarantees provided by the [`PaymentId`] key.
3183         ///
3184         /// Similar to regular payments, you MUST NOT reuse a `payment_preimage` value. See
3185         /// [`send_payment`] for more information about the risks of duplicate preimage usage.
3186         ///
3187         /// [`send_payment`]: Self::send_payment
3188         pub fn send_spontaneous_payment(&self, route: &Route, payment_preimage: Option<PaymentPreimage>, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<PaymentHash, PaymentSendFailure> {
3189                 let best_block_height = self.best_block.read().unwrap().height();
3190                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3191                 self.pending_outbound_payments.send_spontaneous_payment_with_route(
3192                         route, payment_preimage, recipient_onion, payment_id, &self.entropy_source,
3193                         &self.node_signer, best_block_height,
3194                         |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
3195                         self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv))
3196         }
3197
3198         /// Similar to [`ChannelManager::send_spontaneous_payment`], but will automatically find a route
3199         /// based on `route_params` and retry failed payment paths based on `retry_strategy`.
3200         ///
3201         /// See [`PaymentParameters::for_keysend`] for help in constructing `route_params` for spontaneous
3202         /// payments.
3203         ///
3204         /// [`PaymentParameters::for_keysend`]: crate::routing::router::PaymentParameters::for_keysend
3205         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> {
3206                 let best_block_height = self.best_block.read().unwrap().height();
3207                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3208                 self.pending_outbound_payments.send_spontaneous_payment(payment_preimage, recipient_onion,
3209                         payment_id, retry_strategy, route_params, &self.router, self.list_usable_channels(),
3210                         || self.compute_inflight_htlcs(),  &self.entropy_source, &self.node_signer, best_block_height,
3211                         &self.logger, &self.pending_events,
3212                         |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
3213                         self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv))
3214         }
3215
3216         /// Send a payment that is probing the given route for liquidity. We calculate the
3217         /// [`PaymentHash`] of probes based on a static secret and a random [`PaymentId`], which allows
3218         /// us to easily discern them from real payments.
3219         pub fn send_probe(&self, path: Path) -> Result<(PaymentHash, PaymentId), PaymentSendFailure> {
3220                 let best_block_height = self.best_block.read().unwrap().height();
3221                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3222                 self.pending_outbound_payments.send_probe(path, self.probing_cookie_secret, &self.entropy_source, &self.node_signer, best_block_height,
3223                         |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
3224                         self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv))
3225         }
3226
3227         /// Returns whether a payment with the given [`PaymentHash`] and [`PaymentId`] is, in fact, a
3228         /// payment probe.
3229         #[cfg(test)]
3230         pub(crate) fn payment_is_probe(&self, payment_hash: &PaymentHash, payment_id: &PaymentId) -> bool {
3231                 outbound_payment::payment_is_probe(payment_hash, payment_id, self.probing_cookie_secret)
3232         }
3233
3234         /// Handles the generation of a funding transaction, optionally (for tests) with a function
3235         /// which checks the correctness of the funding transaction given the associated channel.
3236         fn funding_transaction_generated_intern<FundingOutput: Fn(&OutboundV1Channel<<SP::Target as SignerProvider>::Signer>, &Transaction) -> Result<OutPoint, APIError>>(
3237                 &self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, funding_transaction: Transaction, find_funding_output: FundingOutput
3238         ) -> Result<(), APIError> {
3239                 let per_peer_state = self.per_peer_state.read().unwrap();
3240                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3241                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3242
3243                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3244                 let peer_state = &mut *peer_state_lock;
3245                 let (chan, msg) = match peer_state.outbound_v1_channel_by_id.remove(temporary_channel_id) {
3246                         Some(chan) => {
3247                                 let funding_txo = find_funding_output(&chan, &funding_transaction)?;
3248
3249                                 let funding_res = chan.get_outbound_funding_created(funding_transaction, funding_txo, &self.logger)
3250                                         .map_err(|(mut chan, e)| if let ChannelError::Close(msg) = e {
3251                                                 let channel_id = chan.context.channel_id();
3252                                                 let user_id = chan.context.get_user_id();
3253                                                 let shutdown_res = chan.context.force_shutdown(false);
3254                                                 (chan, MsgHandleErrInternal::from_finish_shutdown(msg, channel_id, user_id, shutdown_res, None))
3255                                         } else { unreachable!(); });
3256                                 match funding_res {
3257                                         Ok((chan, funding_msg)) => (chan, funding_msg),
3258                                         Err((chan, err)) => {
3259                                                 mem::drop(peer_state_lock);
3260                                                 mem::drop(per_peer_state);
3261
3262                                                 let _: Result<(), _> = handle_error!(self, Err(err), chan.context.get_counterparty_node_id());
3263                                                 return Err(APIError::ChannelUnavailable {
3264                                                         err: "Signer refused to sign the initial commitment transaction".to_owned()
3265                                                 });
3266                                         },
3267                                 }
3268                         },
3269                         None => {
3270                                 return Err(APIError::ChannelUnavailable {
3271                                         err: format!(
3272                                                 "Channel with id {} not found for the passed counterparty node_id {}",
3273                                                 log_bytes!(*temporary_channel_id), counterparty_node_id),
3274                                 })
3275                         },
3276                 };
3277
3278                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
3279                         node_id: chan.context.get_counterparty_node_id(),
3280                         msg,
3281                 });
3282                 match peer_state.channel_by_id.entry(chan.context.channel_id()) {
3283                         hash_map::Entry::Occupied(_) => {
3284                                 panic!("Generated duplicate funding txid?");
3285                         },
3286                         hash_map::Entry::Vacant(e) => {
3287                                 let mut id_to_peer = self.id_to_peer.lock().unwrap();
3288                                 if id_to_peer.insert(chan.context.channel_id(), chan.context.get_counterparty_node_id()).is_some() {
3289                                         panic!("id_to_peer map already contained funding txid, which shouldn't be possible");
3290                                 }
3291                                 e.insert(chan);
3292                         }
3293                 }
3294                 Ok(())
3295         }
3296
3297         #[cfg(test)]
3298         pub(crate) fn funding_transaction_generated_unchecked(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, funding_transaction: Transaction, output_index: u16) -> Result<(), APIError> {
3299                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |_, tx| {
3300                         Ok(OutPoint { txid: tx.txid(), index: output_index })
3301                 })
3302         }
3303
3304         /// Call this upon creation of a funding transaction for the given channel.
3305         ///
3306         /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
3307         /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
3308         ///
3309         /// Returns [`APIError::APIMisuseError`] if the funding transaction is not final for propagation
3310         /// across the p2p network.
3311         ///
3312         /// Returns [`APIError::ChannelUnavailable`] if a funding transaction has already been provided
3313         /// for the channel or if the channel has been closed as indicated by [`Event::ChannelClosed`].
3314         ///
3315         /// May panic if the output found in the funding transaction is duplicative with some other
3316         /// channel (note that this should be trivially prevented by using unique funding transaction
3317         /// keys per-channel).
3318         ///
3319         /// Do NOT broadcast the funding transaction yourself. When we have safely received our
3320         /// counterparty's signature the funding transaction will automatically be broadcast via the
3321         /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
3322         ///
3323         /// Note that this includes RBF or similar transaction replacement strategies - lightning does
3324         /// not currently support replacing a funding transaction on an existing channel. Instead,
3325         /// create a new channel with a conflicting funding transaction.
3326         ///
3327         /// Note to keep the miner incentives aligned in moving the blockchain forward, we recommend
3328         /// the wallet software generating the funding transaction to apply anti-fee sniping as
3329         /// implemented by Bitcoin Core wallet. See <https://bitcoinops.org/en/topics/fee-sniping/>
3330         /// for more details.
3331         ///
3332         /// [`Event::FundingGenerationReady`]: crate::events::Event::FundingGenerationReady
3333         /// [`Event::ChannelClosed`]: crate::events::Event::ChannelClosed
3334         pub fn funding_transaction_generated(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, funding_transaction: Transaction) -> Result<(), APIError> {
3335                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3336
3337                 for inp in funding_transaction.input.iter() {
3338                         if inp.witness.is_empty() {
3339                                 return Err(APIError::APIMisuseError {
3340                                         err: "Funding transaction must be fully signed and spend Segwit outputs".to_owned()
3341                                 });
3342                         }
3343                 }
3344                 {
3345                         let height = self.best_block.read().unwrap().height();
3346                         // Transactions are evaluated as final by network mempools if their locktime is strictly
3347                         // lower than the next block height. However, the modules constituting our Lightning
3348                         // node might not have perfect sync about their blockchain views. Thus, if the wallet
3349                         // module is ahead of LDK, only allow one more block of headroom.
3350                         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 {
3351                                 return Err(APIError::APIMisuseError {
3352                                         err: "Funding transaction absolute timelock is non-final".to_owned()
3353                                 });
3354                         }
3355                 }
3356                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |chan, tx| {
3357                         if tx.output.len() > u16::max_value() as usize {
3358                                 return Err(APIError::APIMisuseError {
3359                                         err: "Transaction had more than 2^16 outputs, which is not supported".to_owned()
3360                                 });
3361                         }
3362
3363                         let mut output_index = None;
3364                         let expected_spk = chan.context.get_funding_redeemscript().to_v0_p2wsh();
3365                         for (idx, outp) in tx.output.iter().enumerate() {
3366                                 if outp.script_pubkey == expected_spk && outp.value == chan.context.get_value_satoshis() {
3367                                         if output_index.is_some() {
3368                                                 return Err(APIError::APIMisuseError {
3369                                                         err: "Multiple outputs matched the expected script and value".to_owned()
3370                                                 });
3371                                         }
3372                                         output_index = Some(idx as u16);
3373                                 }
3374                         }
3375                         if output_index.is_none() {
3376                                 return Err(APIError::APIMisuseError {
3377                                         err: "No output matched the script_pubkey and value in the FundingGenerationReady event".to_owned()
3378                                 });
3379                         }
3380                         Ok(OutPoint { txid: tx.txid(), index: output_index.unwrap() })
3381                 })
3382         }
3383
3384         /// Atomically applies partial updates to the [`ChannelConfig`] of the given channels.
3385         ///
3386         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3387         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3388         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3389         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3390         ///
3391         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3392         /// `counterparty_node_id` is provided.
3393         ///
3394         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3395         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3396         ///
3397         /// If an error is returned, none of the updates should be considered applied.
3398         ///
3399         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3400         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3401         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3402         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3403         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3404         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3405         /// [`APIMisuseError`]: APIError::APIMisuseError
3406         pub fn update_partial_channel_config(
3407                 &self, counterparty_node_id: &PublicKey, channel_ids: &[[u8; 32]], config_update: &ChannelConfigUpdate,
3408         ) -> Result<(), APIError> {
3409                 if config_update.cltv_expiry_delta.map(|delta| delta < MIN_CLTV_EXPIRY_DELTA).unwrap_or(false) {
3410                         return Err(APIError::APIMisuseError {
3411                                 err: format!("The chosen CLTV expiry delta is below the minimum of {}", MIN_CLTV_EXPIRY_DELTA),
3412                         });
3413                 }
3414
3415                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3416                 let per_peer_state = self.per_peer_state.read().unwrap();
3417                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3418                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3419                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3420                 let peer_state = &mut *peer_state_lock;
3421                 for channel_id in channel_ids {
3422                         if !peer_state.channel_by_id.contains_key(channel_id) {
3423                                 return Err(APIError::ChannelUnavailable {
3424                                         err: format!("Channel with ID {} was not found for the passed counterparty_node_id {}", log_bytes!(*channel_id), counterparty_node_id),
3425                                 });
3426                         }
3427                 }
3428                 for channel_id in channel_ids {
3429                         let channel = peer_state.channel_by_id.get_mut(channel_id).unwrap();
3430                         let mut config = channel.context.config();
3431                         config.apply(config_update);
3432                         if !channel.context.update_config(&config) {
3433                                 continue;
3434                         }
3435                         if let Ok(msg) = self.get_channel_update_for_broadcast(channel) {
3436                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate { msg });
3437                         } else if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
3438                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
3439                                         node_id: channel.context.get_counterparty_node_id(),
3440                                         msg,
3441                                 });
3442                         }
3443                 }
3444                 Ok(())
3445         }
3446
3447         /// Atomically updates the [`ChannelConfig`] for the given channels.
3448         ///
3449         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3450         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3451         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3452         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3453         ///
3454         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3455         /// `counterparty_node_id` is provided.
3456         ///
3457         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3458         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3459         ///
3460         /// If an error is returned, none of the updates should be considered applied.
3461         ///
3462         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3463         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3464         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3465         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3466         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3467         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3468         /// [`APIMisuseError`]: APIError::APIMisuseError
3469         pub fn update_channel_config(
3470                 &self, counterparty_node_id: &PublicKey, channel_ids: &[[u8; 32]], config: &ChannelConfig,
3471         ) -> Result<(), APIError> {
3472                 return self.update_partial_channel_config(counterparty_node_id, channel_ids, &(*config).into());
3473         }
3474
3475         /// Attempts to forward an intercepted HTLC over the provided channel id and with the provided
3476         /// amount to forward. Should only be called in response to an [`HTLCIntercepted`] event.
3477         ///
3478         /// Intercepted HTLCs can be useful for Lightning Service Providers (LSPs) to open a just-in-time
3479         /// channel to a receiving node if the node lacks sufficient inbound liquidity.
3480         ///
3481         /// To make use of intercepted HTLCs, set [`UserConfig::accept_intercept_htlcs`] and use
3482         /// [`ChannelManager::get_intercept_scid`] to generate short channel id(s) to put in the
3483         /// receiver's invoice route hints. These route hints will signal to LDK to generate an
3484         /// [`HTLCIntercepted`] event when it receives the forwarded HTLC, and this method or
3485         /// [`ChannelManager::fail_intercepted_htlc`] MUST be called in response to the event.
3486         ///
3487         /// Note that LDK does not enforce fee requirements in `amt_to_forward_msat`, and will not stop
3488         /// you from forwarding more than you received.
3489         ///
3490         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
3491         /// backwards.
3492         ///
3493         /// [`UserConfig::accept_intercept_htlcs`]: crate::util::config::UserConfig::accept_intercept_htlcs
3494         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
3495         // TODO: when we move to deciding the best outbound channel at forward time, only take
3496         // `next_node_id` and not `next_hop_channel_id`
3497         pub fn forward_intercepted_htlc(&self, intercept_id: InterceptId, next_hop_channel_id: &[u8; 32], next_node_id: PublicKey, amt_to_forward_msat: u64) -> Result<(), APIError> {
3498                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3499
3500                 let next_hop_scid = {
3501                         let peer_state_lock = self.per_peer_state.read().unwrap();
3502                         let peer_state_mutex = peer_state_lock.get(&next_node_id)
3503                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", next_node_id) })?;
3504                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3505                         let peer_state = &mut *peer_state_lock;
3506                         match peer_state.channel_by_id.get(next_hop_channel_id) {
3507                                 Some(chan) => {
3508                                         if !chan.context.is_usable() {
3509                                                 return Err(APIError::ChannelUnavailable {
3510                                                         err: format!("Channel with id {} not fully established", log_bytes!(*next_hop_channel_id))
3511                                                 })
3512                                         }
3513                                         chan.context.get_short_channel_id().unwrap_or(chan.context.outbound_scid_alias())
3514                                 },
3515                                 None => return Err(APIError::ChannelUnavailable {
3516                                         err: format!("Funded channel with id {} not found for the passed counterparty node_id {}. Channel may still be opening.",
3517                                                 log_bytes!(*next_hop_channel_id), next_node_id)
3518                                 })
3519                         }
3520                 };
3521
3522                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
3523                         .ok_or_else(|| APIError::APIMisuseError {
3524                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
3525                         })?;
3526
3527                 let routing = match payment.forward_info.routing {
3528                         PendingHTLCRouting::Forward { onion_packet, .. } => {
3529                                 PendingHTLCRouting::Forward { onion_packet, short_channel_id: next_hop_scid }
3530                         },
3531                         _ => unreachable!() // Only `PendingHTLCRouting::Forward`s are intercepted
3532                 };
3533                 let pending_htlc_info = PendingHTLCInfo {
3534                         outgoing_amt_msat: amt_to_forward_msat, routing, ..payment.forward_info
3535                 };
3536
3537                 let mut per_source_pending_forward = [(
3538                         payment.prev_short_channel_id,
3539                         payment.prev_funding_outpoint,
3540                         payment.prev_user_channel_id,
3541                         vec![(pending_htlc_info, payment.prev_htlc_id)]
3542                 )];
3543                 self.forward_htlcs(&mut per_source_pending_forward);
3544                 Ok(())
3545         }
3546
3547         /// Fails the intercepted HTLC indicated by intercept_id. Should only be called in response to
3548         /// an [`HTLCIntercepted`] event. See [`ChannelManager::forward_intercepted_htlc`].
3549         ///
3550         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
3551         /// backwards.
3552         ///
3553         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
3554         pub fn fail_intercepted_htlc(&self, intercept_id: InterceptId) -> Result<(), APIError> {
3555                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3556
3557                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
3558                         .ok_or_else(|| APIError::APIMisuseError {
3559                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
3560                         })?;
3561
3562                 if let PendingHTLCRouting::Forward { short_channel_id, .. } = payment.forward_info.routing {
3563                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3564                                 short_channel_id: payment.prev_short_channel_id,
3565                                 outpoint: payment.prev_funding_outpoint,
3566                                 htlc_id: payment.prev_htlc_id,
3567                                 incoming_packet_shared_secret: payment.forward_info.incoming_shared_secret,
3568                                 phantom_shared_secret: None,
3569                         });
3570
3571                         let failure_reason = HTLCFailReason::from_failure_code(0x4000 | 10);
3572                         let destination = HTLCDestination::UnknownNextHop { requested_forward_scid: short_channel_id };
3573                         self.fail_htlc_backwards_internal(&htlc_source, &payment.forward_info.payment_hash, &failure_reason, destination);
3574                 } else { unreachable!() } // Only `PendingHTLCRouting::Forward`s are intercepted
3575
3576                 Ok(())
3577         }
3578
3579         /// Processes HTLCs which are pending waiting on random forward delay.
3580         ///
3581         /// Should only really ever be called in response to a PendingHTLCsForwardable event.
3582         /// Will likely generate further events.
3583         pub fn process_pending_htlc_forwards(&self) {
3584                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3585
3586                 let mut new_events = VecDeque::new();
3587                 let mut failed_forwards = Vec::new();
3588                 let mut phantom_receives: Vec<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> = Vec::new();
3589                 {
3590                         let mut forward_htlcs = HashMap::new();
3591                         mem::swap(&mut forward_htlcs, &mut self.forward_htlcs.lock().unwrap());
3592
3593                         for (short_chan_id, mut pending_forwards) in forward_htlcs {
3594                                 if short_chan_id != 0 {
3595                                         macro_rules! forwarding_channel_not_found {
3596                                                 () => {
3597                                                         for forward_info in pending_forwards.drain(..) {
3598                                                                 match forward_info {
3599                                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
3600                                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
3601                                                                                 forward_info: PendingHTLCInfo {
3602                                                                                         routing, incoming_shared_secret, payment_hash, outgoing_amt_msat,
3603                                                                                         outgoing_cltv_value, incoming_amt_msat: _
3604                                                                                 }
3605                                                                         }) => {
3606                                                                                 macro_rules! failure_handler {
3607                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr, $next_hop_unknown: expr) => {
3608                                                                                                 log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3609
3610                                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3611                                                                                                         short_channel_id: prev_short_channel_id,
3612                                                                                                         outpoint: prev_funding_outpoint,
3613                                                                                                         htlc_id: prev_htlc_id,
3614                                                                                                         incoming_packet_shared_secret: incoming_shared_secret,
3615                                                                                                         phantom_shared_secret: $phantom_ss,
3616                                                                                                 });
3617
3618                                                                                                 let reason = if $next_hop_unknown {
3619                                                                                                         HTLCDestination::UnknownNextHop { requested_forward_scid: short_chan_id }
3620                                                                                                 } else {
3621                                                                                                         HTLCDestination::FailedPayment{ payment_hash }
3622                                                                                                 };
3623
3624                                                                                                 failed_forwards.push((htlc_source, payment_hash,
3625                                                                                                         HTLCFailReason::reason($err_code, $err_data),
3626                                                                                                         reason
3627                                                                                                 ));
3628                                                                                                 continue;
3629                                                                                         }
3630                                                                                 }
3631                                                                                 macro_rules! fail_forward {
3632                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
3633                                                                                                 {
3634                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, true);
3635                                                                                                 }
3636                                                                                         }
3637                                                                                 }
3638                                                                                 macro_rules! failed_payment {
3639                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
3640                                                                                                 {
3641                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, false);
3642                                                                                                 }
3643                                                                                         }
3644                                                                                 }
3645                                                                                 if let PendingHTLCRouting::Forward { onion_packet, .. } = routing {
3646                                                                                         let phantom_pubkey_res = self.node_signer.get_node_id(Recipient::PhantomNode);
3647                                                                                         if phantom_pubkey_res.is_ok() && fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, short_chan_id, &self.genesis_hash) {
3648                                                                                                 let phantom_shared_secret = self.node_signer.ecdh(Recipient::PhantomNode, &onion_packet.public_key.unwrap(), None).unwrap().secret_bytes();
3649                                                                                                 let next_hop = match onion_utils::decode_next_payment_hop(phantom_shared_secret, &onion_packet.hop_data, onion_packet.hmac, payment_hash) {
3650                                                                                                         Ok(res) => res,
3651                                                                                                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
3652                                                                                                                 let sha256_of_onion = Sha256::hash(&onion_packet.hop_data).into_inner();
3653                                                                                                                 // In this scenario, the phantom would have sent us an
3654                                                                                                                 // `update_fail_malformed_htlc`, meaning here we encrypt the error as
3655                                                                                                                 // if it came from us (the second-to-last hop) but contains the sha256
3656                                                                                                                 // of the onion.
3657                                                                                                                 failed_payment!(err_msg, err_code, sha256_of_onion.to_vec(), None);
3658                                                                                                         },
3659                                                                                                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
3660                                                                                                                 failed_payment!(err_msg, err_code, Vec::new(), Some(phantom_shared_secret));
3661                                                                                                         },
3662                                                                                                 };
3663                                                                                                 match next_hop {
3664                                                                                                         onion_utils::Hop::Receive(hop_data) => {
3665                                                                                                                 match self.construct_recv_pending_htlc_info(hop_data, incoming_shared_secret, payment_hash, outgoing_amt_msat, outgoing_cltv_value, Some(phantom_shared_secret)) {
3666                                                                                                                         Ok(info) => phantom_receives.push((prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, vec![(info, prev_htlc_id)])),
3667                                                                                                                         Err(ReceiveError { err_code, err_data, msg }) => failed_payment!(msg, err_code, err_data, Some(phantom_shared_secret))
3668                                                                                                                 }
3669                                                                                                         },
3670                                                                                                         _ => panic!(),
3671                                                                                                 }
3672                                                                                         } else {
3673                                                                                                 fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
3674                                                                                         }
3675                                                                                 } else {
3676                                                                                         fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
3677                                                                                 }
3678                                                                         },
3679                                                                         HTLCForwardInfo::FailHTLC { .. } => {
3680                                                                                 // Channel went away before we could fail it. This implies
3681                                                                                 // the channel is now on chain and our counterparty is
3682                                                                                 // trying to broadcast the HTLC-Timeout, but that's their
3683                                                                                 // problem, not ours.
3684                                                                         }
3685                                                                 }
3686                                                         }
3687                                                 }
3688                                         }
3689                                         let (counterparty_node_id, forward_chan_id) = match self.short_to_chan_info.read().unwrap().get(&short_chan_id) {
3690                                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
3691                                                 None => {
3692                                                         forwarding_channel_not_found!();
3693                                                         continue;
3694                                                 }
3695                                         };
3696                                         let per_peer_state = self.per_peer_state.read().unwrap();
3697                                         let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
3698                                         if peer_state_mutex_opt.is_none() {
3699                                                 forwarding_channel_not_found!();
3700                                                 continue;
3701                                         }
3702                                         let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
3703                                         let peer_state = &mut *peer_state_lock;
3704                                         match peer_state.channel_by_id.entry(forward_chan_id) {
3705                                                 hash_map::Entry::Vacant(_) => {
3706                                                         forwarding_channel_not_found!();
3707                                                         continue;
3708                                                 },
3709                                                 hash_map::Entry::Occupied(mut chan) => {
3710                                                         for forward_info in pending_forwards.drain(..) {
3711                                                                 match forward_info {
3712                                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
3713                                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id: _,
3714                                                                                 forward_info: PendingHTLCInfo {
3715                                                                                         incoming_shared_secret, payment_hash, outgoing_amt_msat, outgoing_cltv_value,
3716                                                                                         routing: PendingHTLCRouting::Forward { onion_packet, .. }, incoming_amt_msat: _,
3717                                                                                 },
3718                                                                         }) => {
3719                                                                                 log_trace!(self.logger, "Adding HTLC from short id {} with payment_hash {} to channel with short id {} after delay", prev_short_channel_id, log_bytes!(payment_hash.0), short_chan_id);
3720                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3721                                                                                         short_channel_id: prev_short_channel_id,
3722                                                                                         outpoint: prev_funding_outpoint,
3723                                                                                         htlc_id: prev_htlc_id,
3724                                                                                         incoming_packet_shared_secret: incoming_shared_secret,
3725                                                                                         // Phantom payments are only PendingHTLCRouting::Receive.
3726                                                                                         phantom_shared_secret: None,
3727                                                                                 });
3728                                                                                 if let Err(e) = chan.get_mut().queue_add_htlc(outgoing_amt_msat,
3729                                                                                         payment_hash, outgoing_cltv_value, htlc_source.clone(),
3730                                                                                         onion_packet, &self.logger)
3731                                                                                 {
3732                                                                                         if let ChannelError::Ignore(msg) = e {
3733                                                                                                 log_trace!(self.logger, "Failed to forward HTLC with payment_hash {}: {}", log_bytes!(payment_hash.0), msg);
3734                                                                                         } else {
3735                                                                                                 panic!("Stated return value requirements in send_htlc() were not met");
3736                                                                                         }
3737                                                                                         let (failure_code, data) = self.get_htlc_temp_fail_err_and_data(0x1000|7, short_chan_id, chan.get());
3738                                                                                         failed_forwards.push((htlc_source, payment_hash,
3739                                                                                                 HTLCFailReason::reason(failure_code, data),
3740                                                                                                 HTLCDestination::NextHopChannel { node_id: Some(chan.get().context.get_counterparty_node_id()), channel_id: forward_chan_id }
3741                                                                                         ));
3742                                                                                         continue;
3743                                                                                 }
3744                                                                         },
3745                                                                         HTLCForwardInfo::AddHTLC { .. } => {
3746                                                                                 panic!("short_channel_id != 0 should imply any pending_forward entries are of type Forward");
3747                                                                         },
3748                                                                         HTLCForwardInfo::FailHTLC { htlc_id, err_packet } => {
3749                                                                                 log_trace!(self.logger, "Failing HTLC back to channel with short id {} (backward HTLC ID {}) after delay", short_chan_id, htlc_id);
3750                                                                                 if let Err(e) = chan.get_mut().queue_fail_htlc(
3751                                                                                         htlc_id, err_packet, &self.logger
3752                                                                                 ) {
3753                                                                                         if let ChannelError::Ignore(msg) = e {
3754                                                                                                 log_trace!(self.logger, "Failed to fail HTLC with ID {} backwards to short_id {}: {}", htlc_id, short_chan_id, msg);
3755                                                                                         } else {
3756                                                                                                 panic!("Stated return value requirements in queue_fail_htlc() were not met");
3757                                                                                         }
3758                                                                                         // fail-backs are best-effort, we probably already have one
3759                                                                                         // pending, and if not that's OK, if not, the channel is on
3760                                                                                         // the chain and sending the HTLC-Timeout is their problem.
3761                                                                                         continue;
3762                                                                                 }
3763                                                                         },
3764                                                                 }
3765                                                         }
3766                                                 }
3767                                         }
3768                                 } else {
3769                                         'next_forwardable_htlc: for forward_info in pending_forwards.drain(..) {
3770                                                 match forward_info {
3771                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
3772                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
3773                                                                 forward_info: PendingHTLCInfo {
3774                                                                         routing, incoming_shared_secret, payment_hash, incoming_amt_msat, outgoing_amt_msat, ..
3775                                                                 }
3776                                                         }) => {
3777                                                                 let (cltv_expiry, onion_payload, payment_data, phantom_shared_secret, mut onion_fields) = match routing {
3778                                                                         PendingHTLCRouting::Receive { payment_data, payment_metadata, incoming_cltv_expiry, phantom_shared_secret } => {
3779                                                                                 let _legacy_hop_data = Some(payment_data.clone());
3780                                                                                 let onion_fields =
3781                                                                                         RecipientOnionFields { payment_secret: Some(payment_data.payment_secret), payment_metadata };
3782                                                                                 (incoming_cltv_expiry, OnionPayload::Invoice { _legacy_hop_data },
3783                                                                                         Some(payment_data), phantom_shared_secret, onion_fields)
3784                                                                         },
3785                                                                         PendingHTLCRouting::ReceiveKeysend { payment_data, payment_preimage, payment_metadata, incoming_cltv_expiry } => {
3786                                                                                 let onion_fields = RecipientOnionFields {
3787                                                                                         payment_secret: payment_data.as_ref().map(|data| data.payment_secret),
3788                                                                                         payment_metadata
3789                                                                                 };
3790                                                                                 (incoming_cltv_expiry, OnionPayload::Spontaneous(payment_preimage),
3791                                                                                         payment_data, None, onion_fields)
3792                                                                         },
3793                                                                         _ => {
3794                                                                                 panic!("short_channel_id == 0 should imply any pending_forward entries are of type Receive");
3795                                                                         }
3796                                                                 };
3797                                                                 let claimable_htlc = ClaimableHTLC {
3798                                                                         prev_hop: HTLCPreviousHopData {
3799                                                                                 short_channel_id: prev_short_channel_id,
3800                                                                                 outpoint: prev_funding_outpoint,
3801                                                                                 htlc_id: prev_htlc_id,
3802                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
3803                                                                                 phantom_shared_secret,
3804                                                                         },
3805                                                                         // We differentiate the received value from the sender intended value
3806                                                                         // if possible so that we don't prematurely mark MPP payments complete
3807                                                                         // if routing nodes overpay
3808                                                                         value: incoming_amt_msat.unwrap_or(outgoing_amt_msat),
3809                                                                         sender_intended_value: outgoing_amt_msat,
3810                                                                         timer_ticks: 0,
3811                                                                         total_value_received: None,
3812                                                                         total_msat: if let Some(data) = &payment_data { data.total_msat } else { outgoing_amt_msat },
3813                                                                         cltv_expiry,
3814                                                                         onion_payload,
3815                                                                 };
3816
3817                                                                 let mut committed_to_claimable = false;
3818
3819                                                                 macro_rules! fail_htlc {
3820                                                                         ($htlc: expr, $payment_hash: expr) => {
3821                                                                                 debug_assert!(!committed_to_claimable);
3822                                                                                 let mut htlc_msat_height_data = $htlc.value.to_be_bytes().to_vec();
3823                                                                                 htlc_msat_height_data.extend_from_slice(
3824                                                                                         &self.best_block.read().unwrap().height().to_be_bytes(),
3825                                                                                 );
3826                                                                                 failed_forwards.push((HTLCSource::PreviousHopData(HTLCPreviousHopData {
3827                                                                                                 short_channel_id: $htlc.prev_hop.short_channel_id,
3828                                                                                                 outpoint: prev_funding_outpoint,
3829                                                                                                 htlc_id: $htlc.prev_hop.htlc_id,
3830                                                                                                 incoming_packet_shared_secret: $htlc.prev_hop.incoming_packet_shared_secret,
3831                                                                                                 phantom_shared_secret,
3832                                                                                         }), payment_hash,
3833                                                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
3834                                                                                         HTLCDestination::FailedPayment { payment_hash: $payment_hash },
3835                                                                                 ));
3836                                                                                 continue 'next_forwardable_htlc;
3837                                                                         }
3838                                                                 }
3839                                                                 let phantom_shared_secret = claimable_htlc.prev_hop.phantom_shared_secret;
3840                                                                 let mut receiver_node_id = self.our_network_pubkey;
3841                                                                 if phantom_shared_secret.is_some() {
3842                                                                         receiver_node_id = self.node_signer.get_node_id(Recipient::PhantomNode)
3843                                                                                 .expect("Failed to get node_id for phantom node recipient");
3844                                                                 }
3845
3846                                                                 macro_rules! check_total_value {
3847                                                                         ($purpose: expr) => {{
3848                                                                                 let mut payment_claimable_generated = false;
3849                                                                                 let is_keysend = match $purpose {
3850                                                                                         events::PaymentPurpose::SpontaneousPayment(_) => true,
3851                                                                                         events::PaymentPurpose::InvoicePayment { .. } => false,
3852                                                                                 };
3853                                                                                 let mut claimable_payments = self.claimable_payments.lock().unwrap();
3854                                                                                 if claimable_payments.pending_claiming_payments.contains_key(&payment_hash) {
3855                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3856                                                                                 }
3857                                                                                 let ref mut claimable_payment = claimable_payments.claimable_payments
3858                                                                                         .entry(payment_hash)
3859                                                                                         // Note that if we insert here we MUST NOT fail_htlc!()
3860                                                                                         .or_insert_with(|| {
3861                                                                                                 committed_to_claimable = true;
3862                                                                                                 ClaimablePayment {
3863                                                                                                         purpose: $purpose.clone(), htlcs: Vec::new(), onion_fields: None,
3864                                                                                                 }
3865                                                                                         });
3866                                                                                 if $purpose != claimable_payment.purpose {
3867                                                                                         let log_keysend = |keysend| if keysend { "keysend" } else { "non-keysend" };
3868                                                                                         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), log_bytes!(payment_hash.0), log_keysend(!is_keysend));
3869                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3870                                                                                 }
3871                                                                                 if !self.default_configuration.accept_mpp_keysend && is_keysend && !claimable_payment.htlcs.is_empty() {
3872                                                                                         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", log_bytes!(payment_hash.0));
3873                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3874                                                                                 }
3875                                                                                 if let Some(earlier_fields) = &mut claimable_payment.onion_fields {
3876                                                                                         if earlier_fields.check_merge(&mut onion_fields).is_err() {
3877                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
3878                                                                                         }
3879                                                                                 } else {
3880                                                                                         claimable_payment.onion_fields = Some(onion_fields);
3881                                                                                 }
3882                                                                                 let ref mut htlcs = &mut claimable_payment.htlcs;
3883                                                                                 let mut total_value = claimable_htlc.sender_intended_value;
3884                                                                                 let mut earliest_expiry = claimable_htlc.cltv_expiry;
3885                                                                                 for htlc in htlcs.iter() {
3886                                                                                         total_value += htlc.sender_intended_value;
3887                                                                                         earliest_expiry = cmp::min(earliest_expiry, htlc.cltv_expiry);
3888                                                                                         if htlc.total_msat != claimable_htlc.total_msat {
3889                                                                                                 log_trace!(self.logger, "Failing HTLCs with payment_hash {} as the HTLCs had inconsistent total values (eg {} and {})",
3890                                                                                                         log_bytes!(payment_hash.0), claimable_htlc.total_msat, htlc.total_msat);
3891                                                                                                 total_value = msgs::MAX_VALUE_MSAT;
3892                                                                                         }
3893                                                                                         if total_value >= msgs::MAX_VALUE_MSAT { break; }
3894                                                                                 }
3895                                                                                 // The condition determining whether an MPP is complete must
3896                                                                                 // match exactly the condition used in `timer_tick_occurred`
3897                                                                                 if total_value >= msgs::MAX_VALUE_MSAT {
3898                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3899                                                                                 } else if total_value - claimable_htlc.sender_intended_value >= claimable_htlc.total_msat {
3900                                                                                         log_trace!(self.logger, "Failing HTLC with payment_hash {} as payment is already claimable",
3901                                                                                                 log_bytes!(payment_hash.0));
3902                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3903                                                                                 } else if total_value >= claimable_htlc.total_msat {
3904                                                                                         #[allow(unused_assignments)] {
3905                                                                                                 committed_to_claimable = true;
3906                                                                                         }
3907                                                                                         let prev_channel_id = prev_funding_outpoint.to_channel_id();
3908                                                                                         htlcs.push(claimable_htlc);
3909                                                                                         let amount_msat = htlcs.iter().map(|htlc| htlc.value).sum();
3910                                                                                         htlcs.iter_mut().for_each(|htlc| htlc.total_value_received = Some(amount_msat));
3911                                                                                         new_events.push_back((events::Event::PaymentClaimable {
3912                                                                                                 receiver_node_id: Some(receiver_node_id),
3913                                                                                                 payment_hash,
3914                                                                                                 purpose: $purpose,
3915                                                                                                 amount_msat,
3916                                                                                                 via_channel_id: Some(prev_channel_id),
3917                                                                                                 via_user_channel_id: Some(prev_user_channel_id),
3918                                                                                                 claim_deadline: Some(earliest_expiry - HTLC_FAIL_BACK_BUFFER),
3919                                                                                                 onion_fields: claimable_payment.onion_fields.clone(),
3920                                                                                         }, None));
3921                                                                                         payment_claimable_generated = true;
3922                                                                                 } else {
3923                                                                                         // Nothing to do - we haven't reached the total
3924                                                                                         // payment value yet, wait until we receive more
3925                                                                                         // MPP parts.
3926                                                                                         htlcs.push(claimable_htlc);
3927                                                                                         #[allow(unused_assignments)] {
3928                                                                                                 committed_to_claimable = true;
3929                                                                                         }
3930                                                                                 }
3931                                                                                 payment_claimable_generated
3932                                                                         }}
3933                                                                 }
3934
3935                                                                 // Check that the payment hash and secret are known. Note that we
3936                                                                 // MUST take care to handle the "unknown payment hash" and
3937                                                                 // "incorrect payment secret" cases here identically or we'd expose
3938                                                                 // that we are the ultimate recipient of the given payment hash.
3939                                                                 // Further, we must not expose whether we have any other HTLCs
3940                                                                 // associated with the same payment_hash pending or not.
3941                                                                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
3942                                                                 match payment_secrets.entry(payment_hash) {
3943                                                                         hash_map::Entry::Vacant(_) => {
3944                                                                                 match claimable_htlc.onion_payload {
3945                                                                                         OnionPayload::Invoice { .. } => {
3946                                                                                                 let payment_data = payment_data.unwrap();
3947                                                                                                 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) {
3948                                                                                                         Ok(result) => result,
3949                                                                                                         Err(()) => {
3950                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as payment verification failed", log_bytes!(payment_hash.0));
3951                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
3952                                                                                                         }
3953                                                                                                 };
3954                                                                                                 if let Some(min_final_cltv_expiry_delta) = min_final_cltv_expiry_delta {
3955                                                                                                         let expected_min_expiry_height = (self.current_best_block().height() + min_final_cltv_expiry_delta as u32) as u64;
3956                                                                                                         if (cltv_expiry as u64) < expected_min_expiry_height {
3957                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as its CLTV expiry was too soon (had {}, earliest expected {})",
3958                                                                                                                         log_bytes!(payment_hash.0), cltv_expiry, expected_min_expiry_height);
3959                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
3960                                                                                                         }
3961                                                                                                 }
3962                                                                                                 let purpose = events::PaymentPurpose::InvoicePayment {
3963                                                                                                         payment_preimage: payment_preimage.clone(),
3964                                                                                                         payment_secret: payment_data.payment_secret,
3965                                                                                                 };
3966                                                                                                 check_total_value!(purpose);
3967                                                                                         },
3968                                                                                         OnionPayload::Spontaneous(preimage) => {
3969                                                                                                 let purpose = events::PaymentPurpose::SpontaneousPayment(preimage);
3970                                                                                                 check_total_value!(purpose);
3971                                                                                         }
3972                                                                                 }
3973                                                                         },
3974                                                                         hash_map::Entry::Occupied(inbound_payment) => {
3975                                                                                 if let OnionPayload::Spontaneous(_) = claimable_htlc.onion_payload {
3976                                                                                         log_trace!(self.logger, "Failing new keysend HTLC with payment_hash {} because we already have an inbound payment with the same payment hash", log_bytes!(payment_hash.0));
3977                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3978                                                                                 }
3979                                                                                 let payment_data = payment_data.unwrap();
3980                                                                                 if inbound_payment.get().payment_secret != payment_data.payment_secret {
3981                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our expected payment secret.", log_bytes!(payment_hash.0));
3982                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3983                                                                                 } else if inbound_payment.get().min_value_msat.is_some() && payment_data.total_msat < inbound_payment.get().min_value_msat.unwrap() {
3984                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our minimum value (had {}, needed {}).",
3985                                                                                                 log_bytes!(payment_hash.0), payment_data.total_msat, inbound_payment.get().min_value_msat.unwrap());
3986                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3987                                                                                 } else {
3988                                                                                         let purpose = events::PaymentPurpose::InvoicePayment {
3989                                                                                                 payment_preimage: inbound_payment.get().payment_preimage,
3990                                                                                                 payment_secret: payment_data.payment_secret,
3991                                                                                         };
3992                                                                                         let payment_claimable_generated = check_total_value!(purpose);
3993                                                                                         if payment_claimable_generated {
3994                                                                                                 inbound_payment.remove_entry();
3995                                                                                         }
3996                                                                                 }
3997                                                                         },
3998                                                                 };
3999                                                         },
4000                                                         HTLCForwardInfo::FailHTLC { .. } => {
4001                                                                 panic!("Got pending fail of our own HTLC");
4002                                                         }
4003                                                 }
4004                                         }
4005                                 }
4006                         }
4007                 }
4008
4009                 let best_block_height = self.best_block.read().unwrap().height();
4010                 self.pending_outbound_payments.check_retry_payments(&self.router, || self.list_usable_channels(),
4011                         || self.compute_inflight_htlcs(), &self.entropy_source, &self.node_signer, best_block_height,
4012                         &self.pending_events, &self.logger,
4013                         |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
4014                         self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv));
4015
4016                 for (htlc_source, payment_hash, failure_reason, destination) in failed_forwards.drain(..) {
4017                         self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
4018                 }
4019                 self.forward_htlcs(&mut phantom_receives);
4020
4021                 // Freeing the holding cell here is relatively redundant - in practice we'll do it when we
4022                 // next get a `get_and_clear_pending_msg_events` call, but some tests rely on it, and it's
4023                 // nice to do the work now if we can rather than while we're trying to get messages in the
4024                 // network stack.
4025                 self.check_free_holding_cells();
4026
4027                 if new_events.is_empty() { return }
4028                 let mut events = self.pending_events.lock().unwrap();
4029                 events.append(&mut new_events);
4030         }
4031
4032         /// Free the background events, generally called from [`PersistenceNotifierGuard`] constructors.
4033         ///
4034         /// Expects the caller to have a total_consistency_lock read lock.
4035         fn process_background_events(&self) -> NotifyOption {
4036                 debug_assert_ne!(self.total_consistency_lock.held_by_thread(), LockHeldState::NotHeldByThread);
4037
4038                 #[cfg(debug_assertions)]
4039                 self.background_events_processed_since_startup.store(true, Ordering::Release);
4040
4041                 let mut background_events = Vec::new();
4042                 mem::swap(&mut *self.pending_background_events.lock().unwrap(), &mut background_events);
4043                 if background_events.is_empty() {
4044                         return NotifyOption::SkipPersist;
4045                 }
4046
4047                 for event in background_events.drain(..) {
4048                         match event {
4049                                 BackgroundEvent::ClosingMonitorUpdateRegeneratedOnStartup((funding_txo, update)) => {
4050                                         // The channel has already been closed, so no use bothering to care about the
4051                                         // monitor updating completing.
4052                                         let _ = self.chain_monitor.update_channel(funding_txo, &update);
4053                                 },
4054                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup { counterparty_node_id, funding_txo, update } => {
4055                                         let update_res = self.chain_monitor.update_channel(funding_txo, &update);
4056
4057                                         let res = {
4058                                                 let per_peer_state = self.per_peer_state.read().unwrap();
4059                                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
4060                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4061                                                         let peer_state = &mut *peer_state_lock;
4062                                                         match peer_state.channel_by_id.entry(funding_txo.to_channel_id()) {
4063                                                                 hash_map::Entry::Occupied(mut chan) => {
4064                                                                         handle_new_monitor_update!(self, update_res, update.update_id, peer_state_lock, peer_state, per_peer_state, chan)
4065                                                                 },
4066                                                                 hash_map::Entry::Vacant(_) => Ok(()),
4067                                                         }
4068                                                 } else { Ok(()) }
4069                                         };
4070                                         // TODO: If this channel has since closed, we're likely providing a payment
4071                                         // preimage update, which we must ensure is durable! We currently don't,
4072                                         // however, ensure that.
4073                                         if res.is_err() {
4074                                                 log_error!(self.logger,
4075                                                         "Failed to provide ChannelMonitorUpdate to closed channel! This likely lost us a payment preimage!");
4076                                         }
4077                                         let _ = handle_error!(self, res, counterparty_node_id);
4078                                 },
4079                         }
4080                 }
4081                 NotifyOption::DoPersist
4082         }
4083
4084         #[cfg(any(test, feature = "_test_utils"))]
4085         /// Process background events, for functional testing
4086         pub fn test_process_background_events(&self) {
4087                 let _lck = self.total_consistency_lock.read().unwrap();
4088                 let _ = self.process_background_events();
4089         }
4090
4091         fn update_channel_fee(&self, chan_id: &[u8; 32], chan: &mut Channel<<SP::Target as SignerProvider>::Signer>, new_feerate: u32) -> NotifyOption {
4092                 if !chan.context.is_outbound() { return NotifyOption::SkipPersist; }
4093                 // If the feerate has decreased by less than half, don't bother
4094                 if new_feerate <= chan.context.get_feerate_sat_per_1000_weight() && new_feerate * 2 > chan.context.get_feerate_sat_per_1000_weight() {
4095                         log_trace!(self.logger, "Channel {} does not qualify for a feerate change from {} to {}.",
4096                                 log_bytes!(chan_id[..]), chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4097                         return NotifyOption::SkipPersist;
4098                 }
4099                 if !chan.context.is_live() {
4100                         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).",
4101                                 log_bytes!(chan_id[..]), chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4102                         return NotifyOption::SkipPersist;
4103                 }
4104                 log_trace!(self.logger, "Channel {} qualifies for a feerate change from {} to {}.",
4105                         log_bytes!(chan_id[..]), chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4106
4107                 chan.queue_update_fee(new_feerate, &self.logger);
4108                 NotifyOption::DoPersist
4109         }
4110
4111         #[cfg(fuzzing)]
4112         /// In chanmon_consistency we want to sometimes do the channel fee updates done in
4113         /// timer_tick_occurred, but we can't generate the disabled channel updates as it considers
4114         /// these a fuzz failure (as they usually indicate a channel force-close, which is exactly what
4115         /// it wants to detect). Thus, we have a variant exposed here for its benefit.
4116         pub fn maybe_update_chan_fees(&self) {
4117                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
4118                         let mut should_persist = self.process_background_events();
4119
4120                         let new_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
4121
4122                         let per_peer_state = self.per_peer_state.read().unwrap();
4123                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
4124                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4125                                 let peer_state = &mut *peer_state_lock;
4126                                 for (chan_id, chan) in peer_state.channel_by_id.iter_mut() {
4127                                         let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4128                                         if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4129                                 }
4130                         }
4131
4132                         should_persist
4133                 });
4134         }
4135
4136         /// Performs actions which should happen on startup and roughly once per minute thereafter.
4137         ///
4138         /// This currently includes:
4139         ///  * Increasing or decreasing the on-chain feerate estimates for our outbound channels,
4140         ///  * Broadcasting [`ChannelUpdate`] messages if we've been disconnected from our peer for more
4141         ///    than a minute, informing the network that they should no longer attempt to route over
4142         ///    the channel.
4143         ///  * Expiring a channel's previous [`ChannelConfig`] if necessary to only allow forwarding HTLCs
4144         ///    with the current [`ChannelConfig`].
4145         ///  * Removing peers which have disconnected but and no longer have any channels.
4146         ///
4147         /// Note that this may cause reentrancy through [`chain::Watch::update_channel`] calls or feerate
4148         /// estimate fetches.
4149         ///
4150         /// [`ChannelUpdate`]: msgs::ChannelUpdate
4151         /// [`ChannelConfig`]: crate::util::config::ChannelConfig
4152         pub fn timer_tick_occurred(&self) {
4153                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
4154                         let mut should_persist = self.process_background_events();
4155
4156                         let new_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
4157
4158                         let mut handle_errors: Vec<(Result<(), _>, _)> = Vec::new();
4159                         let mut timed_out_mpp_htlcs = Vec::new();
4160                         let mut pending_peers_awaiting_removal = Vec::new();
4161                         {
4162                                 let per_peer_state = self.per_peer_state.read().unwrap();
4163                                 for (counterparty_node_id, peer_state_mutex) in per_peer_state.iter() {
4164                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4165                                         let peer_state = &mut *peer_state_lock;
4166                                         let pending_msg_events = &mut peer_state.pending_msg_events;
4167                                         let counterparty_node_id = *counterparty_node_id;
4168                                         peer_state.channel_by_id.retain(|chan_id, chan| {
4169                                                 let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4170                                                 if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4171
4172                                                 if let Err(e) = chan.timer_check_closing_negotiation_progress() {
4173                                                         let (needs_close, err) = convert_chan_err!(self, e, chan, chan_id);
4174                                                         handle_errors.push((Err(err), counterparty_node_id));
4175                                                         if needs_close { return false; }
4176                                                 }
4177
4178                                                 match chan.channel_update_status() {
4179                                                         ChannelUpdateStatus::Enabled if !chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(0)),
4180                                                         ChannelUpdateStatus::Disabled if chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(0)),
4181                                                         ChannelUpdateStatus::DisabledStaged(_) if chan.context.is_live()
4182                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Enabled),
4183                                                         ChannelUpdateStatus::EnabledStaged(_) if !chan.context.is_live()
4184                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Disabled),
4185                                                         ChannelUpdateStatus::DisabledStaged(mut n) if !chan.context.is_live() => {
4186                                                                 n += 1;
4187                                                                 if n >= DISABLE_GOSSIP_TICKS {
4188                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Disabled);
4189                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4190                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4191                                                                                         msg: update
4192                                                                                 });
4193                                                                         }
4194                                                                         should_persist = NotifyOption::DoPersist;
4195                                                                 } else {
4196                                                                         chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(n));
4197                                                                 }
4198                                                         },
4199                                                         ChannelUpdateStatus::EnabledStaged(mut n) if chan.context.is_live() => {
4200                                                                 n += 1;
4201                                                                 if n >= ENABLE_GOSSIP_TICKS {
4202                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Enabled);
4203                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4204                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4205                                                                                         msg: update
4206                                                                                 });
4207                                                                         }
4208                                                                         should_persist = NotifyOption::DoPersist;
4209                                                                 } else {
4210                                                                         chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(n));
4211                                                                 }
4212                                                         },
4213                                                         _ => {},
4214                                                 }
4215
4216                                                 chan.context.maybe_expire_prev_config();
4217
4218                                                 if chan.should_disconnect_peer_awaiting_response() {
4219                                                         log_debug!(self.logger, "Disconnecting peer {} due to not making any progress on channel {}",
4220                                                                         counterparty_node_id, log_bytes!(*chan_id));
4221                                                         pending_msg_events.push(MessageSendEvent::HandleError {
4222                                                                 node_id: counterparty_node_id,
4223                                                                 action: msgs::ErrorAction::DisconnectPeerWithWarning {
4224                                                                         msg: msgs::WarningMessage {
4225                                                                                 channel_id: *chan_id,
4226                                                                                 data: "Disconnecting due to timeout awaiting response".to_owned(),
4227                                                                         },
4228                                                                 },
4229                                                         });
4230                                                 }
4231
4232                                                 true
4233                                         });
4234                                         if peer_state.ok_to_remove(true) {
4235                                                 pending_peers_awaiting_removal.push(counterparty_node_id);
4236                                         }
4237                                 }
4238                         }
4239
4240                         // When a peer disconnects but still has channels, the peer's `peer_state` entry in the
4241                         // `per_peer_state` is not removed by the `peer_disconnected` function. If the channels
4242                         // of to that peer is later closed while still being disconnected (i.e. force closed),
4243                         // we therefore need to remove the peer from `peer_state` separately.
4244                         // To avoid having to take the `per_peer_state` `write` lock once the channels are
4245                         // closed, we instead remove such peers awaiting removal here on a timer, to limit the
4246                         // negative effects on parallelism as much as possible.
4247                         if pending_peers_awaiting_removal.len() > 0 {
4248                                 let mut per_peer_state = self.per_peer_state.write().unwrap();
4249                                 for counterparty_node_id in pending_peers_awaiting_removal {
4250                                         match per_peer_state.entry(counterparty_node_id) {
4251                                                 hash_map::Entry::Occupied(entry) => {
4252                                                         // Remove the entry if the peer is still disconnected and we still
4253                                                         // have no channels to the peer.
4254                                                         let remove_entry = {
4255                                                                 let peer_state = entry.get().lock().unwrap();
4256                                                                 peer_state.ok_to_remove(true)
4257                                                         };
4258                                                         if remove_entry {
4259                                                                 entry.remove_entry();
4260                                                         }
4261                                                 },
4262                                                 hash_map::Entry::Vacant(_) => { /* The PeerState has already been removed */ }
4263                                         }
4264                                 }
4265                         }
4266
4267                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
4268                                 if payment.htlcs.is_empty() {
4269                                         // This should be unreachable
4270                                         debug_assert!(false);
4271                                         return false;
4272                                 }
4273                                 if let OnionPayload::Invoice { .. } = payment.htlcs[0].onion_payload {
4274                                         // Check if we've received all the parts we need for an MPP (the value of the parts adds to total_msat).
4275                                         // In this case we're not going to handle any timeouts of the parts here.
4276                                         // This condition determining whether the MPP is complete here must match
4277                                         // exactly the condition used in `process_pending_htlc_forwards`.
4278                                         if payment.htlcs[0].total_msat <= payment.htlcs.iter()
4279                                                 .fold(0, |total, htlc| total + htlc.sender_intended_value)
4280                                         {
4281                                                 return true;
4282                                         } else if payment.htlcs.iter_mut().any(|htlc| {
4283                                                 htlc.timer_ticks += 1;
4284                                                 return htlc.timer_ticks >= MPP_TIMEOUT_TICKS
4285                                         }) {
4286                                                 timed_out_mpp_htlcs.extend(payment.htlcs.drain(..)
4287                                                         .map(|htlc: ClaimableHTLC| (htlc.prev_hop, *payment_hash)));
4288                                                 return false;
4289                                         }
4290                                 }
4291                                 true
4292                         });
4293
4294                         for htlc_source in timed_out_mpp_htlcs.drain(..) {
4295                                 let source = HTLCSource::PreviousHopData(htlc_source.0.clone());
4296                                 let reason = HTLCFailReason::from_failure_code(23);
4297                                 let receiver = HTLCDestination::FailedPayment { payment_hash: htlc_source.1 };
4298                                 self.fail_htlc_backwards_internal(&source, &htlc_source.1, &reason, receiver);
4299                         }
4300
4301                         for (err, counterparty_node_id) in handle_errors.drain(..) {
4302                                 let _ = handle_error!(self, err, counterparty_node_id);
4303                         }
4304
4305                         self.pending_outbound_payments.remove_stale_resolved_payments(&self.pending_events);
4306
4307                         // Technically we don't need to do this here, but if we have holding cell entries in a
4308                         // channel that need freeing, it's better to do that here and block a background task
4309                         // than block the message queueing pipeline.
4310                         if self.check_free_holding_cells() {
4311                                 should_persist = NotifyOption::DoPersist;
4312                         }
4313
4314                         should_persist
4315                 });
4316         }
4317
4318         /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
4319         /// after a PaymentClaimable event, failing the HTLC back to its origin and freeing resources
4320         /// along the path (including in our own channel on which we received it).
4321         ///
4322         /// Note that in some cases around unclean shutdown, it is possible the payment may have
4323         /// already been claimed by you via [`ChannelManager::claim_funds`] prior to you seeing (a
4324         /// second copy of) the [`events::Event::PaymentClaimable`] event. Alternatively, the payment
4325         /// may have already been failed automatically by LDK if it was nearing its expiration time.
4326         ///
4327         /// While LDK will never claim a payment automatically on your behalf (i.e. without you calling
4328         /// [`ChannelManager::claim_funds`]), you should still monitor for
4329         /// [`events::Event::PaymentClaimed`] events even for payments you intend to fail, especially on
4330         /// startup during which time claims that were in-progress at shutdown may be replayed.
4331         pub fn fail_htlc_backwards(&self, payment_hash: &PaymentHash) {
4332                 self.fail_htlc_backwards_with_reason(payment_hash, FailureCode::IncorrectOrUnknownPaymentDetails);
4333         }
4334
4335         /// This is a variant of [`ChannelManager::fail_htlc_backwards`] that allows you to specify the
4336         /// reason for the failure.
4337         ///
4338         /// See [`FailureCode`] for valid failure codes.
4339         pub fn fail_htlc_backwards_with_reason(&self, payment_hash: &PaymentHash, failure_code: FailureCode) {
4340                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4341
4342                 let removed_source = self.claimable_payments.lock().unwrap().claimable_payments.remove(payment_hash);
4343                 if let Some(payment) = removed_source {
4344                         for htlc in payment.htlcs {
4345                                 let reason = self.get_htlc_fail_reason_from_failure_code(failure_code, &htlc);
4346                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
4347                                 let receiver = HTLCDestination::FailedPayment { payment_hash: *payment_hash };
4348                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
4349                         }
4350                 }
4351         }
4352
4353         /// Gets error data to form an [`HTLCFailReason`] given a [`FailureCode`] and [`ClaimableHTLC`].
4354         fn get_htlc_fail_reason_from_failure_code(&self, failure_code: FailureCode, htlc: &ClaimableHTLC) -> HTLCFailReason {
4355                 match failure_code {
4356                         FailureCode::TemporaryNodeFailure => HTLCFailReason::from_failure_code(failure_code as u16),
4357                         FailureCode::RequiredNodeFeatureMissing => HTLCFailReason::from_failure_code(failure_code as u16),
4358                         FailureCode::IncorrectOrUnknownPaymentDetails => {
4359                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
4360                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
4361                                 HTLCFailReason::reason(failure_code as u16, htlc_msat_height_data)
4362                         }
4363                 }
4364         }
4365
4366         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
4367         /// that we want to return and a channel.
4368         ///
4369         /// This is for failures on the channel on which the HTLC was *received*, not failures
4370         /// forwarding
4371         fn get_htlc_inbound_temp_fail_err_and_data(&self, desired_err_code: u16, chan: &Channel<<SP::Target as SignerProvider>::Signer>) -> (u16, Vec<u8>) {
4372                 // We can't be sure what SCID was used when relaying inbound towards us, so we have to
4373                 // guess somewhat. If its a public channel, we figure best to just use the real SCID (as
4374                 // we're not leaking that we have a channel with the counterparty), otherwise we try to use
4375                 // an inbound SCID alias before the real SCID.
4376                 let scid_pref = if chan.context.should_announce() {
4377                         chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias())
4378                 } else {
4379                         chan.context.latest_inbound_scid_alias().or(chan.context.get_short_channel_id())
4380                 };
4381                 if let Some(scid) = scid_pref {
4382                         self.get_htlc_temp_fail_err_and_data(desired_err_code, scid, chan)
4383                 } else {
4384                         (0x4000|10, Vec::new())
4385                 }
4386         }
4387
4388
4389         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
4390         /// that we want to return and a channel.
4391         fn get_htlc_temp_fail_err_and_data(&self, desired_err_code: u16, scid: u64, chan: &Channel<<SP::Target as SignerProvider>::Signer>) -> (u16, Vec<u8>) {
4392                 debug_assert_eq!(desired_err_code & 0x1000, 0x1000);
4393                 if let Ok(upd) = self.get_channel_update_for_onion(scid, chan) {
4394                         let mut enc = VecWriter(Vec::with_capacity(upd.serialized_length() + 6));
4395                         if desired_err_code == 0x1000 | 20 {
4396                                 // No flags for `disabled_flags` are currently defined so they're always two zero bytes.
4397                                 // See https://github.com/lightning/bolts/blob/341ec84/04-onion-routing.md?plain=1#L1008
4398                                 0u16.write(&mut enc).expect("Writes cannot fail");
4399                         }
4400                         (upd.serialized_length() as u16 + 2).write(&mut enc).expect("Writes cannot fail");
4401                         msgs::ChannelUpdate::TYPE.write(&mut enc).expect("Writes cannot fail");
4402                         upd.write(&mut enc).expect("Writes cannot fail");
4403                         (desired_err_code, enc.0)
4404                 } else {
4405                         // If we fail to get a unicast channel_update, it implies we don't yet have an SCID,
4406                         // which means we really shouldn't have gotten a payment to be forwarded over this
4407                         // channel yet, or if we did it's from a route hint. Either way, returning an error of
4408                         // PERM|no_such_channel should be fine.
4409                         (0x4000|10, Vec::new())
4410                 }
4411         }
4412
4413         // Fail a list of HTLCs that were just freed from the holding cell. The HTLCs need to be
4414         // failed backwards or, if they were one of our outgoing HTLCs, then their failure needs to
4415         // be surfaced to the user.
4416         fn fail_holding_cell_htlcs(
4417                 &self, mut htlcs_to_fail: Vec<(HTLCSource, PaymentHash)>, channel_id: [u8; 32],
4418                 counterparty_node_id: &PublicKey
4419         ) {
4420                 let (failure_code, onion_failure_data) = {
4421                         let per_peer_state = self.per_peer_state.read().unwrap();
4422                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
4423                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4424                                 let peer_state = &mut *peer_state_lock;
4425                                 match peer_state.channel_by_id.entry(channel_id) {
4426                                         hash_map::Entry::Occupied(chan_entry) => {
4427                                                 self.get_htlc_inbound_temp_fail_err_and_data(0x1000|7, &chan_entry.get())
4428                                         },
4429                                         hash_map::Entry::Vacant(_) => (0x4000|10, Vec::new())
4430                                 }
4431                         } else { (0x4000|10, Vec::new()) }
4432                 };
4433
4434                 for (htlc_src, payment_hash) in htlcs_to_fail.drain(..) {
4435                         let reason = HTLCFailReason::reason(failure_code, onion_failure_data.clone());
4436                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id };
4437                         self.fail_htlc_backwards_internal(&htlc_src, &payment_hash, &reason, receiver);
4438                 }
4439         }
4440
4441         /// Fails an HTLC backwards to the sender of it to us.
4442         /// Note that we do not assume that channels corresponding to failed HTLCs are still available.
4443         fn fail_htlc_backwards_internal(&self, source: &HTLCSource, payment_hash: &PaymentHash, onion_error: &HTLCFailReason, destination: HTLCDestination) {
4444                 // Ensure that no peer state channel storage lock is held when calling this function.
4445                 // This ensures that future code doesn't introduce a lock-order requirement for
4446                 // `forward_htlcs` to be locked after the `per_peer_state` peer locks, which calling
4447                 // this function with any `per_peer_state` peer lock acquired would.
4448                 for (_, peer) in self.per_peer_state.read().unwrap().iter() {
4449                         debug_assert_ne!(peer.held_by_thread(), LockHeldState::HeldByThread);
4450                 }
4451
4452                 //TODO: There is a timing attack here where if a node fails an HTLC back to us they can
4453                 //identify whether we sent it or not based on the (I presume) very different runtime
4454                 //between the branches here. We should make this async and move it into the forward HTLCs
4455                 //timer handling.
4456
4457                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
4458                 // from block_connected which may run during initialization prior to the chain_monitor
4459                 // being fully configured. See the docs for `ChannelManagerReadArgs` for more.
4460                 match source {
4461                         HTLCSource::OutboundRoute { ref path, ref session_priv, ref payment_id, .. } => {
4462                                 if self.pending_outbound_payments.fail_htlc(source, payment_hash, onion_error, path,
4463                                         session_priv, payment_id, self.probing_cookie_secret, &self.secp_ctx,
4464                                         &self.pending_events, &self.logger)
4465                                 { self.push_pending_forwards_ev(); }
4466                         },
4467                         HTLCSource::PreviousHopData(HTLCPreviousHopData { ref short_channel_id, ref htlc_id, ref incoming_packet_shared_secret, ref phantom_shared_secret, ref outpoint }) => {
4468                                 log_trace!(self.logger, "Failing HTLC with payment_hash {} backwards from us with {:?}", log_bytes!(payment_hash.0), onion_error);
4469                                 let err_packet = onion_error.get_encrypted_failure_packet(incoming_packet_shared_secret, phantom_shared_secret);
4470
4471                                 let mut push_forward_ev = false;
4472                                 let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
4473                                 if forward_htlcs.is_empty() {
4474                                         push_forward_ev = true;
4475                                 }
4476                                 match forward_htlcs.entry(*short_channel_id) {
4477                                         hash_map::Entry::Occupied(mut entry) => {
4478                                                 entry.get_mut().push(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet });
4479                                         },
4480                                         hash_map::Entry::Vacant(entry) => {
4481                                                 entry.insert(vec!(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet }));
4482                                         }
4483                                 }
4484                                 mem::drop(forward_htlcs);
4485                                 if push_forward_ev { self.push_pending_forwards_ev(); }
4486                                 let mut pending_events = self.pending_events.lock().unwrap();
4487                                 pending_events.push_back((events::Event::HTLCHandlingFailed {
4488                                         prev_channel_id: outpoint.to_channel_id(),
4489                                         failed_next_destination: destination,
4490                                 }, None));
4491                         },
4492                 }
4493         }
4494
4495         /// Provides a payment preimage in response to [`Event::PaymentClaimable`], generating any
4496         /// [`MessageSendEvent`]s needed to claim the payment.
4497         ///
4498         /// This method is guaranteed to ensure the payment has been claimed but only if the current
4499         /// height is strictly below [`Event::PaymentClaimable::claim_deadline`]. To avoid race
4500         /// conditions, you should wait for an [`Event::PaymentClaimed`] before considering the payment
4501         /// successful. It will generally be available in the next [`process_pending_events`] call.
4502         ///
4503         /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
4504         /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentClaimable`
4505         /// event matches your expectation. If you fail to do so and call this method, you may provide
4506         /// the sender "proof-of-payment" when they did not fulfill the full expected payment.
4507         ///
4508         /// [`Event::PaymentClaimable`]: crate::events::Event::PaymentClaimable
4509         /// [`Event::PaymentClaimable::claim_deadline`]: crate::events::Event::PaymentClaimable::claim_deadline
4510         /// [`Event::PaymentClaimed`]: crate::events::Event::PaymentClaimed
4511         /// [`process_pending_events`]: EventsProvider::process_pending_events
4512         /// [`create_inbound_payment`]: Self::create_inbound_payment
4513         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
4514         pub fn claim_funds(&self, payment_preimage: PaymentPreimage) {
4515                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
4516
4517                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4518
4519                 let mut sources = {
4520                         let mut claimable_payments = self.claimable_payments.lock().unwrap();
4521                         if let Some(payment) = claimable_payments.claimable_payments.remove(&payment_hash) {
4522                                 let mut receiver_node_id = self.our_network_pubkey;
4523                                 for htlc in payment.htlcs.iter() {
4524                                         if htlc.prev_hop.phantom_shared_secret.is_some() {
4525                                                 let phantom_pubkey = self.node_signer.get_node_id(Recipient::PhantomNode)
4526                                                         .expect("Failed to get node_id for phantom node recipient");
4527                                                 receiver_node_id = phantom_pubkey;
4528                                                 break;
4529                                         }
4530                                 }
4531
4532                                 let dup_purpose = claimable_payments.pending_claiming_payments.insert(payment_hash,
4533                                         ClaimingPayment { amount_msat: payment.htlcs.iter().map(|source| source.value).sum(),
4534                                         payment_purpose: payment.purpose, receiver_node_id,
4535                                 });
4536                                 if dup_purpose.is_some() {
4537                                         debug_assert!(false, "Shouldn't get a duplicate pending claim event ever");
4538                                         log_error!(self.logger, "Got a duplicate pending claimable event on payment hash {}! Please report this bug",
4539                                                 log_bytes!(payment_hash.0));
4540                                 }
4541                                 payment.htlcs
4542                         } else { return; }
4543                 };
4544                 debug_assert!(!sources.is_empty());
4545
4546                 // Just in case one HTLC has been failed between when we generated the `PaymentClaimable`
4547                 // and when we got here we need to check that the amount we're about to claim matches the
4548                 // amount we told the user in the last `PaymentClaimable`. We also do a sanity-check that
4549                 // the MPP parts all have the same `total_msat`.
4550                 let mut claimable_amt_msat = 0;
4551                 let mut prev_total_msat = None;
4552                 let mut expected_amt_msat = None;
4553                 let mut valid_mpp = true;
4554                 let mut errs = Vec::new();
4555                 let per_peer_state = self.per_peer_state.read().unwrap();
4556                 for htlc in sources.iter() {
4557                         if prev_total_msat.is_some() && prev_total_msat != Some(htlc.total_msat) {
4558                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different expected total amounts - this should not be reachable!");
4559                                 debug_assert!(false);
4560                                 valid_mpp = false;
4561                                 break;
4562                         }
4563                         prev_total_msat = Some(htlc.total_msat);
4564
4565                         if expected_amt_msat.is_some() && expected_amt_msat != htlc.total_value_received {
4566                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different received total amounts - this should not be reachable!");
4567                                 debug_assert!(false);
4568                                 valid_mpp = false;
4569                                 break;
4570                         }
4571                         expected_amt_msat = htlc.total_value_received;
4572                         claimable_amt_msat += htlc.value;
4573                 }
4574                 mem::drop(per_peer_state);
4575                 if sources.is_empty() || expected_amt_msat.is_none() {
4576                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
4577                         log_info!(self.logger, "Attempted to claim an incomplete payment which no longer had any available HTLCs!");
4578                         return;
4579                 }
4580                 if claimable_amt_msat != expected_amt_msat.unwrap() {
4581                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
4582                         log_info!(self.logger, "Attempted to claim an incomplete payment, expected {} msat, had {} available to claim.",
4583                                 expected_amt_msat.unwrap(), claimable_amt_msat);
4584                         return;
4585                 }
4586                 if valid_mpp {
4587                         for htlc in sources.drain(..) {
4588                                 if let Err((pk, err)) = self.claim_funds_from_hop(
4589                                         htlc.prev_hop, payment_preimage,
4590                                         |_| Some(MonitorUpdateCompletionAction::PaymentClaimed { payment_hash }))
4591                                 {
4592                                         if let msgs::ErrorAction::IgnoreError = err.err.action {
4593                                                 // We got a temporary failure updating monitor, but will claim the
4594                                                 // HTLC when the monitor updating is restored (or on chain).
4595                                                 log_error!(self.logger, "Temporary failure claiming HTLC, treating as success: {}", err.err.err);
4596                                         } else { errs.push((pk, err)); }
4597                                 }
4598                         }
4599                 }
4600                 if !valid_mpp {
4601                         for htlc in sources.drain(..) {
4602                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
4603                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
4604                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
4605                                 let reason = HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data);
4606                                 let receiver = HTLCDestination::FailedPayment { payment_hash };
4607                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
4608                         }
4609                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
4610                 }
4611
4612                 // Now we can handle any errors which were generated.
4613                 for (counterparty_node_id, err) in errs.drain(..) {
4614                         let res: Result<(), _> = Err(err);
4615                         let _ = handle_error!(self, res, counterparty_node_id);
4616                 }
4617         }
4618
4619         fn claim_funds_from_hop<ComplFunc: FnOnce(Option<u64>) -> Option<MonitorUpdateCompletionAction>>(&self,
4620                 prev_hop: HTLCPreviousHopData, payment_preimage: PaymentPreimage, completion_action: ComplFunc)
4621         -> Result<(), (PublicKey, MsgHandleErrInternal)> {
4622                 //TODO: Delay the claimed_funds relaying just like we do outbound relay!
4623
4624                 {
4625                         let per_peer_state = self.per_peer_state.read().unwrap();
4626                         let chan_id = prev_hop.outpoint.to_channel_id();
4627                         let counterparty_node_id_opt = match self.short_to_chan_info.read().unwrap().get(&prev_hop.short_channel_id) {
4628                                 Some((cp_id, _dup_chan_id)) => Some(cp_id.clone()),
4629                                 None => None
4630                         };
4631
4632                         let peer_state_opt = counterparty_node_id_opt.as_ref().map(
4633                                 |counterparty_node_id| per_peer_state.get(counterparty_node_id)
4634                                         .map(|peer_mutex| peer_mutex.lock().unwrap())
4635                         ).unwrap_or(None);
4636
4637                         if peer_state_opt.is_some() {
4638                                 let mut peer_state_lock = peer_state_opt.unwrap();
4639                                 let peer_state = &mut *peer_state_lock;
4640                                 if let hash_map::Entry::Occupied(mut chan) = peer_state.channel_by_id.entry(chan_id) {
4641                                         let counterparty_node_id = chan.get().context.get_counterparty_node_id();
4642                                         let fulfill_res = chan.get_mut().get_update_fulfill_htlc_and_commit(prev_hop.htlc_id, payment_preimage, &self.logger);
4643
4644                                         if let UpdateFulfillCommitFetch::NewClaim { htlc_value_msat, monitor_update } = fulfill_res {
4645                                                 if let Some(action) = completion_action(Some(htlc_value_msat)) {
4646                                                         log_trace!(self.logger, "Tracking monitor update completion action for channel {}: {:?}",
4647                                                                 log_bytes!(chan_id), action);
4648                                                         peer_state.monitor_update_blocked_actions.entry(chan_id).or_insert(Vec::new()).push(action);
4649                                                 }
4650                                                 let update_id = monitor_update.update_id;
4651                                                 let update_res = self.chain_monitor.update_channel(prev_hop.outpoint, monitor_update);
4652                                                 let res = handle_new_monitor_update!(self, update_res, update_id, peer_state_lock,
4653                                                         peer_state, per_peer_state, chan);
4654                                                 if let Err(e) = res {
4655                                                         // TODO: This is a *critical* error - we probably updated the outbound edge
4656                                                         // of the HTLC's monitor with a preimage. We should retry this monitor
4657                                                         // update over and over again until morale improves.
4658                                                         log_error!(self.logger, "Failed to update channel monitor with preimage {:?}", payment_preimage);
4659                                                         return Err((counterparty_node_id, e));
4660                                                 }
4661                                         }
4662                                         return Ok(());
4663                                 }
4664                         }
4665                 }
4666                 let preimage_update = ChannelMonitorUpdate {
4667                         update_id: CLOSED_CHANNEL_UPDATE_ID,
4668                         updates: vec![ChannelMonitorUpdateStep::PaymentPreimage {
4669                                 payment_preimage,
4670                         }],
4671                 };
4672                 // We update the ChannelMonitor on the backward link, after
4673                 // receiving an `update_fulfill_htlc` from the forward link.
4674                 let update_res = self.chain_monitor.update_channel(prev_hop.outpoint, &preimage_update);
4675                 if update_res != ChannelMonitorUpdateStatus::Completed {
4676                         // TODO: This needs to be handled somehow - if we receive a monitor update
4677                         // with a preimage we *must* somehow manage to propagate it to the upstream
4678                         // channel, or we must have an ability to receive the same event and try
4679                         // again on restart.
4680                         log_error!(self.logger, "Critical error: failed to update channel monitor with preimage {:?}: {:?}",
4681                                 payment_preimage, update_res);
4682                 }
4683                 // Note that we do process the completion action here. This totally could be a
4684                 // duplicate claim, but we have no way of knowing without interrogating the
4685                 // `ChannelMonitor` we've provided the above update to. Instead, note that `Event`s are
4686                 // generally always allowed to be duplicative (and it's specifically noted in
4687                 // `PaymentForwarded`).
4688                 self.handle_monitor_update_completion_actions(completion_action(None));
4689                 Ok(())
4690         }
4691
4692         fn finalize_claims(&self, sources: Vec<HTLCSource>) {
4693                 self.pending_outbound_payments.finalize_claims(sources, &self.pending_events);
4694         }
4695
4696         fn claim_funds_internal(&self, source: HTLCSource, payment_preimage: PaymentPreimage, forwarded_htlc_value_msat: Option<u64>, from_onchain: bool, next_channel_id: [u8; 32]) {
4697                 match source {
4698                         HTLCSource::OutboundRoute { session_priv, payment_id, path, .. } => {
4699                                 self.pending_outbound_payments.claim_htlc(payment_id, payment_preimage, session_priv, path, from_onchain, &self.pending_events, &self.logger);
4700                         },
4701                         HTLCSource::PreviousHopData(hop_data) => {
4702                                 let prev_outpoint = hop_data.outpoint;
4703                                 let res = self.claim_funds_from_hop(hop_data, payment_preimage,
4704                                         |htlc_claim_value_msat| {
4705                                                 if let Some(forwarded_htlc_value) = forwarded_htlc_value_msat {
4706                                                         let fee_earned_msat = if let Some(claimed_htlc_value) = htlc_claim_value_msat {
4707                                                                 Some(claimed_htlc_value - forwarded_htlc_value)
4708                                                         } else { None };
4709
4710                                                         Some(MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
4711                                                                 event: events::Event::PaymentForwarded {
4712                                                                         fee_earned_msat,
4713                                                                         claim_from_onchain_tx: from_onchain,
4714                                                                         prev_channel_id: Some(prev_outpoint.to_channel_id()),
4715                                                                         next_channel_id: Some(next_channel_id),
4716                                                                         outbound_amount_forwarded_msat: forwarded_htlc_value_msat,
4717                                                                 },
4718                                                                 downstream_counterparty_and_funding_outpoint: None,
4719                                                         })
4720                                                 } else { None }
4721                                         });
4722                                 if let Err((pk, err)) = res {
4723                                         let result: Result<(), _> = Err(err);
4724                                         let _ = handle_error!(self, result, pk);
4725                                 }
4726                         },
4727                 }
4728         }
4729
4730         /// Gets the node_id held by this ChannelManager
4731         pub fn get_our_node_id(&self) -> PublicKey {
4732                 self.our_network_pubkey.clone()
4733         }
4734
4735         fn handle_monitor_update_completion_actions<I: IntoIterator<Item=MonitorUpdateCompletionAction>>(&self, actions: I) {
4736                 for action in actions.into_iter() {
4737                         match action {
4738                                 MonitorUpdateCompletionAction::PaymentClaimed { payment_hash } => {
4739                                         let payment = self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
4740                                         if let Some(ClaimingPayment { amount_msat, payment_purpose: purpose, receiver_node_id }) = payment {
4741                                                 self.pending_events.lock().unwrap().push_back((events::Event::PaymentClaimed {
4742                                                         payment_hash, purpose, amount_msat, receiver_node_id: Some(receiver_node_id),
4743                                                 }, None));
4744                                         }
4745                                 },
4746                                 MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
4747                                         event, downstream_counterparty_and_funding_outpoint
4748                                 } => {
4749                                         self.pending_events.lock().unwrap().push_back((event, None));
4750                                         if let Some((node_id, funding_outpoint, blocker)) = downstream_counterparty_and_funding_outpoint {
4751                                                 self.handle_monitor_update_release(node_id, funding_outpoint, Some(blocker));
4752                                         }
4753                                 },
4754                         }
4755                 }
4756         }
4757
4758         /// Handles a channel reentering a functional state, either due to reconnect or a monitor
4759         /// update completion.
4760         fn handle_channel_resumption(&self, pending_msg_events: &mut Vec<MessageSendEvent>,
4761                 channel: &mut Channel<<SP::Target as SignerProvider>::Signer>, raa: Option<msgs::RevokeAndACK>,
4762                 commitment_update: Option<msgs::CommitmentUpdate>, order: RAACommitmentOrder,
4763                 pending_forwards: Vec<(PendingHTLCInfo, u64)>, funding_broadcastable: Option<Transaction>,
4764                 channel_ready: Option<msgs::ChannelReady>, announcement_sigs: Option<msgs::AnnouncementSignatures>)
4765         -> Option<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> {
4766                 log_trace!(self.logger, "Handling channel resumption for channel {} with {} RAA, {} commitment update, {} pending forwards, {}broadcasting funding, {} channel ready, {} announcement",
4767                         log_bytes!(channel.context.channel_id()),
4768                         if raa.is_some() { "an" } else { "no" },
4769                         if commitment_update.is_some() { "a" } else { "no" }, pending_forwards.len(),
4770                         if funding_broadcastable.is_some() { "" } else { "not " },
4771                         if channel_ready.is_some() { "sending" } else { "without" },
4772                         if announcement_sigs.is_some() { "sending" } else { "without" });
4773
4774                 let mut htlc_forwards = None;
4775
4776                 let counterparty_node_id = channel.context.get_counterparty_node_id();
4777                 if !pending_forwards.is_empty() {
4778                         htlc_forwards = Some((channel.context.get_short_channel_id().unwrap_or(channel.context.outbound_scid_alias()),
4779                                 channel.context.get_funding_txo().unwrap(), channel.context.get_user_id(), pending_forwards));
4780                 }
4781
4782                 if let Some(msg) = channel_ready {
4783                         send_channel_ready!(self, pending_msg_events, channel, msg);
4784                 }
4785                 if let Some(msg) = announcement_sigs {
4786                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
4787                                 node_id: counterparty_node_id,
4788                                 msg,
4789                         });
4790                 }
4791
4792                 macro_rules! handle_cs { () => {
4793                         if let Some(update) = commitment_update {
4794                                 pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
4795                                         node_id: counterparty_node_id,
4796                                         updates: update,
4797                                 });
4798                         }
4799                 } }
4800                 macro_rules! handle_raa { () => {
4801                         if let Some(revoke_and_ack) = raa {
4802                                 pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
4803                                         node_id: counterparty_node_id,
4804                                         msg: revoke_and_ack,
4805                                 });
4806                         }
4807                 } }
4808                 match order {
4809                         RAACommitmentOrder::CommitmentFirst => {
4810                                 handle_cs!();
4811                                 handle_raa!();
4812                         },
4813                         RAACommitmentOrder::RevokeAndACKFirst => {
4814                                 handle_raa!();
4815                                 handle_cs!();
4816                         },
4817                 }
4818
4819                 if let Some(tx) = funding_broadcastable {
4820                         log_info!(self.logger, "Broadcasting funding transaction with txid {}", tx.txid());
4821                         self.tx_broadcaster.broadcast_transactions(&[&tx]);
4822                 }
4823
4824                 {
4825                         let mut pending_events = self.pending_events.lock().unwrap();
4826                         emit_channel_pending_event!(pending_events, channel);
4827                         emit_channel_ready_event!(pending_events, channel);
4828                 }
4829
4830                 htlc_forwards
4831         }
4832
4833         fn channel_monitor_updated(&self, funding_txo: &OutPoint, highest_applied_update_id: u64, counterparty_node_id: Option<&PublicKey>) {
4834                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
4835
4836                 let counterparty_node_id = match counterparty_node_id {
4837                         Some(cp_id) => cp_id.clone(),
4838                         None => {
4839                                 // TODO: Once we can rely on the counterparty_node_id from the
4840                                 // monitor event, this and the id_to_peer map should be removed.
4841                                 let id_to_peer = self.id_to_peer.lock().unwrap();
4842                                 match id_to_peer.get(&funding_txo.to_channel_id()) {
4843                                         Some(cp_id) => cp_id.clone(),
4844                                         None => return,
4845                                 }
4846                         }
4847                 };
4848                 let per_peer_state = self.per_peer_state.read().unwrap();
4849                 let mut peer_state_lock;
4850                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
4851                 if peer_state_mutex_opt.is_none() { return }
4852                 peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
4853                 let peer_state = &mut *peer_state_lock;
4854                 let mut channel = {
4855                         match peer_state.channel_by_id.entry(funding_txo.to_channel_id()){
4856                                 hash_map::Entry::Occupied(chan) => chan,
4857                                 hash_map::Entry::Vacant(_) => return,
4858                         }
4859                 };
4860                 log_trace!(self.logger, "ChannelMonitor updated to {}. Current highest is {}",
4861                         highest_applied_update_id, channel.get().context.get_latest_monitor_update_id());
4862                 if !channel.get().is_awaiting_monitor_update() || channel.get().context.get_latest_monitor_update_id() != highest_applied_update_id {
4863                         return;
4864                 }
4865                 handle_monitor_update_completion!(self, highest_applied_update_id, peer_state_lock, peer_state, per_peer_state, channel.get_mut());
4866         }
4867
4868         /// Accepts a request to open a channel after a [`Event::OpenChannelRequest`].
4869         ///
4870         /// The `temporary_channel_id` parameter indicates which inbound channel should be accepted,
4871         /// and the `counterparty_node_id` parameter is the id of the peer which has requested to open
4872         /// the channel.
4873         ///
4874         /// The `user_channel_id` parameter will be provided back in
4875         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
4876         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
4877         ///
4878         /// Note that this method will return an error and reject the channel, if it requires support
4879         /// for zero confirmations. Instead, `accept_inbound_channel_from_trusted_peer_0conf` must be
4880         /// used to accept such channels.
4881         ///
4882         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
4883         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
4884         pub fn accept_inbound_channel(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
4885                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, false, user_channel_id)
4886         }
4887
4888         /// Accepts a request to open a channel after a [`events::Event::OpenChannelRequest`], treating
4889         /// it as confirmed immediately.
4890         ///
4891         /// The `user_channel_id` parameter will be provided back in
4892         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
4893         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
4894         ///
4895         /// Unlike [`ChannelManager::accept_inbound_channel`], this method accepts the incoming channel
4896         /// and (if the counterparty agrees), enables forwarding of payments immediately.
4897         ///
4898         /// This fully trusts that the counterparty has honestly and correctly constructed the funding
4899         /// transaction and blindly assumes that it will eventually confirm.
4900         ///
4901         /// If it does not confirm before we decide to close the channel, or if the funding transaction
4902         /// does not pay to the correct script the correct amount, *you will lose funds*.
4903         ///
4904         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
4905         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
4906         pub fn accept_inbound_channel_from_trusted_peer_0conf(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
4907                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, true, user_channel_id)
4908         }
4909
4910         fn do_accept_inbound_channel(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, accept_0conf: bool, user_channel_id: u128) -> Result<(), APIError> {
4911                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4912
4913                 let peers_without_funded_channels =
4914                         self.peers_without_funded_channels(|peer| { peer.total_channel_count() > 0 });
4915                 let per_peer_state = self.per_peer_state.read().unwrap();
4916                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
4917                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
4918                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4919                 let peer_state = &mut *peer_state_lock;
4920                 let is_only_peer_channel = peer_state.total_channel_count() == 1;
4921                 match peer_state.inbound_v1_channel_by_id.entry(temporary_channel_id.clone()) {
4922                         hash_map::Entry::Occupied(mut channel) => {
4923                                 if !channel.get().is_awaiting_accept() {
4924                                         return Err(APIError::APIMisuseError { err: "The channel isn't currently awaiting to be accepted.".to_owned() });
4925                                 }
4926                                 if accept_0conf {
4927                                         channel.get_mut().set_0conf();
4928                                 } else if channel.get().context.get_channel_type().requires_zero_conf() {
4929                                         let send_msg_err_event = events::MessageSendEvent::HandleError {
4930                                                 node_id: channel.get().context.get_counterparty_node_id(),
4931                                                 action: msgs::ErrorAction::SendErrorMessage{
4932                                                         msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "No zero confirmation channels accepted".to_owned(), }
4933                                                 }
4934                                         };
4935                                         peer_state.pending_msg_events.push(send_msg_err_event);
4936                                         let _ = remove_channel!(self, channel);
4937                                         return Err(APIError::APIMisuseError { err: "Please use accept_inbound_channel_from_trusted_peer_0conf to accept channels with zero confirmations.".to_owned() });
4938                                 } else {
4939                                         // If this peer already has some channels, a new channel won't increase our number of peers
4940                                         // with unfunded channels, so as long as we aren't over the maximum number of unfunded
4941                                         // channels per-peer we can accept channels from a peer with existing ones.
4942                                         if is_only_peer_channel && peers_without_funded_channels >= MAX_UNFUNDED_CHANNEL_PEERS {
4943                                                 let send_msg_err_event = events::MessageSendEvent::HandleError {
4944                                                         node_id: channel.get().context.get_counterparty_node_id(),
4945                                                         action: msgs::ErrorAction::SendErrorMessage{
4946                                                                 msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "Have too many peers with unfunded channels, not accepting new ones".to_owned(), }
4947                                                         }
4948                                                 };
4949                                                 peer_state.pending_msg_events.push(send_msg_err_event);
4950                                                 let _ = remove_channel!(self, channel);
4951                                                 return Err(APIError::APIMisuseError { err: "Too many peers with unfunded channels, refusing to accept new ones".to_owned() });
4952                                         }
4953                                 }
4954
4955                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
4956                                         node_id: channel.get().context.get_counterparty_node_id(),
4957                                         msg: channel.get_mut().accept_inbound_channel(user_channel_id),
4958                                 });
4959                         }
4960                         hash_map::Entry::Vacant(_) => {
4961                                 return Err(APIError::ChannelUnavailable { err: format!("Channel with id {} not found for the passed counterparty node_id {}", log_bytes!(*temporary_channel_id), counterparty_node_id) });
4962                         }
4963                 }
4964                 Ok(())
4965         }
4966
4967         /// Gets the number of peers which match the given filter and do not have any funded, outbound,
4968         /// or 0-conf channels.
4969         ///
4970         /// The filter is called for each peer and provided with the number of unfunded, inbound, and
4971         /// non-0-conf channels we have with the peer.
4972         fn peers_without_funded_channels<Filter>(&self, maybe_count_peer: Filter) -> usize
4973         where Filter: Fn(&PeerState<<SP::Target as SignerProvider>::Signer>) -> bool {
4974                 let mut peers_without_funded_channels = 0;
4975                 let best_block_height = self.best_block.read().unwrap().height();
4976                 {
4977                         let peer_state_lock = self.per_peer_state.read().unwrap();
4978                         for (_, peer_mtx) in peer_state_lock.iter() {
4979                                 let peer = peer_mtx.lock().unwrap();
4980                                 if !maybe_count_peer(&*peer) { continue; }
4981                                 let num_unfunded_channels = Self::unfunded_channel_count(&peer, best_block_height);
4982                                 if num_unfunded_channels == peer.total_channel_count() {
4983                                         peers_without_funded_channels += 1;
4984                                 }
4985                         }
4986                 }
4987                 return peers_without_funded_channels;
4988         }
4989
4990         fn unfunded_channel_count(
4991                 peer: &PeerState<<SP::Target as SignerProvider>::Signer>, best_block_height: u32
4992         ) -> usize {
4993                 let mut num_unfunded_channels = 0;
4994                 for (_, chan) in peer.channel_by_id.iter() {
4995                         // This covers non-zero-conf inbound `Channel`s that we are currently monitoring, but those
4996                         // which have not yet had any confirmations on-chain.
4997                         if !chan.context.is_outbound() && chan.context.minimum_depth().unwrap_or(1) != 0 &&
4998                                 chan.context.get_funding_tx_confirmations(best_block_height) == 0
4999                         {
5000                                 num_unfunded_channels += 1;
5001                         }
5002                 }
5003                 for (_, chan) in peer.inbound_v1_channel_by_id.iter() {
5004                         if chan.context.minimum_depth().unwrap_or(1) != 0 {
5005                                 num_unfunded_channels += 1;
5006                         }
5007                 }
5008                 num_unfunded_channels
5009         }
5010
5011         fn internal_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) -> Result<(), MsgHandleErrInternal> {
5012                 if msg.chain_hash != self.genesis_hash {
5013                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Unknown genesis block hash".to_owned(), msg.temporary_channel_id.clone()));
5014                 }
5015
5016                 if !self.default_configuration.accept_inbound_channels {
5017                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No inbound channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5018                 }
5019
5020                 let mut random_bytes = [0u8; 16];
5021                 random_bytes.copy_from_slice(&self.entropy_source.get_secure_random_bytes()[..16]);
5022                 let user_channel_id = u128::from_be_bytes(random_bytes);
5023                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
5024
5025                 // Get the number of peers with channels, but without funded ones. We don't care too much
5026                 // about peers that never open a channel, so we filter by peers that have at least one
5027                 // channel, and then limit the number of those with unfunded channels.
5028                 let channeled_peers_without_funding =
5029                         self.peers_without_funded_channels(|node| node.total_channel_count() > 0);
5030
5031                 let per_peer_state = self.per_peer_state.read().unwrap();
5032                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5033                     .ok_or_else(|| {
5034                                 debug_assert!(false);
5035                                 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())
5036                         })?;
5037                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5038                 let peer_state = &mut *peer_state_lock;
5039
5040                 // If this peer already has some channels, a new channel won't increase our number of peers
5041                 // with unfunded channels, so as long as we aren't over the maximum number of unfunded
5042                 // channels per-peer we can accept channels from a peer with existing ones.
5043                 if peer_state.total_channel_count() == 0 &&
5044                         channeled_peers_without_funding >= MAX_UNFUNDED_CHANNEL_PEERS &&
5045                         !self.default_configuration.manually_accept_inbound_channels
5046                 {
5047                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5048                                 "Have too many peers with unfunded channels, not accepting new ones".to_owned(),
5049                                 msg.temporary_channel_id.clone()));
5050                 }
5051
5052                 let best_block_height = self.best_block.read().unwrap().height();
5053                 if Self::unfunded_channel_count(peer_state, best_block_height) >= MAX_UNFUNDED_CHANS_PER_PEER {
5054                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5055                                 format!("Refusing more than {} unfunded channels.", MAX_UNFUNDED_CHANS_PER_PEER),
5056                                 msg.temporary_channel_id.clone()));
5057                 }
5058
5059                 let mut channel = match InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
5060                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features, msg, user_channel_id,
5061                         &self.default_configuration, best_block_height, &self.logger, outbound_scid_alias)
5062                 {
5063                         Err(e) => {
5064                                 self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
5065                                 return Err(MsgHandleErrInternal::from_chan_no_close(e, msg.temporary_channel_id));
5066                         },
5067                         Ok(res) => res
5068                 };
5069                 let channel_id = channel.context.channel_id();
5070                 let channel_exists = peer_state.has_channel(&channel_id);
5071                 if channel_exists {
5072                         self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
5073                         return Err(MsgHandleErrInternal::send_err_msg_no_close("temporary_channel_id collision for the same peer!".to_owned(), msg.temporary_channel_id.clone()))
5074                 } else {
5075                         if !self.default_configuration.manually_accept_inbound_channels {
5076                                 if channel.context.get_channel_type().requires_zero_conf() {
5077                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No zero confirmation channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5078                                 }
5079                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
5080                                         node_id: counterparty_node_id.clone(),
5081                                         msg: channel.accept_inbound_channel(user_channel_id),
5082                                 });
5083                         } else {
5084                                 let mut pending_events = self.pending_events.lock().unwrap();
5085                                 pending_events.push_back((events::Event::OpenChannelRequest {
5086                                         temporary_channel_id: msg.temporary_channel_id.clone(),
5087                                         counterparty_node_id: counterparty_node_id.clone(),
5088                                         funding_satoshis: msg.funding_satoshis,
5089                                         push_msat: msg.push_msat,
5090                                         channel_type: channel.context.get_channel_type().clone(),
5091                                 }, None));
5092                         }
5093                         peer_state.inbound_v1_channel_by_id.insert(channel_id, channel);
5094                 }
5095                 Ok(())
5096         }
5097
5098         fn internal_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) -> Result<(), MsgHandleErrInternal> {
5099                 let (value, output_script, user_id) = {
5100                         let per_peer_state = self.per_peer_state.read().unwrap();
5101                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5102                                 .ok_or_else(|| {
5103                                         debug_assert!(false);
5104                                         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)
5105                                 })?;
5106                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5107                         let peer_state = &mut *peer_state_lock;
5108                         match peer_state.outbound_v1_channel_by_id.entry(msg.temporary_channel_id) {
5109                                 hash_map::Entry::Occupied(mut chan) => {
5110                                         try_v1_outbound_chan_entry!(self, chan.get_mut().accept_channel(&msg, &self.default_configuration.channel_handshake_limits, &peer_state.latest_features), chan);
5111                                         (chan.get().context.get_value_satoshis(), chan.get().context.get_funding_redeemscript().to_v0_p2wsh(), chan.get().context.get_user_id())
5112                                 },
5113                                 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))
5114                         }
5115                 };
5116                 let mut pending_events = self.pending_events.lock().unwrap();
5117                 pending_events.push_back((events::Event::FundingGenerationReady {
5118                         temporary_channel_id: msg.temporary_channel_id,
5119                         counterparty_node_id: *counterparty_node_id,
5120                         channel_value_satoshis: value,
5121                         output_script,
5122                         user_channel_id: user_id,
5123                 }, None));
5124                 Ok(())
5125         }
5126
5127         fn internal_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) -> Result<(), MsgHandleErrInternal> {
5128                 let best_block = *self.best_block.read().unwrap();
5129
5130                 let per_peer_state = self.per_peer_state.read().unwrap();
5131                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5132                         .ok_or_else(|| {
5133                                 debug_assert!(false);
5134                                 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)
5135                         })?;
5136
5137                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5138                 let peer_state = &mut *peer_state_lock;
5139                 let (chan, funding_msg, monitor) =
5140                         match peer_state.inbound_v1_channel_by_id.remove(&msg.temporary_channel_id) {
5141                                 Some(inbound_chan) => {
5142                                         match inbound_chan.funding_created(msg, best_block, &self.signer_provider, &self.logger) {
5143                                                 Ok(res) => res,
5144                                                 Err((mut inbound_chan, err)) => {
5145                                                         // We've already removed this inbound channel from the map in `PeerState`
5146                                                         // above so at this point we just need to clean up any lingering entries
5147                                                         // concerning this channel as it is safe to do so.
5148                                                         update_maps_on_chan_removal!(self, &inbound_chan.context);
5149                                                         let user_id = inbound_chan.context.get_user_id();
5150                                                         let shutdown_res = inbound_chan.context.force_shutdown(false);
5151                                                         return Err(MsgHandleErrInternal::from_finish_shutdown(format!("{}", err),
5152                                                                 msg.temporary_channel_id, user_id, shutdown_res, None));
5153                                                 },
5154                                         }
5155                                 },
5156                                 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))
5157                         };
5158
5159                 match peer_state.channel_by_id.entry(funding_msg.channel_id) {
5160                         hash_map::Entry::Occupied(_) => {
5161                                 Err(MsgHandleErrInternal::send_err_msg_no_close("Already had channel with the new channel_id".to_owned(), funding_msg.channel_id))
5162                         },
5163                         hash_map::Entry::Vacant(e) => {
5164                                 match self.id_to_peer.lock().unwrap().entry(chan.context.channel_id()) {
5165                                         hash_map::Entry::Occupied(_) => {
5166                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close(
5167                                                         "The funding_created message had the same funding_txid as an existing channel - funding is not possible".to_owned(),
5168                                                         funding_msg.channel_id))
5169                                         },
5170                                         hash_map::Entry::Vacant(i_e) => {
5171                                                 i_e.insert(chan.context.get_counterparty_node_id());
5172                                         }
5173                                 }
5174
5175                                 // There's no problem signing a counterparty's funding transaction if our monitor
5176                                 // hasn't persisted to disk yet - we can't lose money on a transaction that we haven't
5177                                 // accepted payment from yet. We do, however, need to wait to send our channel_ready
5178                                 // until we have persisted our monitor.
5179                                 let new_channel_id = funding_msg.channel_id;
5180                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
5181                                         node_id: counterparty_node_id.clone(),
5182                                         msg: funding_msg,
5183                                 });
5184
5185                                 let monitor_res = self.chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor);
5186
5187                                 let chan = e.insert(chan);
5188                                 let mut res = handle_new_monitor_update!(self, monitor_res, 0, peer_state_lock, peer_state,
5189                                         per_peer_state, chan, MANUALLY_REMOVING, { peer_state.channel_by_id.remove(&new_channel_id) });
5190
5191                                 // Note that we reply with the new channel_id in error messages if we gave up on the
5192                                 // channel, not the temporary_channel_id. This is compatible with ourselves, but the
5193                                 // spec is somewhat ambiguous here. Not a huge deal since we'll send error messages for
5194                                 // any messages referencing a previously-closed channel anyway.
5195                                 // We do not propagate the monitor update to the user as it would be for a monitor
5196                                 // that we didn't manage to store (and that we don't care about - we don't respond
5197                                 // with the funding_signed so the channel can never go on chain).
5198                                 if let Err(MsgHandleErrInternal { shutdown_finish: Some((res, _)), .. }) = &mut res {
5199                                         res.0 = None;
5200                                 }
5201                                 res
5202                         }
5203                 }
5204         }
5205
5206         fn internal_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) -> Result<(), MsgHandleErrInternal> {
5207                 let best_block = *self.best_block.read().unwrap();
5208                 let per_peer_state = self.per_peer_state.read().unwrap();
5209                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5210                         .ok_or_else(|| {
5211                                 debug_assert!(false);
5212                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5213                         })?;
5214
5215                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5216                 let peer_state = &mut *peer_state_lock;
5217                 match peer_state.channel_by_id.entry(msg.channel_id) {
5218                         hash_map::Entry::Occupied(mut chan) => {
5219                                 let monitor = try_chan_entry!(self,
5220                                         chan.get_mut().funding_signed(&msg, best_block, &self.signer_provider, &self.logger), chan);
5221                                 let update_res = self.chain_monitor.watch_channel(chan.get().context.get_funding_txo().unwrap(), monitor);
5222                                 let mut res = handle_new_monitor_update!(self, update_res, 0, peer_state_lock, peer_state, per_peer_state, chan);
5223                                 if let Err(MsgHandleErrInternal { ref mut shutdown_finish, .. }) = res {
5224                                         // We weren't able to watch the channel to begin with, so no updates should be made on
5225                                         // it. Previously, full_stack_target found an (unreachable) panic when the
5226                                         // monitor update contained within `shutdown_finish` was applied.
5227                                         if let Some((ref mut shutdown_finish, _)) = shutdown_finish {
5228                                                 shutdown_finish.0.take();
5229                                         }
5230                                 }
5231                                 res
5232                         },
5233                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
5234                 }
5235         }
5236
5237         fn internal_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) -> Result<(), MsgHandleErrInternal> {
5238                 let per_peer_state = self.per_peer_state.read().unwrap();
5239                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5240                         .ok_or_else(|| {
5241                                 debug_assert!(false);
5242                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5243                         })?;
5244                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5245                 let peer_state = &mut *peer_state_lock;
5246                 match peer_state.channel_by_id.entry(msg.channel_id) {
5247                         hash_map::Entry::Occupied(mut chan) => {
5248                                 let announcement_sigs_opt = try_chan_entry!(self, chan.get_mut().channel_ready(&msg, &self.node_signer,
5249                                         self.genesis_hash.clone(), &self.default_configuration, &self.best_block.read().unwrap(), &self.logger), chan);
5250                                 if let Some(announcement_sigs) = announcement_sigs_opt {
5251                                         log_trace!(self.logger, "Sending announcement_signatures for channel {}", log_bytes!(chan.get().context.channel_id()));
5252                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
5253                                                 node_id: counterparty_node_id.clone(),
5254                                                 msg: announcement_sigs,
5255                                         });
5256                                 } else if chan.get().context.is_usable() {
5257                                         // If we're sending an announcement_signatures, we'll send the (public)
5258                                         // channel_update after sending a channel_announcement when we receive our
5259                                         // counterparty's announcement_signatures. Thus, we only bother to send a
5260                                         // channel_update here if the channel is not public, i.e. we're not sending an
5261                                         // announcement_signatures.
5262                                         log_trace!(self.logger, "Sending private initial channel_update for our counterparty on channel {}", log_bytes!(chan.get().context.channel_id()));
5263                                         if let Ok(msg) = self.get_channel_update_for_unicast(chan.get()) {
5264                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
5265                                                         node_id: counterparty_node_id.clone(),
5266                                                         msg,
5267                                                 });
5268                                         }
5269                                 }
5270
5271                                 {
5272                                         let mut pending_events = self.pending_events.lock().unwrap();
5273                                         emit_channel_ready_event!(pending_events, chan.get_mut());
5274                                 }
5275
5276                                 Ok(())
5277                         },
5278                         hash_map::Entry::Vacant(_) => 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))
5279                 }
5280         }
5281
5282         fn internal_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) -> Result<(), MsgHandleErrInternal> {
5283                 let mut dropped_htlcs: Vec<(HTLCSource, PaymentHash)>;
5284                 let result: Result<(), _> = loop {
5285                         let per_peer_state = self.per_peer_state.read().unwrap();
5286                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5287                                 .ok_or_else(|| {
5288                                         debug_assert!(false);
5289                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5290                                 })?;
5291                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5292                         let peer_state = &mut *peer_state_lock;
5293                         match peer_state.channel_by_id.entry(msg.channel_id.clone()) {
5294                                 hash_map::Entry::Occupied(mut chan_entry) => {
5295
5296                                         if !chan_entry.get().received_shutdown() {
5297                                                 log_info!(self.logger, "Received a shutdown message from our counterparty for channel {}{}.",
5298                                                         log_bytes!(msg.channel_id),
5299                                                         if chan_entry.get().sent_shutdown() { " after we initiated shutdown" } else { "" });
5300                                         }
5301
5302                                         let funding_txo_opt = chan_entry.get().context.get_funding_txo();
5303                                         let (shutdown, monitor_update_opt, htlcs) = try_chan_entry!(self,
5304                                                 chan_entry.get_mut().shutdown(&self.signer_provider, &peer_state.latest_features, &msg), chan_entry);
5305                                         dropped_htlcs = htlcs;
5306
5307                                         if let Some(msg) = shutdown {
5308                                                 // We can send the `shutdown` message before updating the `ChannelMonitor`
5309                                                 // here as we don't need the monitor update to complete until we send a
5310                                                 // `shutdown_signed`, which we'll delay if we're pending a monitor update.
5311                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
5312                                                         node_id: *counterparty_node_id,
5313                                                         msg,
5314                                                 });
5315                                         }
5316
5317                                         // Update the monitor with the shutdown script if necessary.
5318                                         if let Some(monitor_update) = monitor_update_opt {
5319                                                 let update_id = monitor_update.update_id;
5320                                                 let update_res = self.chain_monitor.update_channel(funding_txo_opt.unwrap(), monitor_update);
5321                                                 break handle_new_monitor_update!(self, update_res, update_id, peer_state_lock, peer_state, per_peer_state, chan_entry);
5322                                         }
5323                                         break Ok(());
5324                                 },
5325                                 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))
5326                         }
5327                 };
5328                 for htlc_source in dropped_htlcs.drain(..) {
5329                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id: msg.channel_id };
5330                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
5331                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
5332                 }
5333
5334                 result
5335         }
5336
5337         fn internal_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) -> Result<(), MsgHandleErrInternal> {
5338                 let per_peer_state = self.per_peer_state.read().unwrap();
5339                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5340                         .ok_or_else(|| {
5341                                 debug_assert!(false);
5342                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5343                         })?;
5344                 let (tx, chan_option) = {
5345                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5346                         let peer_state = &mut *peer_state_lock;
5347                         match peer_state.channel_by_id.entry(msg.channel_id.clone()) {
5348                                 hash_map::Entry::Occupied(mut chan_entry) => {
5349                                         let (closing_signed, tx) = try_chan_entry!(self, chan_entry.get_mut().closing_signed(&self.fee_estimator, &msg), chan_entry);
5350                                         if let Some(msg) = closing_signed {
5351                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
5352                                                         node_id: counterparty_node_id.clone(),
5353                                                         msg,
5354                                                 });
5355                                         }
5356                                         if tx.is_some() {
5357                                                 // We're done with this channel, we've got a signed closing transaction and
5358                                                 // will send the closing_signed back to the remote peer upon return. This
5359                                                 // also implies there are no pending HTLCs left on the channel, so we can
5360                                                 // fully delete it from tracking (the channel monitor is still around to
5361                                                 // watch for old state broadcasts)!
5362                                                 (tx, Some(remove_channel!(self, chan_entry)))
5363                                         } else { (tx, None) }
5364                                 },
5365                                 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))
5366                         }
5367                 };
5368                 if let Some(broadcast_tx) = tx {
5369                         log_info!(self.logger, "Broadcasting {}", log_tx!(broadcast_tx));
5370                         self.tx_broadcaster.broadcast_transactions(&[&broadcast_tx]);
5371                 }
5372                 if let Some(chan) = chan_option {
5373                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5374                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5375                                 let peer_state = &mut *peer_state_lock;
5376                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
5377                                         msg: update
5378                                 });
5379                         }
5380                         self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
5381                 }
5382                 Ok(())
5383         }
5384
5385         fn internal_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) -> Result<(), MsgHandleErrInternal> {
5386                 //TODO: BOLT 4 points out a specific attack where a peer may re-send an onion packet and
5387                 //determine the state of the payment based on our response/if we forward anything/the time
5388                 //we take to respond. We should take care to avoid allowing such an attack.
5389                 //
5390                 //TODO: There exists a further attack where a node may garble the onion data, forward it to
5391                 //us repeatedly garbled in different ways, and compare our error messages, which are
5392                 //encrypted with the same key. It's not immediately obvious how to usefully exploit that,
5393                 //but we should prevent it anyway.
5394
5395                 let decoded_hop_res = self.decode_update_add_htlc_onion(msg);
5396                 let per_peer_state = self.per_peer_state.read().unwrap();
5397                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5398                         .ok_or_else(|| {
5399                                 debug_assert!(false);
5400                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5401                         })?;
5402                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5403                 let peer_state = &mut *peer_state_lock;
5404                 match peer_state.channel_by_id.entry(msg.channel_id) {
5405                         hash_map::Entry::Occupied(mut chan) => {
5406
5407                                 let pending_forward_info = match decoded_hop_res {
5408                                         Ok((next_hop, shared_secret, next_packet_pk_opt)) =>
5409                                                 self.construct_pending_htlc_status(msg, shared_secret, next_hop, next_packet_pk_opt),
5410                                         Err(e) => PendingHTLCStatus::Fail(e)
5411                                 };
5412                                 let create_pending_htlc_status = |chan: &Channel<<SP::Target as SignerProvider>::Signer>, pending_forward_info: PendingHTLCStatus, error_code: u16| {
5413                                         // If the update_add is completely bogus, the call will Err and we will close,
5414                                         // but if we've sent a shutdown and they haven't acknowledged it yet, we just
5415                                         // want to reject the new HTLC and fail it backwards instead of forwarding.
5416                                         match pending_forward_info {
5417                                                 PendingHTLCStatus::Forward(PendingHTLCInfo { ref incoming_shared_secret, .. }) => {
5418                                                         let reason = if (error_code & 0x1000) != 0 {
5419                                                                 let (real_code, error_data) = self.get_htlc_inbound_temp_fail_err_and_data(error_code, chan);
5420                                                                 HTLCFailReason::reason(real_code, error_data)
5421                                                         } else {
5422                                                                 HTLCFailReason::from_failure_code(error_code)
5423                                                         }.get_encrypted_failure_packet(incoming_shared_secret, &None);
5424                                                         let msg = msgs::UpdateFailHTLC {
5425                                                                 channel_id: msg.channel_id,
5426                                                                 htlc_id: msg.htlc_id,
5427                                                                 reason
5428                                                         };
5429                                                         PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msg))
5430                                                 },
5431                                                 _ => pending_forward_info
5432                                         }
5433                                 };
5434                                 try_chan_entry!(self, chan.get_mut().update_add_htlc(&msg, pending_forward_info, create_pending_htlc_status, &self.logger), chan);
5435                         },
5436                         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))
5437                 }
5438                 Ok(())
5439         }
5440
5441         fn internal_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) -> Result<(), MsgHandleErrInternal> {
5442                 let (htlc_source, forwarded_htlc_value) = {
5443                         let per_peer_state = self.per_peer_state.read().unwrap();
5444                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5445                                 .ok_or_else(|| {
5446                                         debug_assert!(false);
5447                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5448                                 })?;
5449                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5450                         let peer_state = &mut *peer_state_lock;
5451                         match peer_state.channel_by_id.entry(msg.channel_id) {
5452                                 hash_map::Entry::Occupied(mut chan) => {
5453                                         try_chan_entry!(self, chan.get_mut().update_fulfill_htlc(&msg), chan)
5454                                 },
5455                                 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))
5456                         }
5457                 };
5458                 self.claim_funds_internal(htlc_source, msg.payment_preimage.clone(), Some(forwarded_htlc_value), false, msg.channel_id);
5459                 Ok(())
5460         }
5461
5462         fn internal_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) -> Result<(), MsgHandleErrInternal> {
5463                 let per_peer_state = self.per_peer_state.read().unwrap();
5464                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5465                         .ok_or_else(|| {
5466                                 debug_assert!(false);
5467                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5468                         })?;
5469                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5470                 let peer_state = &mut *peer_state_lock;
5471                 match peer_state.channel_by_id.entry(msg.channel_id) {
5472                         hash_map::Entry::Occupied(mut chan) => {
5473                                 try_chan_entry!(self, chan.get_mut().update_fail_htlc(&msg, HTLCFailReason::from_msg(msg)), chan);
5474                         },
5475                         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))
5476                 }
5477                 Ok(())
5478         }
5479
5480         fn internal_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) -> Result<(), MsgHandleErrInternal> {
5481                 let per_peer_state = self.per_peer_state.read().unwrap();
5482                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5483                         .ok_or_else(|| {
5484                                 debug_assert!(false);
5485                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5486                         })?;
5487                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5488                 let peer_state = &mut *peer_state_lock;
5489                 match peer_state.channel_by_id.entry(msg.channel_id) {
5490                         hash_map::Entry::Occupied(mut chan) => {
5491                                 if (msg.failure_code & 0x8000) == 0 {
5492                                         let chan_err: ChannelError = ChannelError::Close("Got update_fail_malformed_htlc with BADONION not set".to_owned());
5493                                         try_chan_entry!(self, Err(chan_err), chan);
5494                                 }
5495                                 try_chan_entry!(self, chan.get_mut().update_fail_malformed_htlc(&msg, HTLCFailReason::reason(msg.failure_code, msg.sha256_of_onion.to_vec())), chan);
5496                                 Ok(())
5497                         },
5498                         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))
5499                 }
5500         }
5501
5502         fn internal_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) -> Result<(), MsgHandleErrInternal> {
5503                 let per_peer_state = self.per_peer_state.read().unwrap();
5504                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5505                         .ok_or_else(|| {
5506                                 debug_assert!(false);
5507                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5508                         })?;
5509                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5510                 let peer_state = &mut *peer_state_lock;
5511                 match peer_state.channel_by_id.entry(msg.channel_id) {
5512                         hash_map::Entry::Occupied(mut chan) => {
5513                                 let funding_txo = chan.get().context.get_funding_txo();
5514                                 let monitor_update_opt = try_chan_entry!(self, chan.get_mut().commitment_signed(&msg, &self.logger), chan);
5515                                 if let Some(monitor_update) = monitor_update_opt {
5516                                         let update_res = self.chain_monitor.update_channel(funding_txo.unwrap(), monitor_update);
5517                                         let update_id = monitor_update.update_id;
5518                                         handle_new_monitor_update!(self, update_res, update_id, peer_state_lock,
5519                                                 peer_state, per_peer_state, chan)
5520                                 } else { Ok(()) }
5521                         },
5522                         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))
5523                 }
5524         }
5525
5526         #[inline]
5527         fn forward_htlcs(&self, per_source_pending_forwards: &mut [(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)]) {
5528                 for &mut (prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, ref mut pending_forwards) in per_source_pending_forwards {
5529                         let mut push_forward_event = false;
5530                         let mut new_intercept_events = VecDeque::new();
5531                         let mut failed_intercept_forwards = Vec::new();
5532                         if !pending_forwards.is_empty() {
5533                                 for (forward_info, prev_htlc_id) in pending_forwards.drain(..) {
5534                                         let scid = match forward_info.routing {
5535                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
5536                                                 PendingHTLCRouting::Receive { .. } => 0,
5537                                                 PendingHTLCRouting::ReceiveKeysend { .. } => 0,
5538                                         };
5539                                         // Pull this now to avoid introducing a lock order with `forward_htlcs`.
5540                                         let is_our_scid = self.short_to_chan_info.read().unwrap().contains_key(&scid);
5541
5542                                         let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
5543                                         let forward_htlcs_empty = forward_htlcs.is_empty();
5544                                         match forward_htlcs.entry(scid) {
5545                                                 hash_map::Entry::Occupied(mut entry) => {
5546                                                         entry.get_mut().push(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
5547                                                                 prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info }));
5548                                                 },
5549                                                 hash_map::Entry::Vacant(entry) => {
5550                                                         if !is_our_scid && forward_info.incoming_amt_msat.is_some() &&
5551                                                            fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, scid, &self.genesis_hash)
5552                                                         {
5553                                                                 let intercept_id = InterceptId(Sha256::hash(&forward_info.incoming_shared_secret).into_inner());
5554                                                                 let mut pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
5555                                                                 match pending_intercepts.entry(intercept_id) {
5556                                                                         hash_map::Entry::Vacant(entry) => {
5557                                                                                 new_intercept_events.push_back((events::Event::HTLCIntercepted {
5558                                                                                         requested_next_hop_scid: scid,
5559                                                                                         payment_hash: forward_info.payment_hash,
5560                                                                                         inbound_amount_msat: forward_info.incoming_amt_msat.unwrap(),
5561                                                                                         expected_outbound_amount_msat: forward_info.outgoing_amt_msat,
5562                                                                                         intercept_id
5563                                                                                 }, None));
5564                                                                                 entry.insert(PendingAddHTLCInfo {
5565                                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info });
5566                                                                         },
5567                                                                         hash_map::Entry::Occupied(_) => {
5568                                                                                 log_info!(self.logger, "Failed to forward incoming HTLC: detected duplicate intercepted payment over short channel id {}", scid);
5569                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
5570                                                                                         short_channel_id: prev_short_channel_id,
5571                                                                                         outpoint: prev_funding_outpoint,
5572                                                                                         htlc_id: prev_htlc_id,
5573                                                                                         incoming_packet_shared_secret: forward_info.incoming_shared_secret,
5574                                                                                         phantom_shared_secret: None,
5575                                                                                 });
5576
5577                                                                                 failed_intercept_forwards.push((htlc_source, forward_info.payment_hash,
5578                                                                                                 HTLCFailReason::from_failure_code(0x4000 | 10),
5579                                                                                                 HTLCDestination::InvalidForward { requested_forward_scid: scid },
5580                                                                                 ));
5581                                                                         }
5582                                                                 }
5583                                                         } else {
5584                                                                 // We don't want to generate a PendingHTLCsForwardable event if only intercepted
5585                                                                 // payments are being processed.
5586                                                                 if forward_htlcs_empty {
5587                                                                         push_forward_event = true;
5588                                                                 }
5589                                                                 entry.insert(vec!(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
5590                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info })));
5591                                                         }
5592                                                 }
5593                                         }
5594                                 }
5595                         }
5596
5597                         for (htlc_source, payment_hash, failure_reason, destination) in failed_intercept_forwards.drain(..) {
5598                                 self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
5599                         }
5600
5601                         if !new_intercept_events.is_empty() {
5602                                 let mut events = self.pending_events.lock().unwrap();
5603                                 events.append(&mut new_intercept_events);
5604                         }
5605                         if push_forward_event { self.push_pending_forwards_ev() }
5606                 }
5607         }
5608
5609         // We only want to push a PendingHTLCsForwardable event if no others are queued.
5610         fn push_pending_forwards_ev(&self) {
5611                 let mut pending_events = self.pending_events.lock().unwrap();
5612                 let forward_ev_exists = pending_events.iter()
5613                         .find(|(ev, _)| if let events::Event::PendingHTLCsForwardable { .. } = ev { true } else { false })
5614                         .is_some();
5615                 if !forward_ev_exists {
5616                         pending_events.push_back((events::Event::PendingHTLCsForwardable {
5617                                 time_forwardable:
5618                                         Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS),
5619                         }, None));
5620                 }
5621         }
5622
5623         /// Checks whether [`ChannelMonitorUpdate`]s generated by the receipt of a remote
5624         /// [`msgs::RevokeAndACK`] should be held for the given channel until some other event
5625         /// completes. Note that this needs to happen in the same [`PeerState`] mutex as any release of
5626         /// the [`ChannelMonitorUpdate`] in question.
5627         fn raa_monitor_updates_held(&self,
5628                 actions_blocking_raa_monitor_updates: &BTreeMap<[u8; 32], Vec<RAAMonitorUpdateBlockingAction>>,
5629                 channel_funding_outpoint: OutPoint, counterparty_node_id: PublicKey
5630         ) -> bool {
5631                 actions_blocking_raa_monitor_updates
5632                         .get(&channel_funding_outpoint.to_channel_id()).map(|v| !v.is_empty()).unwrap_or(false)
5633                 || self.pending_events.lock().unwrap().iter().any(|(_, action)| {
5634                         action == &Some(EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
5635                                 channel_funding_outpoint,
5636                                 counterparty_node_id,
5637                         })
5638                 })
5639         }
5640
5641         fn internal_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) -> Result<(), MsgHandleErrInternal> {
5642                 let (htlcs_to_fail, res) = {
5643                         let per_peer_state = self.per_peer_state.read().unwrap();
5644                         let mut peer_state_lock = per_peer_state.get(counterparty_node_id)
5645                                 .ok_or_else(|| {
5646                                         debug_assert!(false);
5647                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5648                                 }).map(|mtx| mtx.lock().unwrap())?;
5649                         let peer_state = &mut *peer_state_lock;
5650                         match peer_state.channel_by_id.entry(msg.channel_id) {
5651                                 hash_map::Entry::Occupied(mut chan) => {
5652                                         let funding_txo = chan.get().context.get_funding_txo();
5653                                         let (htlcs_to_fail, monitor_update_opt) = try_chan_entry!(self, chan.get_mut().revoke_and_ack(&msg, &self.logger), chan);
5654                                         let res = if let Some(monitor_update) = monitor_update_opt {
5655                                                 let update_res = self.chain_monitor.update_channel(funding_txo.unwrap(), monitor_update);
5656                                                 let update_id = monitor_update.update_id;
5657                                                 handle_new_monitor_update!(self, update_res, update_id,
5658                                                         peer_state_lock, peer_state, per_peer_state, chan)
5659                                         } else { Ok(()) };
5660                                         (htlcs_to_fail, res)
5661                                 },
5662                                 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))
5663                         }
5664                 };
5665                 self.fail_holding_cell_htlcs(htlcs_to_fail, msg.channel_id, counterparty_node_id);
5666                 res
5667         }
5668
5669         fn internal_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) -> Result<(), MsgHandleErrInternal> {
5670                 let per_peer_state = self.per_peer_state.read().unwrap();
5671                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5672                         .ok_or_else(|| {
5673                                 debug_assert!(false);
5674                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5675                         })?;
5676                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5677                 let peer_state = &mut *peer_state_lock;
5678                 match peer_state.channel_by_id.entry(msg.channel_id) {
5679                         hash_map::Entry::Occupied(mut chan) => {
5680                                 try_chan_entry!(self, chan.get_mut().update_fee(&self.fee_estimator, &msg, &self.logger), chan);
5681                         },
5682                         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))
5683                 }
5684                 Ok(())
5685         }
5686
5687         fn internal_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) -> Result<(), MsgHandleErrInternal> {
5688                 let per_peer_state = self.per_peer_state.read().unwrap();
5689                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5690                         .ok_or_else(|| {
5691                                 debug_assert!(false);
5692                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5693                         })?;
5694                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5695                 let peer_state = &mut *peer_state_lock;
5696                 match peer_state.channel_by_id.entry(msg.channel_id) {
5697                         hash_map::Entry::Occupied(mut chan) => {
5698                                 if !chan.get().context.is_usable() {
5699                                         return Err(MsgHandleErrInternal::from_no_close(LightningError{err: "Got an announcement_signatures before we were ready for it".to_owned(), action: msgs::ErrorAction::IgnoreError}));
5700                                 }
5701
5702                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
5703                                         msg: try_chan_entry!(self, chan.get_mut().announcement_signatures(
5704                                                 &self.node_signer, self.genesis_hash.clone(), self.best_block.read().unwrap().height(),
5705                                                 msg, &self.default_configuration
5706                                         ), chan),
5707                                         // Note that announcement_signatures fails if the channel cannot be announced,
5708                                         // so get_channel_update_for_broadcast will never fail by the time we get here.
5709                                         update_msg: Some(self.get_channel_update_for_broadcast(chan.get()).unwrap()),
5710                                 });
5711                         },
5712                         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))
5713                 }
5714                 Ok(())
5715         }
5716
5717         /// Returns ShouldPersist if anything changed, otherwise either SkipPersist or an Err.
5718         fn internal_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) -> Result<NotifyOption, MsgHandleErrInternal> {
5719                 let (chan_counterparty_node_id, chan_id) = match self.short_to_chan_info.read().unwrap().get(&msg.contents.short_channel_id) {
5720                         Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
5721                         None => {
5722                                 // It's not a local channel
5723                                 return Ok(NotifyOption::SkipPersist)
5724                         }
5725                 };
5726                 let per_peer_state = self.per_peer_state.read().unwrap();
5727                 let peer_state_mutex_opt = per_peer_state.get(&chan_counterparty_node_id);
5728                 if peer_state_mutex_opt.is_none() {
5729                         return Ok(NotifyOption::SkipPersist)
5730                 }
5731                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
5732                 let peer_state = &mut *peer_state_lock;
5733                 match peer_state.channel_by_id.entry(chan_id) {
5734                         hash_map::Entry::Occupied(mut chan) => {
5735                                 if chan.get().context.get_counterparty_node_id() != *counterparty_node_id {
5736                                         if chan.get().context.should_announce() {
5737                                                 // If the announcement is about a channel of ours which is public, some
5738                                                 // other peer may simply be forwarding all its gossip to us. Don't provide
5739                                                 // a scary-looking error message and return Ok instead.
5740                                                 return Ok(NotifyOption::SkipPersist);
5741                                         }
5742                                         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));
5743                                 }
5744                                 let were_node_one = self.get_our_node_id().serialize()[..] < chan.get().context.get_counterparty_node_id().serialize()[..];
5745                                 let msg_from_node_one = msg.contents.flags & 1 == 0;
5746                                 if were_node_one == msg_from_node_one {
5747                                         return Ok(NotifyOption::SkipPersist);
5748                                 } else {
5749                                         log_debug!(self.logger, "Received channel_update for channel {}.", log_bytes!(chan_id));
5750                                         try_chan_entry!(self, chan.get_mut().channel_update(&msg), chan);
5751                                 }
5752                         },
5753                         hash_map::Entry::Vacant(_) => return Ok(NotifyOption::SkipPersist)
5754                 }
5755                 Ok(NotifyOption::DoPersist)
5756         }
5757
5758         fn internal_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) -> Result<(), MsgHandleErrInternal> {
5759                 let htlc_forwards;
5760                 let need_lnd_workaround = {
5761                         let per_peer_state = self.per_peer_state.read().unwrap();
5762
5763                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5764                                 .ok_or_else(|| {
5765                                         debug_assert!(false);
5766                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5767                                 })?;
5768                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5769                         let peer_state = &mut *peer_state_lock;
5770                         match peer_state.channel_by_id.entry(msg.channel_id) {
5771                                 hash_map::Entry::Occupied(mut chan) => {
5772                                         // Currently, we expect all holding cell update_adds to be dropped on peer
5773                                         // disconnect, so Channel's reestablish will never hand us any holding cell
5774                                         // freed HTLCs to fail backwards. If in the future we no longer drop pending
5775                                         // add-HTLCs on disconnect, we may be handed HTLCs to fail backwards here.
5776                                         let responses = try_chan_entry!(self, chan.get_mut().channel_reestablish(
5777                                                 msg, &self.logger, &self.node_signer, self.genesis_hash,
5778                                                 &self.default_configuration, &*self.best_block.read().unwrap()), chan);
5779                                         let mut channel_update = None;
5780                                         if let Some(msg) = responses.shutdown_msg {
5781                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
5782                                                         node_id: counterparty_node_id.clone(),
5783                                                         msg,
5784                                                 });
5785                                         } else if chan.get().context.is_usable() {
5786                                                 // If the channel is in a usable state (ie the channel is not being shut
5787                                                 // down), send a unicast channel_update to our counterparty to make sure
5788                                                 // they have the latest channel parameters.
5789                                                 if let Ok(msg) = self.get_channel_update_for_unicast(chan.get()) {
5790                                                         channel_update = Some(events::MessageSendEvent::SendChannelUpdate {
5791                                                                 node_id: chan.get().context.get_counterparty_node_id(),
5792                                                                 msg,
5793                                                         });
5794                                                 }
5795                                         }
5796                                         let need_lnd_workaround = chan.get_mut().context.workaround_lnd_bug_4006.take();
5797                                         htlc_forwards = self.handle_channel_resumption(
5798                                                 &mut peer_state.pending_msg_events, chan.get_mut(), responses.raa, responses.commitment_update, responses.order,
5799                                                 Vec::new(), None, responses.channel_ready, responses.announcement_sigs);
5800                                         if let Some(upd) = channel_update {
5801                                                 peer_state.pending_msg_events.push(upd);
5802                                         }
5803                                         need_lnd_workaround
5804                                 },
5805                                 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))
5806                         }
5807                 };
5808
5809                 if let Some(forwards) = htlc_forwards {
5810                         self.forward_htlcs(&mut [forwards][..]);
5811                 }
5812
5813                 if let Some(channel_ready_msg) = need_lnd_workaround {
5814                         self.internal_channel_ready(counterparty_node_id, &channel_ready_msg)?;
5815                 }
5816                 Ok(())
5817         }
5818
5819         /// Process pending events from the [`chain::Watch`], returning whether any events were processed.
5820         fn process_pending_monitor_events(&self) -> bool {
5821                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
5822
5823                 let mut failed_channels = Vec::new();
5824                 let mut pending_monitor_events = self.chain_monitor.release_pending_monitor_events();
5825                 let has_pending_monitor_events = !pending_monitor_events.is_empty();
5826                 for (funding_outpoint, mut monitor_events, counterparty_node_id) in pending_monitor_events.drain(..) {
5827                         for monitor_event in monitor_events.drain(..) {
5828                                 match monitor_event {
5829                                         MonitorEvent::HTLCEvent(htlc_update) => {
5830                                                 if let Some(preimage) = htlc_update.payment_preimage {
5831                                                         log_trace!(self.logger, "Claiming HTLC with preimage {} from our monitor", log_bytes!(preimage.0));
5832                                                         self.claim_funds_internal(htlc_update.source, preimage, htlc_update.htlc_value_satoshis.map(|v| v * 1000), true, funding_outpoint.to_channel_id());
5833                                                 } else {
5834                                                         log_trace!(self.logger, "Failing HTLC with hash {} from our monitor", log_bytes!(htlc_update.payment_hash.0));
5835                                                         let receiver = HTLCDestination::NextHopChannel { node_id: counterparty_node_id, channel_id: funding_outpoint.to_channel_id() };
5836                                                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
5837                                                         self.fail_htlc_backwards_internal(&htlc_update.source, &htlc_update.payment_hash, &reason, receiver);
5838                                                 }
5839                                         },
5840                                         MonitorEvent::CommitmentTxConfirmed(funding_outpoint) |
5841                                         MonitorEvent::UpdateFailed(funding_outpoint) => {
5842                                                 let counterparty_node_id_opt = match counterparty_node_id {
5843                                                         Some(cp_id) => Some(cp_id),
5844                                                         None => {
5845                                                                 // TODO: Once we can rely on the counterparty_node_id from the
5846                                                                 // monitor event, this and the id_to_peer map should be removed.
5847                                                                 let id_to_peer = self.id_to_peer.lock().unwrap();
5848                                                                 id_to_peer.get(&funding_outpoint.to_channel_id()).cloned()
5849                                                         }
5850                                                 };
5851                                                 if let Some(counterparty_node_id) = counterparty_node_id_opt {
5852                                                         let per_peer_state = self.per_peer_state.read().unwrap();
5853                                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
5854                                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5855                                                                 let peer_state = &mut *peer_state_lock;
5856                                                                 let pending_msg_events = &mut peer_state.pending_msg_events;
5857                                                                 if let hash_map::Entry::Occupied(chan_entry) = peer_state.channel_by_id.entry(funding_outpoint.to_channel_id()) {
5858                                                                         let mut chan = remove_channel!(self, chan_entry);
5859                                                                         failed_channels.push(chan.context.force_shutdown(false));
5860                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5861                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
5862                                                                                         msg: update
5863                                                                                 });
5864                                                                         }
5865                                                                         let reason = if let MonitorEvent::UpdateFailed(_) = monitor_event {
5866                                                                                 ClosureReason::ProcessingError { err: "Failed to persist ChannelMonitor update during chain sync".to_string() }
5867                                                                         } else {
5868                                                                                 ClosureReason::CommitmentTxConfirmed
5869                                                                         };
5870                                                                         self.issue_channel_close_events(&chan.context, reason);
5871                                                                         pending_msg_events.push(events::MessageSendEvent::HandleError {
5872                                                                                 node_id: chan.context.get_counterparty_node_id(),
5873                                                                                 action: msgs::ErrorAction::SendErrorMessage {
5874                                                                                         msg: msgs::ErrorMessage { channel_id: chan.context.channel_id(), data: "Channel force-closed".to_owned() }
5875                                                                                 },
5876                                                                         });
5877                                                                 }
5878                                                         }
5879                                                 }
5880                                         },
5881                                         MonitorEvent::Completed { funding_txo, monitor_update_id } => {
5882                                                 self.channel_monitor_updated(&funding_txo, monitor_update_id, counterparty_node_id.as_ref());
5883                                         },
5884                                 }
5885                         }
5886                 }
5887
5888                 for failure in failed_channels.drain(..) {
5889                         self.finish_force_close_channel(failure);
5890                 }
5891
5892                 has_pending_monitor_events
5893         }
5894
5895         /// In chanmon_consistency_target, we'd like to be able to restore monitor updating without
5896         /// handling all pending events (i.e. not PendingHTLCsForwardable). Thus, we expose monitor
5897         /// update events as a separate process method here.
5898         #[cfg(fuzzing)]
5899         pub fn process_monitor_events(&self) {
5900                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5901                 self.process_pending_monitor_events();
5902         }
5903
5904         /// Check the holding cell in each channel and free any pending HTLCs in them if possible.
5905         /// Returns whether there were any updates such as if pending HTLCs were freed or a monitor
5906         /// update was applied.
5907         fn check_free_holding_cells(&self) -> bool {
5908                 let mut has_monitor_update = false;
5909                 let mut failed_htlcs = Vec::new();
5910                 let mut handle_errors = Vec::new();
5911
5912                 // Walk our list of channels and find any that need to update. Note that when we do find an
5913                 // update, if it includes actions that must be taken afterwards, we have to drop the
5914                 // per-peer state lock as well as the top level per_peer_state lock. Thus, we loop until we
5915                 // manage to go through all our peers without finding a single channel to update.
5916                 'peer_loop: loop {
5917                         let per_peer_state = self.per_peer_state.read().unwrap();
5918                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
5919                                 'chan_loop: loop {
5920                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5921                                         let peer_state: &mut PeerState<_> = &mut *peer_state_lock;
5922                                         for (channel_id, chan) in peer_state.channel_by_id.iter_mut() {
5923                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
5924                                                 let funding_txo = chan.context.get_funding_txo();
5925                                                 let (monitor_opt, holding_cell_failed_htlcs) =
5926                                                         chan.maybe_free_holding_cell_htlcs(&self.logger);
5927                                                 if !holding_cell_failed_htlcs.is_empty() {
5928                                                         failed_htlcs.push((holding_cell_failed_htlcs, *channel_id, counterparty_node_id));
5929                                                 }
5930                                                 if let Some(monitor_update) = monitor_opt {
5931                                                         has_monitor_update = true;
5932
5933                                                         let update_res = self.chain_monitor.update_channel(
5934                                                                 funding_txo.expect("channel is live"), monitor_update);
5935                                                         let update_id = monitor_update.update_id;
5936                                                         let channel_id: [u8; 32] = *channel_id;
5937                                                         let res = handle_new_monitor_update!(self, update_res, update_id,
5938                                                                 peer_state_lock, peer_state, per_peer_state, chan, MANUALLY_REMOVING,
5939                                                                 peer_state.channel_by_id.remove(&channel_id));
5940                                                         if res.is_err() {
5941                                                                 handle_errors.push((counterparty_node_id, res));
5942                                                         }
5943                                                         continue 'peer_loop;
5944                                                 }
5945                                         }
5946                                         break 'chan_loop;
5947                                 }
5948                         }
5949                         break 'peer_loop;
5950                 }
5951
5952                 let has_update = has_monitor_update || !failed_htlcs.is_empty() || !handle_errors.is_empty();
5953                 for (failures, channel_id, counterparty_node_id) in failed_htlcs.drain(..) {
5954                         self.fail_holding_cell_htlcs(failures, channel_id, &counterparty_node_id);
5955                 }
5956
5957                 for (counterparty_node_id, err) in handle_errors.drain(..) {
5958                         let _ = handle_error!(self, err, counterparty_node_id);
5959                 }
5960
5961                 has_update
5962         }
5963
5964         /// Check whether any channels have finished removing all pending updates after a shutdown
5965         /// exchange and can now send a closing_signed.
5966         /// Returns whether any closing_signed messages were generated.
5967         fn maybe_generate_initial_closing_signed(&self) -> bool {
5968                 let mut handle_errors: Vec<(PublicKey, Result<(), _>)> = Vec::new();
5969                 let mut has_update = false;
5970                 {
5971                         let per_peer_state = self.per_peer_state.read().unwrap();
5972
5973                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
5974                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5975                                 let peer_state = &mut *peer_state_lock;
5976                                 let pending_msg_events = &mut peer_state.pending_msg_events;
5977                                 peer_state.channel_by_id.retain(|channel_id, chan| {
5978                                         match chan.maybe_propose_closing_signed(&self.fee_estimator, &self.logger) {
5979                                                 Ok((msg_opt, tx_opt)) => {
5980                                                         if let Some(msg) = msg_opt {
5981                                                                 has_update = true;
5982                                                                 pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
5983                                                                         node_id: chan.context.get_counterparty_node_id(), msg,
5984                                                                 });
5985                                                         }
5986                                                         if let Some(tx) = tx_opt {
5987                                                                 // We're done with this channel. We got a closing_signed and sent back
5988                                                                 // a closing_signed with a closing transaction to broadcast.
5989                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5990                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
5991                                                                                 msg: update
5992                                                                         });
5993                                                                 }
5994
5995                                                                 self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
5996
5997                                                                 log_info!(self.logger, "Broadcasting {}", log_tx!(tx));
5998                                                                 self.tx_broadcaster.broadcast_transactions(&[&tx]);
5999                                                                 update_maps_on_chan_removal!(self, &chan.context);
6000                                                                 false
6001                                                         } else { true }
6002                                                 },
6003                                                 Err(e) => {
6004                                                         has_update = true;
6005                                                         let (close_channel, res) = convert_chan_err!(self, e, chan, channel_id);
6006                                                         handle_errors.push((chan.context.get_counterparty_node_id(), Err(res)));
6007                                                         !close_channel
6008                                                 }
6009                                         }
6010                                 });
6011                         }
6012                 }
6013
6014                 for (counterparty_node_id, err) in handle_errors.drain(..) {
6015                         let _ = handle_error!(self, err, counterparty_node_id);
6016                 }
6017
6018                 has_update
6019         }
6020
6021         /// Handle a list of channel failures during a block_connected or block_disconnected call,
6022         /// pushing the channel monitor update (if any) to the background events queue and removing the
6023         /// Channel object.
6024         fn handle_init_event_channel_failures(&self, mut failed_channels: Vec<ShutdownResult>) {
6025                 for mut failure in failed_channels.drain(..) {
6026                         // Either a commitment transactions has been confirmed on-chain or
6027                         // Channel::block_disconnected detected that the funding transaction has been
6028                         // reorganized out of the main chain.
6029                         // We cannot broadcast our latest local state via monitor update (as
6030                         // Channel::force_shutdown tries to make us do) as we may still be in initialization,
6031                         // so we track the update internally and handle it when the user next calls
6032                         // timer_tick_occurred, guaranteeing we're running normally.
6033                         if let Some((counterparty_node_id, funding_txo, update)) = failure.0.take() {
6034                                 assert_eq!(update.updates.len(), 1);
6035                                 if let ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } = update.updates[0] {
6036                                         assert!(should_broadcast);
6037                                 } else { unreachable!(); }
6038                                 self.pending_background_events.lock().unwrap().push(
6039                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
6040                                                 counterparty_node_id, funding_txo, update
6041                                         });
6042                         }
6043                         self.finish_force_close_channel(failure);
6044                 }
6045         }
6046
6047         fn set_payment_hash_secret_map(&self, payment_hash: PaymentHash, payment_preimage: Option<PaymentPreimage>, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32) -> Result<PaymentSecret, APIError> {
6048                 assert!(invoice_expiry_delta_secs <= 60*60*24*365); // Sadly bitcoin timestamps are u32s, so panic before 2106
6049
6050                 if min_value_msat.is_some() && min_value_msat.unwrap() > MAX_VALUE_MSAT {
6051                         return Err(APIError::APIMisuseError { err: format!("min_value_msat of {} greater than total 21 million bitcoin supply", min_value_msat.unwrap()) });
6052                 }
6053
6054                 let payment_secret = PaymentSecret(self.entropy_source.get_secure_random_bytes());
6055
6056                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6057                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
6058                 match payment_secrets.entry(payment_hash) {
6059                         hash_map::Entry::Vacant(e) => {
6060                                 e.insert(PendingInboundPayment {
6061                                         payment_secret, min_value_msat, payment_preimage,
6062                                         user_payment_id: 0, // For compatibility with version 0.0.103 and earlier
6063                                         // We assume that highest_seen_timestamp is pretty close to the current time -
6064                                         // it's updated when we receive a new block with the maximum time we've seen in
6065                                         // a header. It should never be more than two hours in the future.
6066                                         // Thus, we add two hours here as a buffer to ensure we absolutely
6067                                         // never fail a payment too early.
6068                                         // Note that we assume that received blocks have reasonably up-to-date
6069                                         // timestamps.
6070                                         expiry_time: self.highest_seen_timestamp.load(Ordering::Acquire) as u64 + invoice_expiry_delta_secs as u64 + 7200,
6071                                 });
6072                         },
6073                         hash_map::Entry::Occupied(_) => return Err(APIError::APIMisuseError { err: "Duplicate payment hash".to_owned() }),
6074                 }
6075                 Ok(payment_secret)
6076         }
6077
6078         /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
6079         /// to pay us.
6080         ///
6081         /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
6082         /// [`PaymentHash`] and [`PaymentPreimage`] for you.
6083         ///
6084         /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentClaimable`], which
6085         /// will have the [`PaymentClaimable::purpose`] be [`PaymentPurpose::InvoicePayment`] with
6086         /// its [`PaymentPurpose::InvoicePayment::payment_preimage`] field filled in. That should then be
6087         /// passed directly to [`claim_funds`].
6088         ///
6089         /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
6090         ///
6091         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
6092         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
6093         ///
6094         /// # Note
6095         ///
6096         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
6097         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
6098         ///
6099         /// Errors if `min_value_msat` is greater than total bitcoin supply.
6100         ///
6101         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
6102         /// on versions of LDK prior to 0.0.114.
6103         ///
6104         /// [`claim_funds`]: Self::claim_funds
6105         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
6106         /// [`PaymentClaimable::purpose`]: events::Event::PaymentClaimable::purpose
6107         /// [`PaymentPurpose::InvoicePayment`]: events::PaymentPurpose::InvoicePayment
6108         /// [`PaymentPurpose::InvoicePayment::payment_preimage`]: events::PaymentPurpose::InvoicePayment::payment_preimage
6109         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
6110         pub fn create_inbound_payment(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32,
6111                 min_final_cltv_expiry_delta: Option<u16>) -> Result<(PaymentHash, PaymentSecret), ()> {
6112                 inbound_payment::create(&self.inbound_payment_key, min_value_msat, invoice_expiry_delta_secs,
6113                         &self.entropy_source, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
6114                         min_final_cltv_expiry_delta)
6115         }
6116
6117         /// Legacy version of [`create_inbound_payment`]. Use this method if you wish to share
6118         /// serialized state with LDK node(s) running 0.0.103 and earlier.
6119         ///
6120         /// May panic if `invoice_expiry_delta_secs` is greater than one year.
6121         ///
6122         /// # Note
6123         /// This method is deprecated and will be removed soon.
6124         ///
6125         /// [`create_inbound_payment`]: Self::create_inbound_payment
6126         #[deprecated]
6127         pub fn create_inbound_payment_legacy(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32) -> Result<(PaymentHash, PaymentSecret), APIError> {
6128                 let payment_preimage = PaymentPreimage(self.entropy_source.get_secure_random_bytes());
6129                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
6130                 let payment_secret = self.set_payment_hash_secret_map(payment_hash, Some(payment_preimage), min_value_msat, invoice_expiry_delta_secs)?;
6131                 Ok((payment_hash, payment_secret))
6132         }
6133
6134         /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
6135         /// stored external to LDK.
6136         ///
6137         /// A [`PaymentClaimable`] event will only be generated if the [`PaymentSecret`] matches a
6138         /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
6139         /// the `min_value_msat` provided here, if one is provided.
6140         ///
6141         /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) should be globally unique, though
6142         /// note that LDK will not stop you from registering duplicate payment hashes for inbound
6143         /// payments.
6144         ///
6145         /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
6146         /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
6147         /// before a [`PaymentClaimable`] event will be generated, ensuring that we do not provide the
6148         /// sender "proof-of-payment" unless they have paid the required amount.
6149         ///
6150         /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
6151         /// in excess of the current time. This should roughly match the expiry time set in the invoice.
6152         /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
6153         /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
6154         /// invoices when no timeout is set.
6155         ///
6156         /// Note that we use block header time to time-out pending inbound payments (with some margin
6157         /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
6158         /// accept a payment and generate a [`PaymentClaimable`] event for some time after the expiry.
6159         /// If you need exact expiry semantics, you should enforce them upon receipt of
6160         /// [`PaymentClaimable`].
6161         ///
6162         /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry_delta`
6163         /// set to at least [`MIN_FINAL_CLTV_EXPIRY_DELTA`].
6164         ///
6165         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
6166         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
6167         ///
6168         /// # Note
6169         ///
6170         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
6171         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
6172         ///
6173         /// Errors if `min_value_msat` is greater than total bitcoin supply.
6174         ///
6175         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
6176         /// on versions of LDK prior to 0.0.114.
6177         ///
6178         /// [`create_inbound_payment`]: Self::create_inbound_payment
6179         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
6180         pub fn create_inbound_payment_for_hash(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>,
6181                 invoice_expiry_delta_secs: u32, min_final_cltv_expiry: Option<u16>) -> Result<PaymentSecret, ()> {
6182                 inbound_payment::create_from_hash(&self.inbound_payment_key, min_value_msat, payment_hash,
6183                         invoice_expiry_delta_secs, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
6184                         min_final_cltv_expiry)
6185         }
6186
6187         /// Legacy version of [`create_inbound_payment_for_hash`]. Use this method if you wish to share
6188         /// serialized state with LDK node(s) running 0.0.103 and earlier.
6189         ///
6190         /// May panic if `invoice_expiry_delta_secs` is greater than one year.
6191         ///
6192         /// # Note
6193         /// This method is deprecated and will be removed soon.
6194         ///
6195         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
6196         #[deprecated]
6197         pub fn create_inbound_payment_for_hash_legacy(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32) -> Result<PaymentSecret, APIError> {
6198                 self.set_payment_hash_secret_map(payment_hash, None, min_value_msat, invoice_expiry_delta_secs)
6199         }
6200
6201         /// Gets an LDK-generated payment preimage from a payment hash and payment secret that were
6202         /// previously returned from [`create_inbound_payment`].
6203         ///
6204         /// [`create_inbound_payment`]: Self::create_inbound_payment
6205         pub fn get_payment_preimage(&self, payment_hash: PaymentHash, payment_secret: PaymentSecret) -> Result<PaymentPreimage, APIError> {
6206                 inbound_payment::get_payment_preimage(payment_hash, payment_secret, &self.inbound_payment_key)
6207         }
6208
6209         /// Gets a fake short channel id for use in receiving [phantom node payments]. These fake scids
6210         /// are used when constructing the phantom invoice's route hints.
6211         ///
6212         /// [phantom node payments]: crate::sign::PhantomKeysManager
6213         pub fn get_phantom_scid(&self) -> u64 {
6214                 let best_block_height = self.best_block.read().unwrap().height();
6215                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
6216                 loop {
6217                         let scid_candidate = fake_scid::Namespace::Phantom.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
6218                         // Ensure the generated scid doesn't conflict with a real channel.
6219                         match short_to_chan_info.get(&scid_candidate) {
6220                                 Some(_) => continue,
6221                                 None => return scid_candidate
6222                         }
6223                 }
6224         }
6225
6226         /// Gets route hints for use in receiving [phantom node payments].
6227         ///
6228         /// [phantom node payments]: crate::sign::PhantomKeysManager
6229         pub fn get_phantom_route_hints(&self) -> PhantomRouteHints {
6230                 PhantomRouteHints {
6231                         channels: self.list_usable_channels(),
6232                         phantom_scid: self.get_phantom_scid(),
6233                         real_node_pubkey: self.get_our_node_id(),
6234                 }
6235         }
6236
6237         /// Gets a fake short channel id for use in receiving intercepted payments. These fake scids are
6238         /// used when constructing the route hints for HTLCs intended to be intercepted. See
6239         /// [`ChannelManager::forward_intercepted_htlc`].
6240         ///
6241         /// Note that this method is not guaranteed to return unique values, you may need to call it a few
6242         /// times to get a unique scid.
6243         pub fn get_intercept_scid(&self) -> u64 {
6244                 let best_block_height = self.best_block.read().unwrap().height();
6245                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
6246                 loop {
6247                         let scid_candidate = fake_scid::Namespace::Intercept.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
6248                         // Ensure the generated scid doesn't conflict with a real channel.
6249                         if short_to_chan_info.contains_key(&scid_candidate) { continue }
6250                         return scid_candidate
6251                 }
6252         }
6253
6254         /// Gets inflight HTLC information by processing pending outbound payments that are in
6255         /// our channels. May be used during pathfinding to account for in-use channel liquidity.
6256         pub fn compute_inflight_htlcs(&self) -> InFlightHtlcs {
6257                 let mut inflight_htlcs = InFlightHtlcs::new();
6258
6259                 let per_peer_state = self.per_peer_state.read().unwrap();
6260                 for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6261                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6262                         let peer_state = &mut *peer_state_lock;
6263                         for chan in peer_state.channel_by_id.values() {
6264                                 for (htlc_source, _) in chan.inflight_htlc_sources() {
6265                                         if let HTLCSource::OutboundRoute { path, .. } = htlc_source {
6266                                                 inflight_htlcs.process_path(path, self.get_our_node_id());
6267                                         }
6268                                 }
6269                         }
6270                 }
6271
6272                 inflight_htlcs
6273         }
6274
6275         #[cfg(any(test, fuzzing, feature = "_test_utils"))]
6276         pub fn get_and_clear_pending_events(&self) -> Vec<events::Event> {
6277                 let events = core::cell::RefCell::new(Vec::new());
6278                 let event_handler = |event: events::Event| events.borrow_mut().push(event);
6279                 self.process_pending_events(&event_handler);
6280                 events.into_inner()
6281         }
6282
6283         #[cfg(feature = "_test_utils")]
6284         pub fn push_pending_event(&self, event: events::Event) {
6285                 let mut events = self.pending_events.lock().unwrap();
6286                 events.push_back((event, None));
6287         }
6288
6289         #[cfg(test)]
6290         pub fn pop_pending_event(&self) -> Option<events::Event> {
6291                 let mut events = self.pending_events.lock().unwrap();
6292                 events.pop_front().map(|(e, _)| e)
6293         }
6294
6295         #[cfg(test)]
6296         pub fn has_pending_payments(&self) -> bool {
6297                 self.pending_outbound_payments.has_pending_payments()
6298         }
6299
6300         #[cfg(test)]
6301         pub fn clear_pending_payments(&self) {
6302                 self.pending_outbound_payments.clear_pending_payments()
6303         }
6304
6305         /// When something which was blocking a channel from updating its [`ChannelMonitor`] (e.g. an
6306         /// [`Event`] being handled) completes, this should be called to restore the channel to normal
6307         /// operation. It will double-check that nothing *else* is also blocking the same channel from
6308         /// making progress and then any blocked [`ChannelMonitorUpdate`]s fly.
6309         fn handle_monitor_update_release(&self, counterparty_node_id: PublicKey, channel_funding_outpoint: OutPoint, mut completed_blocker: Option<RAAMonitorUpdateBlockingAction>) {
6310                 let mut errors = Vec::new();
6311                 loop {
6312                         let per_peer_state = self.per_peer_state.read().unwrap();
6313                         if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
6314                                 let mut peer_state_lck = peer_state_mtx.lock().unwrap();
6315                                 let peer_state = &mut *peer_state_lck;
6316
6317                                 if let Some(blocker) = completed_blocker.take() {
6318                                         // Only do this on the first iteration of the loop.
6319                                         if let Some(blockers) = peer_state.actions_blocking_raa_monitor_updates
6320                                                 .get_mut(&channel_funding_outpoint.to_channel_id())
6321                                         {
6322                                                 blockers.retain(|iter| iter != &blocker);
6323                                         }
6324                                 }
6325
6326                                 if self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
6327                                         channel_funding_outpoint, counterparty_node_id) {
6328                                         // Check that, while holding the peer lock, we don't have anything else
6329                                         // blocking monitor updates for this channel. If we do, release the monitor
6330                                         // update(s) when those blockers complete.
6331                                         log_trace!(self.logger, "Delaying monitor unlock for channel {} as another channel's mon update needs to complete first",
6332                                                 log_bytes!(&channel_funding_outpoint.to_channel_id()[..]));
6333                                         break;
6334                                 }
6335
6336                                 if let hash_map::Entry::Occupied(mut chan) = peer_state.channel_by_id.entry(channel_funding_outpoint.to_channel_id()) {
6337                                         debug_assert_eq!(chan.get().context.get_funding_txo().unwrap(), channel_funding_outpoint);
6338                                         if let Some((monitor_update, further_update_exists)) = chan.get_mut().unblock_next_blocked_monitor_update() {
6339                                                 log_debug!(self.logger, "Unlocking monitor updating for channel {} and updating monitor",
6340                                                         log_bytes!(&channel_funding_outpoint.to_channel_id()[..]));
6341                                                 let update_res = self.chain_monitor.update_channel(channel_funding_outpoint, monitor_update);
6342                                                 let update_id = monitor_update.update_id;
6343                                                 if let Err(e) = handle_new_monitor_update!(self, update_res, update_id,
6344                                                         peer_state_lck, peer_state, per_peer_state, chan)
6345                                                 {
6346                                                         errors.push((e, counterparty_node_id));
6347                                                 }
6348                                                 if further_update_exists {
6349                                                         // If there are more `ChannelMonitorUpdate`s to process, restart at the
6350                                                         // top of the loop.
6351                                                         continue;
6352                                                 }
6353                                         } else {
6354                                                 log_trace!(self.logger, "Unlocked monitor updating for channel {} without monitors to update",
6355                                                         log_bytes!(&channel_funding_outpoint.to_channel_id()[..]));
6356                                         }
6357                                 }
6358                         } else {
6359                                 log_debug!(self.logger,
6360                                         "Got a release post-RAA monitor update for peer {} but the channel is gone",
6361                                         log_pubkey!(counterparty_node_id));
6362                         }
6363                         break;
6364                 }
6365                 for (err, counterparty_node_id) in errors {
6366                         let res = Err::<(), _>(err);
6367                         let _ = handle_error!(self, res, counterparty_node_id);
6368                 }
6369         }
6370
6371         fn handle_post_event_actions(&self, actions: Vec<EventCompletionAction>) {
6372                 for action in actions {
6373                         match action {
6374                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
6375                                         channel_funding_outpoint, counterparty_node_id
6376                                 } => {
6377                                         self.handle_monitor_update_release(counterparty_node_id, channel_funding_outpoint, None);
6378                                 }
6379                         }
6380                 }
6381         }
6382
6383         /// Processes any events asynchronously in the order they were generated since the last call
6384         /// using the given event handler.
6385         ///
6386         /// See the trait-level documentation of [`EventsProvider`] for requirements.
6387         pub async fn process_pending_events_async<Future: core::future::Future, H: Fn(Event) -> Future>(
6388                 &self, handler: H
6389         ) {
6390                 let mut ev;
6391                 process_events_body!(self, ev, { handler(ev).await });
6392         }
6393 }
6394
6395 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>
6396 where
6397         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6398         T::Target: BroadcasterInterface,
6399         ES::Target: EntropySource,
6400         NS::Target: NodeSigner,
6401         SP::Target: SignerProvider,
6402         F::Target: FeeEstimator,
6403         R::Target: Router,
6404         L::Target: Logger,
6405 {
6406         /// Returns `MessageSendEvent`s strictly ordered per-peer, in the order they were generated.
6407         /// The returned array will contain `MessageSendEvent`s for different peers if
6408         /// `MessageSendEvent`s to more than one peer exists, but `MessageSendEvent`s to the same peer
6409         /// is always placed next to each other.
6410         ///
6411         /// Note that that while `MessageSendEvent`s are strictly ordered per-peer, the peer order for
6412         /// the chunks of `MessageSendEvent`s for different peers is random. I.e. if the array contains
6413         /// `MessageSendEvent`s  for both `node_a` and `node_b`, the `MessageSendEvent`s for `node_a`
6414         /// will randomly be placed first or last in the returned array.
6415         ///
6416         /// Note that even though `BroadcastChannelAnnouncement` and `BroadcastChannelUpdate`
6417         /// `MessageSendEvent`s are intended to be broadcasted to all peers, they will be pleaced among
6418         /// the `MessageSendEvent`s to the specific peer they were generated under.
6419         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent> {
6420                 let events = RefCell::new(Vec::new());
6421                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
6422                         let mut result = self.process_background_events();
6423
6424                         // TODO: This behavior should be documented. It's unintuitive that we query
6425                         // ChannelMonitors when clearing other events.
6426                         if self.process_pending_monitor_events() {
6427                                 result = NotifyOption::DoPersist;
6428                         }
6429
6430                         if self.check_free_holding_cells() {
6431                                 result = NotifyOption::DoPersist;
6432                         }
6433                         if self.maybe_generate_initial_closing_signed() {
6434                                 result = NotifyOption::DoPersist;
6435                         }
6436
6437                         let mut pending_events = Vec::new();
6438                         let per_peer_state = self.per_peer_state.read().unwrap();
6439                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6440                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6441                                 let peer_state = &mut *peer_state_lock;
6442                                 if peer_state.pending_msg_events.len() > 0 {
6443                                         pending_events.append(&mut peer_state.pending_msg_events);
6444                                 }
6445                         }
6446
6447                         if !pending_events.is_empty() {
6448                                 events.replace(pending_events);
6449                         }
6450
6451                         result
6452                 });
6453                 events.into_inner()
6454         }
6455 }
6456
6457 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>
6458 where
6459         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6460         T::Target: BroadcasterInterface,
6461         ES::Target: EntropySource,
6462         NS::Target: NodeSigner,
6463         SP::Target: SignerProvider,
6464         F::Target: FeeEstimator,
6465         R::Target: Router,
6466         L::Target: Logger,
6467 {
6468         /// Processes events that must be periodically handled.
6469         ///
6470         /// An [`EventHandler`] may safely call back to the provider in order to handle an event.
6471         /// However, it must not call [`Writeable::write`] as doing so would result in a deadlock.
6472         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler {
6473                 let mut ev;
6474                 process_events_body!(self, ev, handler.handle_event(ev));
6475         }
6476 }
6477
6478 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>
6479 where
6480         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6481         T::Target: BroadcasterInterface,
6482         ES::Target: EntropySource,
6483         NS::Target: NodeSigner,
6484         SP::Target: SignerProvider,
6485         F::Target: FeeEstimator,
6486         R::Target: Router,
6487         L::Target: Logger,
6488 {
6489         fn filtered_block_connected(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
6490                 {
6491                         let best_block = self.best_block.read().unwrap();
6492                         assert_eq!(best_block.block_hash(), header.prev_blockhash,
6493                                 "Blocks must be connected in chain-order - the connected header must build on the last connected header");
6494                         assert_eq!(best_block.height(), height - 1,
6495                                 "Blocks must be connected in chain-order - the connected block height must be one greater than the previous height");
6496                 }
6497
6498                 self.transactions_confirmed(header, txdata, height);
6499                 self.best_block_updated(header, height);
6500         }
6501
6502         fn block_disconnected(&self, header: &BlockHeader, height: u32) {
6503                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
6504                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
6505                 let new_height = height - 1;
6506                 {
6507                         let mut best_block = self.best_block.write().unwrap();
6508                         assert_eq!(best_block.block_hash(), header.block_hash(),
6509                                 "Blocks must be disconnected in chain-order - the disconnected header must be the last connected header");
6510                         assert_eq!(best_block.height(), height,
6511                                 "Blocks must be disconnected in chain-order - the disconnected block must have the correct height");
6512                         *best_block = BestBlock::new(header.prev_blockhash, new_height)
6513                 }
6514
6515                 self.do_chain_event(Some(new_height), |channel| channel.best_block_updated(new_height, header.time, self.genesis_hash.clone(), &self.node_signer, &self.default_configuration, &self.logger));
6516         }
6517 }
6518
6519 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>
6520 where
6521         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6522         T::Target: BroadcasterInterface,
6523         ES::Target: EntropySource,
6524         NS::Target: NodeSigner,
6525         SP::Target: SignerProvider,
6526         F::Target: FeeEstimator,
6527         R::Target: Router,
6528         L::Target: Logger,
6529 {
6530         fn transactions_confirmed(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
6531                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
6532                 // during initialization prior to the chain_monitor being fully configured in some cases.
6533                 // See the docs for `ChannelManagerReadArgs` for more.
6534
6535                 let block_hash = header.block_hash();
6536                 log_trace!(self.logger, "{} transactions included in block {} at height {} provided", txdata.len(), block_hash, height);
6537
6538                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
6539                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
6540                 self.do_chain_event(Some(height), |channel| channel.transactions_confirmed(&block_hash, height, txdata, self.genesis_hash.clone(), &self.node_signer, &self.default_configuration, &self.logger)
6541                         .map(|(a, b)| (a, Vec::new(), b)));
6542
6543                 let last_best_block_height = self.best_block.read().unwrap().height();
6544                 if height < last_best_block_height {
6545                         let timestamp = self.highest_seen_timestamp.load(Ordering::Acquire);
6546                         self.do_chain_event(Some(last_best_block_height), |channel| channel.best_block_updated(last_best_block_height, timestamp as u32, self.genesis_hash.clone(), &self.node_signer, &self.default_configuration, &self.logger));
6547                 }
6548         }
6549
6550         fn best_block_updated(&self, header: &BlockHeader, height: u32) {
6551                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
6552                 // during initialization prior to the chain_monitor being fully configured in some cases.
6553                 // See the docs for `ChannelManagerReadArgs` for more.
6554
6555                 let block_hash = header.block_hash();
6556                 log_trace!(self.logger, "New best block: {} at height {}", block_hash, height);
6557
6558                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
6559                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
6560                 *self.best_block.write().unwrap() = BestBlock::new(block_hash, height);
6561
6562                 self.do_chain_event(Some(height), |channel| channel.best_block_updated(height, header.time, self.genesis_hash.clone(), &self.node_signer, &self.default_configuration, &self.logger));
6563
6564                 macro_rules! max_time {
6565                         ($timestamp: expr) => {
6566                                 loop {
6567                                         // Update $timestamp to be the max of its current value and the block
6568                                         // timestamp. This should keep us close to the current time without relying on
6569                                         // having an explicit local time source.
6570                                         // Just in case we end up in a race, we loop until we either successfully
6571                                         // update $timestamp or decide we don't need to.
6572                                         let old_serial = $timestamp.load(Ordering::Acquire);
6573                                         if old_serial >= header.time as usize { break; }
6574                                         if $timestamp.compare_exchange(old_serial, header.time as usize, Ordering::AcqRel, Ordering::Relaxed).is_ok() {
6575                                                 break;
6576                                         }
6577                                 }
6578                         }
6579                 }
6580                 max_time!(self.highest_seen_timestamp);
6581                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
6582                 payment_secrets.retain(|_, inbound_payment| {
6583                         inbound_payment.expiry_time > header.time as u64
6584                 });
6585         }
6586
6587         fn get_relevant_txids(&self) -> Vec<(Txid, Option<BlockHash>)> {
6588                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
6589                 for (_cp_id, peer_state_mutex) in self.per_peer_state.read().unwrap().iter() {
6590                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6591                         let peer_state = &mut *peer_state_lock;
6592                         for chan in peer_state.channel_by_id.values() {
6593                                 if let (Some(funding_txo), Some(block_hash)) = (chan.context.get_funding_txo(), chan.context.get_funding_tx_confirmed_in()) {
6594                                         res.push((funding_txo.txid, Some(block_hash)));
6595                                 }
6596                         }
6597                 }
6598                 res
6599         }
6600
6601         fn transaction_unconfirmed(&self, txid: &Txid) {
6602                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
6603                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
6604                 self.do_chain_event(None, |channel| {
6605                         if let Some(funding_txo) = channel.context.get_funding_txo() {
6606                                 if funding_txo.txid == *txid {
6607                                         channel.funding_transaction_unconfirmed(&self.logger).map(|()| (None, Vec::new(), None))
6608                                 } else { Ok((None, Vec::new(), None)) }
6609                         } else { Ok((None, Vec::new(), None)) }
6610                 });
6611         }
6612 }
6613
6614 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>
6615 where
6616         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6617         T::Target: BroadcasterInterface,
6618         ES::Target: EntropySource,
6619         NS::Target: NodeSigner,
6620         SP::Target: SignerProvider,
6621         F::Target: FeeEstimator,
6622         R::Target: Router,
6623         L::Target: Logger,
6624 {
6625         /// Calls a function which handles an on-chain event (blocks dis/connected, transactions
6626         /// un/confirmed, etc) on each channel, handling any resulting errors or messages generated by
6627         /// the function.
6628         fn do_chain_event<FN: Fn(&mut Channel<<SP::Target as SignerProvider>::Signer>) -> Result<(Option<msgs::ChannelReady>, Vec<(HTLCSource, PaymentHash)>, Option<msgs::AnnouncementSignatures>), ClosureReason>>
6629                         (&self, height_opt: Option<u32>, f: FN) {
6630                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
6631                 // during initialization prior to the chain_monitor being fully configured in some cases.
6632                 // See the docs for `ChannelManagerReadArgs` for more.
6633
6634                 let mut failed_channels = Vec::new();
6635                 let mut timed_out_htlcs = Vec::new();
6636                 {
6637                         let per_peer_state = self.per_peer_state.read().unwrap();
6638                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6639                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6640                                 let peer_state = &mut *peer_state_lock;
6641                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6642                                 peer_state.channel_by_id.retain(|_, channel| {
6643                                         let res = f(channel);
6644                                         if let Ok((channel_ready_opt, mut timed_out_pending_htlcs, announcement_sigs)) = res {
6645                                                 for (source, payment_hash) in timed_out_pending_htlcs.drain(..) {
6646                                                         let (failure_code, data) = self.get_htlc_inbound_temp_fail_err_and_data(0x1000|14 /* expiry_too_soon */, &channel);
6647                                                         timed_out_htlcs.push((source, payment_hash, HTLCFailReason::reason(failure_code, data),
6648                                                                 HTLCDestination::NextHopChannel { node_id: Some(channel.context.get_counterparty_node_id()), channel_id: channel.context.channel_id() }));
6649                                                 }
6650                                                 if let Some(channel_ready) = channel_ready_opt {
6651                                                         send_channel_ready!(self, pending_msg_events, channel, channel_ready);
6652                                                         if channel.context.is_usable() {
6653                                                                 log_trace!(self.logger, "Sending channel_ready with private initial channel_update for our counterparty on channel {}", log_bytes!(channel.context.channel_id()));
6654                                                                 if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
6655                                                                         pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
6656                                                                                 node_id: channel.context.get_counterparty_node_id(),
6657                                                                                 msg,
6658                                                                         });
6659                                                                 }
6660                                                         } else {
6661                                                                 log_trace!(self.logger, "Sending channel_ready WITHOUT channel_update for {}", log_bytes!(channel.context.channel_id()));
6662                                                         }
6663                                                 }
6664
6665                                                 {
6666                                                         let mut pending_events = self.pending_events.lock().unwrap();
6667                                                         emit_channel_ready_event!(pending_events, channel);
6668                                                 }
6669
6670                                                 if let Some(announcement_sigs) = announcement_sigs {
6671                                                         log_trace!(self.logger, "Sending announcement_signatures for channel {}", log_bytes!(channel.context.channel_id()));
6672                                                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
6673                                                                 node_id: channel.context.get_counterparty_node_id(),
6674                                                                 msg: announcement_sigs,
6675                                                         });
6676                                                         if let Some(height) = height_opt {
6677                                                                 if let Some(announcement) = channel.get_signed_channel_announcement(&self.node_signer, self.genesis_hash, height, &self.default_configuration) {
6678                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
6679                                                                                 msg: announcement,
6680                                                                                 // Note that announcement_signatures fails if the channel cannot be announced,
6681                                                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
6682                                                                                 update_msg: Some(self.get_channel_update_for_broadcast(channel).unwrap()),
6683                                                                         });
6684                                                                 }
6685                                                         }
6686                                                 }
6687                                                 if channel.is_our_channel_ready() {
6688                                                         if let Some(real_scid) = channel.context.get_short_channel_id() {
6689                                                                 // If we sent a 0conf channel_ready, and now have an SCID, we add it
6690                                                                 // to the short_to_chan_info map here. Note that we check whether we
6691                                                                 // can relay using the real SCID at relay-time (i.e.
6692                                                                 // enforce option_scid_alias then), and if the funding tx is ever
6693                                                                 // un-confirmed we force-close the channel, ensuring short_to_chan_info
6694                                                                 // is always consistent.
6695                                                                 let mut short_to_chan_info = self.short_to_chan_info.write().unwrap();
6696                                                                 let scid_insert = short_to_chan_info.insert(real_scid, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
6697                                                                 assert!(scid_insert.is_none() || scid_insert.unwrap() == (channel.context.get_counterparty_node_id(), channel.context.channel_id()),
6698                                                                         "SCIDs should never collide - ensure you weren't behind by a full {} blocks when creating channels",
6699                                                                         fake_scid::MAX_SCID_BLOCKS_FROM_NOW);
6700                                                         }
6701                                                 }
6702                                         } else if let Err(reason) = res {
6703                                                 update_maps_on_chan_removal!(self, &channel.context);
6704                                                 // It looks like our counterparty went on-chain or funding transaction was
6705                                                 // reorged out of the main chain. Close the channel.
6706                                                 failed_channels.push(channel.context.force_shutdown(true));
6707                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&channel) {
6708                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6709                                                                 msg: update
6710                                                         });
6711                                                 }
6712                                                 let reason_message = format!("{}", reason);
6713                                                 self.issue_channel_close_events(&channel.context, reason);
6714                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
6715                                                         node_id: channel.context.get_counterparty_node_id(),
6716                                                         action: msgs::ErrorAction::SendErrorMessage { msg: msgs::ErrorMessage {
6717                                                                 channel_id: channel.context.channel_id(),
6718                                                                 data: reason_message,
6719                                                         } },
6720                                                 });
6721                                                 return false;
6722                                         }
6723                                         true
6724                                 });
6725                         }
6726                 }
6727
6728                 if let Some(height) = height_opt {
6729                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
6730                                 payment.htlcs.retain(|htlc| {
6731                                         // If height is approaching the number of blocks we think it takes us to get
6732                                         // our commitment transaction confirmed before the HTLC expires, plus the
6733                                         // number of blocks we generally consider it to take to do a commitment update,
6734                                         // just give up on it and fail the HTLC.
6735                                         if height >= htlc.cltv_expiry - HTLC_FAIL_BACK_BUFFER {
6736                                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
6737                                                 htlc_msat_height_data.extend_from_slice(&height.to_be_bytes());
6738
6739                                                 timed_out_htlcs.push((HTLCSource::PreviousHopData(htlc.prev_hop.clone()), payment_hash.clone(),
6740                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
6741                                                         HTLCDestination::FailedPayment { payment_hash: payment_hash.clone() }));
6742                                                 false
6743                                         } else { true }
6744                                 });
6745                                 !payment.htlcs.is_empty() // Only retain this entry if htlcs has at least one entry.
6746                         });
6747
6748                         let mut intercepted_htlcs = self.pending_intercepted_htlcs.lock().unwrap();
6749                         intercepted_htlcs.retain(|_, htlc| {
6750                                 if height >= htlc.forward_info.outgoing_cltv_value - HTLC_FAIL_BACK_BUFFER {
6751                                         let prev_hop_data = HTLCSource::PreviousHopData(HTLCPreviousHopData {
6752                                                 short_channel_id: htlc.prev_short_channel_id,
6753                                                 htlc_id: htlc.prev_htlc_id,
6754                                                 incoming_packet_shared_secret: htlc.forward_info.incoming_shared_secret,
6755                                                 phantom_shared_secret: None,
6756                                                 outpoint: htlc.prev_funding_outpoint,
6757                                         });
6758
6759                                         let requested_forward_scid /* intercept scid */ = match htlc.forward_info.routing {
6760                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
6761                                                 _ => unreachable!(),
6762                                         };
6763                                         timed_out_htlcs.push((prev_hop_data, htlc.forward_info.payment_hash,
6764                                                         HTLCFailReason::from_failure_code(0x2000 | 2),
6765                                                         HTLCDestination::InvalidForward { requested_forward_scid }));
6766                                         log_trace!(self.logger, "Timing out intercepted HTLC with requested forward scid {}", requested_forward_scid);
6767                                         false
6768                                 } else { true }
6769                         });
6770                 }
6771
6772                 self.handle_init_event_channel_failures(failed_channels);
6773
6774                 for (source, payment_hash, reason, destination) in timed_out_htlcs.drain(..) {
6775                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, destination);
6776                 }
6777         }
6778
6779         /// Gets a [`Future`] that completes when this [`ChannelManager`] needs to be persisted.
6780         ///
6781         /// Note that callbacks registered on the [`Future`] MUST NOT call back into this
6782         /// [`ChannelManager`] and should instead register actions to be taken later.
6783         ///
6784         pub fn get_persistable_update_future(&self) -> Future {
6785                 self.persistence_notifier.get_future()
6786         }
6787
6788         #[cfg(any(test, feature = "_test_utils"))]
6789         pub fn get_persistence_condvar_value(&self) -> bool {
6790                 self.persistence_notifier.notify_pending()
6791         }
6792
6793         /// Gets the latest best block which was connected either via the [`chain::Listen`] or
6794         /// [`chain::Confirm`] interfaces.
6795         pub fn current_best_block(&self) -> BestBlock {
6796                 self.best_block.read().unwrap().clone()
6797         }
6798
6799         /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
6800         /// [`ChannelManager`].
6801         pub fn node_features(&self) -> NodeFeatures {
6802                 provided_node_features(&self.default_configuration)
6803         }
6804
6805         /// Fetches the set of [`InvoiceFeatures`] flags which are provided by or required by
6806         /// [`ChannelManager`].
6807         ///
6808         /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
6809         /// or not. Thus, this method is not public.
6810         #[cfg(any(feature = "_test_utils", test))]
6811         pub fn invoice_features(&self) -> InvoiceFeatures {
6812                 provided_invoice_features(&self.default_configuration)
6813         }
6814
6815         /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
6816         /// [`ChannelManager`].
6817         pub fn channel_features(&self) -> ChannelFeatures {
6818                 provided_channel_features(&self.default_configuration)
6819         }
6820
6821         /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
6822         /// [`ChannelManager`].
6823         pub fn channel_type_features(&self) -> ChannelTypeFeatures {
6824                 provided_channel_type_features(&self.default_configuration)
6825         }
6826
6827         /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
6828         /// [`ChannelManager`].
6829         pub fn init_features(&self) -> InitFeatures {
6830                 provided_init_features(&self.default_configuration)
6831         }
6832 }
6833
6834 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
6835         ChannelMessageHandler for ChannelManager<M, T, ES, NS, SP, F, R, L>
6836 where
6837         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6838         T::Target: BroadcasterInterface,
6839         ES::Target: EntropySource,
6840         NS::Target: NodeSigner,
6841         SP::Target: SignerProvider,
6842         F::Target: FeeEstimator,
6843         R::Target: Router,
6844         L::Target: Logger,
6845 {
6846         fn handle_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) {
6847                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6848                 let _ = handle_error!(self, self.internal_open_channel(counterparty_node_id, msg), *counterparty_node_id);
6849         }
6850
6851         fn handle_open_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannelV2) {
6852                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
6853                         "Dual-funded channels not supported".to_owned(),
6854                          msg.temporary_channel_id.clone())), *counterparty_node_id);
6855         }
6856
6857         fn handle_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) {
6858                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6859                 let _ = handle_error!(self, self.internal_accept_channel(counterparty_node_id, msg), *counterparty_node_id);
6860         }
6861
6862         fn handle_accept_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannelV2) {
6863                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
6864                         "Dual-funded channels not supported".to_owned(),
6865                          msg.temporary_channel_id.clone())), *counterparty_node_id);
6866         }
6867
6868         fn handle_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) {
6869                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6870                 let _ = handle_error!(self, self.internal_funding_created(counterparty_node_id, msg), *counterparty_node_id);
6871         }
6872
6873         fn handle_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) {
6874                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6875                 let _ = handle_error!(self, self.internal_funding_signed(counterparty_node_id, msg), *counterparty_node_id);
6876         }
6877
6878         fn handle_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) {
6879                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6880                 let _ = handle_error!(self, self.internal_channel_ready(counterparty_node_id, msg), *counterparty_node_id);
6881         }
6882
6883         fn handle_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) {
6884                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6885                 let _ = handle_error!(self, self.internal_shutdown(counterparty_node_id, msg), *counterparty_node_id);
6886         }
6887
6888         fn handle_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) {
6889                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6890                 let _ = handle_error!(self, self.internal_closing_signed(counterparty_node_id, msg), *counterparty_node_id);
6891         }
6892
6893         fn handle_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) {
6894                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6895                 let _ = handle_error!(self, self.internal_update_add_htlc(counterparty_node_id, msg), *counterparty_node_id);
6896         }
6897
6898         fn handle_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) {
6899                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6900                 let _ = handle_error!(self, self.internal_update_fulfill_htlc(counterparty_node_id, msg), *counterparty_node_id);
6901         }
6902
6903         fn handle_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) {
6904                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6905                 let _ = handle_error!(self, self.internal_update_fail_htlc(counterparty_node_id, msg), *counterparty_node_id);
6906         }
6907
6908         fn handle_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) {
6909                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6910                 let _ = handle_error!(self, self.internal_update_fail_malformed_htlc(counterparty_node_id, msg), *counterparty_node_id);
6911         }
6912
6913         fn handle_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) {
6914                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6915                 let _ = handle_error!(self, self.internal_commitment_signed(counterparty_node_id, msg), *counterparty_node_id);
6916         }
6917
6918         fn handle_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) {
6919                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6920                 let _ = handle_error!(self, self.internal_revoke_and_ack(counterparty_node_id, msg), *counterparty_node_id);
6921         }
6922
6923         fn handle_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) {
6924                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6925                 let _ = handle_error!(self, self.internal_update_fee(counterparty_node_id, msg), *counterparty_node_id);
6926         }
6927
6928         fn handle_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) {
6929                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6930                 let _ = handle_error!(self, self.internal_announcement_signatures(counterparty_node_id, msg), *counterparty_node_id);
6931         }
6932
6933         fn handle_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) {
6934                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
6935                         let force_persist = self.process_background_events();
6936                         if let Ok(persist) = handle_error!(self, self.internal_channel_update(counterparty_node_id, msg), *counterparty_node_id) {
6937                                 if force_persist == NotifyOption::DoPersist { NotifyOption::DoPersist } else { persist }
6938                         } else {
6939                                 NotifyOption::SkipPersist
6940                         }
6941                 });
6942         }
6943
6944         fn handle_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) {
6945                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6946                 let _ = handle_error!(self, self.internal_channel_reestablish(counterparty_node_id, msg), *counterparty_node_id);
6947         }
6948
6949         fn peer_disconnected(&self, counterparty_node_id: &PublicKey) {
6950                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6951                 let mut failed_channels = Vec::new();
6952                 let mut per_peer_state = self.per_peer_state.write().unwrap();
6953                 let remove_peer = {
6954                         log_debug!(self.logger, "Marking channels with {} disconnected and generating channel_updates.",
6955                                 log_pubkey!(counterparty_node_id));
6956                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
6957                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6958                                 let peer_state = &mut *peer_state_lock;
6959                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6960                                 peer_state.channel_by_id.retain(|_, chan| {
6961                                         chan.remove_uncommitted_htlcs_and_mark_paused(&self.logger);
6962                                         if chan.is_shutdown() {
6963                                                 update_maps_on_chan_removal!(self, &chan.context);
6964                                                 self.issue_channel_close_events(&chan.context, ClosureReason::DisconnectedPeer);
6965                                                 return false;
6966                                         }
6967                                         true
6968                                 });
6969                                 peer_state.inbound_v1_channel_by_id.retain(|_, chan| {
6970                                         update_maps_on_chan_removal!(self, &chan.context);
6971                                         self.issue_channel_close_events(&chan.context, ClosureReason::DisconnectedPeer);
6972                                         false
6973                                 });
6974                                 peer_state.outbound_v1_channel_by_id.retain(|_, chan| {
6975                                         update_maps_on_chan_removal!(self, &chan.context);
6976                                         self.issue_channel_close_events(&chan.context, ClosureReason::DisconnectedPeer);
6977                                         false
6978                                 });
6979                                 pending_msg_events.retain(|msg| {
6980                                         match msg {
6981                                                 // V1 Channel Establishment
6982                                                 &events::MessageSendEvent::SendAcceptChannel { .. } => false,
6983                                                 &events::MessageSendEvent::SendOpenChannel { .. } => false,
6984                                                 &events::MessageSendEvent::SendFundingCreated { .. } => false,
6985                                                 &events::MessageSendEvent::SendFundingSigned { .. } => false,
6986                                                 // V2 Channel Establishment
6987                                                 &events::MessageSendEvent::SendAcceptChannelV2 { .. } => false,
6988                                                 &events::MessageSendEvent::SendOpenChannelV2 { .. } => false,
6989                                                 // Common Channel Establishment
6990                                                 &events::MessageSendEvent::SendChannelReady { .. } => false,
6991                                                 &events::MessageSendEvent::SendAnnouncementSignatures { .. } => false,
6992                                                 // Interactive Transaction Construction
6993                                                 &events::MessageSendEvent::SendTxAddInput { .. } => false,
6994                                                 &events::MessageSendEvent::SendTxAddOutput { .. } => false,
6995                                                 &events::MessageSendEvent::SendTxRemoveInput { .. } => false,
6996                                                 &events::MessageSendEvent::SendTxRemoveOutput { .. } => false,
6997                                                 &events::MessageSendEvent::SendTxComplete { .. } => false,
6998                                                 &events::MessageSendEvent::SendTxSignatures { .. } => false,
6999                                                 &events::MessageSendEvent::SendTxInitRbf { .. } => false,
7000                                                 &events::MessageSendEvent::SendTxAckRbf { .. } => false,
7001                                                 &events::MessageSendEvent::SendTxAbort { .. } => false,
7002                                                 // Channel Operations
7003                                                 &events::MessageSendEvent::UpdateHTLCs { .. } => false,
7004                                                 &events::MessageSendEvent::SendRevokeAndACK { .. } => false,
7005                                                 &events::MessageSendEvent::SendClosingSigned { .. } => false,
7006                                                 &events::MessageSendEvent::SendShutdown { .. } => false,
7007                                                 &events::MessageSendEvent::SendChannelReestablish { .. } => false,
7008                                                 &events::MessageSendEvent::HandleError { .. } => false,
7009                                                 // Gossip
7010                                                 &events::MessageSendEvent::SendChannelAnnouncement { .. } => false,
7011                                                 &events::MessageSendEvent::BroadcastChannelAnnouncement { .. } => true,
7012                                                 &events::MessageSendEvent::BroadcastChannelUpdate { .. } => true,
7013                                                 &events::MessageSendEvent::BroadcastNodeAnnouncement { .. } => true,
7014                                                 &events::MessageSendEvent::SendChannelUpdate { .. } => false,
7015                                                 &events::MessageSendEvent::SendChannelRangeQuery { .. } => false,
7016                                                 &events::MessageSendEvent::SendShortIdsQuery { .. } => false,
7017                                                 &events::MessageSendEvent::SendReplyChannelRange { .. } => false,
7018                                                 &events::MessageSendEvent::SendGossipTimestampFilter { .. } => false,
7019                                         }
7020                                 });
7021                                 debug_assert!(peer_state.is_connected, "A disconnected peer cannot disconnect");
7022                                 peer_state.is_connected = false;
7023                                 peer_state.ok_to_remove(true)
7024                         } else { debug_assert!(false, "Unconnected peer disconnected"); true }
7025                 };
7026                 if remove_peer {
7027                         per_peer_state.remove(counterparty_node_id);
7028                 }
7029                 mem::drop(per_peer_state);
7030
7031                 for failure in failed_channels.drain(..) {
7032                         self.finish_force_close_channel(failure);
7033                 }
7034         }
7035
7036         fn peer_connected(&self, counterparty_node_id: &PublicKey, init_msg: &msgs::Init, inbound: bool) -> Result<(), ()> {
7037                 if !init_msg.features.supports_static_remote_key() {
7038                         log_debug!(self.logger, "Peer {} does not support static remote key, disconnecting", log_pubkey!(counterparty_node_id));
7039                         return Err(());
7040                 }
7041
7042                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7043
7044                 // If we have too many peers connected which don't have funded channels, disconnect the
7045                 // peer immediately (as long as it doesn't have funded channels). If we have a bunch of
7046                 // unfunded channels taking up space in memory for disconnected peers, we still let new
7047                 // peers connect, but we'll reject new channels from them.
7048                 let connected_peers_without_funded_channels = self.peers_without_funded_channels(|node| node.is_connected);
7049                 let inbound_peer_limited = inbound && connected_peers_without_funded_channels >= MAX_NO_CHANNEL_PEERS;
7050
7051                 {
7052                         let mut peer_state_lock = self.per_peer_state.write().unwrap();
7053                         match peer_state_lock.entry(counterparty_node_id.clone()) {
7054                                 hash_map::Entry::Vacant(e) => {
7055                                         if inbound_peer_limited {
7056                                                 return Err(());
7057                                         }
7058                                         e.insert(Mutex::new(PeerState {
7059                                                 channel_by_id: HashMap::new(),
7060                                                 outbound_v1_channel_by_id: HashMap::new(),
7061                                                 inbound_v1_channel_by_id: HashMap::new(),
7062                                                 latest_features: init_msg.features.clone(),
7063                                                 pending_msg_events: Vec::new(),
7064                                                 monitor_update_blocked_actions: BTreeMap::new(),
7065                                                 actions_blocking_raa_monitor_updates: BTreeMap::new(),
7066                                                 is_connected: true,
7067                                         }));
7068                                 },
7069                                 hash_map::Entry::Occupied(e) => {
7070                                         let mut peer_state = e.get().lock().unwrap();
7071                                         peer_state.latest_features = init_msg.features.clone();
7072
7073                                         let best_block_height = self.best_block.read().unwrap().height();
7074                                         if inbound_peer_limited &&
7075                                                 Self::unfunded_channel_count(&*peer_state, best_block_height) ==
7076                                                 peer_state.channel_by_id.len()
7077                                         {
7078                                                 return Err(());
7079                                         }
7080
7081                                         debug_assert!(!peer_state.is_connected, "A peer shouldn't be connected twice");
7082                                         peer_state.is_connected = true;
7083                                 },
7084                         }
7085                 }
7086
7087                 log_debug!(self.logger, "Generating channel_reestablish events for {}", log_pubkey!(counterparty_node_id));
7088
7089                 let per_peer_state = self.per_peer_state.read().unwrap();
7090                 for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7091                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7092                         let peer_state = &mut *peer_state_lock;
7093                         let pending_msg_events = &mut peer_state.pending_msg_events;
7094                         peer_state.channel_by_id.retain(|_, chan| {
7095                                 let retain = if chan.context.get_counterparty_node_id() == *counterparty_node_id {
7096                                         if !chan.context.have_received_message() {
7097                                                 // If we created this (outbound) channel while we were disconnected from the
7098                                                 // peer we probably failed to send the open_channel message, which is now
7099                                                 // lost. We can't have had anything pending related to this channel, so we just
7100                                                 // drop it.
7101                                                 false
7102                                         } else {
7103                                                 pending_msg_events.push(events::MessageSendEvent::SendChannelReestablish {
7104                                                         node_id: chan.context.get_counterparty_node_id(),
7105                                                         msg: chan.get_channel_reestablish(&self.logger),
7106                                                 });
7107                                                 true
7108                                         }
7109                                 } else { true };
7110                                 if retain && chan.context.get_counterparty_node_id() != *counterparty_node_id {
7111                                         if let Some(msg) = chan.get_signed_channel_announcement(&self.node_signer, self.genesis_hash.clone(), self.best_block.read().unwrap().height(), &self.default_configuration) {
7112                                                 if let Ok(update_msg) = self.get_channel_update_for_broadcast(chan) {
7113                                                         pending_msg_events.push(events::MessageSendEvent::SendChannelAnnouncement {
7114                                                                 node_id: *counterparty_node_id,
7115                                                                 msg, update_msg,
7116                                                         });
7117                                                 }
7118                                         }
7119                                 }
7120                                 retain
7121                         });
7122                 }
7123                 //TODO: Also re-broadcast announcement_signatures
7124                 Ok(())
7125         }
7126
7127         fn handle_error(&self, counterparty_node_id: &PublicKey, msg: &msgs::ErrorMessage) {
7128                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7129
7130                 if msg.channel_id == [0; 32] {
7131                         let channel_ids: Vec<[u8; 32]> = {
7132                                 let per_peer_state = self.per_peer_state.read().unwrap();
7133                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
7134                                 if peer_state_mutex_opt.is_none() { return; }
7135                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
7136                                 let peer_state = &mut *peer_state_lock;
7137                                 peer_state.channel_by_id.keys().cloned()
7138                                         .chain(peer_state.outbound_v1_channel_by_id.keys().cloned())
7139                                         .chain(peer_state.inbound_v1_channel_by_id.keys().cloned()).collect()
7140                         };
7141                         for channel_id in channel_ids {
7142                                 // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
7143                                 let _ = self.force_close_channel_with_peer(&channel_id, counterparty_node_id, Some(&msg.data), true);
7144                         }
7145                 } else {
7146                         {
7147                                 // First check if we can advance the channel type and try again.
7148                                 let per_peer_state = self.per_peer_state.read().unwrap();
7149                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
7150                                 if peer_state_mutex_opt.is_none() { return; }
7151                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
7152                                 let peer_state = &mut *peer_state_lock;
7153                                 if let Some(chan) = peer_state.outbound_v1_channel_by_id.get_mut(&msg.channel_id) {
7154                                         if let Ok(msg) = chan.maybe_handle_error_without_close(self.genesis_hash) {
7155                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
7156                                                         node_id: *counterparty_node_id,
7157                                                         msg,
7158                                                 });
7159                                                 return;
7160                                         }
7161                                 }
7162                         }
7163
7164                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
7165                         let _ = self.force_close_channel_with_peer(&msg.channel_id, counterparty_node_id, Some(&msg.data), true);
7166                 }
7167         }
7168
7169         fn provided_node_features(&self) -> NodeFeatures {
7170                 provided_node_features(&self.default_configuration)
7171         }
7172
7173         fn provided_init_features(&self, _their_init_features: &PublicKey) -> InitFeatures {
7174                 provided_init_features(&self.default_configuration)
7175         }
7176
7177         fn get_genesis_hashes(&self) -> Option<Vec<ChainHash>> {
7178                 Some(vec![ChainHash::from(&self.genesis_hash[..])])
7179         }
7180
7181         fn handle_tx_add_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddInput) {
7182                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7183                         "Dual-funded channels not supported".to_owned(),
7184                          msg.channel_id.clone())), *counterparty_node_id);
7185         }
7186
7187         fn handle_tx_add_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddOutput) {
7188                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7189                         "Dual-funded channels not supported".to_owned(),
7190                          msg.channel_id.clone())), *counterparty_node_id);
7191         }
7192
7193         fn handle_tx_remove_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveInput) {
7194                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7195                         "Dual-funded channels not supported".to_owned(),
7196                          msg.channel_id.clone())), *counterparty_node_id);
7197         }
7198
7199         fn handle_tx_remove_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveOutput) {
7200                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7201                         "Dual-funded channels not supported".to_owned(),
7202                          msg.channel_id.clone())), *counterparty_node_id);
7203         }
7204
7205         fn handle_tx_complete(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxComplete) {
7206                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7207                         "Dual-funded channels not supported".to_owned(),
7208                          msg.channel_id.clone())), *counterparty_node_id);
7209         }
7210
7211         fn handle_tx_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxSignatures) {
7212                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7213                         "Dual-funded channels not supported".to_owned(),
7214                          msg.channel_id.clone())), *counterparty_node_id);
7215         }
7216
7217         fn handle_tx_init_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxInitRbf) {
7218                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7219                         "Dual-funded channels not supported".to_owned(),
7220                          msg.channel_id.clone())), *counterparty_node_id);
7221         }
7222
7223         fn handle_tx_ack_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAckRbf) {
7224                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7225                         "Dual-funded channels not supported".to_owned(),
7226                          msg.channel_id.clone())), *counterparty_node_id);
7227         }
7228
7229         fn handle_tx_abort(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAbort) {
7230                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7231                         "Dual-funded channels not supported".to_owned(),
7232                          msg.channel_id.clone())), *counterparty_node_id);
7233         }
7234 }
7235
7236 /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
7237 /// [`ChannelManager`].
7238 pub(crate) fn provided_node_features(config: &UserConfig) -> NodeFeatures {
7239         provided_init_features(config).to_context()
7240 }
7241
7242 /// Fetches the set of [`InvoiceFeatures`] flags which are provided by or required by
7243 /// [`ChannelManager`].
7244 ///
7245 /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
7246 /// or not. Thus, this method is not public.
7247 #[cfg(any(feature = "_test_utils", test))]
7248 pub(crate) fn provided_invoice_features(config: &UserConfig) -> InvoiceFeatures {
7249         provided_init_features(config).to_context()
7250 }
7251
7252 /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
7253 /// [`ChannelManager`].
7254 pub(crate) fn provided_channel_features(config: &UserConfig) -> ChannelFeatures {
7255         provided_init_features(config).to_context()
7256 }
7257
7258 /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
7259 /// [`ChannelManager`].
7260 pub(crate) fn provided_channel_type_features(config: &UserConfig) -> ChannelTypeFeatures {
7261         ChannelTypeFeatures::from_init(&provided_init_features(config))
7262 }
7263
7264 /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
7265 /// [`ChannelManager`].
7266 pub fn provided_init_features(_config: &UserConfig) -> InitFeatures {
7267         // Note that if new features are added here which other peers may (eventually) require, we
7268         // should also add the corresponding (optional) bit to the [`ChannelMessageHandler`] impl for
7269         // [`ErroringMessageHandler`].
7270         let mut features = InitFeatures::empty();
7271         features.set_data_loss_protect_required();
7272         features.set_upfront_shutdown_script_optional();
7273         features.set_variable_length_onion_required();
7274         features.set_static_remote_key_required();
7275         features.set_payment_secret_required();
7276         features.set_basic_mpp_optional();
7277         features.set_wumbo_optional();
7278         features.set_shutdown_any_segwit_optional();
7279         features.set_channel_type_optional();
7280         features.set_scid_privacy_optional();
7281         features.set_zero_conf_optional();
7282         #[cfg(anchors)]
7283         { // Attributes are not allowed on if expressions on our current MSRV of 1.41.
7284                 if _config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx {
7285                         features.set_anchors_zero_fee_htlc_tx_optional();
7286                 }
7287         }
7288         features
7289 }
7290
7291 const SERIALIZATION_VERSION: u8 = 1;
7292 const MIN_SERIALIZATION_VERSION: u8 = 1;
7293
7294 impl_writeable_tlv_based!(CounterpartyForwardingInfo, {
7295         (2, fee_base_msat, required),
7296         (4, fee_proportional_millionths, required),
7297         (6, cltv_expiry_delta, required),
7298 });
7299
7300 impl_writeable_tlv_based!(ChannelCounterparty, {
7301         (2, node_id, required),
7302         (4, features, required),
7303         (6, unspendable_punishment_reserve, required),
7304         (8, forwarding_info, option),
7305         (9, outbound_htlc_minimum_msat, option),
7306         (11, outbound_htlc_maximum_msat, option),
7307 });
7308
7309 impl Writeable for ChannelDetails {
7310         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
7311                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
7312                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
7313                 let user_channel_id_low = self.user_channel_id as u64;
7314                 let user_channel_id_high_opt = Some((self.user_channel_id >> 64) as u64);
7315                 write_tlv_fields!(writer, {
7316                         (1, self.inbound_scid_alias, option),
7317                         (2, self.channel_id, required),
7318                         (3, self.channel_type, option),
7319                         (4, self.counterparty, required),
7320                         (5, self.outbound_scid_alias, option),
7321                         (6, self.funding_txo, option),
7322                         (7, self.config, option),
7323                         (8, self.short_channel_id, option),
7324                         (9, self.confirmations, option),
7325                         (10, self.channel_value_satoshis, required),
7326                         (12, self.unspendable_punishment_reserve, option),
7327                         (14, user_channel_id_low, required),
7328                         (16, self.balance_msat, required),
7329                         (18, self.outbound_capacity_msat, required),
7330                         (19, self.next_outbound_htlc_limit_msat, required),
7331                         (20, self.inbound_capacity_msat, required),
7332                         (21, self.next_outbound_htlc_minimum_msat, required),
7333                         (22, self.confirmations_required, option),
7334                         (24, self.force_close_spend_delay, option),
7335                         (26, self.is_outbound, required),
7336                         (28, self.is_channel_ready, required),
7337                         (30, self.is_usable, required),
7338                         (32, self.is_public, required),
7339                         (33, self.inbound_htlc_minimum_msat, option),
7340                         (35, self.inbound_htlc_maximum_msat, option),
7341                         (37, user_channel_id_high_opt, option),
7342                         (39, self.feerate_sat_per_1000_weight, option),
7343                 });
7344                 Ok(())
7345         }
7346 }
7347
7348 impl Readable for ChannelDetails {
7349         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
7350                 _init_and_read_tlv_fields!(reader, {
7351                         (1, inbound_scid_alias, option),
7352                         (2, channel_id, required),
7353                         (3, channel_type, option),
7354                         (4, counterparty, required),
7355                         (5, outbound_scid_alias, option),
7356                         (6, funding_txo, option),
7357                         (7, config, option),
7358                         (8, short_channel_id, option),
7359                         (9, confirmations, option),
7360                         (10, channel_value_satoshis, required),
7361                         (12, unspendable_punishment_reserve, option),
7362                         (14, user_channel_id_low, required),
7363                         (16, balance_msat, required),
7364                         (18, outbound_capacity_msat, required),
7365                         // Note that by the time we get past the required read above, outbound_capacity_msat will be
7366                         // filled in, so we can safely unwrap it here.
7367                         (19, next_outbound_htlc_limit_msat, (default_value, outbound_capacity_msat.0.unwrap() as u64)),
7368                         (20, inbound_capacity_msat, required),
7369                         (21, next_outbound_htlc_minimum_msat, (default_value, 0)),
7370                         (22, confirmations_required, option),
7371                         (24, force_close_spend_delay, option),
7372                         (26, is_outbound, required),
7373                         (28, is_channel_ready, required),
7374                         (30, is_usable, required),
7375                         (32, is_public, required),
7376                         (33, inbound_htlc_minimum_msat, option),
7377                         (35, inbound_htlc_maximum_msat, option),
7378                         (37, user_channel_id_high_opt, option),
7379                         (39, feerate_sat_per_1000_weight, option),
7380                 });
7381
7382                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
7383                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
7384                 let user_channel_id_low: u64 = user_channel_id_low.0.unwrap();
7385                 let user_channel_id = user_channel_id_low as u128 +
7386                         ((user_channel_id_high_opt.unwrap_or(0 as u64) as u128) << 64);
7387
7388                 Ok(Self {
7389                         inbound_scid_alias,
7390                         channel_id: channel_id.0.unwrap(),
7391                         channel_type,
7392                         counterparty: counterparty.0.unwrap(),
7393                         outbound_scid_alias,
7394                         funding_txo,
7395                         config,
7396                         short_channel_id,
7397                         channel_value_satoshis: channel_value_satoshis.0.unwrap(),
7398                         unspendable_punishment_reserve,
7399                         user_channel_id,
7400                         balance_msat: balance_msat.0.unwrap(),
7401                         outbound_capacity_msat: outbound_capacity_msat.0.unwrap(),
7402                         next_outbound_htlc_limit_msat: next_outbound_htlc_limit_msat.0.unwrap(),
7403                         next_outbound_htlc_minimum_msat: next_outbound_htlc_minimum_msat.0.unwrap(),
7404                         inbound_capacity_msat: inbound_capacity_msat.0.unwrap(),
7405                         confirmations_required,
7406                         confirmations,
7407                         force_close_spend_delay,
7408                         is_outbound: is_outbound.0.unwrap(),
7409                         is_channel_ready: is_channel_ready.0.unwrap(),
7410                         is_usable: is_usable.0.unwrap(),
7411                         is_public: is_public.0.unwrap(),
7412                         inbound_htlc_minimum_msat,
7413                         inbound_htlc_maximum_msat,
7414                         feerate_sat_per_1000_weight,
7415                 })
7416         }
7417 }
7418
7419 impl_writeable_tlv_based!(PhantomRouteHints, {
7420         (2, channels, vec_type),
7421         (4, phantom_scid, required),
7422         (6, real_node_pubkey, required),
7423 });
7424
7425 impl_writeable_tlv_based_enum!(PendingHTLCRouting,
7426         (0, Forward) => {
7427                 (0, onion_packet, required),
7428                 (2, short_channel_id, required),
7429         },
7430         (1, Receive) => {
7431                 (0, payment_data, required),
7432                 (1, phantom_shared_secret, option),
7433                 (2, incoming_cltv_expiry, required),
7434                 (3, payment_metadata, option),
7435         },
7436         (2, ReceiveKeysend) => {
7437                 (0, payment_preimage, required),
7438                 (2, incoming_cltv_expiry, required),
7439                 (3, payment_metadata, option),
7440                 (4, payment_data, option), // Added in 0.0.116
7441         },
7442 ;);
7443
7444 impl_writeable_tlv_based!(PendingHTLCInfo, {
7445         (0, routing, required),
7446         (2, incoming_shared_secret, required),
7447         (4, payment_hash, required),
7448         (6, outgoing_amt_msat, required),
7449         (8, outgoing_cltv_value, required),
7450         (9, incoming_amt_msat, option),
7451 });
7452
7453
7454 impl Writeable for HTLCFailureMsg {
7455         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
7456                 match self {
7457                         HTLCFailureMsg::Relay(msgs::UpdateFailHTLC { channel_id, htlc_id, reason }) => {
7458                                 0u8.write(writer)?;
7459                                 channel_id.write(writer)?;
7460                                 htlc_id.write(writer)?;
7461                                 reason.write(writer)?;
7462                         },
7463                         HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
7464                                 channel_id, htlc_id, sha256_of_onion, failure_code
7465                         }) => {
7466                                 1u8.write(writer)?;
7467                                 channel_id.write(writer)?;
7468                                 htlc_id.write(writer)?;
7469                                 sha256_of_onion.write(writer)?;
7470                                 failure_code.write(writer)?;
7471                         },
7472                 }
7473                 Ok(())
7474         }
7475 }
7476
7477 impl Readable for HTLCFailureMsg {
7478         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
7479                 let id: u8 = Readable::read(reader)?;
7480                 match id {
7481                         0 => {
7482                                 Ok(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
7483                                         channel_id: Readable::read(reader)?,
7484                                         htlc_id: Readable::read(reader)?,
7485                                         reason: Readable::read(reader)?,
7486                                 }))
7487                         },
7488                         1 => {
7489                                 Ok(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
7490                                         channel_id: Readable::read(reader)?,
7491                                         htlc_id: Readable::read(reader)?,
7492                                         sha256_of_onion: Readable::read(reader)?,
7493                                         failure_code: Readable::read(reader)?,
7494                                 }))
7495                         },
7496                         // In versions prior to 0.0.101, HTLCFailureMsg objects were written with type 0 or 1 but
7497                         // weren't length-prefixed and thus didn't support reading the TLV stream suffix of the network
7498                         // messages contained in the variants.
7499                         // In version 0.0.101, support for reading the variants with these types was added, and
7500                         // we should migrate to writing these variants when UpdateFailHTLC or
7501                         // UpdateFailMalformedHTLC get TLV fields.
7502                         2 => {
7503                                 let length: BigSize = Readable::read(reader)?;
7504                                 let mut s = FixedLengthReader::new(reader, length.0);
7505                                 let res = Readable::read(&mut s)?;
7506                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
7507                                 Ok(HTLCFailureMsg::Relay(res))
7508                         },
7509                         3 => {
7510                                 let length: BigSize = Readable::read(reader)?;
7511                                 let mut s = FixedLengthReader::new(reader, length.0);
7512                                 let res = Readable::read(&mut s)?;
7513                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
7514                                 Ok(HTLCFailureMsg::Malformed(res))
7515                         },
7516                         _ => Err(DecodeError::UnknownRequiredFeature),
7517                 }
7518         }
7519 }
7520
7521 impl_writeable_tlv_based_enum!(PendingHTLCStatus, ;
7522         (0, Forward),
7523         (1, Fail),
7524 );
7525
7526 impl_writeable_tlv_based!(HTLCPreviousHopData, {
7527         (0, short_channel_id, required),
7528         (1, phantom_shared_secret, option),
7529         (2, outpoint, required),
7530         (4, htlc_id, required),
7531         (6, incoming_packet_shared_secret, required)
7532 });
7533
7534 impl Writeable for ClaimableHTLC {
7535         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
7536                 let (payment_data, keysend_preimage) = match &self.onion_payload {
7537                         OnionPayload::Invoice { _legacy_hop_data } => (_legacy_hop_data.as_ref(), None),
7538                         OnionPayload::Spontaneous(preimage) => (None, Some(preimage)),
7539                 };
7540                 write_tlv_fields!(writer, {
7541                         (0, self.prev_hop, required),
7542                         (1, self.total_msat, required),
7543                         (2, self.value, required),
7544                         (3, self.sender_intended_value, required),
7545                         (4, payment_data, option),
7546                         (5, self.total_value_received, option),
7547                         (6, self.cltv_expiry, required),
7548                         (8, keysend_preimage, option),
7549                 });
7550                 Ok(())
7551         }
7552 }
7553
7554 impl Readable for ClaimableHTLC {
7555         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
7556                 let mut prev_hop = crate::util::ser::RequiredWrapper(None);
7557                 let mut value = 0;
7558                 let mut sender_intended_value = None;
7559                 let mut payment_data: Option<msgs::FinalOnionHopData> = None;
7560                 let mut cltv_expiry = 0;
7561                 let mut total_value_received = None;
7562                 let mut total_msat = None;
7563                 let mut keysend_preimage: Option<PaymentPreimage> = None;
7564                 read_tlv_fields!(reader, {
7565                         (0, prev_hop, required),
7566                         (1, total_msat, option),
7567                         (2, value, required),
7568                         (3, sender_intended_value, option),
7569                         (4, payment_data, option),
7570                         (5, total_value_received, option),
7571                         (6, cltv_expiry, required),
7572                         (8, keysend_preimage, option)
7573                 });
7574                 let onion_payload = match keysend_preimage {
7575                         Some(p) => {
7576                                 if payment_data.is_some() {
7577                                         return Err(DecodeError::InvalidValue)
7578                                 }
7579                                 if total_msat.is_none() {
7580                                         total_msat = Some(value);
7581                                 }
7582                                 OnionPayload::Spontaneous(p)
7583                         },
7584                         None => {
7585                                 if total_msat.is_none() {
7586                                         if payment_data.is_none() {
7587                                                 return Err(DecodeError::InvalidValue)
7588                                         }
7589                                         total_msat = Some(payment_data.as_ref().unwrap().total_msat);
7590                                 }
7591                                 OnionPayload::Invoice { _legacy_hop_data: payment_data }
7592                         },
7593                 };
7594                 Ok(Self {
7595                         prev_hop: prev_hop.0.unwrap(),
7596                         timer_ticks: 0,
7597                         value,
7598                         sender_intended_value: sender_intended_value.unwrap_or(value),
7599                         total_value_received,
7600                         total_msat: total_msat.unwrap(),
7601                         onion_payload,
7602                         cltv_expiry,
7603                 })
7604         }
7605 }
7606
7607 impl Readable for HTLCSource {
7608         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
7609                 let id: u8 = Readable::read(reader)?;
7610                 match id {
7611                         0 => {
7612                                 let mut session_priv: crate::util::ser::RequiredWrapper<SecretKey> = crate::util::ser::RequiredWrapper(None);
7613                                 let mut first_hop_htlc_msat: u64 = 0;
7614                                 let mut path_hops: Option<Vec<RouteHop>> = Some(Vec::new());
7615                                 let mut payment_id = None;
7616                                 let mut payment_params: Option<PaymentParameters> = None;
7617                                 let mut blinded_tail: Option<BlindedTail> = None;
7618                                 read_tlv_fields!(reader, {
7619                                         (0, session_priv, required),
7620                                         (1, payment_id, option),
7621                                         (2, first_hop_htlc_msat, required),
7622                                         (4, path_hops, vec_type),
7623                                         (5, payment_params, (option: ReadableArgs, 0)),
7624                                         (6, blinded_tail, option),
7625                                 });
7626                                 if payment_id.is_none() {
7627                                         // For backwards compat, if there was no payment_id written, use the session_priv bytes
7628                                         // instead.
7629                                         payment_id = Some(PaymentId(*session_priv.0.unwrap().as_ref()));
7630                                 }
7631                                 let path = Path { hops: path_hops.ok_or(DecodeError::InvalidValue)?, blinded_tail };
7632                                 if path.hops.len() == 0 {
7633                                         return Err(DecodeError::InvalidValue);
7634                                 }
7635                                 if let Some(params) = payment_params.as_mut() {
7636                                         if let Payee::Clear { ref mut final_cltv_expiry_delta, .. } = params.payee {
7637                                                 if final_cltv_expiry_delta == &0 {
7638                                                         *final_cltv_expiry_delta = path.final_cltv_expiry_delta().ok_or(DecodeError::InvalidValue)?;
7639                                                 }
7640                                         }
7641                                 }
7642                                 Ok(HTLCSource::OutboundRoute {
7643                                         session_priv: session_priv.0.unwrap(),
7644                                         first_hop_htlc_msat,
7645                                         path,
7646                                         payment_id: payment_id.unwrap(),
7647                                 })
7648                         }
7649                         1 => Ok(HTLCSource::PreviousHopData(Readable::read(reader)?)),
7650                         _ => Err(DecodeError::UnknownRequiredFeature),
7651                 }
7652         }
7653 }
7654
7655 impl Writeable for HTLCSource {
7656         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), crate::io::Error> {
7657                 match self {
7658                         HTLCSource::OutboundRoute { ref session_priv, ref first_hop_htlc_msat, ref path, payment_id } => {
7659                                 0u8.write(writer)?;
7660                                 let payment_id_opt = Some(payment_id);
7661                                 write_tlv_fields!(writer, {
7662                                         (0, session_priv, required),
7663                                         (1, payment_id_opt, option),
7664                                         (2, first_hop_htlc_msat, required),
7665                                         // 3 was previously used to write a PaymentSecret for the payment.
7666                                         (4, path.hops, vec_type),
7667                                         (5, None::<PaymentParameters>, option), // payment_params in LDK versions prior to 0.0.115
7668                                         (6, path.blinded_tail, option),
7669                                  });
7670                         }
7671                         HTLCSource::PreviousHopData(ref field) => {
7672                                 1u8.write(writer)?;
7673                                 field.write(writer)?;
7674                         }
7675                 }
7676                 Ok(())
7677         }
7678 }
7679
7680 impl_writeable_tlv_based!(PendingAddHTLCInfo, {
7681         (0, forward_info, required),
7682         (1, prev_user_channel_id, (default_value, 0)),
7683         (2, prev_short_channel_id, required),
7684         (4, prev_htlc_id, required),
7685         (6, prev_funding_outpoint, required),
7686 });
7687
7688 impl_writeable_tlv_based_enum!(HTLCForwardInfo,
7689         (1, FailHTLC) => {
7690                 (0, htlc_id, required),
7691                 (2, err_packet, required),
7692         };
7693         (0, AddHTLC)
7694 );
7695
7696 impl_writeable_tlv_based!(PendingInboundPayment, {
7697         (0, payment_secret, required),
7698         (2, expiry_time, required),
7699         (4, user_payment_id, required),
7700         (6, payment_preimage, required),
7701         (8, min_value_msat, required),
7702 });
7703
7704 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>
7705 where
7706         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7707         T::Target: BroadcasterInterface,
7708         ES::Target: EntropySource,
7709         NS::Target: NodeSigner,
7710         SP::Target: SignerProvider,
7711         F::Target: FeeEstimator,
7712         R::Target: Router,
7713         L::Target: Logger,
7714 {
7715         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
7716                 let _consistency_lock = self.total_consistency_lock.write().unwrap();
7717
7718                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
7719
7720                 self.genesis_hash.write(writer)?;
7721                 {
7722                         let best_block = self.best_block.read().unwrap();
7723                         best_block.height().write(writer)?;
7724                         best_block.block_hash().write(writer)?;
7725                 }
7726
7727                 let mut serializable_peer_count: u64 = 0;
7728                 {
7729                         let per_peer_state = self.per_peer_state.read().unwrap();
7730                         let mut unfunded_channels = 0;
7731                         let mut number_of_channels = 0;
7732                         for (_, peer_state_mutex) in per_peer_state.iter() {
7733                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7734                                 let peer_state = &mut *peer_state_lock;
7735                                 if !peer_state.ok_to_remove(false) {
7736                                         serializable_peer_count += 1;
7737                                 }
7738                                 number_of_channels += peer_state.channel_by_id.len();
7739                                 for (_, channel) in peer_state.channel_by_id.iter() {
7740                                         if !channel.context.is_funding_initiated() {
7741                                                 unfunded_channels += 1;
7742                                         }
7743                                 }
7744                         }
7745
7746                         ((number_of_channels - unfunded_channels) as u64).write(writer)?;
7747
7748                         for (_, peer_state_mutex) in per_peer_state.iter() {
7749                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7750                                 let peer_state = &mut *peer_state_lock;
7751                                 for (_, channel) in peer_state.channel_by_id.iter() {
7752                                         if channel.context.is_funding_initiated() {
7753                                                 channel.write(writer)?;
7754                                         }
7755                                 }
7756                         }
7757                 }
7758
7759                 {
7760                         let forward_htlcs = self.forward_htlcs.lock().unwrap();
7761                         (forward_htlcs.len() as u64).write(writer)?;
7762                         for (short_channel_id, pending_forwards) in forward_htlcs.iter() {
7763                                 short_channel_id.write(writer)?;
7764                                 (pending_forwards.len() as u64).write(writer)?;
7765                                 for forward in pending_forwards {
7766                                         forward.write(writer)?;
7767                                 }
7768                         }
7769                 }
7770
7771                 let per_peer_state = self.per_peer_state.write().unwrap();
7772
7773                 let pending_inbound_payments = self.pending_inbound_payments.lock().unwrap();
7774                 let claimable_payments = self.claimable_payments.lock().unwrap();
7775                 let pending_outbound_payments = self.pending_outbound_payments.pending_outbound_payments.lock().unwrap();
7776
7777                 let mut htlc_purposes: Vec<&events::PaymentPurpose> = Vec::new();
7778                 let mut htlc_onion_fields: Vec<&_> = Vec::new();
7779                 (claimable_payments.claimable_payments.len() as u64).write(writer)?;
7780                 for (payment_hash, payment) in claimable_payments.claimable_payments.iter() {
7781                         payment_hash.write(writer)?;
7782                         (payment.htlcs.len() as u64).write(writer)?;
7783                         for htlc in payment.htlcs.iter() {
7784                                 htlc.write(writer)?;
7785                         }
7786                         htlc_purposes.push(&payment.purpose);
7787                         htlc_onion_fields.push(&payment.onion_fields);
7788                 }
7789
7790                 let mut monitor_update_blocked_actions_per_peer = None;
7791                 let mut peer_states = Vec::new();
7792                 for (_, peer_state_mutex) in per_peer_state.iter() {
7793                         // Because we're holding the owning `per_peer_state` write lock here there's no chance
7794                         // of a lockorder violation deadlock - no other thread can be holding any
7795                         // per_peer_state lock at all.
7796                         peer_states.push(peer_state_mutex.unsafe_well_ordered_double_lock_self());
7797                 }
7798
7799                 (serializable_peer_count).write(writer)?;
7800                 for ((peer_pubkey, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
7801                         // Peers which we have no channels to should be dropped once disconnected. As we
7802                         // disconnect all peers when shutting down and serializing the ChannelManager, we
7803                         // consider all peers as disconnected here. There's therefore no need write peers with
7804                         // no channels.
7805                         if !peer_state.ok_to_remove(false) {
7806                                 peer_pubkey.write(writer)?;
7807                                 peer_state.latest_features.write(writer)?;
7808                                 if !peer_state.monitor_update_blocked_actions.is_empty() {
7809                                         monitor_update_blocked_actions_per_peer
7810                                                 .get_or_insert_with(Vec::new)
7811                                                 .push((*peer_pubkey, &peer_state.monitor_update_blocked_actions));
7812                                 }
7813                         }
7814                 }
7815
7816                 let events = self.pending_events.lock().unwrap();
7817                 // LDK versions prior to 0.0.115 don't support post-event actions, thus if there's no
7818                 // actions at all, skip writing the required TLV. Otherwise, pre-0.0.115 versions will
7819                 // refuse to read the new ChannelManager.
7820                 let events_not_backwards_compatible = events.iter().any(|(_, action)| action.is_some());
7821                 if events_not_backwards_compatible {
7822                         // If we're gonna write a even TLV that will overwrite our events anyway we might as
7823                         // well save the space and not write any events here.
7824                         0u64.write(writer)?;
7825                 } else {
7826                         (events.len() as u64).write(writer)?;
7827                         for (event, _) in events.iter() {
7828                                 event.write(writer)?;
7829                         }
7830                 }
7831
7832                 // LDK versions prior to 0.0.116 wrote the `pending_background_events`
7833                 // `MonitorUpdateRegeneratedOnStartup`s here, however there was never a reason to do so -
7834                 // the closing monitor updates were always effectively replayed on startup (either directly
7835                 // by calling `broadcast_latest_holder_commitment_txn` on a `ChannelMonitor` during
7836                 // deserialization or, in 0.0.115, by regenerating the monitor update itself).
7837                 0u64.write(writer)?;
7838
7839                 // Prior to 0.0.111 we tracked node_announcement serials here, however that now happens in
7840                 // `PeerManager`, and thus we simply write the `highest_seen_timestamp` twice, which is
7841                 // likely to be identical.
7842                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
7843                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
7844
7845                 (pending_inbound_payments.len() as u64).write(writer)?;
7846                 for (hash, pending_payment) in pending_inbound_payments.iter() {
7847                         hash.write(writer)?;
7848                         pending_payment.write(writer)?;
7849                 }
7850
7851                 // For backwards compat, write the session privs and their total length.
7852                 let mut num_pending_outbounds_compat: u64 = 0;
7853                 for (_, outbound) in pending_outbound_payments.iter() {
7854                         if !outbound.is_fulfilled() && !outbound.abandoned() {
7855                                 num_pending_outbounds_compat += outbound.remaining_parts() as u64;
7856                         }
7857                 }
7858                 num_pending_outbounds_compat.write(writer)?;
7859                 for (_, outbound) in pending_outbound_payments.iter() {
7860                         match outbound {
7861                                 PendingOutboundPayment::Legacy { session_privs } |
7862                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
7863                                         for session_priv in session_privs.iter() {
7864                                                 session_priv.write(writer)?;
7865                                         }
7866                                 }
7867                                 PendingOutboundPayment::Fulfilled { .. } => {},
7868                                 PendingOutboundPayment::Abandoned { .. } => {},
7869                         }
7870                 }
7871
7872                 // Encode without retry info for 0.0.101 compatibility.
7873                 let mut pending_outbound_payments_no_retry: HashMap<PaymentId, HashSet<[u8; 32]>> = HashMap::new();
7874                 for (id, outbound) in pending_outbound_payments.iter() {
7875                         match outbound {
7876                                 PendingOutboundPayment::Legacy { session_privs } |
7877                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
7878                                         pending_outbound_payments_no_retry.insert(*id, session_privs.clone());
7879                                 },
7880                                 _ => {},
7881                         }
7882                 }
7883
7884                 let mut pending_intercepted_htlcs = None;
7885                 let our_pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
7886                 if our_pending_intercepts.len() != 0 {
7887                         pending_intercepted_htlcs = Some(our_pending_intercepts);
7888                 }
7889
7890                 let mut pending_claiming_payments = Some(&claimable_payments.pending_claiming_payments);
7891                 if pending_claiming_payments.as_ref().unwrap().is_empty() {
7892                         // LDK versions prior to 0.0.113 do not know how to read the pending claimed payments
7893                         // map. Thus, if there are no entries we skip writing a TLV for it.
7894                         pending_claiming_payments = None;
7895                 }
7896
7897                 write_tlv_fields!(writer, {
7898                         (1, pending_outbound_payments_no_retry, required),
7899                         (2, pending_intercepted_htlcs, option),
7900                         (3, pending_outbound_payments, required),
7901                         (4, pending_claiming_payments, option),
7902                         (5, self.our_network_pubkey, required),
7903                         (6, monitor_update_blocked_actions_per_peer, option),
7904                         (7, self.fake_scid_rand_bytes, required),
7905                         (8, if events_not_backwards_compatible { Some(&*events) } else { None }, option),
7906                         (9, htlc_purposes, vec_type),
7907                         (11, self.probing_cookie_secret, required),
7908                         (13, htlc_onion_fields, optional_vec),
7909                 });
7910
7911                 Ok(())
7912         }
7913 }
7914
7915 impl Writeable for VecDeque<(Event, Option<EventCompletionAction>)> {
7916         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
7917                 (self.len() as u64).write(w)?;
7918                 for (event, action) in self.iter() {
7919                         event.write(w)?;
7920                         action.write(w)?;
7921                         #[cfg(debug_assertions)] {
7922                                 // Events are MaybeReadable, in some cases indicating that they shouldn't actually
7923                                 // be persisted and are regenerated on restart. However, if such an event has a
7924                                 // post-event-handling action we'll write nothing for the event and would have to
7925                                 // either forget the action or fail on deserialization (which we do below). Thus,
7926                                 // check that the event is sane here.
7927                                 let event_encoded = event.encode();
7928                                 let event_read: Option<Event> =
7929                                         MaybeReadable::read(&mut &event_encoded[..]).unwrap();
7930                                 if action.is_some() { assert!(event_read.is_some()); }
7931                         }
7932                 }
7933                 Ok(())
7934         }
7935 }
7936 impl Readable for VecDeque<(Event, Option<EventCompletionAction>)> {
7937         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
7938                 let len: u64 = Readable::read(reader)?;
7939                 const MAX_ALLOC_SIZE: u64 = 1024 * 16;
7940                 let mut events: Self = VecDeque::with_capacity(cmp::min(
7941                         MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>() as u64,
7942                         len) as usize);
7943                 for _ in 0..len {
7944                         let ev_opt = MaybeReadable::read(reader)?;
7945                         let action = Readable::read(reader)?;
7946                         if let Some(ev) = ev_opt {
7947                                 events.push_back((ev, action));
7948                         } else if action.is_some() {
7949                                 return Err(DecodeError::InvalidValue);
7950                         }
7951                 }
7952                 Ok(events)
7953         }
7954 }
7955
7956 /// Arguments for the creation of a ChannelManager that are not deserialized.
7957 ///
7958 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
7959 /// is:
7960 /// 1) Deserialize all stored [`ChannelMonitor`]s.
7961 /// 2) Deserialize the [`ChannelManager`] by filling in this struct and calling:
7962 ///    `<(BlockHash, ChannelManager)>::read(reader, args)`
7963 ///    This may result in closing some channels if the [`ChannelMonitor`] is newer than the stored
7964 ///    [`ChannelManager`] state to ensure no loss of funds. Thus, transactions may be broadcasted.
7965 /// 3) If you are not fetching full blocks, register all relevant [`ChannelMonitor`] outpoints the
7966 ///    same way you would handle a [`chain::Filter`] call using
7967 ///    [`ChannelMonitor::get_outputs_to_watch`] and [`ChannelMonitor::get_funding_txo`].
7968 /// 4) Reconnect blocks on your [`ChannelMonitor`]s.
7969 /// 5) Disconnect/connect blocks on the [`ChannelManager`].
7970 /// 6) Re-persist the [`ChannelMonitor`]s to ensure the latest state is on disk.
7971 ///    Note that if you're using a [`ChainMonitor`] for your [`chain::Watch`] implementation, you
7972 ///    will likely accomplish this as a side-effect of calling [`chain::Watch::watch_channel`] in
7973 ///    the next step.
7974 /// 7) Move the [`ChannelMonitor`]s into your local [`chain::Watch`]. If you're using a
7975 ///    [`ChainMonitor`], this is done by calling [`chain::Watch::watch_channel`].
7976 ///
7977 /// Note that the ordering of #4-7 is not of importance, however all four must occur before you
7978 /// call any other methods on the newly-deserialized [`ChannelManager`].
7979 ///
7980 /// Note that because some channels may be closed during deserialization, it is critical that you
7981 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
7982 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
7983 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
7984 /// not force-close the same channels but consider them live), you may end up revoking a state for
7985 /// which you've already broadcasted the transaction.
7986 ///
7987 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
7988 pub struct ChannelManagerReadArgs<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
7989 where
7990         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7991         T::Target: BroadcasterInterface,
7992         ES::Target: EntropySource,
7993         NS::Target: NodeSigner,
7994         SP::Target: SignerProvider,
7995         F::Target: FeeEstimator,
7996         R::Target: Router,
7997         L::Target: Logger,
7998 {
7999         /// A cryptographically secure source of entropy.
8000         pub entropy_source: ES,
8001
8002         /// A signer that is able to perform node-scoped cryptographic operations.
8003         pub node_signer: NS,
8004
8005         /// The keys provider which will give us relevant keys. Some keys will be loaded during
8006         /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
8007         /// signing data.
8008         pub signer_provider: SP,
8009
8010         /// The fee_estimator for use in the ChannelManager in the future.
8011         ///
8012         /// No calls to the FeeEstimator will be made during deserialization.
8013         pub fee_estimator: F,
8014         /// The chain::Watch for use in the ChannelManager in the future.
8015         ///
8016         /// No calls to the chain::Watch will be made during deserialization. It is assumed that
8017         /// you have deserialized ChannelMonitors separately and will add them to your
8018         /// chain::Watch after deserializing this ChannelManager.
8019         pub chain_monitor: M,
8020
8021         /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
8022         /// used to broadcast the latest local commitment transactions of channels which must be
8023         /// force-closed during deserialization.
8024         pub tx_broadcaster: T,
8025         /// The router which will be used in the ChannelManager in the future for finding routes
8026         /// on-the-fly for trampoline payments. Absent in private nodes that don't support forwarding.
8027         ///
8028         /// No calls to the router will be made during deserialization.
8029         pub router: R,
8030         /// The Logger for use in the ChannelManager and which may be used to log information during
8031         /// deserialization.
8032         pub logger: L,
8033         /// Default settings used for new channels. Any existing channels will continue to use the
8034         /// runtime settings which were stored when the ChannelManager was serialized.
8035         pub default_config: UserConfig,
8036
8037         /// A map from channel funding outpoints to ChannelMonitors for those channels (ie
8038         /// value.context.get_funding_txo() should be the key).
8039         ///
8040         /// If a monitor is inconsistent with the channel state during deserialization the channel will
8041         /// be force-closed using the data in the ChannelMonitor and the channel will be dropped. This
8042         /// is true for missing channels as well. If there is a monitor missing for which we find
8043         /// channel data Err(DecodeError::InvalidValue) will be returned.
8044         ///
8045         /// In such cases the latest local transactions will be sent to the tx_broadcaster included in
8046         /// this struct.
8047         ///
8048         /// This is not exported to bindings users because we have no HashMap bindings
8049         pub channel_monitors: HashMap<OutPoint, &'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>,
8050 }
8051
8052 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8053                 ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>
8054 where
8055         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8056         T::Target: BroadcasterInterface,
8057         ES::Target: EntropySource,
8058         NS::Target: NodeSigner,
8059         SP::Target: SignerProvider,
8060         F::Target: FeeEstimator,
8061         R::Target: Router,
8062         L::Target: Logger,
8063 {
8064         /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
8065         /// HashMap for you. This is primarily useful for C bindings where it is not practical to
8066         /// populate a HashMap directly from C.
8067         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,
8068                         mut channel_monitors: Vec<&'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>) -> Self {
8069                 Self {
8070                         entropy_source, node_signer, signer_provider, fee_estimator, chain_monitor, tx_broadcaster, router, logger, default_config,
8071                         channel_monitors: channel_monitors.drain(..).map(|monitor| { (monitor.get_funding_txo().0, monitor) }).collect()
8072                 }
8073         }
8074 }
8075
8076 // Implement ReadableArgs for an Arc'd ChannelManager to make it a bit easier to work with the
8077 // SipmleArcChannelManager type:
8078 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8079         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, Arc<ChannelManager<M, T, ES, NS, SP, F, R, L>>)
8080 where
8081         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8082         T::Target: BroadcasterInterface,
8083         ES::Target: EntropySource,
8084         NS::Target: NodeSigner,
8085         SP::Target: SignerProvider,
8086         F::Target: FeeEstimator,
8087         R::Target: Router,
8088         L::Target: Logger,
8089 {
8090         fn read<Reader: io::Read>(reader: &mut Reader, args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
8091                 let (blockhash, chan_manager) = <(BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)>::read(reader, args)?;
8092                 Ok((blockhash, Arc::new(chan_manager)))
8093         }
8094 }
8095
8096 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8097         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)
8098 where
8099         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8100         T::Target: BroadcasterInterface,
8101         ES::Target: EntropySource,
8102         NS::Target: NodeSigner,
8103         SP::Target: SignerProvider,
8104         F::Target: FeeEstimator,
8105         R::Target: Router,
8106         L::Target: Logger,
8107 {
8108         fn read<Reader: io::Read>(reader: &mut Reader, mut args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
8109                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
8110
8111                 let genesis_hash: BlockHash = Readable::read(reader)?;
8112                 let best_block_height: u32 = Readable::read(reader)?;
8113                 let best_block_hash: BlockHash = Readable::read(reader)?;
8114
8115                 let mut failed_htlcs = Vec::new();
8116
8117                 let channel_count: u64 = Readable::read(reader)?;
8118                 let mut funding_txo_set = HashSet::with_capacity(cmp::min(channel_count as usize, 128));
8119                 let mut peer_channels: HashMap<PublicKey, HashMap<[u8; 32], Channel<<SP::Target as SignerProvider>::Signer>>> = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
8120                 let mut id_to_peer = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
8121                 let mut short_to_chan_info = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
8122                 let mut channel_closures = VecDeque::new();
8123                 let mut pending_background_events = Vec::new();
8124                 for _ in 0..channel_count {
8125                         let mut channel: Channel<<SP::Target as SignerProvider>::Signer> = Channel::read(reader, (
8126                                 &args.entropy_source, &args.signer_provider, best_block_height, &provided_channel_type_features(&args.default_config)
8127                         ))?;
8128                         let funding_txo = channel.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
8129                         funding_txo_set.insert(funding_txo.clone());
8130                         if let Some(ref mut monitor) = args.channel_monitors.get_mut(&funding_txo) {
8131                                 if channel.get_latest_complete_monitor_update_id() > monitor.get_latest_update_id() {
8132                                         // If the channel is ahead of the monitor, return InvalidValue:
8133                                         log_error!(args.logger, "A ChannelMonitor is stale compared to the current ChannelManager! This indicates a potentially-critical violation of the chain::Watch API!");
8134                                         log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
8135                                                 log_bytes!(channel.context.channel_id()), monitor.get_latest_update_id(), channel.get_latest_complete_monitor_update_id());
8136                                         log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
8137                                         log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
8138                                         log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
8139                                         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");
8140                                         return Err(DecodeError::InvalidValue);
8141                                 } else if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() ||
8142                                                 channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() ||
8143                                                 channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() ||
8144                                                 channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
8145                                         // But if the channel is behind of the monitor, close the channel:
8146                                         log_error!(args.logger, "A ChannelManager is stale compared to the current ChannelMonitor!");
8147                                         log_error!(args.logger, " The channel will be force-closed and the latest commitment transaction from the ChannelMonitor broadcast.");
8148                                         log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
8149                                                 log_bytes!(channel.context.channel_id()), monitor.get_latest_update_id(), channel.context.get_latest_monitor_update_id());
8150                                         let (monitor_update, mut new_failed_htlcs) = channel.context.force_shutdown(true);
8151                                         if let Some((counterparty_node_id, funding_txo, update)) = monitor_update {
8152                                                 pending_background_events.push(BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
8153                                                         counterparty_node_id, funding_txo, update
8154                                                 });
8155                                         }
8156                                         failed_htlcs.append(&mut new_failed_htlcs);
8157                                         channel_closures.push_back((events::Event::ChannelClosed {
8158                                                 channel_id: channel.context.channel_id(),
8159                                                 user_channel_id: channel.context.get_user_id(),
8160                                                 reason: ClosureReason::OutdatedChannelManager
8161                                         }, None));
8162                                         for (channel_htlc_source, payment_hash) in channel.inflight_htlc_sources() {
8163                                                 let mut found_htlc = false;
8164                                                 for (monitor_htlc_source, _) in monitor.get_all_current_outbound_htlcs() {
8165                                                         if *channel_htlc_source == monitor_htlc_source { found_htlc = true; break; }
8166                                                 }
8167                                                 if !found_htlc {
8168                                                         // If we have some HTLCs in the channel which are not present in the newer
8169                                                         // ChannelMonitor, they have been removed and should be failed back to
8170                                                         // ensure we don't forget them entirely. Note that if the missing HTLC(s)
8171                                                         // were actually claimed we'd have generated and ensured the previous-hop
8172                                                         // claim update ChannelMonitor updates were persisted prior to persising
8173                                                         // the ChannelMonitor update for the forward leg, so attempting to fail the
8174                                                         // backwards leg of the HTLC will simply be rejected.
8175                                                         log_info!(args.logger,
8176                                                                 "Failing HTLC with hash {} as it is missing in the ChannelMonitor for channel {} but was present in the (stale) ChannelManager",
8177                                                                 log_bytes!(channel.context.channel_id()), log_bytes!(payment_hash.0));
8178                                                         failed_htlcs.push((channel_htlc_source.clone(), *payment_hash, channel.context.get_counterparty_node_id(), channel.context.channel_id()));
8179                                                 }
8180                                         }
8181                                 } else {
8182                                         log_info!(args.logger, "Successfully loaded channel {} at update_id {} against monitor at update id {}",
8183                                                 log_bytes!(channel.context.channel_id()), channel.context.get_latest_monitor_update_id(),
8184                                                 monitor.get_latest_update_id());
8185                                         channel.complete_all_mon_updates_through(monitor.get_latest_update_id());
8186                                         if let Some(short_channel_id) = channel.context.get_short_channel_id() {
8187                                                 short_to_chan_info.insert(short_channel_id, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
8188                                         }
8189                                         if channel.context.is_funding_initiated() {
8190                                                 id_to_peer.insert(channel.context.channel_id(), channel.context.get_counterparty_node_id());
8191                                         }
8192                                         match peer_channels.entry(channel.context.get_counterparty_node_id()) {
8193                                                 hash_map::Entry::Occupied(mut entry) => {
8194                                                         let by_id_map = entry.get_mut();
8195                                                         by_id_map.insert(channel.context.channel_id(), channel);
8196                                                 },
8197                                                 hash_map::Entry::Vacant(entry) => {
8198                                                         let mut by_id_map = HashMap::new();
8199                                                         by_id_map.insert(channel.context.channel_id(), channel);
8200                                                         entry.insert(by_id_map);
8201                                                 }
8202                                         }
8203                                 }
8204                         } else if channel.is_awaiting_initial_mon_persist() {
8205                                 // If we were persisted and shut down while the initial ChannelMonitor persistence
8206                                 // was in-progress, we never broadcasted the funding transaction and can still
8207                                 // safely discard the channel.
8208                                 let _ = channel.context.force_shutdown(false);
8209                                 channel_closures.push_back((events::Event::ChannelClosed {
8210                                         channel_id: channel.context.channel_id(),
8211                                         user_channel_id: channel.context.get_user_id(),
8212                                         reason: ClosureReason::DisconnectedPeer,
8213                                 }, None));
8214                         } else {
8215                                 log_error!(args.logger, "Missing ChannelMonitor for channel {} needed by ChannelManager.", log_bytes!(channel.context.channel_id()));
8216                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
8217                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
8218                                 log_error!(args.logger, " Without the ChannelMonitor we cannot continue without risking funds.");
8219                                 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");
8220                                 return Err(DecodeError::InvalidValue);
8221                         }
8222                 }
8223
8224                 for (funding_txo, _) in args.channel_monitors.iter() {
8225                         if !funding_txo_set.contains(funding_txo) {
8226                                 log_info!(args.logger, "Queueing monitor update to ensure missing channel {} is force closed",
8227                                         log_bytes!(funding_txo.to_channel_id()));
8228                                 let monitor_update = ChannelMonitorUpdate {
8229                                         update_id: CLOSED_CHANNEL_UPDATE_ID,
8230                                         updates: vec![ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast: true }],
8231                                 };
8232                                 pending_background_events.push(BackgroundEvent::ClosingMonitorUpdateRegeneratedOnStartup((*funding_txo, monitor_update)));
8233                         }
8234                 }
8235
8236                 const MAX_ALLOC_SIZE: usize = 1024 * 64;
8237                 let forward_htlcs_count: u64 = Readable::read(reader)?;
8238                 let mut forward_htlcs = HashMap::with_capacity(cmp::min(forward_htlcs_count as usize, 128));
8239                 for _ in 0..forward_htlcs_count {
8240                         let short_channel_id = Readable::read(reader)?;
8241                         let pending_forwards_count: u64 = Readable::read(reader)?;
8242                         let mut pending_forwards = Vec::with_capacity(cmp::min(pending_forwards_count as usize, MAX_ALLOC_SIZE/mem::size_of::<HTLCForwardInfo>()));
8243                         for _ in 0..pending_forwards_count {
8244                                 pending_forwards.push(Readable::read(reader)?);
8245                         }
8246                         forward_htlcs.insert(short_channel_id, pending_forwards);
8247                 }
8248
8249                 let claimable_htlcs_count: u64 = Readable::read(reader)?;
8250                 let mut claimable_htlcs_list = Vec::with_capacity(cmp::min(claimable_htlcs_count as usize, 128));
8251                 for _ in 0..claimable_htlcs_count {
8252                         let payment_hash = Readable::read(reader)?;
8253                         let previous_hops_len: u64 = Readable::read(reader)?;
8254                         let mut previous_hops = Vec::with_capacity(cmp::min(previous_hops_len as usize, MAX_ALLOC_SIZE/mem::size_of::<ClaimableHTLC>()));
8255                         for _ in 0..previous_hops_len {
8256                                 previous_hops.push(<ClaimableHTLC as Readable>::read(reader)?);
8257                         }
8258                         claimable_htlcs_list.push((payment_hash, previous_hops));
8259                 }
8260
8261                 let peer_count: u64 = Readable::read(reader)?;
8262                 let mut per_peer_state = HashMap::with_capacity(cmp::min(peer_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(PublicKey, Mutex<PeerState<<SP::Target as SignerProvider>::Signer>>)>()));
8263                 for _ in 0..peer_count {
8264                         let peer_pubkey = Readable::read(reader)?;
8265                         let peer_state = PeerState {
8266                                 channel_by_id: peer_channels.remove(&peer_pubkey).unwrap_or(HashMap::new()),
8267                                 outbound_v1_channel_by_id: HashMap::new(),
8268                                 inbound_v1_channel_by_id: HashMap::new(),
8269                                 latest_features: Readable::read(reader)?,
8270                                 pending_msg_events: Vec::new(),
8271                                 monitor_update_blocked_actions: BTreeMap::new(),
8272                                 actions_blocking_raa_monitor_updates: BTreeMap::new(),
8273                                 is_connected: false,
8274                         };
8275                         per_peer_state.insert(peer_pubkey, Mutex::new(peer_state));
8276                 }
8277
8278                 let event_count: u64 = Readable::read(reader)?;
8279                 let mut pending_events_read: VecDeque<(events::Event, Option<EventCompletionAction>)> =
8280                         VecDeque::with_capacity(cmp::min(event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>()));
8281                 for _ in 0..event_count {
8282                         match MaybeReadable::read(reader)? {
8283                                 Some(event) => pending_events_read.push_back((event, None)),
8284                                 None => continue,
8285                         }
8286                 }
8287
8288                 let background_event_count: u64 = Readable::read(reader)?;
8289                 for _ in 0..background_event_count {
8290                         match <u8 as Readable>::read(reader)? {
8291                                 0 => {
8292                                         // LDK versions prior to 0.0.116 wrote pending `MonitorUpdateRegeneratedOnStartup`s here,
8293                                         // however we really don't (and never did) need them - we regenerate all
8294                                         // on-startup monitor updates.
8295                                         let _: OutPoint = Readable::read(reader)?;
8296                                         let _: ChannelMonitorUpdate = Readable::read(reader)?;
8297                                 }
8298                                 _ => return Err(DecodeError::InvalidValue),
8299                         }
8300                 }
8301
8302                 for (node_id, peer_mtx) in per_peer_state.iter() {
8303                         let peer_state = peer_mtx.lock().unwrap();
8304                         for (_, chan) in peer_state.channel_by_id.iter() {
8305                                 for update in chan.uncompleted_unblocked_mon_updates() {
8306                                         if let Some(funding_txo) = chan.context.get_funding_txo() {
8307                                                 log_trace!(args.logger, "Replaying ChannelMonitorUpdate {} for channel {}",
8308                                                         update.update_id, log_bytes!(funding_txo.to_channel_id()));
8309                                                 pending_background_events.push(
8310                                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
8311                                                                 counterparty_node_id: *node_id, funding_txo, update: update.clone(),
8312                                                         });
8313                                         } else {
8314                                                 return Err(DecodeError::InvalidValue);
8315                                         }
8316                                 }
8317                         }
8318                 }
8319
8320                 let _last_node_announcement_serial: u32 = Readable::read(reader)?; // Only used < 0.0.111
8321                 let highest_seen_timestamp: u32 = Readable::read(reader)?;
8322
8323                 let pending_inbound_payment_count: u64 = Readable::read(reader)?;
8324                 let mut pending_inbound_payments: HashMap<PaymentHash, PendingInboundPayment> = HashMap::with_capacity(cmp::min(pending_inbound_payment_count as usize, MAX_ALLOC_SIZE/(3*32)));
8325                 for _ in 0..pending_inbound_payment_count {
8326                         if pending_inbound_payments.insert(Readable::read(reader)?, Readable::read(reader)?).is_some() {
8327                                 return Err(DecodeError::InvalidValue);
8328                         }
8329                 }
8330
8331                 let pending_outbound_payments_count_compat: u64 = Readable::read(reader)?;
8332                 let mut pending_outbound_payments_compat: HashMap<PaymentId, PendingOutboundPayment> =
8333                         HashMap::with_capacity(cmp::min(pending_outbound_payments_count_compat as usize, MAX_ALLOC_SIZE/32));
8334                 for _ in 0..pending_outbound_payments_count_compat {
8335                         let session_priv = Readable::read(reader)?;
8336                         let payment = PendingOutboundPayment::Legacy {
8337                                 session_privs: [session_priv].iter().cloned().collect()
8338                         };
8339                         if pending_outbound_payments_compat.insert(PaymentId(session_priv), payment).is_some() {
8340                                 return Err(DecodeError::InvalidValue)
8341                         };
8342                 }
8343
8344                 // pending_outbound_payments_no_retry is for compatibility with 0.0.101 clients.
8345                 let mut pending_outbound_payments_no_retry: Option<HashMap<PaymentId, HashSet<[u8; 32]>>> = None;
8346                 let mut pending_outbound_payments = None;
8347                 let mut pending_intercepted_htlcs: Option<HashMap<InterceptId, PendingAddHTLCInfo>> = Some(HashMap::new());
8348                 let mut received_network_pubkey: Option<PublicKey> = None;
8349                 let mut fake_scid_rand_bytes: Option<[u8; 32]> = None;
8350                 let mut probing_cookie_secret: Option<[u8; 32]> = None;
8351                 let mut claimable_htlc_purposes = None;
8352                 let mut claimable_htlc_onion_fields = None;
8353                 let mut pending_claiming_payments = Some(HashMap::new());
8354                 let mut monitor_update_blocked_actions_per_peer: Option<Vec<(_, BTreeMap<_, Vec<_>>)>> = Some(Vec::new());
8355                 let mut events_override = None;
8356                 read_tlv_fields!(reader, {
8357                         (1, pending_outbound_payments_no_retry, option),
8358                         (2, pending_intercepted_htlcs, option),
8359                         (3, pending_outbound_payments, option),
8360                         (4, pending_claiming_payments, option),
8361                         (5, received_network_pubkey, option),
8362                         (6, monitor_update_blocked_actions_per_peer, option),
8363                         (7, fake_scid_rand_bytes, option),
8364                         (8, events_override, option),
8365                         (9, claimable_htlc_purposes, vec_type),
8366                         (11, probing_cookie_secret, option),
8367                         (13, claimable_htlc_onion_fields, optional_vec),
8368                 });
8369                 if fake_scid_rand_bytes.is_none() {
8370                         fake_scid_rand_bytes = Some(args.entropy_source.get_secure_random_bytes());
8371                 }
8372
8373                 if probing_cookie_secret.is_none() {
8374                         probing_cookie_secret = Some(args.entropy_source.get_secure_random_bytes());
8375                 }
8376
8377                 if let Some(events) = events_override {
8378                         pending_events_read = events;
8379                 }
8380
8381                 if !channel_closures.is_empty() {
8382                         pending_events_read.append(&mut channel_closures);
8383                 }
8384
8385                 if pending_outbound_payments.is_none() && pending_outbound_payments_no_retry.is_none() {
8386                         pending_outbound_payments = Some(pending_outbound_payments_compat);
8387                 } else if pending_outbound_payments.is_none() {
8388                         let mut outbounds = HashMap::new();
8389                         for (id, session_privs) in pending_outbound_payments_no_retry.unwrap().drain() {
8390                                 outbounds.insert(id, PendingOutboundPayment::Legacy { session_privs });
8391                         }
8392                         pending_outbound_payments = Some(outbounds);
8393                 }
8394                 let pending_outbounds = OutboundPayments {
8395                         pending_outbound_payments: Mutex::new(pending_outbound_payments.unwrap()),
8396                         retry_lock: Mutex::new(())
8397                 };
8398
8399                 {
8400                         // If we're tracking pending payments, ensure we haven't lost any by looking at the
8401                         // ChannelMonitor data for any channels for which we do not have authorative state
8402                         // (i.e. those for which we just force-closed above or we otherwise don't have a
8403                         // corresponding `Channel` at all).
8404                         // This avoids several edge-cases where we would otherwise "forget" about pending
8405                         // payments which are still in-flight via their on-chain state.
8406                         // We only rebuild the pending payments map if we were most recently serialized by
8407                         // 0.0.102+
8408                         for (_, monitor) in args.channel_monitors.iter() {
8409                                 if id_to_peer.get(&monitor.get_funding_txo().0.to_channel_id()).is_none() {
8410                                         for (htlc_source, (htlc, _)) in monitor.get_pending_or_resolved_outbound_htlcs() {
8411                                                 if let HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } = htlc_source {
8412                                                         if path.hops.is_empty() {
8413                                                                 log_error!(args.logger, "Got an empty path for a pending payment");
8414                                                                 return Err(DecodeError::InvalidValue);
8415                                                         }
8416
8417                                                         let path_amt = path.final_value_msat();
8418                                                         let mut session_priv_bytes = [0; 32];
8419                                                         session_priv_bytes[..].copy_from_slice(&session_priv[..]);
8420                                                         match pending_outbounds.pending_outbound_payments.lock().unwrap().entry(payment_id) {
8421                                                                 hash_map::Entry::Occupied(mut entry) => {
8422                                                                         let newly_added = entry.get_mut().insert(session_priv_bytes, &path);
8423                                                                         log_info!(args.logger, "{} a pending payment path for {} msat for session priv {} on an existing pending payment with payment hash {}",
8424                                                                                 if newly_added { "Added" } else { "Had" }, path_amt, log_bytes!(session_priv_bytes), log_bytes!(htlc.payment_hash.0));
8425                                                                 },
8426                                                                 hash_map::Entry::Vacant(entry) => {
8427                                                                         let path_fee = path.fee_msat();
8428                                                                         entry.insert(PendingOutboundPayment::Retryable {
8429                                                                                 retry_strategy: None,
8430                                                                                 attempts: PaymentAttempts::new(),
8431                                                                                 payment_params: None,
8432                                                                                 session_privs: [session_priv_bytes].iter().map(|a| *a).collect(),
8433                                                                                 payment_hash: htlc.payment_hash,
8434                                                                                 payment_secret: None, // only used for retries, and we'll never retry on startup
8435                                                                                 payment_metadata: None, // only used for retries, and we'll never retry on startup
8436                                                                                 keysend_preimage: None, // only used for retries, and we'll never retry on startup
8437                                                                                 pending_amt_msat: path_amt,
8438                                                                                 pending_fee_msat: Some(path_fee),
8439                                                                                 total_msat: path_amt,
8440                                                                                 starting_block_height: best_block_height,
8441                                                                         });
8442                                                                         log_info!(args.logger, "Added a pending payment for {} msat with payment hash {} for path with session priv {}",
8443                                                                                 path_amt, log_bytes!(htlc.payment_hash.0),  log_bytes!(session_priv_bytes));
8444                                                                 }
8445                                                         }
8446                                                 }
8447                                         }
8448                                         for (htlc_source, (htlc, preimage_opt)) in monitor.get_all_current_outbound_htlcs() {
8449                                                 match htlc_source {
8450                                                         HTLCSource::PreviousHopData(prev_hop_data) => {
8451                                                                 let pending_forward_matches_htlc = |info: &PendingAddHTLCInfo| {
8452                                                                         info.prev_funding_outpoint == prev_hop_data.outpoint &&
8453                                                                                 info.prev_htlc_id == prev_hop_data.htlc_id
8454                                                                 };
8455                                                                 // The ChannelMonitor is now responsible for this HTLC's
8456                                                                 // failure/success and will let us know what its outcome is. If we
8457                                                                 // still have an entry for this HTLC in `forward_htlcs` or
8458                                                                 // `pending_intercepted_htlcs`, we were apparently not persisted after
8459                                                                 // the monitor was when forwarding the payment.
8460                                                                 forward_htlcs.retain(|_, forwards| {
8461                                                                         forwards.retain(|forward| {
8462                                                                                 if let HTLCForwardInfo::AddHTLC(htlc_info) = forward {
8463                                                                                         if pending_forward_matches_htlc(&htlc_info) {
8464                                                                                                 log_info!(args.logger, "Removing pending to-forward HTLC with hash {} as it was forwarded to the closed channel {}",
8465                                                                                                         log_bytes!(htlc.payment_hash.0), log_bytes!(monitor.get_funding_txo().0.to_channel_id()));
8466                                                                                                 false
8467                                                                                         } else { true }
8468                                                                                 } else { true }
8469                                                                         });
8470                                                                         !forwards.is_empty()
8471                                                                 });
8472                                                                 pending_intercepted_htlcs.as_mut().unwrap().retain(|intercepted_id, htlc_info| {
8473                                                                         if pending_forward_matches_htlc(&htlc_info) {
8474                                                                                 log_info!(args.logger, "Removing pending intercepted HTLC with hash {} as it was forwarded to the closed channel {}",
8475                                                                                         log_bytes!(htlc.payment_hash.0), log_bytes!(monitor.get_funding_txo().0.to_channel_id()));
8476                                                                                 pending_events_read.retain(|(event, _)| {
8477                                                                                         if let Event::HTLCIntercepted { intercept_id: ev_id, .. } = event {
8478                                                                                                 intercepted_id != ev_id
8479                                                                                         } else { true }
8480                                                                                 });
8481                                                                                 false
8482                                                                         } else { true }
8483                                                                 });
8484                                                         },
8485                                                         HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } => {
8486                                                                 if let Some(preimage) = preimage_opt {
8487                                                                         let pending_events = Mutex::new(pending_events_read);
8488                                                                         // Note that we set `from_onchain` to "false" here,
8489                                                                         // deliberately keeping the pending payment around forever.
8490                                                                         // Given it should only occur when we have a channel we're
8491                                                                         // force-closing for being stale that's okay.
8492                                                                         // The alternative would be to wipe the state when claiming,
8493                                                                         // generating a `PaymentPathSuccessful` event but regenerating
8494                                                                         // it and the `PaymentSent` on every restart until the
8495                                                                         // `ChannelMonitor` is removed.
8496                                                                         pending_outbounds.claim_htlc(payment_id, preimage, session_priv, path, false, &pending_events, &args.logger);
8497                                                                         pending_events_read = pending_events.into_inner().unwrap();
8498                                                                 }
8499                                                         },
8500                                                 }
8501                                         }
8502                                 }
8503                         }
8504                 }
8505
8506                 if !forward_htlcs.is_empty() || pending_outbounds.needs_abandon() {
8507                         // If we have pending HTLCs to forward, assume we either dropped a
8508                         // `PendingHTLCsForwardable` or the user received it but never processed it as they
8509                         // shut down before the timer hit. Either way, set the time_forwardable to a small
8510                         // constant as enough time has likely passed that we should simply handle the forwards
8511                         // now, or at least after the user gets a chance to reconnect to our peers.
8512                         pending_events_read.push_back((events::Event::PendingHTLCsForwardable {
8513                                 time_forwardable: Duration::from_secs(2),
8514                         }, None));
8515                 }
8516
8517                 let inbound_pmt_key_material = args.node_signer.get_inbound_payment_key_material();
8518                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
8519
8520                 let mut claimable_payments = HashMap::with_capacity(claimable_htlcs_list.len());
8521                 if let Some(purposes) = claimable_htlc_purposes {
8522                         if purposes.len() != claimable_htlcs_list.len() {
8523                                 return Err(DecodeError::InvalidValue);
8524                         }
8525                         if let Some(onion_fields) = claimable_htlc_onion_fields {
8526                                 if onion_fields.len() != claimable_htlcs_list.len() {
8527                                         return Err(DecodeError::InvalidValue);
8528                                 }
8529                                 for (purpose, (onion, (payment_hash, htlcs))) in
8530                                         purposes.into_iter().zip(onion_fields.into_iter().zip(claimable_htlcs_list.into_iter()))
8531                                 {
8532                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
8533                                                 purpose, htlcs, onion_fields: onion,
8534                                         });
8535                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
8536                                 }
8537                         } else {
8538                                 for (purpose, (payment_hash, htlcs)) in purposes.into_iter().zip(claimable_htlcs_list.into_iter()) {
8539                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
8540                                                 purpose, htlcs, onion_fields: None,
8541                                         });
8542                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
8543                                 }
8544                         }
8545                 } else {
8546                         // LDK versions prior to 0.0.107 did not write a `pending_htlc_purposes`, but do
8547                         // include a `_legacy_hop_data` in the `OnionPayload`.
8548                         for (payment_hash, htlcs) in claimable_htlcs_list.drain(..) {
8549                                 if htlcs.is_empty() {
8550                                         return Err(DecodeError::InvalidValue);
8551                                 }
8552                                 let purpose = match &htlcs[0].onion_payload {
8553                                         OnionPayload::Invoice { _legacy_hop_data } => {
8554                                                 if let Some(hop_data) = _legacy_hop_data {
8555                                                         events::PaymentPurpose::InvoicePayment {
8556                                                                 payment_preimage: match pending_inbound_payments.get(&payment_hash) {
8557                                                                         Some(inbound_payment) => inbound_payment.payment_preimage,
8558                                                                         None => match inbound_payment::verify(payment_hash, &hop_data, 0, &expanded_inbound_key, &args.logger) {
8559                                                                                 Ok((payment_preimage, _)) => payment_preimage,
8560                                                                                 Err(()) => {
8561                                                                                         log_error!(args.logger, "Failed to read claimable payment data for HTLC with payment hash {} - was not a pending inbound payment and didn't match our payment key", log_bytes!(payment_hash.0));
8562                                                                                         return Err(DecodeError::InvalidValue);
8563                                                                                 }
8564                                                                         }
8565                                                                 },
8566                                                                 payment_secret: hop_data.payment_secret,
8567                                                         }
8568                                                 } else { return Err(DecodeError::InvalidValue); }
8569                                         },
8570                                         OnionPayload::Spontaneous(payment_preimage) =>
8571                                                 events::PaymentPurpose::SpontaneousPayment(*payment_preimage),
8572                                 };
8573                                 claimable_payments.insert(payment_hash, ClaimablePayment {
8574                                         purpose, htlcs, onion_fields: None,
8575                                 });
8576                         }
8577                 }
8578
8579                 let mut secp_ctx = Secp256k1::new();
8580                 secp_ctx.seeded_randomize(&args.entropy_source.get_secure_random_bytes());
8581
8582                 let our_network_pubkey = match args.node_signer.get_node_id(Recipient::Node) {
8583                         Ok(key) => key,
8584                         Err(()) => return Err(DecodeError::InvalidValue)
8585                 };
8586                 if let Some(network_pubkey) = received_network_pubkey {
8587                         if network_pubkey != our_network_pubkey {
8588                                 log_error!(args.logger, "Key that was generated does not match the existing key.");
8589                                 return Err(DecodeError::InvalidValue);
8590                         }
8591                 }
8592
8593                 let mut outbound_scid_aliases = HashSet::new();
8594                 for (_peer_node_id, peer_state_mutex) in per_peer_state.iter_mut() {
8595                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8596                         let peer_state = &mut *peer_state_lock;
8597                         for (chan_id, chan) in peer_state.channel_by_id.iter_mut() {
8598                                 if chan.context.outbound_scid_alias() == 0 {
8599                                         let mut outbound_scid_alias;
8600                                         loop {
8601                                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias
8602                                                         .get_fake_scid(best_block_height, &genesis_hash, fake_scid_rand_bytes.as_ref().unwrap(), &args.entropy_source);
8603                                                 if outbound_scid_aliases.insert(outbound_scid_alias) { break; }
8604                                         }
8605                                         chan.context.set_outbound_scid_alias(outbound_scid_alias);
8606                                 } else if !outbound_scid_aliases.insert(chan.context.outbound_scid_alias()) {
8607                                         // Note that in rare cases its possible to hit this while reading an older
8608                                         // channel if we just happened to pick a colliding outbound alias above.
8609                                         log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
8610                                         return Err(DecodeError::InvalidValue);
8611                                 }
8612                                 if chan.context.is_usable() {
8613                                         if short_to_chan_info.insert(chan.context.outbound_scid_alias(), (chan.context.get_counterparty_node_id(), *chan_id)).is_some() {
8614                                                 // Note that in rare cases its possible to hit this while reading an older
8615                                                 // channel if we just happened to pick a colliding outbound alias above.
8616                                                 log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
8617                                                 return Err(DecodeError::InvalidValue);
8618                                         }
8619                                 }
8620                         }
8621                 }
8622
8623                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(args.fee_estimator);
8624
8625                 for (_, monitor) in args.channel_monitors.iter() {
8626                         for (payment_hash, payment_preimage) in monitor.get_stored_preimages() {
8627                                 if let Some(payment) = claimable_payments.remove(&payment_hash) {
8628                                         log_info!(args.logger, "Re-claiming HTLCs with payment hash {} as we've released the preimage to a ChannelMonitor!", log_bytes!(payment_hash.0));
8629                                         let mut claimable_amt_msat = 0;
8630                                         let mut receiver_node_id = Some(our_network_pubkey);
8631                                         let phantom_shared_secret = payment.htlcs[0].prev_hop.phantom_shared_secret;
8632                                         if phantom_shared_secret.is_some() {
8633                                                 let phantom_pubkey = args.node_signer.get_node_id(Recipient::PhantomNode)
8634                                                         .expect("Failed to get node_id for phantom node recipient");
8635                                                 receiver_node_id = Some(phantom_pubkey)
8636                                         }
8637                                         for claimable_htlc in payment.htlcs {
8638                                                 claimable_amt_msat += claimable_htlc.value;
8639
8640                                                 // Add a holding-cell claim of the payment to the Channel, which should be
8641                                                 // applied ~immediately on peer reconnection. Because it won't generate a
8642                                                 // new commitment transaction we can just provide the payment preimage to
8643                                                 // the corresponding ChannelMonitor and nothing else.
8644                                                 //
8645                                                 // We do so directly instead of via the normal ChannelMonitor update
8646                                                 // procedure as the ChainMonitor hasn't yet been initialized, implying
8647                                                 // we're not allowed to call it directly yet. Further, we do the update
8648                                                 // without incrementing the ChannelMonitor update ID as there isn't any
8649                                                 // reason to.
8650                                                 // If we were to generate a new ChannelMonitor update ID here and then
8651                                                 // crash before the user finishes block connect we'd end up force-closing
8652                                                 // this channel as well. On the flip side, there's no harm in restarting
8653                                                 // without the new monitor persisted - we'll end up right back here on
8654                                                 // restart.
8655                                                 let previous_channel_id = claimable_htlc.prev_hop.outpoint.to_channel_id();
8656                                                 if let Some(peer_node_id) = id_to_peer.get(&previous_channel_id){
8657                                                         let peer_state_mutex = per_peer_state.get(peer_node_id).unwrap();
8658                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8659                                                         let peer_state = &mut *peer_state_lock;
8660                                                         if let Some(channel) = peer_state.channel_by_id.get_mut(&previous_channel_id) {
8661                                                                 channel.claim_htlc_while_disconnected_dropping_mon_update(claimable_htlc.prev_hop.htlc_id, payment_preimage, &args.logger);
8662                                                         }
8663                                                 }
8664                                                 if let Some(previous_hop_monitor) = args.channel_monitors.get(&claimable_htlc.prev_hop.outpoint) {
8665                                                         previous_hop_monitor.provide_payment_preimage(&payment_hash, &payment_preimage, &args.tx_broadcaster, &bounded_fee_estimator, &args.logger);
8666                                                 }
8667                                         }
8668                                         pending_events_read.push_back((events::Event::PaymentClaimed {
8669                                                 receiver_node_id,
8670                                                 payment_hash,
8671                                                 purpose: payment.purpose,
8672                                                 amount_msat: claimable_amt_msat,
8673                                         }, None));
8674                                 }
8675                         }
8676                 }
8677
8678                 for (node_id, monitor_update_blocked_actions) in monitor_update_blocked_actions_per_peer.unwrap() {
8679                         if let Some(peer_state) = per_peer_state.get(&node_id) {
8680                                 for (_, actions) in monitor_update_blocked_actions.iter() {
8681                                         for action in actions.iter() {
8682                                                 if let MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
8683                                                         downstream_counterparty_and_funding_outpoint:
8684                                                                 Some((blocked_node_id, blocked_channel_outpoint, blocking_action)), ..
8685                                                 } = action {
8686                                                         if let Some(blocked_peer_state) = per_peer_state.get(&blocked_node_id) {
8687                                                                 blocked_peer_state.lock().unwrap().actions_blocking_raa_monitor_updates
8688                                                                         .entry(blocked_channel_outpoint.to_channel_id())
8689                                                                         .or_insert_with(Vec::new).push(blocking_action.clone());
8690                                                         }
8691                                                 }
8692                                         }
8693                                 }
8694                                 peer_state.lock().unwrap().monitor_update_blocked_actions = monitor_update_blocked_actions;
8695                         } else {
8696                                 log_error!(args.logger, "Got blocked actions without a per-peer-state for {}", node_id);
8697                                 return Err(DecodeError::InvalidValue);
8698                         }
8699                 }
8700
8701                 let channel_manager = ChannelManager {
8702                         genesis_hash,
8703                         fee_estimator: bounded_fee_estimator,
8704                         chain_monitor: args.chain_monitor,
8705                         tx_broadcaster: args.tx_broadcaster,
8706                         router: args.router,
8707
8708                         best_block: RwLock::new(BestBlock::new(best_block_hash, best_block_height)),
8709
8710                         inbound_payment_key: expanded_inbound_key,
8711                         pending_inbound_payments: Mutex::new(pending_inbound_payments),
8712                         pending_outbound_payments: pending_outbounds,
8713                         pending_intercepted_htlcs: Mutex::new(pending_intercepted_htlcs.unwrap()),
8714
8715                         forward_htlcs: Mutex::new(forward_htlcs),
8716                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments, pending_claiming_payments: pending_claiming_payments.unwrap() }),
8717                         outbound_scid_aliases: Mutex::new(outbound_scid_aliases),
8718                         id_to_peer: Mutex::new(id_to_peer),
8719                         short_to_chan_info: FairRwLock::new(short_to_chan_info),
8720                         fake_scid_rand_bytes: fake_scid_rand_bytes.unwrap(),
8721
8722                         probing_cookie_secret: probing_cookie_secret.unwrap(),
8723
8724                         our_network_pubkey,
8725                         secp_ctx,
8726
8727                         highest_seen_timestamp: AtomicUsize::new(highest_seen_timestamp as usize),
8728
8729                         per_peer_state: FairRwLock::new(per_peer_state),
8730
8731                         pending_events: Mutex::new(pending_events_read),
8732                         pending_events_processor: AtomicBool::new(false),
8733                         pending_background_events: Mutex::new(pending_background_events),
8734                         total_consistency_lock: RwLock::new(()),
8735                         #[cfg(debug_assertions)]
8736                         background_events_processed_since_startup: AtomicBool::new(false),
8737                         persistence_notifier: Notifier::new(),
8738
8739                         entropy_source: args.entropy_source,
8740                         node_signer: args.node_signer,
8741                         signer_provider: args.signer_provider,
8742
8743                         logger: args.logger,
8744                         default_configuration: args.default_config,
8745                 };
8746
8747                 for htlc_source in failed_htlcs.drain(..) {
8748                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
8749                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
8750                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
8751                         channel_manager.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
8752                 }
8753
8754                 //TODO: Broadcast channel update for closed channels, but only after we've made a
8755                 //connection or two.
8756
8757                 Ok((best_block_hash.clone(), channel_manager))
8758         }
8759 }
8760
8761 #[cfg(test)]
8762 mod tests {
8763         use bitcoin::hashes::Hash;
8764         use bitcoin::hashes::sha256::Hash as Sha256;
8765         use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
8766         use core::sync::atomic::Ordering;
8767         use crate::events::{Event, HTLCDestination, MessageSendEvent, MessageSendEventsProvider, ClosureReason};
8768         use crate::ln::{PaymentPreimage, PaymentHash, PaymentSecret};
8769         use crate::ln::channelmanager::{inbound_payment, PaymentId, PaymentSendFailure, RecipientOnionFields, InterceptId};
8770         use crate::ln::functional_test_utils::*;
8771         use crate::ln::msgs;
8772         use crate::ln::msgs::ChannelMessageHandler;
8773         use crate::routing::router::{PaymentParameters, RouteParameters, find_route};
8774         use crate::util::errors::APIError;
8775         use crate::util::test_utils;
8776         use crate::util::config::{ChannelConfig, ChannelConfigUpdate};
8777         use crate::sign::EntropySource;
8778
8779         #[test]
8780         fn test_notify_limits() {
8781                 // Check that a few cases which don't require the persistence of a new ChannelManager,
8782                 // indeed, do not cause the persistence of a new ChannelManager.
8783                 let chanmon_cfgs = create_chanmon_cfgs(3);
8784                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
8785                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
8786                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
8787
8788                 // All nodes start with a persistable update pending as `create_network` connects each node
8789                 // with all other nodes to make most tests simpler.
8790                 assert!(nodes[0].node.get_persistable_update_future().poll_is_complete());
8791                 assert!(nodes[1].node.get_persistable_update_future().poll_is_complete());
8792                 assert!(nodes[2].node.get_persistable_update_future().poll_is_complete());
8793
8794                 let mut chan = create_announced_chan_between_nodes(&nodes, 0, 1);
8795
8796                 // We check that the channel info nodes have doesn't change too early, even though we try
8797                 // to connect messages with new values
8798                 chan.0.contents.fee_base_msat *= 2;
8799                 chan.1.contents.fee_base_msat *= 2;
8800                 let node_a_chan_info = nodes[0].node.list_channels_with_counterparty(
8801                         &nodes[1].node.get_our_node_id()).pop().unwrap();
8802                 let node_b_chan_info = nodes[1].node.list_channels_with_counterparty(
8803                         &nodes[0].node.get_our_node_id()).pop().unwrap();
8804
8805                 // The first two nodes (which opened a channel) should now require fresh persistence
8806                 assert!(nodes[0].node.get_persistable_update_future().poll_is_complete());
8807                 assert!(nodes[1].node.get_persistable_update_future().poll_is_complete());
8808                 // ... but the last node should not.
8809                 assert!(!nodes[2].node.get_persistable_update_future().poll_is_complete());
8810                 // After persisting the first two nodes they should no longer need fresh persistence.
8811                 assert!(!nodes[0].node.get_persistable_update_future().poll_is_complete());
8812                 assert!(!nodes[1].node.get_persistable_update_future().poll_is_complete());
8813
8814                 // Node 3, unrelated to the only channel, shouldn't care if it receives a channel_update
8815                 // about the channel.
8816                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.0);
8817                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.1);
8818                 assert!(!nodes[2].node.get_persistable_update_future().poll_is_complete());
8819
8820                 // The nodes which are a party to the channel should also ignore messages from unrelated
8821                 // parties.
8822                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
8823                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
8824                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
8825                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
8826                 assert!(!nodes[0].node.get_persistable_update_future().poll_is_complete());
8827                 assert!(!nodes[1].node.get_persistable_update_future().poll_is_complete());
8828
8829                 // At this point the channel info given by peers should still be the same.
8830                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
8831                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
8832
8833                 // An earlier version of handle_channel_update didn't check the directionality of the
8834                 // update message and would always update the local fee info, even if our peer was
8835                 // (spuriously) forwarding us our own channel_update.
8836                 let as_node_one = nodes[0].node.get_our_node_id().serialize()[..] < nodes[1].node.get_our_node_id().serialize()[..];
8837                 let as_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.0 } else { &chan.1 };
8838                 let bs_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.1 } else { &chan.0 };
8839
8840                 // First deliver each peers' own message, checking that the node doesn't need to be
8841                 // persisted and that its channel info remains the same.
8842                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &as_update);
8843                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &bs_update);
8844                 assert!(!nodes[0].node.get_persistable_update_future().poll_is_complete());
8845                 assert!(!nodes[1].node.get_persistable_update_future().poll_is_complete());
8846                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
8847                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
8848
8849                 // Finally, deliver the other peers' message, ensuring each node needs to be persisted and
8850                 // the channel info has updated.
8851                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &bs_update);
8852                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &as_update);
8853                 assert!(nodes[0].node.get_persistable_update_future().poll_is_complete());
8854                 assert!(nodes[1].node.get_persistable_update_future().poll_is_complete());
8855                 assert_ne!(nodes[0].node.list_channels()[0], node_a_chan_info);
8856                 assert_ne!(nodes[1].node.list_channels()[0], node_b_chan_info);
8857         }
8858
8859         #[test]
8860         fn test_keysend_dup_hash_partial_mpp() {
8861                 // Test that a keysend payment with a duplicate hash to an existing partial MPP payment fails as
8862                 // expected.
8863                 let chanmon_cfgs = create_chanmon_cfgs(2);
8864                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8865                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8866                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8867                 create_announced_chan_between_nodes(&nodes, 0, 1);
8868
8869                 // First, send a partial MPP payment.
8870                 let (route, our_payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100_000);
8871                 let mut mpp_route = route.clone();
8872                 mpp_route.paths.push(mpp_route.paths[0].clone());
8873
8874                 let payment_id = PaymentId([42; 32]);
8875                 // Use the utility function send_payment_along_path to send the payment with MPP data which
8876                 // indicates there are more HTLCs coming.
8877                 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.
8878                 let session_privs = nodes[0].node.test_add_new_pending_payment(our_payment_hash,
8879                         RecipientOnionFields::secret_only(payment_secret), payment_id, &mpp_route).unwrap();
8880                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[0], &our_payment_hash,
8881                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[0]).unwrap();
8882                 check_added_monitors!(nodes[0], 1);
8883                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8884                 assert_eq!(events.len(), 1);
8885                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), false, None);
8886
8887                 // Next, send a keysend payment with the same payment_hash and make sure it fails.
8888                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
8889                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
8890                 check_added_monitors!(nodes[0], 1);
8891                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8892                 assert_eq!(events.len(), 1);
8893                 let ev = events.drain(..).next().unwrap();
8894                 let payment_event = SendEvent::from_event(ev);
8895                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
8896                 check_added_monitors!(nodes[1], 0);
8897                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
8898                 expect_pending_htlcs_forwardable!(nodes[1]);
8899                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
8900                 check_added_monitors!(nodes[1], 1);
8901                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
8902                 assert!(updates.update_add_htlcs.is_empty());
8903                 assert!(updates.update_fulfill_htlcs.is_empty());
8904                 assert_eq!(updates.update_fail_htlcs.len(), 1);
8905                 assert!(updates.update_fail_malformed_htlcs.is_empty());
8906                 assert!(updates.update_fee.is_none());
8907                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
8908                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
8909                 expect_payment_failed!(nodes[0], our_payment_hash, true);
8910
8911                 // Send the second half of the original MPP payment.
8912                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[1], &our_payment_hash,
8913                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[1]).unwrap();
8914                 check_added_monitors!(nodes[0], 1);
8915                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8916                 assert_eq!(events.len(), 1);
8917                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), true, None);
8918
8919                 // Claim the full MPP payment. Note that we can't use a test utility like
8920                 // claim_funds_along_route because the ordering of the messages causes the second half of the
8921                 // payment to be put in the holding cell, which confuses the test utilities. So we exchange the
8922                 // lightning messages manually.
8923                 nodes[1].node.claim_funds(payment_preimage);
8924                 expect_payment_claimed!(nodes[1], our_payment_hash, 200_000);
8925                 check_added_monitors!(nodes[1], 2);
8926
8927                 let bs_first_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
8928                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_first_updates.update_fulfill_htlcs[0]);
8929                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_first_updates.commitment_signed);
8930                 check_added_monitors!(nodes[0], 1);
8931                 let (as_first_raa, as_first_cs) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
8932                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_first_raa);
8933                 check_added_monitors!(nodes[1], 1);
8934                 let bs_second_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
8935                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_first_cs);
8936                 check_added_monitors!(nodes[1], 1);
8937                 let bs_first_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
8938                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_second_updates.update_fulfill_htlcs[0]);
8939                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_second_updates.commitment_signed);
8940                 check_added_monitors!(nodes[0], 1);
8941                 let as_second_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
8942                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_first_raa);
8943                 let as_second_updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
8944                 check_added_monitors!(nodes[0], 1);
8945                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_second_raa);
8946                 check_added_monitors!(nodes[1], 1);
8947                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_second_updates.commitment_signed);
8948                 check_added_monitors!(nodes[1], 1);
8949                 let bs_third_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
8950                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_third_raa);
8951                 check_added_monitors!(nodes[0], 1);
8952
8953                 // Note that successful MPP payments will generate a single PaymentSent event upon the first
8954                 // path's success and a PaymentPathSuccessful event for each path's success.
8955                 let events = nodes[0].node.get_and_clear_pending_events();
8956                 assert_eq!(events.len(), 3);
8957                 match events[0] {
8958                         Event::PaymentSent { payment_id: ref id, payment_preimage: ref preimage, payment_hash: ref hash, .. } => {
8959                                 assert_eq!(Some(payment_id), *id);
8960                                 assert_eq!(payment_preimage, *preimage);
8961                                 assert_eq!(our_payment_hash, *hash);
8962                         },
8963                         _ => panic!("Unexpected event"),
8964                 }
8965                 match events[1] {
8966                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
8967                                 assert_eq!(payment_id, *actual_payment_id);
8968                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
8969                                 assert_eq!(route.paths[0], *path);
8970                         },
8971                         _ => panic!("Unexpected event"),
8972                 }
8973                 match events[2] {
8974                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
8975                                 assert_eq!(payment_id, *actual_payment_id);
8976                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
8977                                 assert_eq!(route.paths[0], *path);
8978                         },
8979                         _ => panic!("Unexpected event"),
8980                 }
8981         }
8982
8983         #[test]
8984         fn test_keysend_dup_payment_hash() {
8985                 do_test_keysend_dup_payment_hash(false);
8986                 do_test_keysend_dup_payment_hash(true);
8987         }
8988
8989         fn do_test_keysend_dup_payment_hash(accept_mpp_keysend: bool) {
8990                 // (1): Test that a keysend payment with a duplicate payment hash to an existing pending
8991                 //      outbound regular payment fails as expected.
8992                 // (2): Test that a regular payment with a duplicate payment hash to an existing keysend payment
8993                 //      fails as expected.
8994                 // (3): Test that a keysend payment with a duplicate payment hash to an existing keysend
8995                 //      payment fails as expected. When `accept_mpp_keysend` is false, this tests that we
8996                 //      reject MPP keysend payments, since in this case where the payment has no payment
8997                 //      secret, a keysend payment with a duplicate hash is basically an MPP keysend. If
8998                 //      `accept_mpp_keysend` is true, this tests that we only accept MPP keysends with
8999                 //      payment secrets and reject otherwise.
9000                 let chanmon_cfgs = create_chanmon_cfgs(2);
9001                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9002                 let mut mpp_keysend_cfg = test_default_channel_config();
9003                 mpp_keysend_cfg.accept_mpp_keysend = accept_mpp_keysend;
9004                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(mpp_keysend_cfg)]);
9005                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9006                 create_announced_chan_between_nodes(&nodes, 0, 1);
9007                 let scorer = test_utils::TestScorer::new();
9008                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
9009
9010                 // To start (1), send a regular payment but don't claim it.
9011                 let expected_route = [&nodes[1]];
9012                 let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &expected_route, 100_000);
9013
9014                 // Next, attempt a keysend payment and make sure it fails.
9015                 let route_params = RouteParameters {
9016                         payment_params: PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(), TEST_FINAL_CLTV, false),
9017                         final_value_msat: 100_000,
9018                 };
9019                 let route = find_route(
9020                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
9021                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
9022                 ).unwrap();
9023                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9024                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
9025                 check_added_monitors!(nodes[0], 1);
9026                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9027                 assert_eq!(events.len(), 1);
9028                 let ev = events.drain(..).next().unwrap();
9029                 let payment_event = SendEvent::from_event(ev);
9030                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9031                 check_added_monitors!(nodes[1], 0);
9032                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9033                 // We have to forward pending HTLCs twice - once tries to forward the payment forward (and
9034                 // fails), the second will process the resulting failure and fail the HTLC backward
9035                 expect_pending_htlcs_forwardable!(nodes[1]);
9036                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
9037                 check_added_monitors!(nodes[1], 1);
9038                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9039                 assert!(updates.update_add_htlcs.is_empty());
9040                 assert!(updates.update_fulfill_htlcs.is_empty());
9041                 assert_eq!(updates.update_fail_htlcs.len(), 1);
9042                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9043                 assert!(updates.update_fee.is_none());
9044                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
9045                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
9046                 expect_payment_failed!(nodes[0], payment_hash, true);
9047
9048                 // Finally, claim the original payment.
9049                 claim_payment(&nodes[0], &expected_route, payment_preimage);
9050
9051                 // To start (2), send a keysend payment but don't claim it.
9052                 let payment_preimage = PaymentPreimage([42; 32]);
9053                 let route = find_route(
9054                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
9055                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
9056                 ).unwrap();
9057                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9058                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
9059                 check_added_monitors!(nodes[0], 1);
9060                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9061                 assert_eq!(events.len(), 1);
9062                 let event = events.pop().unwrap();
9063                 let path = vec![&nodes[1]];
9064                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
9065
9066                 // Next, attempt a regular payment and make sure it fails.
9067                 let payment_secret = PaymentSecret([43; 32]);
9068                 nodes[0].node.send_payment_with_route(&route, payment_hash,
9069                         RecipientOnionFields::secret_only(payment_secret), PaymentId(payment_hash.0)).unwrap();
9070                 check_added_monitors!(nodes[0], 1);
9071                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9072                 assert_eq!(events.len(), 1);
9073                 let ev = events.drain(..).next().unwrap();
9074                 let payment_event = SendEvent::from_event(ev);
9075                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9076                 check_added_monitors!(nodes[1], 0);
9077                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9078                 expect_pending_htlcs_forwardable!(nodes[1]);
9079                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
9080                 check_added_monitors!(nodes[1], 1);
9081                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9082                 assert!(updates.update_add_htlcs.is_empty());
9083                 assert!(updates.update_fulfill_htlcs.is_empty());
9084                 assert_eq!(updates.update_fail_htlcs.len(), 1);
9085                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9086                 assert!(updates.update_fee.is_none());
9087                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
9088                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
9089                 expect_payment_failed!(nodes[0], payment_hash, true);
9090
9091                 // Finally, succeed the keysend payment.
9092                 claim_payment(&nodes[0], &expected_route, payment_preimage);
9093
9094                 // To start (3), send a keysend payment but don't claim it.
9095                 let payment_id_1 = PaymentId([44; 32]);
9096                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9097                         RecipientOnionFields::spontaneous_empty(), payment_id_1).unwrap();
9098                 check_added_monitors!(nodes[0], 1);
9099                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9100                 assert_eq!(events.len(), 1);
9101                 let event = events.pop().unwrap();
9102                 let path = vec![&nodes[1]];
9103                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
9104
9105                 // Next, attempt a keysend payment and make sure it fails.
9106                 let route_params = RouteParameters {
9107                         payment_params: PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(), TEST_FINAL_CLTV, false),
9108                         final_value_msat: 100_000,
9109                 };
9110                 let route = find_route(
9111                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
9112                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
9113                 ).unwrap();
9114                 let payment_id_2 = PaymentId([45; 32]);
9115                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9116                         RecipientOnionFields::spontaneous_empty(), payment_id_2).unwrap();
9117                 check_added_monitors!(nodes[0], 1);
9118                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9119                 assert_eq!(events.len(), 1);
9120                 let ev = events.drain(..).next().unwrap();
9121                 let payment_event = SendEvent::from_event(ev);
9122                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9123                 check_added_monitors!(nodes[1], 0);
9124                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9125                 expect_pending_htlcs_forwardable!(nodes[1]);
9126                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
9127                 check_added_monitors!(nodes[1], 1);
9128                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9129                 assert!(updates.update_add_htlcs.is_empty());
9130                 assert!(updates.update_fulfill_htlcs.is_empty());
9131                 assert_eq!(updates.update_fail_htlcs.len(), 1);
9132                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9133                 assert!(updates.update_fee.is_none());
9134                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
9135                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
9136                 expect_payment_failed!(nodes[0], payment_hash, true);
9137
9138                 // Finally, claim the original payment.
9139                 claim_payment(&nodes[0], &expected_route, payment_preimage);
9140         }
9141
9142         #[test]
9143         fn test_keysend_hash_mismatch() {
9144                 // Test that if we receive a keysend `update_add_htlc` msg, we fail as expected if the keysend
9145                 // preimage doesn't match the msg's payment hash.
9146                 let chanmon_cfgs = create_chanmon_cfgs(2);
9147                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9148                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9149                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9150
9151                 let payer_pubkey = nodes[0].node.get_our_node_id();
9152                 let payee_pubkey = nodes[1].node.get_our_node_id();
9153
9154                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
9155                 let route_params = RouteParameters {
9156                         payment_params: PaymentParameters::for_keysend(payee_pubkey, 40, false),
9157                         final_value_msat: 10_000,
9158                 };
9159                 let network_graph = nodes[0].network_graph.clone();
9160                 let first_hops = nodes[0].node.list_usable_channels();
9161                 let scorer = test_utils::TestScorer::new();
9162                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
9163                 let route = find_route(
9164                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
9165                         nodes[0].logger, &scorer, &(), &random_seed_bytes
9166                 ).unwrap();
9167
9168                 let test_preimage = PaymentPreimage([42; 32]);
9169                 let mismatch_payment_hash = PaymentHash([43; 32]);
9170                 let session_privs = nodes[0].node.test_add_new_pending_payment(mismatch_payment_hash,
9171                         RecipientOnionFields::spontaneous_empty(), PaymentId(mismatch_payment_hash.0), &route).unwrap();
9172                 nodes[0].node.test_send_payment_internal(&route, mismatch_payment_hash,
9173                         RecipientOnionFields::spontaneous_empty(), Some(test_preimage), PaymentId(mismatch_payment_hash.0), None, session_privs).unwrap();
9174                 check_added_monitors!(nodes[0], 1);
9175
9176                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
9177                 assert_eq!(updates.update_add_htlcs.len(), 1);
9178                 assert!(updates.update_fulfill_htlcs.is_empty());
9179                 assert!(updates.update_fail_htlcs.is_empty());
9180                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9181                 assert!(updates.update_fee.is_none());
9182                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
9183
9184                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "Payment preimage didn't match payment hash", 1);
9185         }
9186
9187         #[test]
9188         fn test_keysend_msg_with_secret_err() {
9189                 // Test that we error as expected if we receive a keysend payment that includes a payment
9190                 // secret when we don't support MPP keysend.
9191                 let mut reject_mpp_keysend_cfg = test_default_channel_config();
9192                 reject_mpp_keysend_cfg.accept_mpp_keysend = false;
9193                 let chanmon_cfgs = create_chanmon_cfgs(2);
9194                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9195                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(reject_mpp_keysend_cfg)]);
9196                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9197
9198                 let payer_pubkey = nodes[0].node.get_our_node_id();
9199                 let payee_pubkey = nodes[1].node.get_our_node_id();
9200
9201                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
9202                 let route_params = RouteParameters {
9203                         payment_params: PaymentParameters::for_keysend(payee_pubkey, 40, false),
9204                         final_value_msat: 10_000,
9205                 };
9206                 let network_graph = nodes[0].network_graph.clone();
9207                 let first_hops = nodes[0].node.list_usable_channels();
9208                 let scorer = test_utils::TestScorer::new();
9209                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
9210                 let route = find_route(
9211                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
9212                         nodes[0].logger, &scorer, &(), &random_seed_bytes
9213                 ).unwrap();
9214
9215                 let test_preimage = PaymentPreimage([42; 32]);
9216                 let test_secret = PaymentSecret([43; 32]);
9217                 let payment_hash = PaymentHash(Sha256::hash(&test_preimage.0).into_inner());
9218                 let session_privs = nodes[0].node.test_add_new_pending_payment(payment_hash,
9219                         RecipientOnionFields::secret_only(test_secret), PaymentId(payment_hash.0), &route).unwrap();
9220                 nodes[0].node.test_send_payment_internal(&route, payment_hash,
9221                         RecipientOnionFields::secret_only(test_secret), Some(test_preimage),
9222                         PaymentId(payment_hash.0), None, session_privs).unwrap();
9223                 check_added_monitors!(nodes[0], 1);
9224
9225                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
9226                 assert_eq!(updates.update_add_htlcs.len(), 1);
9227                 assert!(updates.update_fulfill_htlcs.is_empty());
9228                 assert!(updates.update_fail_htlcs.is_empty());
9229                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9230                 assert!(updates.update_fee.is_none());
9231                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
9232
9233                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "We don't support MPP keysend payments", 1);
9234         }
9235
9236         #[test]
9237         fn test_multi_hop_missing_secret() {
9238                 let chanmon_cfgs = create_chanmon_cfgs(4);
9239                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
9240                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
9241                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
9242
9243                 let chan_1_id = create_announced_chan_between_nodes(&nodes, 0, 1).0.contents.short_channel_id;
9244                 let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2).0.contents.short_channel_id;
9245                 let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3).0.contents.short_channel_id;
9246                 let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3).0.contents.short_channel_id;
9247
9248                 // Marshall an MPP route.
9249                 let (mut route, payment_hash, _, _) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
9250                 let path = route.paths[0].clone();
9251                 route.paths.push(path);
9252                 route.paths[0].hops[0].pubkey = nodes[1].node.get_our_node_id();
9253                 route.paths[0].hops[0].short_channel_id = chan_1_id;
9254                 route.paths[0].hops[1].short_channel_id = chan_3_id;
9255                 route.paths[1].hops[0].pubkey = nodes[2].node.get_our_node_id();
9256                 route.paths[1].hops[0].short_channel_id = chan_2_id;
9257                 route.paths[1].hops[1].short_channel_id = chan_4_id;
9258
9259                 match nodes[0].node.send_payment_with_route(&route, payment_hash,
9260                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_hash.0))
9261                 .unwrap_err() {
9262                         PaymentSendFailure::ParameterError(APIError::APIMisuseError { ref err }) => {
9263                                 assert!(regex::Regex::new(r"Payment secret is required for multi-path payments").unwrap().is_match(err))
9264                         },
9265                         _ => panic!("unexpected error")
9266                 }
9267         }
9268
9269         #[test]
9270         fn test_drop_disconnected_peers_when_removing_channels() {
9271                 let chanmon_cfgs = create_chanmon_cfgs(2);
9272                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9273                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9274                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9275
9276                 let chan = create_announced_chan_between_nodes(&nodes, 0, 1);
9277
9278                 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
9279                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
9280
9281                 nodes[0].node.force_close_broadcasting_latest_txn(&chan.2, &nodes[1].node.get_our_node_id()).unwrap();
9282                 check_closed_broadcast!(nodes[0], true);
9283                 check_added_monitors!(nodes[0], 1);
9284                 check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed);
9285
9286                 {
9287                         // Assert that nodes[1] is awaiting removal for nodes[0] once nodes[1] has been
9288                         // disconnected and the channel between has been force closed.
9289                         let nodes_0_per_peer_state = nodes[0].node.per_peer_state.read().unwrap();
9290                         // Assert that nodes[1] isn't removed before `timer_tick_occurred` has been executed.
9291                         assert_eq!(nodes_0_per_peer_state.len(), 1);
9292                         assert!(nodes_0_per_peer_state.get(&nodes[1].node.get_our_node_id()).is_some());
9293                 }
9294
9295                 nodes[0].node.timer_tick_occurred();
9296
9297                 {
9298                         // Assert that nodes[1] has now been removed.
9299                         assert_eq!(nodes[0].node.per_peer_state.read().unwrap().len(), 0);
9300                 }
9301         }
9302
9303         #[test]
9304         fn bad_inbound_payment_hash() {
9305                 // Add coverage for checking that a user-provided payment hash matches the payment secret.
9306                 let chanmon_cfgs = create_chanmon_cfgs(2);
9307                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9308                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9309                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9310
9311                 let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[0]);
9312                 let payment_data = msgs::FinalOnionHopData {
9313                         payment_secret,
9314                         total_msat: 100_000,
9315                 };
9316
9317                 // Ensure that if the payment hash given to `inbound_payment::verify` differs from the original,
9318                 // payment verification fails as expected.
9319                 let mut bad_payment_hash = payment_hash.clone();
9320                 bad_payment_hash.0[0] += 1;
9321                 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) {
9322                         Ok(_) => panic!("Unexpected ok"),
9323                         Err(()) => {
9324                                 nodes[0].logger.assert_log_contains("lightning::ln::inbound_payment", "Failing HTLC with user-generated payment_hash", 1);
9325                         }
9326                 }
9327
9328                 // Check that using the original payment hash succeeds.
9329                 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());
9330         }
9331
9332         #[test]
9333         fn test_id_to_peer_coverage() {
9334                 // Test that the `ChannelManager:id_to_peer` contains channels which have been assigned
9335                 // a `channel_id` (i.e. have had the funding tx created), and that they are removed once
9336                 // the channel is successfully closed.
9337                 let chanmon_cfgs = create_chanmon_cfgs(2);
9338                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9339                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9340                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9341
9342                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1_000_000, 500_000_000, 42, None).unwrap();
9343                 let open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9344                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel);
9345                 let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
9346                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
9347
9348                 let (temporary_channel_id, tx, _funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 1_000_000, 42);
9349                 let channel_id = &tx.txid().into_inner();
9350                 {
9351                         // Ensure that the `id_to_peer` map is empty until either party has received the
9352                         // funding transaction, and have the real `channel_id`.
9353                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
9354                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
9355                 }
9356
9357                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
9358                 {
9359                         // Assert that `nodes[0]`'s `id_to_peer` map is populated with the channel as soon as
9360                         // as it has the funding transaction.
9361                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
9362                         assert_eq!(nodes_0_lock.len(), 1);
9363                         assert!(nodes_0_lock.contains_key(channel_id));
9364                 }
9365
9366                 assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
9367
9368                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
9369
9370                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
9371                 {
9372                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
9373                         assert_eq!(nodes_0_lock.len(), 1);
9374                         assert!(nodes_0_lock.contains_key(channel_id));
9375                 }
9376                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
9377
9378                 {
9379                         // Assert that `nodes[1]`'s `id_to_peer` map is populated with the channel as soon as
9380                         // as it has the funding transaction.
9381                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
9382                         assert_eq!(nodes_1_lock.len(), 1);
9383                         assert!(nodes_1_lock.contains_key(channel_id));
9384                 }
9385                 check_added_monitors!(nodes[1], 1);
9386                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
9387                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
9388                 check_added_monitors!(nodes[0], 1);
9389                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
9390                 let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
9391                 let (announcement, nodes_0_update, nodes_1_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
9392                 update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &nodes_0_update, &nodes_1_update);
9393
9394                 nodes[0].node.close_channel(channel_id, &nodes[1].node.get_our_node_id()).unwrap();
9395                 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()));
9396                 let nodes_1_shutdown = get_event_msg!(nodes[1], MessageSendEvent::SendShutdown, nodes[0].node.get_our_node_id());
9397                 nodes[0].node.handle_shutdown(&nodes[1].node.get_our_node_id(), &nodes_1_shutdown);
9398
9399                 let closing_signed_node_0 = get_event_msg!(nodes[0], MessageSendEvent::SendClosingSigned, nodes[1].node.get_our_node_id());
9400                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0);
9401                 {
9402                         // Assert that the channel is kept in the `id_to_peer` map for both nodes until the
9403                         // channel can be fully closed by both parties (i.e. no outstanding htlcs exists, the
9404                         // fee for the closing transaction has been negotiated and the parties has the other
9405                         // party's signature for the fee negotiated closing transaction.)
9406                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
9407                         assert_eq!(nodes_0_lock.len(), 1);
9408                         assert!(nodes_0_lock.contains_key(channel_id));
9409                 }
9410
9411                 {
9412                         // At this stage, `nodes[1]` has proposed a fee for the closing transaction in the
9413                         // `handle_closing_signed` call above. As `nodes[1]` has not yet received the signature
9414                         // from `nodes[0]` for the closing transaction with the proposed fee, the channel is
9415                         // kept in the `nodes[1]`'s `id_to_peer` map.
9416                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
9417                         assert_eq!(nodes_1_lock.len(), 1);
9418                         assert!(nodes_1_lock.contains_key(channel_id));
9419                 }
9420
9421                 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()));
9422                 {
9423                         // `nodes[0]` accepts `nodes[1]`'s proposed fee for the closing transaction, and
9424                         // therefore has all it needs to fully close the channel (both signatures for the
9425                         // closing transaction).
9426                         // Assert that the channel is removed from `nodes[0]`'s `id_to_peer` map as it can be
9427                         // fully closed by `nodes[0]`.
9428                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
9429
9430                         // Assert that the channel is still in `nodes[1]`'s  `id_to_peer` map, as `nodes[1]`
9431                         // doesn't have `nodes[0]`'s signature for the closing transaction yet.
9432                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
9433                         assert_eq!(nodes_1_lock.len(), 1);
9434                         assert!(nodes_1_lock.contains_key(channel_id));
9435                 }
9436
9437                 let (_nodes_0_update, closing_signed_node_0) = get_closing_signed_broadcast!(nodes[0].node, nodes[1].node.get_our_node_id());
9438
9439                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0.unwrap());
9440                 {
9441                         // Assert that the channel has now been removed from both parties `id_to_peer` map once
9442                         // they both have everything required to fully close the channel.
9443                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
9444                 }
9445                 let (_nodes_1_update, _none) = get_closing_signed_broadcast!(nodes[1].node, nodes[0].node.get_our_node_id());
9446
9447                 check_closed_event!(nodes[0], 1, ClosureReason::CooperativeClosure);
9448                 check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure);
9449         }
9450
9451         fn check_not_connected_to_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
9452                 let expected_message = format!("Not connected to node: {}", expected_public_key);
9453                 check_api_error_message(expected_message, res_err)
9454         }
9455
9456         fn check_unkown_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
9457                 let expected_message = format!("Can't find a peer matching the passed counterparty node_id {}", expected_public_key);
9458                 check_api_error_message(expected_message, res_err)
9459         }
9460
9461         fn check_api_error_message<T>(expected_err_message: String, res_err: Result<T, APIError>) {
9462                 match res_err {
9463                         Err(APIError::APIMisuseError { err }) => {
9464                                 assert_eq!(err, expected_err_message);
9465                         },
9466                         Err(APIError::ChannelUnavailable { err }) => {
9467                                 assert_eq!(err, expected_err_message);
9468                         },
9469                         Ok(_) => panic!("Unexpected Ok"),
9470                         Err(_) => panic!("Unexpected Error"),
9471                 }
9472         }
9473
9474         #[test]
9475         fn test_api_calls_with_unkown_counterparty_node() {
9476                 // Tests that our API functions that expects a `counterparty_node_id` as input, behaves as
9477                 // expected if the `counterparty_node_id` is an unkown peer in the
9478                 // `ChannelManager::per_peer_state` map.
9479                 let chanmon_cfg = create_chanmon_cfgs(2);
9480                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
9481                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[None, None]);
9482                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
9483
9484                 // Dummy values
9485                 let channel_id = [4; 32];
9486                 let unkown_public_key = PublicKey::from_secret_key(&Secp256k1::signing_only(), &SecretKey::from_slice(&[42; 32]).unwrap());
9487                 let intercept_id = InterceptId([0; 32]);
9488
9489                 // Test the API functions.
9490                 check_not_connected_to_peer_error(nodes[0].node.create_channel(unkown_public_key, 1_000_000, 500_000_000, 42, None), unkown_public_key);
9491
9492                 check_unkown_peer_error(nodes[0].node.accept_inbound_channel(&channel_id, &unkown_public_key, 42), unkown_public_key);
9493
9494                 check_unkown_peer_error(nodes[0].node.close_channel(&channel_id, &unkown_public_key), unkown_public_key);
9495
9496                 check_unkown_peer_error(nodes[0].node.force_close_broadcasting_latest_txn(&channel_id, &unkown_public_key), unkown_public_key);
9497
9498                 check_unkown_peer_error(nodes[0].node.force_close_without_broadcasting_txn(&channel_id, &unkown_public_key), unkown_public_key);
9499
9500                 check_unkown_peer_error(nodes[0].node.forward_intercepted_htlc(intercept_id, &channel_id, unkown_public_key, 1_000_000), unkown_public_key);
9501
9502                 check_unkown_peer_error(nodes[0].node.update_channel_config(&unkown_public_key, &[channel_id], &ChannelConfig::default()), unkown_public_key);
9503         }
9504
9505         #[test]
9506         fn test_connection_limiting() {
9507                 // Test that we limit un-channel'd peers and un-funded channels properly.
9508                 let chanmon_cfgs = create_chanmon_cfgs(2);
9509                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9510                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9511                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9512
9513                 // Note that create_network connects the nodes together for us
9514
9515                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
9516                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9517
9518                 let mut funding_tx = None;
9519                 for idx in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
9520                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
9521                         let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
9522
9523                         if idx == 0 {
9524                                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
9525                                 let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100_000, 42);
9526                                 funding_tx = Some(tx.clone());
9527                                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx).unwrap();
9528                                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
9529
9530                                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
9531                                 check_added_monitors!(nodes[1], 1);
9532                                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
9533
9534                                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
9535
9536                                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
9537                                 check_added_monitors!(nodes[0], 1);
9538                                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
9539                         }
9540                         open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
9541                 }
9542
9543                 // A MAX_UNFUNDED_CHANS_PER_PEER + 1 channel will be summarily rejected
9544                 open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
9545                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
9546                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
9547                         open_channel_msg.temporary_channel_id);
9548
9549                 // Further, because all of our channels with nodes[0] are inbound, and none of them funded,
9550                 // it doesn't count as a "protected" peer, i.e. it counts towards the MAX_NO_CHANNEL_PEERS
9551                 // limit.
9552                 let mut peer_pks = Vec::with_capacity(super::MAX_NO_CHANNEL_PEERS);
9553                 for _ in 1..super::MAX_NO_CHANNEL_PEERS {
9554                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
9555                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
9556                         peer_pks.push(random_pk);
9557                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
9558                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
9559                         }, true).unwrap();
9560                 }
9561                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
9562                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
9563                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
9564                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
9565                 }, true).unwrap_err();
9566
9567                 // Also importantly, because nodes[0] isn't "protected", we will refuse a reconnection from
9568                 // them if we have too many un-channel'd peers.
9569                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
9570                 let chan_closed_events = nodes[1].node.get_and_clear_pending_events();
9571                 assert_eq!(chan_closed_events.len(), super::MAX_UNFUNDED_CHANS_PER_PEER - 1);
9572                 for ev in chan_closed_events {
9573                         if let Event::ChannelClosed { .. } = ev { } else { panic!(); }
9574                 }
9575                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
9576                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
9577                 }, true).unwrap();
9578                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
9579                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
9580                 }, true).unwrap_err();
9581
9582                 // but of course if the connection is outbound its allowed...
9583                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
9584                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
9585                 }, false).unwrap();
9586                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
9587
9588                 // Now nodes[0] is disconnected but still has a pending, un-funded channel lying around.
9589                 // Even though we accept one more connection from new peers, we won't actually let them
9590                 // open channels.
9591                 assert!(peer_pks.len() > super::MAX_UNFUNDED_CHANNEL_PEERS - 1);
9592                 for i in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
9593                         nodes[1].node.handle_open_channel(&peer_pks[i], &open_channel_msg);
9594                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, peer_pks[i]);
9595                         open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
9596                 }
9597                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
9598                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
9599                         open_channel_msg.temporary_channel_id);
9600
9601                 // Of course, however, outbound channels are always allowed
9602                 nodes[1].node.create_channel(last_random_pk, 100_000, 0, 42, None).unwrap();
9603                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, last_random_pk);
9604
9605                 // If we fund the first channel, nodes[0] has a live on-chain channel with us, it is now
9606                 // "protected" and can connect again.
9607                 mine_transaction(&nodes[1], funding_tx.as_ref().unwrap());
9608                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
9609                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
9610                 }, true).unwrap();
9611                 get_event_msg!(nodes[1], MessageSendEvent::SendChannelReestablish, nodes[0].node.get_our_node_id());
9612
9613                 // Further, because the first channel was funded, we can open another channel with
9614                 // last_random_pk.
9615                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
9616                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
9617         }
9618
9619         #[test]
9620         fn test_outbound_chans_unlimited() {
9621                 // Test that we never refuse an outbound channel even if a peer is unfuned-channel-limited
9622                 let chanmon_cfgs = create_chanmon_cfgs(2);
9623                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9624                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9625                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9626
9627                 // Note that create_network connects the nodes together for us
9628
9629                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
9630                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9631
9632                 for _ in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
9633                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
9634                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
9635                         open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
9636                 }
9637
9638                 // Once we have MAX_UNFUNDED_CHANS_PER_PEER unfunded channels, new inbound channels will be
9639                 // rejected.
9640                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
9641                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
9642                         open_channel_msg.temporary_channel_id);
9643
9644                 // but we can still open an outbound channel.
9645                 nodes[1].node.create_channel(nodes[0].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
9646                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
9647
9648                 // but even with such an outbound channel, additional inbound channels will still fail.
9649                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
9650                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
9651                         open_channel_msg.temporary_channel_id);
9652         }
9653
9654         #[test]
9655         fn test_0conf_limiting() {
9656                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
9657                 // flag set and (sometimes) accept channels as 0conf.
9658                 let chanmon_cfgs = create_chanmon_cfgs(2);
9659                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9660                 let mut settings = test_default_channel_config();
9661                 settings.manually_accept_inbound_channels = true;
9662                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(settings)]);
9663                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9664
9665                 // Note that create_network connects the nodes together for us
9666
9667                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
9668                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9669
9670                 // First, get us up to MAX_UNFUNDED_CHANNEL_PEERS so we can test at the edge
9671                 for _ in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
9672                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
9673                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
9674                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
9675                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
9676                         }, true).unwrap();
9677
9678                         nodes[1].node.handle_open_channel(&random_pk, &open_channel_msg);
9679                         let events = nodes[1].node.get_and_clear_pending_events();
9680                         match events[0] {
9681                                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
9682                                         nodes[1].node.accept_inbound_channel(&temporary_channel_id, &random_pk, 23).unwrap();
9683                                 }
9684                                 _ => panic!("Unexpected event"),
9685                         }
9686                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, random_pk);
9687                         open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
9688                 }
9689
9690                 // If we try to accept a channel from another peer non-0conf it will fail.
9691                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
9692                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
9693                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
9694                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
9695                 }, true).unwrap();
9696                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
9697                 let events = nodes[1].node.get_and_clear_pending_events();
9698                 match events[0] {
9699                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
9700                                 match nodes[1].node.accept_inbound_channel(&temporary_channel_id, &last_random_pk, 23) {
9701                                         Err(APIError::APIMisuseError { err }) =>
9702                                                 assert_eq!(err, "Too many peers with unfunded channels, refusing to accept new ones"),
9703                                         _ => panic!(),
9704                                 }
9705                         }
9706                         _ => panic!("Unexpected event"),
9707                 }
9708                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
9709                         open_channel_msg.temporary_channel_id);
9710
9711                 // ...however if we accept the same channel 0conf it should work just fine.
9712                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
9713                 let events = nodes[1].node.get_and_clear_pending_events();
9714                 match events[0] {
9715                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
9716                                 nodes[1].node.accept_inbound_channel_from_trusted_peer_0conf(&temporary_channel_id, &last_random_pk, 23).unwrap();
9717                         }
9718                         _ => panic!("Unexpected event"),
9719                 }
9720                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
9721         }
9722
9723         #[cfg(anchors)]
9724         #[test]
9725         fn test_anchors_zero_fee_htlc_tx_fallback() {
9726                 // Tests that if both nodes support anchors, but the remote node does not want to accept
9727                 // anchor channels at the moment, an error it sent to the local node such that it can retry
9728                 // the channel without the anchors feature.
9729                 let chanmon_cfgs = create_chanmon_cfgs(2);
9730                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9731                 let mut anchors_config = test_default_channel_config();
9732                 anchors_config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
9733                 anchors_config.manually_accept_inbound_channels = true;
9734                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(anchors_config.clone()), Some(anchors_config.clone())]);
9735                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9736
9737                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 0, None).unwrap();
9738                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9739                 assert!(open_channel_msg.channel_type.as_ref().unwrap().supports_anchors_zero_fee_htlc_tx());
9740
9741                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
9742                 let events = nodes[1].node.get_and_clear_pending_events();
9743                 match events[0] {
9744                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
9745                                 nodes[1].node.force_close_broadcasting_latest_txn(&temporary_channel_id, &nodes[0].node.get_our_node_id()).unwrap();
9746                         }
9747                         _ => panic!("Unexpected event"),
9748                 }
9749
9750                 let error_msg = get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id());
9751                 nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &error_msg);
9752
9753                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9754                 assert!(!open_channel_msg.channel_type.unwrap().supports_anchors_zero_fee_htlc_tx());
9755
9756                 check_closed_event!(nodes[1], 1, ClosureReason::HolderForceClosed);
9757         }
9758
9759         #[test]
9760         fn test_update_channel_config() {
9761                 let chanmon_cfg = create_chanmon_cfgs(2);
9762                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
9763                 let mut user_config = test_default_channel_config();
9764                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config), Some(user_config)]);
9765                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
9766                 let _ = create_announced_chan_between_nodes(&nodes, 0, 1);
9767                 let channel = &nodes[0].node.list_channels()[0];
9768
9769                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
9770                 let events = nodes[0].node.get_and_clear_pending_msg_events();
9771                 assert_eq!(events.len(), 0);
9772
9773                 user_config.channel_config.forwarding_fee_base_msat += 10;
9774                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
9775                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_base_msat, user_config.channel_config.forwarding_fee_base_msat);
9776                 let events = nodes[0].node.get_and_clear_pending_msg_events();
9777                 assert_eq!(events.len(), 1);
9778                 match &events[0] {
9779                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
9780                         _ => panic!("expected BroadcastChannelUpdate event"),
9781                 }
9782
9783                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate::default()).unwrap();
9784                 let events = nodes[0].node.get_and_clear_pending_msg_events();
9785                 assert_eq!(events.len(), 0);
9786
9787                 let new_cltv_expiry_delta = user_config.channel_config.cltv_expiry_delta + 6;
9788                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
9789                         cltv_expiry_delta: Some(new_cltv_expiry_delta),
9790                         ..Default::default()
9791                 }).unwrap();
9792                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
9793                 let events = nodes[0].node.get_and_clear_pending_msg_events();
9794                 assert_eq!(events.len(), 1);
9795                 match &events[0] {
9796                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
9797                         _ => panic!("expected BroadcastChannelUpdate event"),
9798                 }
9799
9800                 let new_fee = user_config.channel_config.forwarding_fee_proportional_millionths + 100;
9801                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
9802                         forwarding_fee_proportional_millionths: Some(new_fee),
9803                         ..Default::default()
9804                 }).unwrap();
9805                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
9806                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, new_fee);
9807                 let events = nodes[0].node.get_and_clear_pending_msg_events();
9808                 assert_eq!(events.len(), 1);
9809                 match &events[0] {
9810                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
9811                         _ => panic!("expected BroadcastChannelUpdate event"),
9812                 }
9813         }
9814 }
9815
9816 #[cfg(ldk_bench)]
9817 pub mod bench {
9818         use crate::chain::Listen;
9819         use crate::chain::chainmonitor::{ChainMonitor, Persist};
9820         use crate::sign::{KeysManager, InMemorySigner};
9821         use crate::events::{Event, MessageSendEvent, MessageSendEventsProvider};
9822         use crate::ln::channelmanager::{BestBlock, ChainParameters, ChannelManager, PaymentHash, PaymentPreimage, PaymentId, RecipientOnionFields, Retry};
9823         use crate::ln::functional_test_utils::*;
9824         use crate::ln::msgs::{ChannelMessageHandler, Init};
9825         use crate::routing::gossip::NetworkGraph;
9826         use crate::routing::router::{PaymentParameters, RouteParameters};
9827         use crate::util::test_utils;
9828         use crate::util::config::UserConfig;
9829
9830         use bitcoin::hashes::Hash;
9831         use bitcoin::hashes::sha256::Hash as Sha256;
9832         use bitcoin::{Block, BlockHeader, PackedLockTime, Transaction, TxMerkleNode, TxOut};
9833
9834         use crate::sync::{Arc, Mutex};
9835
9836         use criterion::Criterion;
9837
9838         type Manager<'a, P> = ChannelManager<
9839                 &'a ChainMonitor<InMemorySigner, &'a test_utils::TestChainSource,
9840                         &'a test_utils::TestBroadcaster, &'a test_utils::TestFeeEstimator,
9841                         &'a test_utils::TestLogger, &'a P>,
9842                 &'a test_utils::TestBroadcaster, &'a KeysManager, &'a KeysManager, &'a KeysManager,
9843                 &'a test_utils::TestFeeEstimator, &'a test_utils::TestRouter<'a>,
9844                 &'a test_utils::TestLogger>;
9845
9846         struct ANodeHolder<'a, P: Persist<InMemorySigner>> {
9847                 node: &'a Manager<'a, P>,
9848         }
9849         impl<'a, P: Persist<InMemorySigner>> NodeHolder for ANodeHolder<'a, P> {
9850                 type CM = Manager<'a, P>;
9851                 #[inline]
9852                 fn node(&self) -> &Manager<'a, P> { self.node }
9853                 #[inline]
9854                 fn chain_monitor(&self) -> Option<&test_utils::TestChainMonitor> { None }
9855         }
9856
9857         pub fn bench_sends(bench: &mut Criterion) {
9858                 bench_two_sends(bench, "bench_sends", test_utils::TestPersister::new(), test_utils::TestPersister::new());
9859         }
9860
9861         pub fn bench_two_sends<P: Persist<InMemorySigner>>(bench: &mut Criterion, bench_name: &str, persister_a: P, persister_b: P) {
9862                 // Do a simple benchmark of sending a payment back and forth between two nodes.
9863                 // Note that this is unrealistic as each payment send will require at least two fsync
9864                 // calls per node.
9865                 let network = bitcoin::Network::Testnet;
9866
9867                 let tx_broadcaster = test_utils::TestBroadcaster::new(network);
9868                 let fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
9869                 let logger_a = test_utils::TestLogger::with_id("node a".to_owned());
9870                 let scorer = Mutex::new(test_utils::TestScorer::new());
9871                 let router = test_utils::TestRouter::new(Arc::new(NetworkGraph::new(network, &logger_a)), &scorer);
9872
9873                 let mut config: UserConfig = Default::default();
9874                 config.channel_handshake_config.minimum_depth = 1;
9875
9876                 let chain_monitor_a = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_a);
9877                 let seed_a = [1u8; 32];
9878                 let keys_manager_a = KeysManager::new(&seed_a, 42, 42);
9879                 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 {
9880                         network,
9881                         best_block: BestBlock::from_network(network),
9882                 });
9883                 let node_a_holder = ANodeHolder { node: &node_a };
9884
9885                 let logger_b = test_utils::TestLogger::with_id("node a".to_owned());
9886                 let chain_monitor_b = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_b);
9887                 let seed_b = [2u8; 32];
9888                 let keys_manager_b = KeysManager::new(&seed_b, 42, 42);
9889                 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 {
9890                         network,
9891                         best_block: BestBlock::from_network(network),
9892                 });
9893                 let node_b_holder = ANodeHolder { node: &node_b };
9894
9895                 node_a.peer_connected(&node_b.get_our_node_id(), &Init {
9896                         features: node_b.init_features(), networks: None, remote_network_address: None
9897                 }, true).unwrap();
9898                 node_b.peer_connected(&node_a.get_our_node_id(), &Init {
9899                         features: node_a.init_features(), networks: None, remote_network_address: None
9900                 }, false).unwrap();
9901                 node_a.create_channel(node_b.get_our_node_id(), 8_000_000, 100_000_000, 42, None).unwrap();
9902                 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()));
9903                 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()));
9904
9905                 let tx;
9906                 if let Event::FundingGenerationReady { temporary_channel_id, output_script, .. } = get_event!(node_a_holder, Event::FundingGenerationReady) {
9907                         tx = Transaction { version: 2, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: vec![TxOut {
9908                                 value: 8_000_000, script_pubkey: output_script,
9909                         }]};
9910                         node_a.funding_transaction_generated(&temporary_channel_id, &node_b.get_our_node_id(), tx.clone()).unwrap();
9911                 } else { panic!(); }
9912
9913                 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()));
9914                 let events_b = node_b.get_and_clear_pending_events();
9915                 assert_eq!(events_b.len(), 1);
9916                 match events_b[0] {
9917                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
9918                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
9919                         },
9920                         _ => panic!("Unexpected event"),
9921                 }
9922
9923                 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()));
9924                 let events_a = node_a.get_and_clear_pending_events();
9925                 assert_eq!(events_a.len(), 1);
9926                 match events_a[0] {
9927                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
9928                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
9929                         },
9930                         _ => panic!("Unexpected event"),
9931                 }
9932
9933                 assert_eq!(&tx_broadcaster.txn_broadcasted.lock().unwrap()[..], &[tx.clone()]);
9934
9935                 let block = create_dummy_block(BestBlock::from_network(network).block_hash(), 42, vec![tx]);
9936                 Listen::block_connected(&node_a, &block, 1);
9937                 Listen::block_connected(&node_b, &block, 1);
9938
9939                 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()));
9940                 let msg_events = node_a.get_and_clear_pending_msg_events();
9941                 assert_eq!(msg_events.len(), 2);
9942                 match msg_events[0] {
9943                         MessageSendEvent::SendChannelReady { ref msg, .. } => {
9944                                 node_b.handle_channel_ready(&node_a.get_our_node_id(), msg);
9945                                 get_event_msg!(node_b_holder, MessageSendEvent::SendChannelUpdate, node_a.get_our_node_id());
9946                         },
9947                         _ => panic!(),
9948                 }
9949                 match msg_events[1] {
9950                         MessageSendEvent::SendChannelUpdate { .. } => {},
9951                         _ => panic!(),
9952                 }
9953
9954                 let events_a = node_a.get_and_clear_pending_events();
9955                 assert_eq!(events_a.len(), 1);
9956                 match events_a[0] {
9957                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
9958                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
9959                         },
9960                         _ => panic!("Unexpected event"),
9961                 }
9962
9963                 let events_b = node_b.get_and_clear_pending_events();
9964                 assert_eq!(events_b.len(), 1);
9965                 match events_b[0] {
9966                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
9967                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
9968                         },
9969                         _ => panic!("Unexpected event"),
9970                 }
9971
9972                 let mut payment_count: u64 = 0;
9973                 macro_rules! send_payment {
9974                         ($node_a: expr, $node_b: expr) => {
9975                                 let payment_params = PaymentParameters::from_node_id($node_b.get_our_node_id(), TEST_FINAL_CLTV)
9976                                         .with_bolt11_features($node_b.invoice_features()).unwrap();
9977                                 let mut payment_preimage = PaymentPreimage([0; 32]);
9978                                 payment_preimage.0[0..8].copy_from_slice(&payment_count.to_le_bytes());
9979                                 payment_count += 1;
9980                                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner());
9981                                 let payment_secret = $node_b.create_inbound_payment_for_hash(payment_hash, None, 7200, None).unwrap();
9982
9983                                 $node_a.send_payment(payment_hash, RecipientOnionFields::secret_only(payment_secret),
9984                                         PaymentId(payment_hash.0), RouteParameters {
9985                                                 payment_params, final_value_msat: 10_000,
9986                                         }, Retry::Attempts(0)).unwrap();
9987                                 let payment_event = SendEvent::from_event($node_a.get_and_clear_pending_msg_events().pop().unwrap());
9988                                 $node_b.handle_update_add_htlc(&$node_a.get_our_node_id(), &payment_event.msgs[0]);
9989                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &payment_event.commitment_msg);
9990                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_b }, &$node_a.get_our_node_id());
9991                                 $node_a.handle_revoke_and_ack(&$node_b.get_our_node_id(), &raa);
9992                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &cs);
9993                                 $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()));
9994
9995                                 expect_pending_htlcs_forwardable!(ANodeHolder { node: &$node_b });
9996                                 expect_payment_claimable!(ANodeHolder { node: &$node_b }, payment_hash, payment_secret, 10_000);
9997                                 $node_b.claim_funds(payment_preimage);
9998                                 expect_payment_claimed!(ANodeHolder { node: &$node_b }, payment_hash, 10_000);
9999
10000                                 match $node_b.get_and_clear_pending_msg_events().pop().unwrap() {
10001                                         MessageSendEvent::UpdateHTLCs { node_id, updates } => {
10002                                                 assert_eq!(node_id, $node_a.get_our_node_id());
10003                                                 $node_a.handle_update_fulfill_htlc(&$node_b.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
10004                                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &updates.commitment_signed);
10005                                         },
10006                                         _ => panic!("Failed to generate claim event"),
10007                                 }
10008
10009                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_a }, &$node_b.get_our_node_id());
10010                                 $node_b.handle_revoke_and_ack(&$node_a.get_our_node_id(), &raa);
10011                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &cs);
10012                                 $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()));
10013
10014                                 expect_payment_sent!(ANodeHolder { node: &$node_a }, payment_preimage);
10015                         }
10016                 }
10017
10018                 bench.bench_function(bench_name, |b| b.iter(|| {
10019                         send_payment!(node_a, node_b);
10020                         send_payment!(node_b, node_a);
10021                 }));
10022         }
10023 }