Drop `PermamentFailure` persistence handling in ChannelManager
[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, ChannelId, PaymentHash, PaymentPreimage, PaymentSecret};
43 use crate::ln::channel::{Channel, ChannelPhase, ChannelContext, ChannelError, ChannelUpdateStatus, ShutdownResult, UnfundedChannelContext, UpdateFulfillCommitFetch, OutboundV1Channel, InboundV1Channel};
44 use crate::ln::features::{ChannelFeatures, ChannelTypeFeatures, InitFeatures, NodeFeatures};
45 #[cfg(any(feature = "_test_utils", test))]
46 use crate::ln::features::Bolt11InvoiceFeatures;
47 use crate::routing::gossip::NetworkGraph;
48 use crate::routing::router::{BlindedTail, DefaultRouter, InFlightHtlcs, Path, Payee, PaymentParameters, Route, 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};
54 #[cfg(test)]
55 use crate::ln::outbound_payment;
56 use crate::ln::outbound_payment::{OutboundPayments, PaymentAttempts, PendingOutboundPayment, SendAlongPathArgs};
57 use crate::ln::wire::Encode;
58 use crate::sign::{EntropySource, KeysManager, NodeSigner, Recipient, SignerProvider, 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, ProbeSendFailure, 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                 /// See [`RecipientOnionFields::custom_tlvs`] for more info.
114                 custom_tlvs: Vec<(u64, Vec<u8>)>,
115         },
116         ReceiveKeysend {
117                 /// This was added in 0.0.116 and will break deserialization on downgrades.
118                 payment_data: Option<msgs::FinalOnionHopData>,
119                 payment_preimage: PaymentPreimage,
120                 payment_metadata: Option<Vec<u8>>,
121                 incoming_cltv_expiry: u32, // Used to track when we should expire pending HTLCs that go unclaimed
122                 /// See [`RecipientOnionFields::custom_tlvs`] for more info.
123                 custom_tlvs: Vec<(u64, Vec<u8>)>,
124         },
125 }
126
127 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
128 pub(super) struct PendingHTLCInfo {
129         pub(super) routing: PendingHTLCRouting,
130         pub(super) incoming_shared_secret: [u8; 32],
131         payment_hash: PaymentHash,
132         /// Amount received
133         pub(super) incoming_amt_msat: Option<u64>, // Added in 0.0.113
134         /// Sender intended amount to forward or receive (actual amount received
135         /// may overshoot this in either case)
136         pub(super) outgoing_amt_msat: u64,
137         pub(super) outgoing_cltv_value: u32,
138         /// The fee being skimmed off the top of this HTLC. If this is a forward, it'll be the fee we are
139         /// skimming. If we're receiving this HTLC, it's the fee that our counterparty skimmed.
140         pub(super) skimmed_fee_msat: Option<u64>,
141 }
142
143 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
144 pub(super) enum HTLCFailureMsg {
145         Relay(msgs::UpdateFailHTLC),
146         Malformed(msgs::UpdateFailMalformedHTLC),
147 }
148
149 /// Stores whether we can't forward an HTLC or relevant forwarding info
150 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
151 pub(super) enum PendingHTLCStatus {
152         Forward(PendingHTLCInfo),
153         Fail(HTLCFailureMsg),
154 }
155
156 pub(super) struct PendingAddHTLCInfo {
157         pub(super) forward_info: PendingHTLCInfo,
158
159         // These fields are produced in `forward_htlcs()` and consumed in
160         // `process_pending_htlc_forwards()` for constructing the
161         // `HTLCSource::PreviousHopData` for failed and forwarded
162         // HTLCs.
163         //
164         // Note that this may be an outbound SCID alias for the associated channel.
165         prev_short_channel_id: u64,
166         prev_htlc_id: u64,
167         prev_funding_outpoint: OutPoint,
168         prev_user_channel_id: u128,
169 }
170
171 pub(super) enum HTLCForwardInfo {
172         AddHTLC(PendingAddHTLCInfo),
173         FailHTLC {
174                 htlc_id: u64,
175                 err_packet: msgs::OnionErrorPacket,
176         },
177 }
178
179 /// Tracks the inbound corresponding to an outbound HTLC
180 #[derive(Clone, Debug, Hash, PartialEq, Eq)]
181 pub(crate) struct HTLCPreviousHopData {
182         // Note that this may be an outbound SCID alias for the associated channel.
183         short_channel_id: u64,
184         user_channel_id: Option<u128>,
185         htlc_id: u64,
186         incoming_packet_shared_secret: [u8; 32],
187         phantom_shared_secret: Option<[u8; 32]>,
188
189         // This field is consumed by `claim_funds_from_hop()` when updating a force-closed backwards
190         // channel with a preimage provided by the forward channel.
191         outpoint: OutPoint,
192 }
193
194 enum OnionPayload {
195         /// Indicates this incoming onion payload is for the purpose of paying an invoice.
196         Invoice {
197                 /// This is only here for backwards-compatibility in serialization, in the future it can be
198                 /// removed, breaking clients running 0.0.106 and earlier.
199                 _legacy_hop_data: Option<msgs::FinalOnionHopData>,
200         },
201         /// Contains the payer-provided preimage.
202         Spontaneous(PaymentPreimage),
203 }
204
205 /// HTLCs that are to us and can be failed/claimed by the user
206 struct ClaimableHTLC {
207         prev_hop: HTLCPreviousHopData,
208         cltv_expiry: u32,
209         /// The amount (in msats) of this MPP part
210         value: u64,
211         /// The amount (in msats) that the sender intended to be sent in this MPP
212         /// part (used for validating total MPP amount)
213         sender_intended_value: u64,
214         onion_payload: OnionPayload,
215         timer_ticks: u8,
216         /// The total value received for a payment (sum of all MPP parts if the payment is a MPP).
217         /// Gets set to the amount reported when pushing [`Event::PaymentClaimable`].
218         total_value_received: Option<u64>,
219         /// The sender intended sum total of all MPP parts specified in the onion
220         total_msat: u64,
221         /// The extra fee our counterparty skimmed off the top of this HTLC.
222         counterparty_skimmed_fee_msat: Option<u64>,
223 }
224
225 impl From<&ClaimableHTLC> for events::ClaimedHTLC {
226         fn from(val: &ClaimableHTLC) -> Self {
227                 events::ClaimedHTLC {
228                         channel_id: val.prev_hop.outpoint.to_channel_id(),
229                         user_channel_id: val.prev_hop.user_channel_id.unwrap_or(0),
230                         cltv_expiry: val.cltv_expiry,
231                         value_msat: val.value,
232                 }
233         }
234 }
235
236 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
237 /// a payment and ensure idempotency in LDK.
238 ///
239 /// This is not exported to bindings users as we just use [u8; 32] directly
240 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
241 pub struct PaymentId(pub [u8; Self::LENGTH]);
242
243 impl PaymentId {
244         /// Number of bytes in the id.
245         pub const LENGTH: usize = 32;
246 }
247
248 impl Writeable for PaymentId {
249         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
250                 self.0.write(w)
251         }
252 }
253
254 impl Readable for PaymentId {
255         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
256                 let buf: [u8; 32] = Readable::read(r)?;
257                 Ok(PaymentId(buf))
258         }
259 }
260
261 impl core::fmt::Display for PaymentId {
262         fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
263                 crate::util::logger::DebugBytes(&self.0).fmt(f)
264         }
265 }
266
267 /// An identifier used to uniquely identify an intercepted HTLC to LDK.
268 ///
269 /// This is not exported to bindings users as we just use [u8; 32] directly
270 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
271 pub struct InterceptId(pub [u8; 32]);
272
273 impl Writeable for InterceptId {
274         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
275                 self.0.write(w)
276         }
277 }
278
279 impl Readable for InterceptId {
280         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
281                 let buf: [u8; 32] = Readable::read(r)?;
282                 Ok(InterceptId(buf))
283         }
284 }
285
286 #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
287 /// Uniquely describes an HTLC by its source. Just the guaranteed-unique subset of [`HTLCSource`].
288 pub(crate) enum SentHTLCId {
289         PreviousHopData { short_channel_id: u64, htlc_id: u64 },
290         OutboundRoute { session_priv: SecretKey },
291 }
292 impl SentHTLCId {
293         pub(crate) fn from_source(source: &HTLCSource) -> Self {
294                 match source {
295                         HTLCSource::PreviousHopData(hop_data) => Self::PreviousHopData {
296                                 short_channel_id: hop_data.short_channel_id,
297                                 htlc_id: hop_data.htlc_id,
298                         },
299                         HTLCSource::OutboundRoute { session_priv, .. } =>
300                                 Self::OutboundRoute { session_priv: *session_priv },
301                 }
302         }
303 }
304 impl_writeable_tlv_based_enum!(SentHTLCId,
305         (0, PreviousHopData) => {
306                 (0, short_channel_id, required),
307                 (2, htlc_id, required),
308         },
309         (2, OutboundRoute) => {
310                 (0, session_priv, required),
311         };
312 );
313
314
315 /// Tracks the inbound corresponding to an outbound HTLC
316 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
317 #[derive(Clone, Debug, PartialEq, Eq)]
318 pub(crate) enum HTLCSource {
319         PreviousHopData(HTLCPreviousHopData),
320         OutboundRoute {
321                 path: Path,
322                 session_priv: SecretKey,
323                 /// Technically we can recalculate this from the route, but we cache it here to avoid
324                 /// doing a double-pass on route when we get a failure back
325                 first_hop_htlc_msat: u64,
326                 payment_id: PaymentId,
327         },
328 }
329 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
330 impl core::hash::Hash for HTLCSource {
331         fn hash<H: core::hash::Hasher>(&self, hasher: &mut H) {
332                 match self {
333                         HTLCSource::PreviousHopData(prev_hop_data) => {
334                                 0u8.hash(hasher);
335                                 prev_hop_data.hash(hasher);
336                         },
337                         HTLCSource::OutboundRoute { path, session_priv, payment_id, first_hop_htlc_msat } => {
338                                 1u8.hash(hasher);
339                                 path.hash(hasher);
340                                 session_priv[..].hash(hasher);
341                                 payment_id.hash(hasher);
342                                 first_hop_htlc_msat.hash(hasher);
343                         },
344                 }
345         }
346 }
347 impl HTLCSource {
348         #[cfg(all(feature = "_test_vectors", not(feature = "grind_signatures")))]
349         #[cfg(test)]
350         pub fn dummy() -> Self {
351                 HTLCSource::OutboundRoute {
352                         path: Path { hops: Vec::new(), blinded_tail: None },
353                         session_priv: SecretKey::from_slice(&[1; 32]).unwrap(),
354                         first_hop_htlc_msat: 0,
355                         payment_id: PaymentId([2; 32]),
356                 }
357         }
358
359         #[cfg(debug_assertions)]
360         /// Checks whether this HTLCSource could possibly match the given HTLC output in a commitment
361         /// transaction. Useful to ensure different datastructures match up.
362         pub(crate) fn possibly_matches_output(&self, htlc: &super::chan_utils::HTLCOutputInCommitment) -> bool {
363                 if let HTLCSource::OutboundRoute { first_hop_htlc_msat, .. } = self {
364                         *first_hop_htlc_msat == htlc.amount_msat
365                 } else {
366                         // There's nothing we can check for forwarded HTLCs
367                         true
368                 }
369         }
370 }
371
372 struct InboundOnionErr {
373         err_code: u16,
374         err_data: Vec<u8>,
375         msg: &'static str,
376 }
377
378 /// This enum is used to specify which error data to send to peers when failing back an HTLC
379 /// using [`ChannelManager::fail_htlc_backwards_with_reason`].
380 ///
381 /// For more info on failure codes, see <https://github.com/lightning/bolts/blob/master/04-onion-routing.md#failure-messages>.
382 #[derive(Clone, Copy)]
383 pub enum FailureCode {
384         /// We had a temporary error processing the payment. Useful if no other error codes fit
385         /// and you want to indicate that the payer may want to retry.
386         TemporaryNodeFailure,
387         /// We have a required feature which was not in this onion. For example, you may require
388         /// some additional metadata that was not provided with this payment.
389         RequiredNodeFeatureMissing,
390         /// You may wish to use this when a `payment_preimage` is unknown, or the CLTV expiry of
391         /// the HTLC is too close to the current block height for safe handling.
392         /// Using this failure code in [`ChannelManager::fail_htlc_backwards_with_reason`] is
393         /// equivalent to calling [`ChannelManager::fail_htlc_backwards`].
394         IncorrectOrUnknownPaymentDetails,
395         /// We failed to process the payload after the onion was decrypted. You may wish to
396         /// use this when receiving custom HTLC TLVs with even type numbers that you don't recognize.
397         ///
398         /// If available, the tuple data may include the type number and byte offset in the
399         /// decrypted byte stream where the failure occurred.
400         InvalidOnionPayload(Option<(u64, u16)>),
401 }
402
403 impl Into<u16> for FailureCode {
404     fn into(self) -> u16 {
405                 match self {
406                         FailureCode::TemporaryNodeFailure => 0x2000 | 2,
407                         FailureCode::RequiredNodeFeatureMissing => 0x4000 | 0x2000 | 3,
408                         FailureCode::IncorrectOrUnknownPaymentDetails => 0x4000 | 15,
409                         FailureCode::InvalidOnionPayload(_) => 0x4000 | 22,
410                 }
411         }
412 }
413
414 /// Error type returned across the peer_state mutex boundary. When an Err is generated for a
415 /// Channel, we generally end up with a ChannelError::Close for which we have to close the channel
416 /// immediately (ie with no further calls on it made). Thus, this step happens inside a
417 /// peer_state lock. We then return the set of things that need to be done outside the lock in
418 /// this struct and call handle_error!() on it.
419
420 struct MsgHandleErrInternal {
421         err: msgs::LightningError,
422         chan_id: Option<(ChannelId, u128)>, // If Some a channel of ours has been closed
423         shutdown_finish: Option<(ShutdownResult, Option<msgs::ChannelUpdate>)>,
424         channel_capacity: Option<u64>,
425 }
426 impl MsgHandleErrInternal {
427         #[inline]
428         fn send_err_msg_no_close(err: String, channel_id: ChannelId) -> Self {
429                 Self {
430                         err: LightningError {
431                                 err: err.clone(),
432                                 action: msgs::ErrorAction::SendErrorMessage {
433                                         msg: msgs::ErrorMessage {
434                                                 channel_id,
435                                                 data: err
436                                         },
437                                 },
438                         },
439                         chan_id: None,
440                         shutdown_finish: None,
441                         channel_capacity: None,
442                 }
443         }
444         #[inline]
445         fn from_no_close(err: msgs::LightningError) -> Self {
446                 Self { err, chan_id: None, shutdown_finish: None, channel_capacity: None }
447         }
448         #[inline]
449         fn from_finish_shutdown(err: String, channel_id: ChannelId, user_channel_id: u128, shutdown_res: ShutdownResult, channel_update: Option<msgs::ChannelUpdate>, channel_capacity: u64) -> Self {
450                 Self {
451                         err: LightningError {
452                                 err: err.clone(),
453                                 action: msgs::ErrorAction::SendErrorMessage {
454                                         msg: msgs::ErrorMessage {
455                                                 channel_id,
456                                                 data: err
457                                         },
458                                 },
459                         },
460                         chan_id: Some((channel_id, user_channel_id)),
461                         shutdown_finish: Some((shutdown_res, channel_update)),
462                         channel_capacity: Some(channel_capacity)
463                 }
464         }
465         #[inline]
466         fn from_chan_no_close(err: ChannelError, channel_id: ChannelId) -> Self {
467                 Self {
468                         err: match err {
469                                 ChannelError::Warn(msg) =>  LightningError {
470                                         err: msg.clone(),
471                                         action: msgs::ErrorAction::SendWarningMessage {
472                                                 msg: msgs::WarningMessage {
473                                                         channel_id,
474                                                         data: msg
475                                                 },
476                                                 log_level: Level::Warn,
477                                         },
478                                 },
479                                 ChannelError::Ignore(msg) => LightningError {
480                                         err: msg,
481                                         action: msgs::ErrorAction::IgnoreError,
482                                 },
483                                 ChannelError::Close(msg) => LightningError {
484                                         err: msg.clone(),
485                                         action: msgs::ErrorAction::SendErrorMessage {
486                                                 msg: msgs::ErrorMessage {
487                                                         channel_id,
488                                                         data: msg
489                                                 },
490                                         },
491                                 },
492                         },
493                         chan_id: None,
494                         shutdown_finish: None,
495                         channel_capacity: None,
496                 }
497         }
498
499         fn closes_channel(&self) -> bool {
500                 self.chan_id.is_some()
501         }
502 }
503
504 /// We hold back HTLCs we intend to relay for a random interval greater than this (see
505 /// Event::PendingHTLCsForwardable for the API guidelines indicating how long should be waited).
506 /// This provides some limited amount of privacy. Ideally this would range from somewhere like one
507 /// second to 30 seconds, but people expect lightning to be, you know, kinda fast, sadly.
508 pub(super) const MIN_HTLC_RELAY_HOLDING_CELL_MILLIS: u64 = 100;
509
510 /// For events which result in both a RevokeAndACK and a CommitmentUpdate, by default they should
511 /// be sent in the order they appear in the return value, however sometimes the order needs to be
512 /// variable at runtime (eg Channel::channel_reestablish needs to re-send messages in the order
513 /// they were originally sent). In those cases, this enum is also returned.
514 #[derive(Clone, PartialEq)]
515 pub(super) enum RAACommitmentOrder {
516         /// Send the CommitmentUpdate messages first
517         CommitmentFirst,
518         /// Send the RevokeAndACK message first
519         RevokeAndACKFirst,
520 }
521
522 /// Information about a payment which is currently being claimed.
523 struct ClaimingPayment {
524         amount_msat: u64,
525         payment_purpose: events::PaymentPurpose,
526         receiver_node_id: PublicKey,
527         htlcs: Vec<events::ClaimedHTLC>,
528         sender_intended_value: Option<u64>,
529 }
530 impl_writeable_tlv_based!(ClaimingPayment, {
531         (0, amount_msat, required),
532         (2, payment_purpose, required),
533         (4, receiver_node_id, required),
534         (5, htlcs, optional_vec),
535         (7, sender_intended_value, option),
536 });
537
538 struct ClaimablePayment {
539         purpose: events::PaymentPurpose,
540         onion_fields: Option<RecipientOnionFields>,
541         htlcs: Vec<ClaimableHTLC>,
542 }
543
544 /// Information about claimable or being-claimed payments
545 struct ClaimablePayments {
546         /// Map from payment hash to the payment data and any HTLCs which are to us and can be
547         /// failed/claimed by the user.
548         ///
549         /// Note that, no consistency guarantees are made about the channels given here actually
550         /// existing anymore by the time you go to read them!
551         ///
552         /// When adding to the map, [`Self::pending_claiming_payments`] must also be checked to ensure
553         /// we don't get a duplicate payment.
554         claimable_payments: HashMap<PaymentHash, ClaimablePayment>,
555
556         /// Map from payment hash to the payment data for HTLCs which we have begun claiming, but which
557         /// are waiting on a [`ChannelMonitorUpdate`] to complete in order to be surfaced to the user
558         /// as an [`events::Event::PaymentClaimed`].
559         pending_claiming_payments: HashMap<PaymentHash, ClaimingPayment>,
560 }
561
562 /// Events which we process internally but cannot be processed immediately at the generation site
563 /// usually because we're running pre-full-init. They are handled immediately once we detect we are
564 /// running normally, and specifically must be processed before any other non-background
565 /// [`ChannelMonitorUpdate`]s are applied.
566 enum BackgroundEvent {
567         /// Handle a ChannelMonitorUpdate which closes the channel or for an already-closed channel.
568         /// This is only separated from [`Self::MonitorUpdateRegeneratedOnStartup`] as the
569         /// maybe-non-closing variant needs a public key to handle channel resumption, whereas if the
570         /// channel has been force-closed we do not need the counterparty node_id.
571         ///
572         /// Note that any such events are lost on shutdown, so in general they must be updates which
573         /// are regenerated on startup.
574         ClosedMonitorUpdateRegeneratedOnStartup((OutPoint, ChannelMonitorUpdate)),
575         /// Handle a ChannelMonitorUpdate which may or may not close the channel and may unblock the
576         /// channel to continue normal operation.
577         ///
578         /// In general this should be used rather than
579         /// [`Self::ClosedMonitorUpdateRegeneratedOnStartup`], however in cases where the
580         /// `counterparty_node_id` is not available as the channel has closed from a [`ChannelMonitor`]
581         /// error the other variant is acceptable.
582         ///
583         /// Note that any such events are lost on shutdown, so in general they must be updates which
584         /// are regenerated on startup.
585         MonitorUpdateRegeneratedOnStartup {
586                 counterparty_node_id: PublicKey,
587                 funding_txo: OutPoint,
588                 update: ChannelMonitorUpdate
589         },
590         /// Some [`ChannelMonitorUpdate`] (s) completed before we were serialized but we still have
591         /// them marked pending, thus we need to run any [`MonitorUpdateCompletionAction`] (s) pending
592         /// on a channel.
593         MonitorUpdatesComplete {
594                 counterparty_node_id: PublicKey,
595                 channel_id: ChannelId,
596         },
597 }
598
599 #[derive(Debug)]
600 pub(crate) enum MonitorUpdateCompletionAction {
601         /// Indicates that a payment ultimately destined for us was claimed and we should emit an
602         /// [`events::Event::PaymentClaimed`] to the user if we haven't yet generated such an event for
603         /// this payment. Note that this is only best-effort. On restart it's possible such a duplicate
604         /// event can be generated.
605         PaymentClaimed { payment_hash: PaymentHash },
606         /// Indicates an [`events::Event`] should be surfaced to the user and possibly resume the
607         /// operation of another channel.
608         ///
609         /// This is usually generated when we've forwarded an HTLC and want to block the outbound edge
610         /// from completing a monitor update which removes the payment preimage until the inbound edge
611         /// completes a monitor update containing the payment preimage. In that case, after the inbound
612         /// edge completes, we will surface an [`Event::PaymentForwarded`] as well as unblock the
613         /// outbound edge.
614         EmitEventAndFreeOtherChannel {
615                 event: events::Event,
616                 downstream_counterparty_and_funding_outpoint: Option<(PublicKey, OutPoint, RAAMonitorUpdateBlockingAction)>,
617         },
618 }
619
620 impl_writeable_tlv_based_enum_upgradable!(MonitorUpdateCompletionAction,
621         (0, PaymentClaimed) => { (0, payment_hash, required) },
622         (2, EmitEventAndFreeOtherChannel) => {
623                 (0, event, upgradable_required),
624                 // LDK prior to 0.0.116 did not have this field as the monitor update application order was
625                 // required by clients. If we downgrade to something prior to 0.0.116 this may result in
626                 // monitor updates which aren't properly blocked or resumed, however that's fine - we don't
627                 // support async monitor updates even in LDK 0.0.116 and once we do we'll require no
628                 // downgrades to prior versions.
629                 (1, downstream_counterparty_and_funding_outpoint, option),
630         },
631 );
632
633 #[derive(Clone, Debug, PartialEq, Eq)]
634 pub(crate) enum EventCompletionAction {
635         ReleaseRAAChannelMonitorUpdate {
636                 counterparty_node_id: PublicKey,
637                 channel_funding_outpoint: OutPoint,
638         },
639 }
640 impl_writeable_tlv_based_enum!(EventCompletionAction,
641         (0, ReleaseRAAChannelMonitorUpdate) => {
642                 (0, channel_funding_outpoint, required),
643                 (2, counterparty_node_id, required),
644         };
645 );
646
647 #[derive(Clone, PartialEq, Eq, Debug)]
648 /// If something is blocked on the completion of an RAA-generated [`ChannelMonitorUpdate`] we track
649 /// the blocked action here. See enum variants for more info.
650 pub(crate) enum RAAMonitorUpdateBlockingAction {
651         /// A forwarded payment was claimed. We block the downstream channel completing its monitor
652         /// update which removes the HTLC preimage until the upstream channel has gotten the preimage
653         /// durably to disk.
654         ForwardedPaymentInboundClaim {
655                 /// The upstream channel ID (i.e. the inbound edge).
656                 channel_id: ChannelId,
657                 /// The HTLC ID on the inbound edge.
658                 htlc_id: u64,
659         },
660 }
661
662 impl RAAMonitorUpdateBlockingAction {
663         fn from_prev_hop_data(prev_hop: &HTLCPreviousHopData) -> Self {
664                 Self::ForwardedPaymentInboundClaim {
665                         channel_id: prev_hop.outpoint.to_channel_id(),
666                         htlc_id: prev_hop.htlc_id,
667                 }
668         }
669 }
670
671 impl_writeable_tlv_based_enum!(RAAMonitorUpdateBlockingAction,
672         (0, ForwardedPaymentInboundClaim) => { (0, channel_id, required), (2, htlc_id, required) }
673 ;);
674
675
676 /// State we hold per-peer.
677 pub(super) struct PeerState<SP: Deref> where SP::Target: SignerProvider {
678         /// `channel_id` -> `ChannelPhase`
679         ///
680         /// Holds all channels within corresponding `ChannelPhase`s where the peer is the counterparty.
681         pub(super) channel_by_id: HashMap<ChannelId, ChannelPhase<SP>>,
682         /// `temporary_channel_id` -> `InboundChannelRequest`.
683         ///
684         /// When manual channel acceptance is enabled, this holds all unaccepted inbound channels where
685         /// the peer is the counterparty. If the channel is accepted, then the entry in this table is
686         /// removed, and an InboundV1Channel is created and placed in the `inbound_v1_channel_by_id` table. If
687         /// the channel is rejected, then the entry is simply removed.
688         pub(super) inbound_channel_request_by_id: HashMap<ChannelId, InboundChannelRequest>,
689         /// The latest `InitFeatures` we heard from the peer.
690         latest_features: InitFeatures,
691         /// Messages to send to the peer - pushed to in the same lock that they are generated in (except
692         /// for broadcast messages, where ordering isn't as strict).
693         pub(super) pending_msg_events: Vec<MessageSendEvent>,
694         /// Map from Channel IDs to pending [`ChannelMonitorUpdate`]s which have been passed to the
695         /// user but which have not yet completed.
696         ///
697         /// Note that the channel may no longer exist. For example if the channel was closed but we
698         /// later needed to claim an HTLC which is pending on-chain, we may generate a monitor update
699         /// for a missing channel.
700         in_flight_monitor_updates: BTreeMap<OutPoint, Vec<ChannelMonitorUpdate>>,
701         /// Map from a specific channel to some action(s) that should be taken when all pending
702         /// [`ChannelMonitorUpdate`]s for the channel complete updating.
703         ///
704         /// Note that because we generally only have one entry here a HashMap is pretty overkill. A
705         /// BTreeMap currently stores more than ten elements per leaf node, so even up to a few
706         /// channels with a peer this will just be one allocation and will amount to a linear list of
707         /// channels to walk, avoiding the whole hashing rigmarole.
708         ///
709         /// Note that the channel may no longer exist. For example, if a channel was closed but we
710         /// later needed to claim an HTLC which is pending on-chain, we may generate a monitor update
711         /// for a missing channel. While a malicious peer could construct a second channel with the
712         /// same `temporary_channel_id` (or final `channel_id` in the case of 0conf channels or prior
713         /// to funding appearing on-chain), the downstream `ChannelMonitor` set is required to ensure
714         /// duplicates do not occur, so such channels should fail without a monitor update completing.
715         monitor_update_blocked_actions: BTreeMap<ChannelId, Vec<MonitorUpdateCompletionAction>>,
716         /// If another channel's [`ChannelMonitorUpdate`] needs to complete before a channel we have
717         /// with this peer can complete an RAA [`ChannelMonitorUpdate`] (e.g. because the RAA update
718         /// will remove a preimage that needs to be durably in an upstream channel first), we put an
719         /// entry here to note that the channel with the key's ID is blocked on a set of actions.
720         actions_blocking_raa_monitor_updates: BTreeMap<ChannelId, Vec<RAAMonitorUpdateBlockingAction>>,
721         /// The peer is currently connected (i.e. we've seen a
722         /// [`ChannelMessageHandler::peer_connected`] and no corresponding
723         /// [`ChannelMessageHandler::peer_disconnected`].
724         is_connected: bool,
725 }
726
727 impl <SP: Deref> PeerState<SP> where SP::Target: SignerProvider {
728         /// Indicates that a peer meets the criteria where we're ok to remove it from our storage.
729         /// If true is passed for `require_disconnected`, the function will return false if we haven't
730         /// disconnected from the node already, ie. `PeerState::is_connected` is set to `true`.
731         fn ok_to_remove(&self, require_disconnected: bool) -> bool {
732                 if require_disconnected && self.is_connected {
733                         return false
734                 }
735                 self.channel_by_id.iter().filter(|(_, phase)| matches!(phase, ChannelPhase::Funded(_))).count() == 0
736                         && self.monitor_update_blocked_actions.is_empty()
737                         && self.in_flight_monitor_updates.is_empty()
738         }
739
740         // Returns a count of all channels we have with this peer, including unfunded channels.
741         fn total_channel_count(&self) -> usize {
742                 self.channel_by_id.len() + self.inbound_channel_request_by_id.len()
743         }
744
745         // Returns a bool indicating if the given `channel_id` matches a channel we have with this peer.
746         fn has_channel(&self, channel_id: &ChannelId) -> bool {
747                 self.channel_by_id.contains_key(channel_id) ||
748                         self.inbound_channel_request_by_id.contains_key(channel_id)
749         }
750 }
751
752 /// A not-yet-accepted inbound (from counterparty) channel. Once
753 /// accepted, the parameters will be used to construct a channel.
754 pub(super) struct InboundChannelRequest {
755         /// The original OpenChannel message.
756         pub open_channel_msg: msgs::OpenChannel,
757         /// The number of ticks remaining before the request expires.
758         pub ticks_remaining: i32,
759 }
760
761 /// The number of ticks that may elapse while we're waiting for an unaccepted inbound channel to be
762 /// accepted. An unaccepted channel that exceeds this limit will be abandoned.
763 const UNACCEPTED_INBOUND_CHANNEL_AGE_LIMIT_TICKS: i32 = 2;
764
765 /// Stores a PaymentSecret and any other data we may need to validate an inbound payment is
766 /// actually ours and not some duplicate HTLC sent to us by a node along the route.
767 ///
768 /// For users who don't want to bother doing their own payment preimage storage, we also store that
769 /// here.
770 ///
771 /// Note that this struct will be removed entirely soon, in favor of storing no inbound payment data
772 /// and instead encoding it in the payment secret.
773 struct PendingInboundPayment {
774         /// The payment secret that the sender must use for us to accept this payment
775         payment_secret: PaymentSecret,
776         /// Time at which this HTLC expires - blocks with a header time above this value will result in
777         /// this payment being removed.
778         expiry_time: u64,
779         /// Arbitrary identifier the user specifies (or not)
780         user_payment_id: u64,
781         // Other required attributes of the payment, optionally enforced:
782         payment_preimage: Option<PaymentPreimage>,
783         min_value_msat: Option<u64>,
784 }
785
786 /// [`SimpleArcChannelManager`] is useful when you need a [`ChannelManager`] with a static lifetime, e.g.
787 /// when you're using `lightning-net-tokio` (since `tokio::spawn` requires parameters with static
788 /// lifetimes). Other times you can afford a reference, which is more efficient, in which case
789 /// [`SimpleRefChannelManager`] is the more appropriate type. Defining these type aliases prevents
790 /// issues such as overly long function definitions. Note that the `ChannelManager` can take any type
791 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
792 /// or, respectively, [`Router`] for its router, but this type alias chooses the concrete types
793 /// of [`KeysManager`] and [`DefaultRouter`].
794 ///
795 /// This is not exported to bindings users as Arcs don't make sense in bindings
796 pub type SimpleArcChannelManager<M, T, F, L> = ChannelManager<
797         Arc<M>,
798         Arc<T>,
799         Arc<KeysManager>,
800         Arc<KeysManager>,
801         Arc<KeysManager>,
802         Arc<F>,
803         Arc<DefaultRouter<
804                 Arc<NetworkGraph<Arc<L>>>,
805                 Arc<L>,
806                 Arc<Mutex<ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>>>,
807                 ProbabilisticScoringFeeParameters,
808                 ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>,
809         >>,
810         Arc<L>
811 >;
812
813 /// [`SimpleRefChannelManager`] is a type alias for a ChannelManager reference, and is the reference
814 /// counterpart to the [`SimpleArcChannelManager`] type alias. Use this type by default when you don't
815 /// need a ChannelManager with a static lifetime. You'll need a static lifetime in cases such as
816 /// usage of lightning-net-tokio (since `tokio::spawn` requires parameters with static lifetimes).
817 /// But if this is not necessary, using a reference is more efficient. Defining these type aliases
818 /// issues such as overly long function definitions. Note that the ChannelManager can take any type
819 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
820 /// or, respectively, [`Router`]  for its router, but this type alias chooses the concrete types
821 /// of [`KeysManager`] and [`DefaultRouter`].
822 ///
823 /// This is not exported to bindings users as Arcs don't make sense in bindings
824 pub type SimpleRefChannelManager<'a, 'b, 'c, 'd, 'e, 'f, 'g, 'h, M, T, F, L> =
825         ChannelManager<
826                 &'a M,
827                 &'b T,
828                 &'c KeysManager,
829                 &'c KeysManager,
830                 &'c KeysManager,
831                 &'d F,
832                 &'e DefaultRouter<
833                         &'f NetworkGraph<&'g L>,
834                         &'g L,
835                         &'h Mutex<ProbabilisticScorer<&'f NetworkGraph<&'g L>, &'g L>>,
836                         ProbabilisticScoringFeeParameters,
837                         ProbabilisticScorer<&'f NetworkGraph<&'g L>, &'g L>
838                 >,
839                 &'g L
840         >;
841
842 /// A trivial trait which describes any [`ChannelManager`].
843 pub trait AChannelManager {
844         /// A type implementing [`chain::Watch`].
845         type Watch: chain::Watch<Self::Signer> + ?Sized;
846         /// A type that may be dereferenced to [`Self::Watch`].
847         type M: Deref<Target = Self::Watch>;
848         /// A type implementing [`BroadcasterInterface`].
849         type Broadcaster: BroadcasterInterface + ?Sized;
850         /// A type that may be dereferenced to [`Self::Broadcaster`].
851         type T: Deref<Target = Self::Broadcaster>;
852         /// A type implementing [`EntropySource`].
853         type EntropySource: EntropySource + ?Sized;
854         /// A type that may be dereferenced to [`Self::EntropySource`].
855         type ES: Deref<Target = Self::EntropySource>;
856         /// A type implementing [`NodeSigner`].
857         type NodeSigner: NodeSigner + ?Sized;
858         /// A type that may be dereferenced to [`Self::NodeSigner`].
859         type NS: Deref<Target = Self::NodeSigner>;
860         /// A type implementing [`WriteableEcdsaChannelSigner`].
861         type Signer: WriteableEcdsaChannelSigner + Sized;
862         /// A type implementing [`SignerProvider`] for [`Self::Signer`].
863         type SignerProvider: SignerProvider<Signer = Self::Signer> + ?Sized;
864         /// A type that may be dereferenced to [`Self::SignerProvider`].
865         type SP: Deref<Target = Self::SignerProvider>;
866         /// A type implementing [`FeeEstimator`].
867         type FeeEstimator: FeeEstimator + ?Sized;
868         /// A type that may be dereferenced to [`Self::FeeEstimator`].
869         type F: Deref<Target = Self::FeeEstimator>;
870         /// A type implementing [`Router`].
871         type Router: Router + ?Sized;
872         /// A type that may be dereferenced to [`Self::Router`].
873         type R: Deref<Target = Self::Router>;
874         /// A type implementing [`Logger`].
875         type Logger: Logger + ?Sized;
876         /// A type that may be dereferenced to [`Self::Logger`].
877         type L: Deref<Target = Self::Logger>;
878         /// Returns a reference to the actual [`ChannelManager`] object.
879         fn get_cm(&self) -> &ChannelManager<Self::M, Self::T, Self::ES, Self::NS, Self::SP, Self::F, Self::R, Self::L>;
880 }
881
882 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref> AChannelManager
883 for ChannelManager<M, T, ES, NS, SP, F, R, L>
884 where
885         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
886         T::Target: BroadcasterInterface,
887         ES::Target: EntropySource,
888         NS::Target: NodeSigner,
889         SP::Target: SignerProvider,
890         F::Target: FeeEstimator,
891         R::Target: Router,
892         L::Target: Logger,
893 {
894         type Watch = M::Target;
895         type M = M;
896         type Broadcaster = T::Target;
897         type T = T;
898         type EntropySource = ES::Target;
899         type ES = ES;
900         type NodeSigner = NS::Target;
901         type NS = NS;
902         type Signer = <SP::Target as SignerProvider>::Signer;
903         type SignerProvider = SP::Target;
904         type SP = SP;
905         type FeeEstimator = F::Target;
906         type F = F;
907         type Router = R::Target;
908         type R = R;
909         type Logger = L::Target;
910         type L = L;
911         fn get_cm(&self) -> &ChannelManager<M, T, ES, NS, SP, F, R, L> { self }
912 }
913
914 /// Manager which keeps track of a number of channels and sends messages to the appropriate
915 /// channel, also tracking HTLC preimages and forwarding onion packets appropriately.
916 ///
917 /// Implements [`ChannelMessageHandler`], handling the multi-channel parts and passing things through
918 /// to individual Channels.
919 ///
920 /// Implements [`Writeable`] to write out all channel state to disk. Implies [`peer_disconnected`] for
921 /// all peers during write/read (though does not modify this instance, only the instance being
922 /// serialized). This will result in any channels which have not yet exchanged [`funding_created`] (i.e.,
923 /// called [`funding_transaction_generated`] for outbound channels) being closed.
924 ///
925 /// Note that you can be a bit lazier about writing out `ChannelManager` than you can be with
926 /// [`ChannelMonitor`]. With [`ChannelMonitor`] you MUST durably write each
927 /// [`ChannelMonitorUpdate`] before returning from
928 /// [`chain::Watch::watch_channel`]/[`update_channel`] or before completing async writes. With
929 /// `ChannelManager`s, writing updates happens out-of-band (and will prevent any other
930 /// `ChannelManager` operations from occurring during the serialization process). If the
931 /// deserialized version is out-of-date compared to the [`ChannelMonitor`] passed by reference to
932 /// [`read`], those channels will be force-closed based on the `ChannelMonitor` state and no funds
933 /// will be lost (modulo on-chain transaction fees).
934 ///
935 /// Note that the deserializer is only implemented for `(`[`BlockHash`]`, `[`ChannelManager`]`)`, which
936 /// tells you the last block hash which was connected. You should get the best block tip before using the manager.
937 /// See [`chain::Listen`] and [`chain::Confirm`] for more details.
938 ///
939 /// Note that `ChannelManager` is responsible for tracking liveness of its channels and generating
940 /// [`ChannelUpdate`] messages informing peers that the channel is temporarily disabled. To avoid
941 /// spam due to quick disconnection/reconnection, updates are not sent until the channel has been
942 /// offline for a full minute. In order to track this, you must call
943 /// [`timer_tick_occurred`] roughly once per minute, though it doesn't have to be perfect.
944 ///
945 /// To avoid trivial DoS issues, `ChannelManager` limits the number of inbound connections and
946 /// inbound channels without confirmed funding transactions. This may result in nodes which we do
947 /// not have a channel with being unable to connect to us or open new channels with us if we have
948 /// many peers with unfunded channels.
949 ///
950 /// Because it is an indication of trust, inbound channels which we've accepted as 0conf are
951 /// exempted from the count of unfunded channels. Similarly, outbound channels and connections are
952 /// never limited. Please ensure you limit the count of such channels yourself.
953 ///
954 /// Rather than using a plain `ChannelManager`, it is preferable to use either a [`SimpleArcChannelManager`]
955 /// a [`SimpleRefChannelManager`], for conciseness. See their documentation for more details, but
956 /// essentially you should default to using a [`SimpleRefChannelManager`], and use a
957 /// [`SimpleArcChannelManager`] when you require a `ChannelManager` with a static lifetime, such as when
958 /// you're using lightning-net-tokio.
959 ///
960 /// [`peer_disconnected`]: msgs::ChannelMessageHandler::peer_disconnected
961 /// [`funding_created`]: msgs::FundingCreated
962 /// [`funding_transaction_generated`]: Self::funding_transaction_generated
963 /// [`BlockHash`]: bitcoin::hash_types::BlockHash
964 /// [`update_channel`]: chain::Watch::update_channel
965 /// [`ChannelUpdate`]: msgs::ChannelUpdate
966 /// [`timer_tick_occurred`]: Self::timer_tick_occurred
967 /// [`read`]: ReadableArgs::read
968 //
969 // Lock order:
970 // The tree structure below illustrates the lock order requirements for the different locks of the
971 // `ChannelManager`. Locks can be held at the same time if they are on the same branch in the tree,
972 // and should then be taken in the order of the lowest to the highest level in the tree.
973 // Note that locks on different branches shall not be taken at the same time, as doing so will
974 // create a new lock order for those specific locks in the order they were taken.
975 //
976 // Lock order tree:
977 //
978 // `total_consistency_lock`
979 //  |
980 //  |__`forward_htlcs`
981 //  |   |
982 //  |   |__`pending_intercepted_htlcs`
983 //  |
984 //  |__`per_peer_state`
985 //  |   |
986 //  |   |__`pending_inbound_payments`
987 //  |       |
988 //  |       |__`claimable_payments`
989 //  |       |
990 //  |       |__`pending_outbound_payments` // This field's struct contains a map of pending outbounds
991 //  |           |
992 //  |           |__`peer_state`
993 //  |               |
994 //  |               |__`id_to_peer`
995 //  |               |
996 //  |               |__`short_to_chan_info`
997 //  |               |
998 //  |               |__`outbound_scid_aliases`
999 //  |               |
1000 //  |               |__`best_block`
1001 //  |               |
1002 //  |               |__`pending_events`
1003 //  |                   |
1004 //  |                   |__`pending_background_events`
1005 //
1006 pub struct ChannelManager<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
1007 where
1008         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
1009         T::Target: BroadcasterInterface,
1010         ES::Target: EntropySource,
1011         NS::Target: NodeSigner,
1012         SP::Target: SignerProvider,
1013         F::Target: FeeEstimator,
1014         R::Target: Router,
1015         L::Target: Logger,
1016 {
1017         default_configuration: UserConfig,
1018         genesis_hash: BlockHash,
1019         fee_estimator: LowerBoundedFeeEstimator<F>,
1020         chain_monitor: M,
1021         tx_broadcaster: T,
1022         #[allow(unused)]
1023         router: R,
1024
1025         /// See `ChannelManager` struct-level documentation for lock order requirements.
1026         #[cfg(test)]
1027         pub(super) best_block: RwLock<BestBlock>,
1028         #[cfg(not(test))]
1029         best_block: RwLock<BestBlock>,
1030         secp_ctx: Secp256k1<secp256k1::All>,
1031
1032         /// Storage for PaymentSecrets and any requirements on future inbound payments before we will
1033         /// expose them to users via a PaymentClaimable event. HTLCs which do not meet the requirements
1034         /// here are failed when we process them as pending-forwardable-HTLCs, and entries are removed
1035         /// after we generate a PaymentClaimable upon receipt of all MPP parts or when they time out.
1036         ///
1037         /// See `ChannelManager` struct-level documentation for lock order requirements.
1038         pending_inbound_payments: Mutex<HashMap<PaymentHash, PendingInboundPayment>>,
1039
1040         /// The session_priv bytes and retry metadata of outbound payments which are pending resolution.
1041         /// The authoritative state of these HTLCs resides either within Channels or ChannelMonitors
1042         /// (if the channel has been force-closed), however we track them here to prevent duplicative
1043         /// PaymentSent/PaymentPathFailed events. Specifically, in the case of a duplicative
1044         /// update_fulfill_htlc message after a reconnect, we may "claim" a payment twice.
1045         /// Additionally, because ChannelMonitors are often not re-serialized after connecting block(s)
1046         /// which may generate a claim event, we may receive similar duplicate claim/fail MonitorEvents
1047         /// after reloading from disk while replaying blocks against ChannelMonitors.
1048         ///
1049         /// See `PendingOutboundPayment` documentation for more info.
1050         ///
1051         /// See `ChannelManager` struct-level documentation for lock order requirements.
1052         pending_outbound_payments: OutboundPayments,
1053
1054         /// SCID/SCID Alias -> forward infos. Key of 0 means payments received.
1055         ///
1056         /// Note that because we may have an SCID Alias as the key we can have two entries per channel,
1057         /// though in practice we probably won't be receiving HTLCs for a channel both via the alias
1058         /// and via the classic SCID.
1059         ///
1060         /// Note that no consistency guarantees are made about the existence of a channel with the
1061         /// `short_channel_id` here, nor the `short_channel_id` in the `PendingHTLCInfo`!
1062         ///
1063         /// See `ChannelManager` struct-level documentation for lock order requirements.
1064         #[cfg(test)]
1065         pub(super) forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
1066         #[cfg(not(test))]
1067         forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
1068         /// Storage for HTLCs that have been intercepted and bubbled up to the user. We hold them here
1069         /// until the user tells us what we should do with them.
1070         ///
1071         /// See `ChannelManager` struct-level documentation for lock order requirements.
1072         pending_intercepted_htlcs: Mutex<HashMap<InterceptId, PendingAddHTLCInfo>>,
1073
1074         /// The sets of payments which are claimable or currently being claimed. See
1075         /// [`ClaimablePayments`]' individual field docs for more info.
1076         ///
1077         /// See `ChannelManager` struct-level documentation for lock order requirements.
1078         claimable_payments: Mutex<ClaimablePayments>,
1079
1080         /// The set of outbound SCID aliases across all our channels, including unconfirmed channels
1081         /// and some closed channels which reached a usable state prior to being closed. This is used
1082         /// only to avoid duplicates, and is not persisted explicitly to disk, but rebuilt from the
1083         /// active channel list on load.
1084         ///
1085         /// See `ChannelManager` struct-level documentation for lock order requirements.
1086         outbound_scid_aliases: Mutex<HashSet<u64>>,
1087
1088         /// `channel_id` -> `counterparty_node_id`.
1089         ///
1090         /// Only `channel_id`s are allowed as keys in this map, and not `temporary_channel_id`s. As
1091         /// multiple channels with the same `temporary_channel_id` to different peers can exist,
1092         /// allowing `temporary_channel_id`s in this map would cause collisions for such channels.
1093         ///
1094         /// Note that this map should only be used for `MonitorEvent` handling, to be able to access
1095         /// the corresponding channel for the event, as we only have access to the `channel_id` during
1096         /// the handling of the events.
1097         ///
1098         /// Note that no consistency guarantees are made about the existence of a peer with the
1099         /// `counterparty_node_id` in our other maps.
1100         ///
1101         /// TODO:
1102         /// The `counterparty_node_id` isn't passed with `MonitorEvent`s currently. To pass it, we need
1103         /// to make `counterparty_node_id`'s a required field in `ChannelMonitor`s, which unfortunately
1104         /// would break backwards compatability.
1105         /// We should add `counterparty_node_id`s to `MonitorEvent`s, and eventually rely on it in the
1106         /// future. That would make this map redundant, as only the `ChannelManager::per_peer_state` is
1107         /// required to access the channel with the `counterparty_node_id`.
1108         ///
1109         /// See `ChannelManager` struct-level documentation for lock order requirements.
1110         id_to_peer: Mutex<HashMap<ChannelId, PublicKey>>,
1111
1112         /// SCIDs (and outbound SCID aliases) -> `counterparty_node_id`s and `channel_id`s.
1113         ///
1114         /// Outbound SCID aliases are added here once the channel is available for normal use, with
1115         /// SCIDs being added once the funding transaction is confirmed at the channel's required
1116         /// confirmation depth.
1117         ///
1118         /// Note that while this holds `counterparty_node_id`s and `channel_id`s, no consistency
1119         /// guarantees are made about the existence of a peer with the `counterparty_node_id` nor a
1120         /// channel with the `channel_id` in our other maps.
1121         ///
1122         /// See `ChannelManager` struct-level documentation for lock order requirements.
1123         #[cfg(test)]
1124         pub(super) short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, ChannelId)>>,
1125         #[cfg(not(test))]
1126         short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, ChannelId)>>,
1127
1128         our_network_pubkey: PublicKey,
1129
1130         inbound_payment_key: inbound_payment::ExpandedKey,
1131
1132         /// LDK puts the [fake scids] that it generates into namespaces, to identify the type of an
1133         /// incoming payment. To make it harder for a third-party to identify the type of a payment,
1134         /// we encrypt the namespace identifier using these bytes.
1135         ///
1136         /// [fake scids]: crate::util::scid_utils::fake_scid
1137         fake_scid_rand_bytes: [u8; 32],
1138
1139         /// When we send payment probes, we generate the [`PaymentHash`] based on this cookie secret
1140         /// and a random [`PaymentId`]. This allows us to discern probes from real payments, without
1141         /// keeping additional state.
1142         probing_cookie_secret: [u8; 32],
1143
1144         /// The highest block timestamp we've seen, which is usually a good guess at the current time.
1145         /// Assuming most miners are generating blocks with reasonable timestamps, this shouldn't be
1146         /// very far in the past, and can only ever be up to two hours in the future.
1147         highest_seen_timestamp: AtomicUsize,
1148
1149         /// The bulk of our storage. Currently the `per_peer_state` stores our channels on a per-peer
1150         /// basis, as well as the peer's latest features.
1151         ///
1152         /// If we are connected to a peer we always at least have an entry here, even if no channels
1153         /// are currently open with that peer.
1154         ///
1155         /// Because adding or removing an entry is rare, we usually take an outer read lock and then
1156         /// operate on the inner value freely. This opens up for parallel per-peer operation for
1157         /// channels.
1158         ///
1159         /// Note that the same thread must never acquire two inner `PeerState` locks at the same time.
1160         ///
1161         /// See `ChannelManager` struct-level documentation for lock order requirements.
1162         #[cfg(not(any(test, feature = "_test_utils")))]
1163         per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<SP>>>>,
1164         #[cfg(any(test, feature = "_test_utils"))]
1165         pub(super) per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<SP>>>>,
1166
1167         /// The set of events which we need to give to the user to handle. In some cases an event may
1168         /// require some further action after the user handles it (currently only blocking a monitor
1169         /// update from being handed to the user to ensure the included changes to the channel state
1170         /// are handled by the user before they're persisted durably to disk). In that case, the second
1171         /// element in the tuple is set to `Some` with further details of the action.
1172         ///
1173         /// Note that events MUST NOT be removed from pending_events after deserialization, as they
1174         /// could be in the middle of being processed without the direct mutex held.
1175         ///
1176         /// See `ChannelManager` struct-level documentation for lock order requirements.
1177         #[cfg(not(any(test, feature = "_test_utils")))]
1178         pending_events: Mutex<VecDeque<(events::Event, Option<EventCompletionAction>)>>,
1179         #[cfg(any(test, feature = "_test_utils"))]
1180         pub(crate) pending_events: Mutex<VecDeque<(events::Event, Option<EventCompletionAction>)>>,
1181
1182         /// A simple atomic flag to ensure only one task at a time can be processing events asynchronously.
1183         pending_events_processor: AtomicBool,
1184
1185         /// If we are running during init (either directly during the deserialization method or in
1186         /// block connection methods which run after deserialization but before normal operation) we
1187         /// cannot provide the user with [`ChannelMonitorUpdate`]s through the normal update flow -
1188         /// prior to normal operation the user may not have loaded the [`ChannelMonitor`]s into their
1189         /// [`ChainMonitor`] and thus attempting to update it will fail or panic.
1190         ///
1191         /// Thus, we place them here to be handled as soon as possible once we are running normally.
1192         ///
1193         /// See `ChannelManager` struct-level documentation for lock order requirements.
1194         ///
1195         /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
1196         pending_background_events: Mutex<Vec<BackgroundEvent>>,
1197         /// Used when we have to take a BIG lock to make sure everything is self-consistent.
1198         /// Essentially just when we're serializing ourselves out.
1199         /// Taken first everywhere where we are making changes before any other locks.
1200         /// When acquiring this lock in read mode, rather than acquiring it directly, call
1201         /// `PersistenceNotifierGuard::notify_on_drop(..)` and pass the lock to it, to ensure the
1202         /// Notifier the lock contains sends out a notification when the lock is released.
1203         total_consistency_lock: RwLock<()>,
1204
1205         background_events_processed_since_startup: AtomicBool,
1206
1207         event_persist_notifier: Notifier,
1208         needs_persist_flag: AtomicBool,
1209
1210         entropy_source: ES,
1211         node_signer: NS,
1212         signer_provider: SP,
1213
1214         logger: L,
1215 }
1216
1217 /// Chain-related parameters used to construct a new `ChannelManager`.
1218 ///
1219 /// Typically, the block-specific parameters are derived from the best block hash for the network,
1220 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
1221 /// are not needed when deserializing a previously constructed `ChannelManager`.
1222 #[derive(Clone, Copy, PartialEq)]
1223 pub struct ChainParameters {
1224         /// The network for determining the `chain_hash` in Lightning messages.
1225         pub network: Network,
1226
1227         /// The hash and height of the latest block successfully connected.
1228         ///
1229         /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
1230         pub best_block: BestBlock,
1231 }
1232
1233 #[derive(Copy, Clone, PartialEq)]
1234 #[must_use]
1235 enum NotifyOption {
1236         DoPersist,
1237         SkipPersistHandleEvents,
1238         SkipPersistNoEvents,
1239 }
1240
1241 /// Whenever we release the `ChannelManager`'s `total_consistency_lock`, from read mode, it is
1242 /// desirable to notify any listeners on `await_persistable_update_timeout`/
1243 /// `await_persistable_update` when new updates are available for persistence. Therefore, this
1244 /// struct is responsible for locking the total consistency lock and, upon going out of scope,
1245 /// sending the aforementioned notification (since the lock being released indicates that the
1246 /// updates are ready for persistence).
1247 ///
1248 /// We allow callers to either always notify by constructing with `notify_on_drop` or choose to
1249 /// notify or not based on whether relevant changes have been made, providing a closure to
1250 /// `optionally_notify` which returns a `NotifyOption`.
1251 struct PersistenceNotifierGuard<'a, F: FnMut() -> NotifyOption> {
1252         event_persist_notifier: &'a Notifier,
1253         needs_persist_flag: &'a AtomicBool,
1254         should_persist: F,
1255         // We hold onto this result so the lock doesn't get released immediately.
1256         _read_guard: RwLockReadGuard<'a, ()>,
1257 }
1258
1259 impl<'a> PersistenceNotifierGuard<'a, fn() -> NotifyOption> { // We don't care what the concrete F is here, it's unused
1260         /// Notifies any waiters and indicates that we need to persist, in addition to possibly having
1261         /// events to handle.
1262         ///
1263         /// This must always be called if the changes included a `ChannelMonitorUpdate`, as well as in
1264         /// other cases where losing the changes on restart may result in a force-close or otherwise
1265         /// isn't ideal.
1266         fn notify_on_drop<C: AChannelManager>(cm: &'a C) -> PersistenceNotifierGuard<'a, impl FnMut() -> NotifyOption> {
1267                 Self::optionally_notify(cm, || -> NotifyOption { NotifyOption::DoPersist })
1268         }
1269
1270         fn optionally_notify<F: FnMut() -> NotifyOption, C: AChannelManager>(cm: &'a C, mut persist_check: F)
1271         -> PersistenceNotifierGuard<'a, impl FnMut() -> NotifyOption> {
1272                 let read_guard = cm.get_cm().total_consistency_lock.read().unwrap();
1273                 let force_notify = cm.get_cm().process_background_events();
1274
1275                 PersistenceNotifierGuard {
1276                         event_persist_notifier: &cm.get_cm().event_persist_notifier,
1277                         needs_persist_flag: &cm.get_cm().needs_persist_flag,
1278                         should_persist: move || {
1279                                 // Pick the "most" action between `persist_check` and the background events
1280                                 // processing and return that.
1281                                 let notify = persist_check();
1282                                 match (notify, force_notify) {
1283                                         (NotifyOption::DoPersist, _) => NotifyOption::DoPersist,
1284                                         (_, NotifyOption::DoPersist) => NotifyOption::DoPersist,
1285                                         (NotifyOption::SkipPersistHandleEvents, _) => NotifyOption::SkipPersistHandleEvents,
1286                                         (_, NotifyOption::SkipPersistHandleEvents) => NotifyOption::SkipPersistHandleEvents,
1287                                         _ => NotifyOption::SkipPersistNoEvents,
1288                                 }
1289                         },
1290                         _read_guard: read_guard,
1291                 }
1292         }
1293
1294         /// Note that if any [`ChannelMonitorUpdate`]s are possibly generated,
1295         /// [`ChannelManager::process_background_events`] MUST be called first (or
1296         /// [`Self::optionally_notify`] used).
1297         fn optionally_notify_skipping_background_events<F: Fn() -> NotifyOption, C: AChannelManager>
1298         (cm: &'a C, persist_check: F) -> PersistenceNotifierGuard<'a, F> {
1299                 let read_guard = cm.get_cm().total_consistency_lock.read().unwrap();
1300
1301                 PersistenceNotifierGuard {
1302                         event_persist_notifier: &cm.get_cm().event_persist_notifier,
1303                         needs_persist_flag: &cm.get_cm().needs_persist_flag,
1304                         should_persist: persist_check,
1305                         _read_guard: read_guard,
1306                 }
1307         }
1308 }
1309
1310 impl<'a, F: FnMut() -> NotifyOption> Drop for PersistenceNotifierGuard<'a, F> {
1311         fn drop(&mut self) {
1312                 match (self.should_persist)() {
1313                         NotifyOption::DoPersist => {
1314                                 self.needs_persist_flag.store(true, Ordering::Release);
1315                                 self.event_persist_notifier.notify()
1316                         },
1317                         NotifyOption::SkipPersistHandleEvents =>
1318                                 self.event_persist_notifier.notify(),
1319                         NotifyOption::SkipPersistNoEvents => {},
1320                 }
1321         }
1322 }
1323
1324 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
1325 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
1326 ///
1327 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
1328 ///
1329 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
1330 pub const BREAKDOWN_TIMEOUT: u16 = 6 * 24;
1331 /// The amount of time in blocks we're willing to wait to claim money back to us. This matches
1332 /// the maximum required amount in lnd as of March 2021.
1333 pub(crate) const MAX_LOCAL_BREAKDOWN_TIMEOUT: u16 = 2 * 6 * 24 * 7;
1334
1335 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
1336 /// HTLC's CLTV. The current default represents roughly seven hours of blocks at six blocks/hour.
1337 ///
1338 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
1339 ///
1340 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
1341 // This should always be a few blocks greater than channelmonitor::CLTV_CLAIM_BUFFER,
1342 // i.e. the node we forwarded the payment on to should always have enough room to reliably time out
1343 // the HTLC via a full update_fail_htlc/commitment_signed dance before we hit the
1344 // CLTV_CLAIM_BUFFER point (we static assert that it's at least 3 blocks more).
1345 pub const MIN_CLTV_EXPIRY_DELTA: u16 = 6*7;
1346 // This should be long enough to allow a payment path drawn across multiple routing hops with substantial
1347 // `cltv_expiry_delta`. Indeed, the length of those values is the reaction delay offered to a routing node
1348 // in case of HTLC on-chain settlement. While appearing less competitive, a node operator could decide to
1349 // scale them up to suit its security policy. At the network-level, we shouldn't constrain them too much,
1350 // while avoiding to introduce a DoS vector. Further, a low CTLV_FAR_FAR_AWAY could be a source of
1351 // routing failure for any HTLC sender picking up an LDK node among the first hops.
1352 pub(super) const CLTV_FAR_FAR_AWAY: u32 = 14 * 24 * 6;
1353
1354 /// Minimum CLTV difference between the current block height and received inbound payments.
1355 /// Invoices generated for payment to us must set their `min_final_cltv_expiry_delta` field to at least
1356 /// this value.
1357 // Note that we fail if exactly HTLC_FAIL_BACK_BUFFER + 1 was used, so we need to add one for
1358 // any payments to succeed. Further, we don't want payments to fail if a block was found while
1359 // a payment was being routed, so we add an extra block to be safe.
1360 pub const MIN_FINAL_CLTV_EXPIRY_DELTA: u16 = HTLC_FAIL_BACK_BUFFER as u16 + 3;
1361
1362 // Check that our CLTV_EXPIRY is at least CLTV_CLAIM_BUFFER + ANTI_REORG_DELAY + LATENCY_GRACE_PERIOD_BLOCKS,
1363 // ie that if the next-hop peer fails the HTLC within
1364 // LATENCY_GRACE_PERIOD_BLOCKS then we'll still have CLTV_CLAIM_BUFFER left to timeout it onchain,
1365 // then waiting ANTI_REORG_DELAY to be reorg-safe on the outbound HLTC and
1366 // failing the corresponding htlc backward, and us now seeing the last block of ANTI_REORG_DELAY before
1367 // LATENCY_GRACE_PERIOD_BLOCKS.
1368 #[deny(const_err)]
1369 #[allow(dead_code)]
1370 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;
1371
1372 // Check for ability of an attacker to make us fail on-chain by delaying an HTLC claim. See
1373 // ChannelMonitor::should_broadcast_holder_commitment_txn for a description of why this is needed.
1374 #[deny(const_err)]
1375 #[allow(dead_code)]
1376 const CHECK_CLTV_EXPIRY_SANITY_2: u32 = MIN_CLTV_EXPIRY_DELTA as u32 - LATENCY_GRACE_PERIOD_BLOCKS - 2*CLTV_CLAIM_BUFFER;
1377
1378 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until expiry of incomplete MPPs
1379 pub(crate) const MPP_TIMEOUT_TICKS: u8 = 3;
1380
1381 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is disconnected
1382 /// until we mark the channel disabled and gossip the update.
1383 pub(crate) const DISABLE_GOSSIP_TICKS: u8 = 10;
1384
1385 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is connected until
1386 /// we mark the channel enabled and gossip the update.
1387 pub(crate) const ENABLE_GOSSIP_TICKS: u8 = 5;
1388
1389 /// The maximum number of unfunded channels we can have per-peer before we start rejecting new
1390 /// (inbound) ones. The number of peers with unfunded channels is limited separately in
1391 /// [`MAX_UNFUNDED_CHANNEL_PEERS`].
1392 const MAX_UNFUNDED_CHANS_PER_PEER: usize = 4;
1393
1394 /// The maximum number of peers from which we will allow pending unfunded channels. Once we reach
1395 /// this many peers we reject new (inbound) channels from peers with which we don't have a channel.
1396 const MAX_UNFUNDED_CHANNEL_PEERS: usize = 50;
1397
1398 /// The maximum number of peers which we do not have a (funded) channel with. Once we reach this
1399 /// many peers we reject new (inbound) connections.
1400 const MAX_NO_CHANNEL_PEERS: usize = 250;
1401
1402 /// Information needed for constructing an invoice route hint for this channel.
1403 #[derive(Clone, Debug, PartialEq)]
1404 pub struct CounterpartyForwardingInfo {
1405         /// Base routing fee in millisatoshis.
1406         pub fee_base_msat: u32,
1407         /// Amount in millionths of a satoshi the channel will charge per transferred satoshi.
1408         pub fee_proportional_millionths: u32,
1409         /// The minimum difference in cltv_expiry between an ingoing HTLC and its outgoing counterpart,
1410         /// such that the outgoing HTLC is forwardable to this counterparty. See `msgs::ChannelUpdate`'s
1411         /// `cltv_expiry_delta` for more details.
1412         pub cltv_expiry_delta: u16,
1413 }
1414
1415 /// Channel parameters which apply to our counterparty. These are split out from [`ChannelDetails`]
1416 /// to better separate parameters.
1417 #[derive(Clone, Debug, PartialEq)]
1418 pub struct ChannelCounterparty {
1419         /// The node_id of our counterparty
1420         pub node_id: PublicKey,
1421         /// The Features the channel counterparty provided upon last connection.
1422         /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
1423         /// many routing-relevant features are present in the init context.
1424         pub features: InitFeatures,
1425         /// The value, in satoshis, that must always be held in the channel for our counterparty. This
1426         /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
1427         /// claiming at least this value on chain.
1428         ///
1429         /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
1430         ///
1431         /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
1432         pub unspendable_punishment_reserve: u64,
1433         /// Information on the fees and requirements that the counterparty requires when forwarding
1434         /// payments to us through this channel.
1435         pub forwarding_info: Option<CounterpartyForwardingInfo>,
1436         /// The smallest value HTLC (in msat) the remote peer will accept, for this channel. This field
1437         /// is only `None` before we have received either the `OpenChannel` or `AcceptChannel` message
1438         /// from the remote peer, or for `ChannelCounterparty` objects serialized prior to LDK 0.0.107.
1439         pub outbound_htlc_minimum_msat: Option<u64>,
1440         /// The largest value HTLC (in msat) the remote peer currently will accept, for this channel.
1441         pub outbound_htlc_maximum_msat: Option<u64>,
1442 }
1443
1444 /// Details of a channel, as returned by [`ChannelManager::list_channels`] and [`ChannelManager::list_usable_channels`]
1445 ///
1446 /// Balances of a channel are available through [`ChainMonitor::get_claimable_balances`] and
1447 /// [`ChannelMonitor::get_claimable_balances`], calculated with respect to the corresponding on-chain
1448 /// transactions.
1449 ///
1450 /// [`ChainMonitor::get_claimable_balances`]: crate::chain::chainmonitor::ChainMonitor::get_claimable_balances
1451 #[derive(Clone, Debug, PartialEq)]
1452 pub struct ChannelDetails {
1453         /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
1454         /// thereafter this is the txid of the funding transaction xor the funding transaction output).
1455         /// Note that this means this value is *not* persistent - it can change once during the
1456         /// lifetime of the channel.
1457         pub channel_id: ChannelId,
1458         /// Parameters which apply to our counterparty. See individual fields for more information.
1459         pub counterparty: ChannelCounterparty,
1460         /// The Channel's funding transaction output, if we've negotiated the funding transaction with
1461         /// our counterparty already.
1462         ///
1463         /// Note that, if this has been set, `channel_id` will be equivalent to
1464         /// `funding_txo.unwrap().to_channel_id()`.
1465         pub funding_txo: Option<OutPoint>,
1466         /// The features which this channel operates with. See individual features for more info.
1467         ///
1468         /// `None` until negotiation completes and the channel type is finalized.
1469         pub channel_type: Option<ChannelTypeFeatures>,
1470         /// The position of the funding transaction in the chain. None if the funding transaction has
1471         /// not yet been confirmed and the channel fully opened.
1472         ///
1473         /// Note that if [`inbound_scid_alias`] is set, it must be used for invoices and inbound
1474         /// payments instead of this. See [`get_inbound_payment_scid`].
1475         ///
1476         /// For channels with [`confirmations_required`] set to `Some(0)`, [`outbound_scid_alias`] may
1477         /// be used in place of this in outbound routes. See [`get_outbound_payment_scid`].
1478         ///
1479         /// [`inbound_scid_alias`]: Self::inbound_scid_alias
1480         /// [`outbound_scid_alias`]: Self::outbound_scid_alias
1481         /// [`get_inbound_payment_scid`]: Self::get_inbound_payment_scid
1482         /// [`get_outbound_payment_scid`]: Self::get_outbound_payment_scid
1483         /// [`confirmations_required`]: Self::confirmations_required
1484         pub short_channel_id: Option<u64>,
1485         /// An optional [`short_channel_id`] alias for this channel, randomly generated by us and
1486         /// usable in place of [`short_channel_id`] to reference the channel in outbound routes when
1487         /// the channel has not yet been confirmed (as long as [`confirmations_required`] is
1488         /// `Some(0)`).
1489         ///
1490         /// This will be `None` as long as the channel is not available for routing outbound payments.
1491         ///
1492         /// [`short_channel_id`]: Self::short_channel_id
1493         /// [`confirmations_required`]: Self::confirmations_required
1494         pub outbound_scid_alias: Option<u64>,
1495         /// An optional [`short_channel_id`] alias for this channel, randomly generated by our
1496         /// counterparty and usable in place of [`short_channel_id`] in invoice route hints. Our
1497         /// counterparty will recognize the alias provided here in place of the [`short_channel_id`]
1498         /// when they see a payment to be routed to us.
1499         ///
1500         /// Our counterparty may choose to rotate this value at any time, though will always recognize
1501         /// previous values for inbound payment forwarding.
1502         ///
1503         /// [`short_channel_id`]: Self::short_channel_id
1504         pub inbound_scid_alias: Option<u64>,
1505         /// The value, in satoshis, of this channel as appears in the funding output
1506         pub channel_value_satoshis: u64,
1507         /// The value, in satoshis, that must always be held in the channel for us. This value ensures
1508         /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
1509         /// this value on chain.
1510         ///
1511         /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
1512         ///
1513         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1514         ///
1515         /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
1516         pub unspendable_punishment_reserve: Option<u64>,
1517         /// The `user_channel_id` value passed in to [`ChannelManager::create_channel`] for outbound
1518         /// channels, or to [`ChannelManager::accept_inbound_channel`] for inbound channels if
1519         /// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true. Otherwise
1520         /// `user_channel_id` will be randomized for an inbound channel.  This may be zero for objects
1521         /// serialized with LDK versions prior to 0.0.113.
1522         ///
1523         /// [`ChannelManager::create_channel`]: crate::ln::channelmanager::ChannelManager::create_channel
1524         /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
1525         /// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
1526         pub user_channel_id: u128,
1527         /// The currently negotiated fee rate denominated in satoshi per 1000 weight units,
1528         /// which is applied to commitment and HTLC transactions.
1529         ///
1530         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.115.
1531         pub feerate_sat_per_1000_weight: Option<u32>,
1532         /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
1533         /// any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1534         /// available for inclusion in new outbound HTLCs). This further does not include any pending
1535         /// outgoing HTLCs which are awaiting some other resolution to be sent.
1536         ///
1537         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1538         /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
1539         /// should be able to spend nearly this amount.
1540         pub outbound_capacity_msat: u64,
1541         /// The available outbound capacity for sending a single HTLC to the remote peer. This is
1542         /// similar to [`ChannelDetails::outbound_capacity_msat`] but it may be further restricted by
1543         /// the current state and per-HTLC limit(s). This is intended for use when routing, allowing us
1544         /// to use a limit as close as possible to the HTLC limit we can currently send.
1545         ///
1546         /// See also [`ChannelDetails::next_outbound_htlc_minimum_msat`] and
1547         /// [`ChannelDetails::outbound_capacity_msat`].
1548         pub next_outbound_htlc_limit_msat: u64,
1549         /// The minimum value for sending a single HTLC to the remote peer. This is the equivalent of
1550         /// [`ChannelDetails::next_outbound_htlc_limit_msat`] but represents a lower-bound, rather than
1551         /// an upper-bound. This is intended for use when routing, allowing us to ensure we pick a
1552         /// route which is valid.
1553         pub next_outbound_htlc_minimum_msat: u64,
1554         /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
1555         /// include any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1556         /// available for inclusion in new inbound HTLCs).
1557         /// Note that there are some corner cases not fully handled here, so the actual available
1558         /// inbound capacity may be slightly higher than this.
1559         ///
1560         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1561         /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
1562         /// However, our counterparty should be able to spend nearly this amount.
1563         pub inbound_capacity_msat: u64,
1564         /// The number of required confirmations on the funding transaction before the funding will be
1565         /// considered "locked". This number is selected by the channel fundee (i.e. us if
1566         /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
1567         /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
1568         /// [`ChannelHandshakeLimits::max_minimum_depth`].
1569         ///
1570         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1571         ///
1572         /// [`is_outbound`]: ChannelDetails::is_outbound
1573         /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
1574         /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
1575         pub confirmations_required: Option<u32>,
1576         /// The current number of confirmations on the funding transaction.
1577         ///
1578         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.113.
1579         pub confirmations: Option<u32>,
1580         /// The number of blocks (after our commitment transaction confirms) that we will need to wait
1581         /// until we can claim our funds after we force-close the channel. During this time our
1582         /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
1583         /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
1584         /// time to claim our non-HTLC-encumbered funds.
1585         ///
1586         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1587         pub force_close_spend_delay: Option<u16>,
1588         /// True if the channel was initiated (and thus funded) by us.
1589         pub is_outbound: bool,
1590         /// True if the channel is confirmed, channel_ready messages have been exchanged, and the
1591         /// channel is not currently being shut down. `channel_ready` message exchange implies the
1592         /// required confirmation count has been reached (and we were connected to the peer at some
1593         /// point after the funding transaction received enough confirmations). The required
1594         /// confirmation count is provided in [`confirmations_required`].
1595         ///
1596         /// [`confirmations_required`]: ChannelDetails::confirmations_required
1597         pub is_channel_ready: bool,
1598         /// The stage of the channel's shutdown.
1599         /// `None` for `ChannelDetails` serialized on LDK versions prior to 0.0.116.
1600         pub channel_shutdown_state: Option<ChannelShutdownState>,
1601         /// True if the channel is (a) confirmed and channel_ready messages have been exchanged, (b)
1602         /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
1603         ///
1604         /// This is a strict superset of `is_channel_ready`.
1605         pub is_usable: bool,
1606         /// True if this channel is (or will be) publicly-announced.
1607         pub is_public: bool,
1608         /// The smallest value HTLC (in msat) we will accept, for this channel. This field
1609         /// is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.107
1610         pub inbound_htlc_minimum_msat: Option<u64>,
1611         /// The largest value HTLC (in msat) we currently will accept, for this channel.
1612         pub inbound_htlc_maximum_msat: Option<u64>,
1613         /// Set of configurable parameters that affect channel operation.
1614         ///
1615         /// This field is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.109.
1616         pub config: Option<ChannelConfig>,
1617 }
1618
1619 impl ChannelDetails {
1620         /// Gets the current SCID which should be used to identify this channel for inbound payments.
1621         /// This should be used for providing invoice hints or in any other context where our
1622         /// counterparty will forward a payment to us.
1623         ///
1624         /// This is either the [`ChannelDetails::inbound_scid_alias`], if set, or the
1625         /// [`ChannelDetails::short_channel_id`]. See those for more information.
1626         pub fn get_inbound_payment_scid(&self) -> Option<u64> {
1627                 self.inbound_scid_alias.or(self.short_channel_id)
1628         }
1629
1630         /// Gets the current SCID which should be used to identify this channel for outbound payments.
1631         /// This should be used in [`Route`]s to describe the first hop or in other contexts where
1632         /// we're sending or forwarding a payment outbound over this channel.
1633         ///
1634         /// This is either the [`ChannelDetails::short_channel_id`], if set, or the
1635         /// [`ChannelDetails::outbound_scid_alias`]. See those for more information.
1636         pub fn get_outbound_payment_scid(&self) -> Option<u64> {
1637                 self.short_channel_id.or(self.outbound_scid_alias)
1638         }
1639
1640         fn from_channel_context<SP: Deref, F: Deref>(
1641                 context: &ChannelContext<SP>, best_block_height: u32, latest_features: InitFeatures,
1642                 fee_estimator: &LowerBoundedFeeEstimator<F>
1643         ) -> Self
1644         where
1645                 SP::Target: SignerProvider,
1646                 F::Target: FeeEstimator
1647         {
1648                 let balance = context.get_available_balances(fee_estimator);
1649                 let (to_remote_reserve_satoshis, to_self_reserve_satoshis) =
1650                         context.get_holder_counterparty_selected_channel_reserve_satoshis();
1651                 ChannelDetails {
1652                         channel_id: context.channel_id(),
1653                         counterparty: ChannelCounterparty {
1654                                 node_id: context.get_counterparty_node_id(),
1655                                 features: latest_features,
1656                                 unspendable_punishment_reserve: to_remote_reserve_satoshis,
1657                                 forwarding_info: context.counterparty_forwarding_info(),
1658                                 // Ensures that we have actually received the `htlc_minimum_msat` value
1659                                 // from the counterparty through the `OpenChannel` or `AcceptChannel`
1660                                 // message (as they are always the first message from the counterparty).
1661                                 // Else `Channel::get_counterparty_htlc_minimum_msat` could return the
1662                                 // default `0` value set by `Channel::new_outbound`.
1663                                 outbound_htlc_minimum_msat: if context.have_received_message() {
1664                                         Some(context.get_counterparty_htlc_minimum_msat()) } else { None },
1665                                 outbound_htlc_maximum_msat: context.get_counterparty_htlc_maximum_msat(),
1666                         },
1667                         funding_txo: context.get_funding_txo(),
1668                         // Note that accept_channel (or open_channel) is always the first message, so
1669                         // `have_received_message` indicates that type negotiation has completed.
1670                         channel_type: if context.have_received_message() { Some(context.get_channel_type().clone()) } else { None },
1671                         short_channel_id: context.get_short_channel_id(),
1672                         outbound_scid_alias: if context.is_usable() { Some(context.outbound_scid_alias()) } else { None },
1673                         inbound_scid_alias: context.latest_inbound_scid_alias(),
1674                         channel_value_satoshis: context.get_value_satoshis(),
1675                         feerate_sat_per_1000_weight: Some(context.get_feerate_sat_per_1000_weight()),
1676                         unspendable_punishment_reserve: to_self_reserve_satoshis,
1677                         inbound_capacity_msat: balance.inbound_capacity_msat,
1678                         outbound_capacity_msat: balance.outbound_capacity_msat,
1679                         next_outbound_htlc_limit_msat: balance.next_outbound_htlc_limit_msat,
1680                         next_outbound_htlc_minimum_msat: balance.next_outbound_htlc_minimum_msat,
1681                         user_channel_id: context.get_user_id(),
1682                         confirmations_required: context.minimum_depth(),
1683                         confirmations: Some(context.get_funding_tx_confirmations(best_block_height)),
1684                         force_close_spend_delay: context.get_counterparty_selected_contest_delay(),
1685                         is_outbound: context.is_outbound(),
1686                         is_channel_ready: context.is_usable(),
1687                         is_usable: context.is_live(),
1688                         is_public: context.should_announce(),
1689                         inbound_htlc_minimum_msat: Some(context.get_holder_htlc_minimum_msat()),
1690                         inbound_htlc_maximum_msat: context.get_holder_htlc_maximum_msat(),
1691                         config: Some(context.config()),
1692                         channel_shutdown_state: Some(context.shutdown_state()),
1693                 }
1694         }
1695 }
1696
1697 #[derive(Clone, Copy, Debug, PartialEq, Eq)]
1698 /// Further information on the details of the channel shutdown.
1699 /// Upon channels being forced closed (i.e. commitment transaction confirmation detected
1700 /// by `ChainMonitor`), ChannelShutdownState will be set to `ShutdownComplete` or
1701 /// the channel will be removed shortly.
1702 /// Also note, that in normal operation, peers could disconnect at any of these states
1703 /// and require peer re-connection before making progress onto other states
1704 pub enum ChannelShutdownState {
1705         /// Channel has not sent or received a shutdown message.
1706         NotShuttingDown,
1707         /// Local node has sent a shutdown message for this channel.
1708         ShutdownInitiated,
1709         /// Shutdown message exchanges have concluded and the channels are in the midst of
1710         /// resolving all existing open HTLCs before closing can continue.
1711         ResolvingHTLCs,
1712         /// All HTLCs have been resolved, nodes are currently negotiating channel close onchain fee rates.
1713         NegotiatingClosingFee,
1714         /// We've successfully negotiated a closing_signed dance. At this point `ChannelManager` is about
1715         /// to drop the channel.
1716         ShutdownComplete,
1717 }
1718
1719 /// Used by [`ChannelManager::list_recent_payments`] to express the status of recent payments.
1720 /// These include payments that have yet to find a successful path, or have unresolved HTLCs.
1721 #[derive(Debug, PartialEq)]
1722 pub enum RecentPaymentDetails {
1723         /// When an invoice was requested and thus a payment has not yet been sent.
1724         AwaitingInvoice {
1725                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1726                 /// a payment and ensure idempotency in LDK.
1727                 payment_id: PaymentId,
1728         },
1729         /// When a payment is still being sent and awaiting successful delivery.
1730         Pending {
1731                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1732                 /// a payment and ensure idempotency in LDK.
1733                 payment_id: PaymentId,
1734                 /// Hash of the payment that is currently being sent but has yet to be fulfilled or
1735                 /// abandoned.
1736                 payment_hash: PaymentHash,
1737                 /// Total amount (in msat, excluding fees) across all paths for this payment,
1738                 /// not just the amount currently inflight.
1739                 total_msat: u64,
1740         },
1741         /// When a pending payment is fulfilled, we continue tracking it until all pending HTLCs have
1742         /// been resolved. Upon receiving [`Event::PaymentSent`], we delay for a few minutes before the
1743         /// payment is removed from tracking.
1744         Fulfilled {
1745                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1746                 /// a payment and ensure idempotency in LDK.
1747                 payment_id: PaymentId,
1748                 /// Hash of the payment that was claimed. `None` for serializations of [`ChannelManager`]
1749                 /// made before LDK version 0.0.104.
1750                 payment_hash: Option<PaymentHash>,
1751         },
1752         /// After a payment's retries are exhausted per the provided [`Retry`], or it is explicitly
1753         /// abandoned via [`ChannelManager::abandon_payment`], it is marked as abandoned until all
1754         /// pending HTLCs for this payment resolve and an [`Event::PaymentFailed`] is generated.
1755         Abandoned {
1756                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1757                 /// a payment and ensure idempotency in LDK.
1758                 payment_id: PaymentId,
1759                 /// Hash of the payment that we have given up trying to send.
1760                 payment_hash: PaymentHash,
1761         },
1762 }
1763
1764 /// Route hints used in constructing invoices for [phantom node payents].
1765 ///
1766 /// [phantom node payments]: crate::sign::PhantomKeysManager
1767 #[derive(Clone)]
1768 pub struct PhantomRouteHints {
1769         /// The list of channels to be included in the invoice route hints.
1770         pub channels: Vec<ChannelDetails>,
1771         /// A fake scid used for representing the phantom node's fake channel in generating the invoice
1772         /// route hints.
1773         pub phantom_scid: u64,
1774         /// The pubkey of the real backing node that would ultimately receive the payment.
1775         pub real_node_pubkey: PublicKey,
1776 }
1777
1778 macro_rules! handle_error {
1779         ($self: ident, $internal: expr, $counterparty_node_id: expr) => { {
1780                 // In testing, ensure there are no deadlocks where the lock is already held upon
1781                 // entering the macro.
1782                 debug_assert_ne!($self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
1783                 debug_assert_ne!($self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
1784
1785                 match $internal {
1786                         Ok(msg) => Ok(msg),
1787                         Err(MsgHandleErrInternal { err, chan_id, shutdown_finish, channel_capacity }) => {
1788                                 let mut msg_events = Vec::with_capacity(2);
1789
1790                                 if let Some((shutdown_res, update_option)) = shutdown_finish {
1791                                         $self.finish_force_close_channel(shutdown_res);
1792                                         if let Some(update) = update_option {
1793                                                 msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
1794                                                         msg: update
1795                                                 });
1796                                         }
1797                                         if let Some((channel_id, user_channel_id)) = chan_id {
1798                                                 $self.pending_events.lock().unwrap().push_back((events::Event::ChannelClosed {
1799                                                         channel_id, user_channel_id,
1800                                                         reason: ClosureReason::ProcessingError { err: err.err.clone() },
1801                                                         counterparty_node_id: Some($counterparty_node_id),
1802                                                         channel_capacity_sats: channel_capacity,
1803                                                 }, None));
1804                                         }
1805                                 }
1806
1807                                 log_error!($self.logger, "{}", err.err);
1808                                 if let msgs::ErrorAction::IgnoreError = err.action {
1809                                 } else {
1810                                         msg_events.push(events::MessageSendEvent::HandleError {
1811                                                 node_id: $counterparty_node_id,
1812                                                 action: err.action.clone()
1813                                         });
1814                                 }
1815
1816                                 if !msg_events.is_empty() {
1817                                         let per_peer_state = $self.per_peer_state.read().unwrap();
1818                                         if let Some(peer_state_mutex) = per_peer_state.get(&$counterparty_node_id) {
1819                                                 let mut peer_state = peer_state_mutex.lock().unwrap();
1820                                                 peer_state.pending_msg_events.append(&mut msg_events);
1821                                         }
1822                                 }
1823
1824                                 // Return error in case higher-API need one
1825                                 Err(err)
1826                         },
1827                 }
1828         } };
1829         ($self: ident, $internal: expr) => {
1830                 match $internal {
1831                         Ok(res) => Ok(res),
1832                         Err((chan, msg_handle_err)) => {
1833                                 let counterparty_node_id = chan.get_counterparty_node_id();
1834                                 handle_error!($self, Err(msg_handle_err), counterparty_node_id).map_err(|err| (chan, err))
1835                         },
1836                 }
1837         };
1838 }
1839
1840 macro_rules! update_maps_on_chan_removal {
1841         ($self: expr, $channel_context: expr) => {{
1842                 $self.id_to_peer.lock().unwrap().remove(&$channel_context.channel_id());
1843                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1844                 if let Some(short_id) = $channel_context.get_short_channel_id() {
1845                         short_to_chan_info.remove(&short_id);
1846                 } else {
1847                         // If the channel was never confirmed on-chain prior to its closure, remove the
1848                         // outbound SCID alias we used for it from the collision-prevention set. While we
1849                         // generally want to avoid ever re-using an outbound SCID alias across all channels, we
1850                         // also don't want a counterparty to be able to trivially cause a memory leak by simply
1851                         // opening a million channels with us which are closed before we ever reach the funding
1852                         // stage.
1853                         let alias_removed = $self.outbound_scid_aliases.lock().unwrap().remove(&$channel_context.outbound_scid_alias());
1854                         debug_assert!(alias_removed);
1855                 }
1856                 short_to_chan_info.remove(&$channel_context.outbound_scid_alias());
1857         }}
1858 }
1859
1860 /// Returns (boolean indicating if we should remove the Channel object from memory, a mapped error)
1861 macro_rules! convert_chan_phase_err {
1862         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, MANUAL_CHANNEL_UPDATE, $channel_update: expr) => {
1863                 match $err {
1864                         ChannelError::Warn(msg) => {
1865                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Warn(msg), *$channel_id))
1866                         },
1867                         ChannelError::Ignore(msg) => {
1868                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore(msg), *$channel_id))
1869                         },
1870                         ChannelError::Close(msg) => {
1871                                 log_error!($self.logger, "Closing channel {} due to close-required error: {}", $channel_id, msg);
1872                                 update_maps_on_chan_removal!($self, $channel.context);
1873                                 let shutdown_res = $channel.context.force_shutdown(true);
1874                                 let user_id = $channel.context.get_user_id();
1875                                 let channel_capacity_satoshis = $channel.context.get_value_satoshis();
1876
1877                                 (true, MsgHandleErrInternal::from_finish_shutdown(msg, *$channel_id, user_id,
1878                                         shutdown_res, $channel_update, channel_capacity_satoshis))
1879                         },
1880                 }
1881         };
1882         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, FUNDED_CHANNEL) => {
1883                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, { $self.get_channel_update_for_broadcast($channel).ok() })
1884         };
1885         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, UNFUNDED_CHANNEL) => {
1886                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, None)
1887         };
1888         ($self: ident, $err: expr, $channel_phase: expr, $channel_id: expr) => {
1889                 match $channel_phase {
1890                         ChannelPhase::Funded(channel) => {
1891                                 convert_chan_phase_err!($self, $err, channel, $channel_id, FUNDED_CHANNEL)
1892                         },
1893                         ChannelPhase::UnfundedOutboundV1(channel) => {
1894                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
1895                         },
1896                         ChannelPhase::UnfundedInboundV1(channel) => {
1897                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
1898                         },
1899                 }
1900         };
1901 }
1902
1903 macro_rules! break_chan_phase_entry {
1904         ($self: ident, $res: expr, $entry: expr) => {
1905                 match $res {
1906                         Ok(res) => res,
1907                         Err(e) => {
1908                                 let key = *$entry.key();
1909                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
1910                                 if drop {
1911                                         $entry.remove_entry();
1912                                 }
1913                                 break Err(res);
1914                         }
1915                 }
1916         }
1917 }
1918
1919 macro_rules! try_chan_phase_entry {
1920         ($self: ident, $res: expr, $entry: expr) => {
1921                 match $res {
1922                         Ok(res) => res,
1923                         Err(e) => {
1924                                 let key = *$entry.key();
1925                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
1926                                 if drop {
1927                                         $entry.remove_entry();
1928                                 }
1929                                 return Err(res);
1930                         }
1931                 }
1932         }
1933 }
1934
1935 macro_rules! remove_channel_phase {
1936         ($self: expr, $entry: expr) => {
1937                 {
1938                         let channel = $entry.remove_entry().1;
1939                         update_maps_on_chan_removal!($self, &channel.context());
1940                         channel
1941                 }
1942         }
1943 }
1944
1945 macro_rules! send_channel_ready {
1946         ($self: ident, $pending_msg_events: expr, $channel: expr, $channel_ready_msg: expr) => {{
1947                 $pending_msg_events.push(events::MessageSendEvent::SendChannelReady {
1948                         node_id: $channel.context.get_counterparty_node_id(),
1949                         msg: $channel_ready_msg,
1950                 });
1951                 // Note that we may send a `channel_ready` multiple times for a channel if we reconnect, so
1952                 // we allow collisions, but we shouldn't ever be updating the channel ID pointed to.
1953                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1954                 let outbound_alias_insert = short_to_chan_info.insert($channel.context.outbound_scid_alias(), ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
1955                 assert!(outbound_alias_insert.is_none() || outbound_alias_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
1956                         "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1957                 if let Some(real_scid) = $channel.context.get_short_channel_id() {
1958                         let scid_insert = short_to_chan_info.insert(real_scid, ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
1959                         assert!(scid_insert.is_none() || scid_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
1960                                 "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1961                 }
1962         }}
1963 }
1964
1965 macro_rules! emit_channel_pending_event {
1966         ($locked_events: expr, $channel: expr) => {
1967                 if $channel.context.should_emit_channel_pending_event() {
1968                         $locked_events.push_back((events::Event::ChannelPending {
1969                                 channel_id: $channel.context.channel_id(),
1970                                 former_temporary_channel_id: $channel.context.temporary_channel_id(),
1971                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
1972                                 user_channel_id: $channel.context.get_user_id(),
1973                                 funding_txo: $channel.context.get_funding_txo().unwrap().into_bitcoin_outpoint(),
1974                         }, None));
1975                         $channel.context.set_channel_pending_event_emitted();
1976                 }
1977         }
1978 }
1979
1980 macro_rules! emit_channel_ready_event {
1981         ($locked_events: expr, $channel: expr) => {
1982                 if $channel.context.should_emit_channel_ready_event() {
1983                         debug_assert!($channel.context.channel_pending_event_emitted());
1984                         $locked_events.push_back((events::Event::ChannelReady {
1985                                 channel_id: $channel.context.channel_id(),
1986                                 user_channel_id: $channel.context.get_user_id(),
1987                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
1988                                 channel_type: $channel.context.get_channel_type().clone(),
1989                         }, None));
1990                         $channel.context.set_channel_ready_event_emitted();
1991                 }
1992         }
1993 }
1994
1995 macro_rules! handle_monitor_update_completion {
1996         ($self: ident, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr) => { {
1997                 let mut updates = $chan.monitor_updating_restored(&$self.logger,
1998                         &$self.node_signer, $self.genesis_hash, &$self.default_configuration,
1999                         $self.best_block.read().unwrap().height());
2000                 let counterparty_node_id = $chan.context.get_counterparty_node_id();
2001                 let channel_update = if updates.channel_ready.is_some() && $chan.context.is_usable() {
2002                         // We only send a channel_update in the case where we are just now sending a
2003                         // channel_ready and the channel is in a usable state. We may re-send a
2004                         // channel_update later through the announcement_signatures process for public
2005                         // channels, but there's no reason not to just inform our counterparty of our fees
2006                         // now.
2007                         if let Ok(msg) = $self.get_channel_update_for_unicast($chan) {
2008                                 Some(events::MessageSendEvent::SendChannelUpdate {
2009                                         node_id: counterparty_node_id,
2010                                         msg,
2011                                 })
2012                         } else { None }
2013                 } else { None };
2014
2015                 let update_actions = $peer_state.monitor_update_blocked_actions
2016                         .remove(&$chan.context.channel_id()).unwrap_or(Vec::new());
2017
2018                 let htlc_forwards = $self.handle_channel_resumption(
2019                         &mut $peer_state.pending_msg_events, $chan, updates.raa,
2020                         updates.commitment_update, updates.order, updates.accepted_htlcs,
2021                         updates.funding_broadcastable, updates.channel_ready,
2022                         updates.announcement_sigs);
2023                 if let Some(upd) = channel_update {
2024                         $peer_state.pending_msg_events.push(upd);
2025                 }
2026
2027                 let channel_id = $chan.context.channel_id();
2028                 core::mem::drop($peer_state_lock);
2029                 core::mem::drop($per_peer_state_lock);
2030
2031                 $self.handle_monitor_update_completion_actions(update_actions);
2032
2033                 if let Some(forwards) = htlc_forwards {
2034                         $self.forward_htlcs(&mut [forwards][..]);
2035                 }
2036                 $self.finalize_claims(updates.finalized_claimed_htlcs);
2037                 for failure in updates.failed_htlcs.drain(..) {
2038                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2039                         $self.fail_htlc_backwards_internal(&failure.0, &failure.1, &failure.2, receiver);
2040                 }
2041         } }
2042 }
2043
2044 macro_rules! handle_new_monitor_update {
2045         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr, _internal, $remove: expr, $completed: expr) => { {
2046                 // update_maps_on_chan_removal needs to be able to take id_to_peer, so make sure we can in
2047                 // any case so that it won't deadlock.
2048                 debug_assert_ne!($self.id_to_peer.held_by_thread(), LockHeldState::HeldByThread);
2049                 debug_assert!($self.background_events_processed_since_startup.load(Ordering::Acquire));
2050                 match $update_res {
2051                         ChannelMonitorUpdateStatus::InProgress => {
2052                                 log_debug!($self.logger, "ChannelMonitor update for {} in flight, holding messages until the update completes.",
2053                                         &$chan.context.channel_id());
2054                                 false
2055                         },
2056                         ChannelMonitorUpdateStatus::Completed => {
2057                                 $completed;
2058                                 true
2059                         },
2060                 }
2061         } };
2062         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr, MANUALLY_REMOVING_INITIAL_MONITOR, $remove: expr) => {
2063                 handle_new_monitor_update!($self, $update_res, $peer_state_lock, $peer_state,
2064                         $per_peer_state_lock, $chan, _internal, $remove,
2065                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan))
2066         };
2067         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan_entry: expr, INITIAL_MONITOR) => {
2068                 if let ChannelPhase::Funded(chan) = $chan_entry.get_mut() {
2069                         handle_new_monitor_update!($self, $update_res, $peer_state_lock, $peer_state,
2070                                 $per_peer_state_lock, chan, MANUALLY_REMOVING_INITIAL_MONITOR, { $chan_entry.remove() })
2071                 } else {
2072                         // We're not supposed to handle monitor updates for unfunded channels (they have no monitors to
2073                         // update). Throwing away a monitor update could be dangerous, so we assert even in
2074                         // release builds.
2075                         panic!("Initial Monitors should not exist for non-funded channels");
2076                 }
2077         };
2078         ($self: ident, $funding_txo: expr, $update: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr, MANUALLY_REMOVING, $remove: expr) => { {
2079                 let in_flight_updates = $peer_state.in_flight_monitor_updates.entry($funding_txo)
2080                         .or_insert_with(Vec::new);
2081                 // During startup, we push monitor updates as background events through to here in
2082                 // order to replay updates that were in-flight when we shut down. Thus, we have to
2083                 // filter for uniqueness here.
2084                 let idx = in_flight_updates.iter().position(|upd| upd == &$update)
2085                         .unwrap_or_else(|| {
2086                                 in_flight_updates.push($update);
2087                                 in_flight_updates.len() - 1
2088                         });
2089                 let update_res = $self.chain_monitor.update_channel($funding_txo, &in_flight_updates[idx]);
2090                 handle_new_monitor_update!($self, update_res, $peer_state_lock, $peer_state,
2091                         $per_peer_state_lock, $chan, _internal, $remove,
2092                         {
2093                                 let _ = in_flight_updates.remove(idx);
2094                                 if in_flight_updates.is_empty() && $chan.blocked_monitor_updates_pending() == 0 {
2095                                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan);
2096                                 }
2097                         })
2098         } };
2099         ($self: ident, $funding_txo: expr, $update: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan_entry: expr) => {
2100                 if let ChannelPhase::Funded(chan) = $chan_entry.get_mut() {
2101                         handle_new_monitor_update!($self, $funding_txo, $update, $peer_state_lock, $peer_state,
2102                                 $per_peer_state_lock, chan, MANUALLY_REMOVING, { $chan_entry.remove() })
2103                 } else {
2104                         // We're not supposed to handle monitor updates for unfunded channels (they have no monitors to
2105                         // update). Throwing away a monitor update could be dangerous, so we assert even in
2106                         // release builds.
2107                         panic!("Monitor updates should not exist for non-funded channels");
2108                 }
2109         }
2110 }
2111
2112 macro_rules! process_events_body {
2113         ($self: expr, $event_to_handle: expr, $handle_event: expr) => {
2114                 let mut processed_all_events = false;
2115                 while !processed_all_events {
2116                         if $self.pending_events_processor.compare_exchange(false, true, Ordering::Acquire, Ordering::Relaxed).is_err() {
2117                                 return;
2118                         }
2119
2120                         let mut result;
2121
2122                         {
2123                                 // We'll acquire our total consistency lock so that we can be sure no other
2124                                 // persists happen while processing monitor events.
2125                                 let _read_guard = $self.total_consistency_lock.read().unwrap();
2126
2127                                 // Because `handle_post_event_actions` may send `ChannelMonitorUpdate`s to the user we must
2128                                 // ensure any startup-generated background events are handled first.
2129                                 result = $self.process_background_events();
2130
2131                                 // TODO: This behavior should be documented. It's unintuitive that we query
2132                                 // ChannelMonitors when clearing other events.
2133                                 if $self.process_pending_monitor_events() {
2134                                         result = NotifyOption::DoPersist;
2135                                 }
2136                         }
2137
2138                         let pending_events = $self.pending_events.lock().unwrap().clone();
2139                         let num_events = pending_events.len();
2140                         if !pending_events.is_empty() {
2141                                 result = NotifyOption::DoPersist;
2142                         }
2143
2144                         let mut post_event_actions = Vec::new();
2145
2146                         for (event, action_opt) in pending_events {
2147                                 $event_to_handle = event;
2148                                 $handle_event;
2149                                 if let Some(action) = action_opt {
2150                                         post_event_actions.push(action);
2151                                 }
2152                         }
2153
2154                         {
2155                                 let mut pending_events = $self.pending_events.lock().unwrap();
2156                                 pending_events.drain(..num_events);
2157                                 processed_all_events = pending_events.is_empty();
2158                                 // Note that `push_pending_forwards_ev` relies on `pending_events_processor` being
2159                                 // updated here with the `pending_events` lock acquired.
2160                                 $self.pending_events_processor.store(false, Ordering::Release);
2161                         }
2162
2163                         if !post_event_actions.is_empty() {
2164                                 $self.handle_post_event_actions(post_event_actions);
2165                                 // If we had some actions, go around again as we may have more events now
2166                                 processed_all_events = false;
2167                         }
2168
2169                         match result {
2170                                 NotifyOption::DoPersist => {
2171                                         $self.needs_persist_flag.store(true, Ordering::Release);
2172                                         $self.event_persist_notifier.notify();
2173                                 },
2174                                 NotifyOption::SkipPersistHandleEvents =>
2175                                         $self.event_persist_notifier.notify(),
2176                                 NotifyOption::SkipPersistNoEvents => {},
2177                         }
2178                 }
2179         }
2180 }
2181
2182 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>
2183 where
2184         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
2185         T::Target: BroadcasterInterface,
2186         ES::Target: EntropySource,
2187         NS::Target: NodeSigner,
2188         SP::Target: SignerProvider,
2189         F::Target: FeeEstimator,
2190         R::Target: Router,
2191         L::Target: Logger,
2192 {
2193         /// Constructs a new `ChannelManager` to hold several channels and route between them.
2194         ///
2195         /// The current time or latest block header time can be provided as the `current_timestamp`.
2196         ///
2197         /// This is the main "logic hub" for all channel-related actions, and implements
2198         /// [`ChannelMessageHandler`].
2199         ///
2200         /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
2201         ///
2202         /// Users need to notify the new `ChannelManager` when a new block is connected or
2203         /// disconnected using its [`block_connected`] and [`block_disconnected`] methods, starting
2204         /// from after [`params.best_block.block_hash`]. See [`chain::Listen`] and [`chain::Confirm`] for
2205         /// more details.
2206         ///
2207         /// [`block_connected`]: chain::Listen::block_connected
2208         /// [`block_disconnected`]: chain::Listen::block_disconnected
2209         /// [`params.best_block.block_hash`]: chain::BestBlock::block_hash
2210         pub fn new(
2211                 fee_est: F, chain_monitor: M, tx_broadcaster: T, router: R, logger: L, entropy_source: ES,
2212                 node_signer: NS, signer_provider: SP, config: UserConfig, params: ChainParameters,
2213                 current_timestamp: u32,
2214         ) -> Self {
2215                 let mut secp_ctx = Secp256k1::new();
2216                 secp_ctx.seeded_randomize(&entropy_source.get_secure_random_bytes());
2217                 let inbound_pmt_key_material = node_signer.get_inbound_payment_key_material();
2218                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
2219                 ChannelManager {
2220                         default_configuration: config.clone(),
2221                         genesis_hash: genesis_block(params.network).header.block_hash(),
2222                         fee_estimator: LowerBoundedFeeEstimator::new(fee_est),
2223                         chain_monitor,
2224                         tx_broadcaster,
2225                         router,
2226
2227                         best_block: RwLock::new(params.best_block),
2228
2229                         outbound_scid_aliases: Mutex::new(HashSet::new()),
2230                         pending_inbound_payments: Mutex::new(HashMap::new()),
2231                         pending_outbound_payments: OutboundPayments::new(),
2232                         forward_htlcs: Mutex::new(HashMap::new()),
2233                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments: HashMap::new(), pending_claiming_payments: HashMap::new() }),
2234                         pending_intercepted_htlcs: Mutex::new(HashMap::new()),
2235                         id_to_peer: Mutex::new(HashMap::new()),
2236                         short_to_chan_info: FairRwLock::new(HashMap::new()),
2237
2238                         our_network_pubkey: node_signer.get_node_id(Recipient::Node).unwrap(),
2239                         secp_ctx,
2240
2241                         inbound_payment_key: expanded_inbound_key,
2242                         fake_scid_rand_bytes: entropy_source.get_secure_random_bytes(),
2243
2244                         probing_cookie_secret: entropy_source.get_secure_random_bytes(),
2245
2246                         highest_seen_timestamp: AtomicUsize::new(current_timestamp as usize),
2247
2248                         per_peer_state: FairRwLock::new(HashMap::new()),
2249
2250                         pending_events: Mutex::new(VecDeque::new()),
2251                         pending_events_processor: AtomicBool::new(false),
2252                         pending_background_events: Mutex::new(Vec::new()),
2253                         total_consistency_lock: RwLock::new(()),
2254                         background_events_processed_since_startup: AtomicBool::new(false),
2255
2256                         event_persist_notifier: Notifier::new(),
2257                         needs_persist_flag: AtomicBool::new(false),
2258
2259                         entropy_source,
2260                         node_signer,
2261                         signer_provider,
2262
2263                         logger,
2264                 }
2265         }
2266
2267         /// Gets the current configuration applied to all new channels.
2268         pub fn get_current_default_configuration(&self) -> &UserConfig {
2269                 &self.default_configuration
2270         }
2271
2272         fn create_and_insert_outbound_scid_alias(&self) -> u64 {
2273                 let height = self.best_block.read().unwrap().height();
2274                 let mut outbound_scid_alias = 0;
2275                 let mut i = 0;
2276                 loop {
2277                         if cfg!(fuzzing) { // fuzzing chacha20 doesn't use the key at all so we always get the same alias
2278                                 outbound_scid_alias += 1;
2279                         } else {
2280                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias.get_fake_scid(height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
2281                         }
2282                         if outbound_scid_alias != 0 && self.outbound_scid_aliases.lock().unwrap().insert(outbound_scid_alias) {
2283                                 break;
2284                         }
2285                         i += 1;
2286                         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"); }
2287                 }
2288                 outbound_scid_alias
2289         }
2290
2291         /// Creates a new outbound channel to the given remote node and with the given value.
2292         ///
2293         /// `user_channel_id` will be provided back as in
2294         /// [`Event::FundingGenerationReady::user_channel_id`] to allow tracking of which events
2295         /// correspond with which `create_channel` call. Note that the `user_channel_id` defaults to a
2296         /// randomized value for inbound channels. `user_channel_id` has no meaning inside of LDK, it
2297         /// is simply copied to events and otherwise ignored.
2298         ///
2299         /// Raises [`APIError::APIMisuseError`] when `channel_value_satoshis` > 2**24 or `push_msat` is
2300         /// greater than `channel_value_satoshis * 1k` or `channel_value_satoshis < 1000`.
2301         ///
2302         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be opened due to failing to
2303         /// generate a shutdown scriptpubkey or destination script set by
2304         /// [`SignerProvider::get_shutdown_scriptpubkey`] or [`SignerProvider::get_destination_script`].
2305         ///
2306         /// Note that we do not check if you are currently connected to the given peer. If no
2307         /// connection is available, the outbound `open_channel` message may fail to send, resulting in
2308         /// the channel eventually being silently forgotten (dropped on reload).
2309         ///
2310         /// Returns the new Channel's temporary `channel_id`. This ID will appear as
2311         /// [`Event::FundingGenerationReady::temporary_channel_id`] and in
2312         /// [`ChannelDetails::channel_id`] until after
2313         /// [`ChannelManager::funding_transaction_generated`] is called, swapping the Channel's ID for
2314         /// one derived from the funding transaction's TXID. If the counterparty rejects the channel
2315         /// immediately, this temporary ID will appear in [`Event::ChannelClosed::channel_id`].
2316         ///
2317         /// [`Event::FundingGenerationReady::user_channel_id`]: events::Event::FundingGenerationReady::user_channel_id
2318         /// [`Event::FundingGenerationReady::temporary_channel_id`]: events::Event::FundingGenerationReady::temporary_channel_id
2319         /// [`Event::ChannelClosed::channel_id`]: events::Event::ChannelClosed::channel_id
2320         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<ChannelId, APIError> {
2321                 if channel_value_satoshis < 1000 {
2322                         return Err(APIError::APIMisuseError { err: format!("Channel value must be at least 1000 satoshis. It was {}", channel_value_satoshis) });
2323                 }
2324
2325                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2326                 // We want to make sure the lock is actually acquired by PersistenceNotifierGuard.
2327                 debug_assert!(&self.total_consistency_lock.try_write().is_err());
2328
2329                 let per_peer_state = self.per_peer_state.read().unwrap();
2330
2331                 let peer_state_mutex = per_peer_state.get(&their_network_key)
2332                         .ok_or_else(|| APIError::APIMisuseError{ err: format!("Not connected to node: {}", their_network_key) })?;
2333
2334                 let mut peer_state = peer_state_mutex.lock().unwrap();
2335                 let channel = {
2336                         let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
2337                         let their_features = &peer_state.latest_features;
2338                         let config = if override_config.is_some() { override_config.as_ref().unwrap() } else { &self.default_configuration };
2339                         match OutboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider, their_network_key,
2340                                 their_features, channel_value_satoshis, push_msat, user_channel_id, config,
2341                                 self.best_block.read().unwrap().height(), outbound_scid_alias)
2342                         {
2343                                 Ok(res) => res,
2344                                 Err(e) => {
2345                                         self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
2346                                         return Err(e);
2347                                 },
2348                         }
2349                 };
2350                 let res = channel.get_open_channel(self.genesis_hash.clone());
2351
2352                 let temporary_channel_id = channel.context.channel_id();
2353                 match peer_state.channel_by_id.entry(temporary_channel_id) {
2354                         hash_map::Entry::Occupied(_) => {
2355                                 if cfg!(fuzzing) {
2356                                         return Err(APIError::APIMisuseError { err: "Fuzzy bad RNG".to_owned() });
2357                                 } else {
2358                                         panic!("RNG is bad???");
2359                                 }
2360                         },
2361                         hash_map::Entry::Vacant(entry) => { entry.insert(ChannelPhase::UnfundedOutboundV1(channel)); }
2362                 }
2363
2364                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
2365                         node_id: their_network_key,
2366                         msg: res,
2367                 });
2368                 Ok(temporary_channel_id)
2369         }
2370
2371         fn list_funded_channels_with_filter<Fn: FnMut(&(&ChannelId, &Channel<SP>)) -> bool + Copy>(&self, f: Fn) -> Vec<ChannelDetails> {
2372                 // Allocate our best estimate of the number of channels we have in the `res`
2373                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2374                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2375                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2376                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2377                 // the same channel.
2378                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2379                 {
2380                         let best_block_height = self.best_block.read().unwrap().height();
2381                         let per_peer_state = self.per_peer_state.read().unwrap();
2382                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2383                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2384                                 let peer_state = &mut *peer_state_lock;
2385                                 res.extend(peer_state.channel_by_id.iter()
2386                                         .filter_map(|(chan_id, phase)| match phase {
2387                                                 // Only `Channels` in the `ChannelPhase::Funded` phase can be considered funded.
2388                                                 ChannelPhase::Funded(chan) => Some((chan_id, chan)),
2389                                                 _ => None,
2390                                         })
2391                                         .filter(f)
2392                                         .map(|(_channel_id, channel)| {
2393                                                 ChannelDetails::from_channel_context(&channel.context, best_block_height,
2394                                                         peer_state.latest_features.clone(), &self.fee_estimator)
2395                                         })
2396                                 );
2397                         }
2398                 }
2399                 res
2400         }
2401
2402         /// Gets the list of open channels, in random order. See [`ChannelDetails`] field documentation for
2403         /// more information.
2404         pub fn list_channels(&self) -> Vec<ChannelDetails> {
2405                 // Allocate our best estimate of the number of channels we have in the `res`
2406                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2407                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2408                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2409                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2410                 // the same channel.
2411                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2412                 {
2413                         let best_block_height = self.best_block.read().unwrap().height();
2414                         let per_peer_state = self.per_peer_state.read().unwrap();
2415                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2416                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2417                                 let peer_state = &mut *peer_state_lock;
2418                                 for context in peer_state.channel_by_id.iter().map(|(_, phase)| phase.context()) {
2419                                         let details = ChannelDetails::from_channel_context(context, best_block_height,
2420                                                 peer_state.latest_features.clone(), &self.fee_estimator);
2421                                         res.push(details);
2422                                 }
2423                         }
2424                 }
2425                 res
2426         }
2427
2428         /// Gets the list of usable channels, in random order. Useful as an argument to
2429         /// [`Router::find_route`] to ensure non-announced channels are used.
2430         ///
2431         /// These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
2432         /// documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
2433         /// are.
2434         pub fn list_usable_channels(&self) -> Vec<ChannelDetails> {
2435                 // Note we use is_live here instead of usable which leads to somewhat confused
2436                 // internal/external nomenclature, but that's ok cause that's probably what the user
2437                 // really wanted anyway.
2438                 self.list_funded_channels_with_filter(|&(_, ref channel)| channel.context.is_live())
2439         }
2440
2441         /// Gets the list of channels we have with a given counterparty, in random order.
2442         pub fn list_channels_with_counterparty(&self, counterparty_node_id: &PublicKey) -> Vec<ChannelDetails> {
2443                 let best_block_height = self.best_block.read().unwrap().height();
2444                 let per_peer_state = self.per_peer_state.read().unwrap();
2445
2446                 if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
2447                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2448                         let peer_state = &mut *peer_state_lock;
2449                         let features = &peer_state.latest_features;
2450                         let context_to_details = |context| {
2451                                 ChannelDetails::from_channel_context(context, best_block_height, features.clone(), &self.fee_estimator)
2452                         };
2453                         return peer_state.channel_by_id
2454                                 .iter()
2455                                 .map(|(_, phase)| phase.context())
2456                                 .map(context_to_details)
2457                                 .collect();
2458                 }
2459                 vec![]
2460         }
2461
2462         /// Returns in an undefined order recent payments that -- if not fulfilled -- have yet to find a
2463         /// successful path, or have unresolved HTLCs.
2464         ///
2465         /// This can be useful for payments that may have been prepared, but ultimately not sent, as a
2466         /// result of a crash. If such a payment exists, is not listed here, and an
2467         /// [`Event::PaymentSent`] has not been received, you may consider resending the payment.
2468         ///
2469         /// [`Event::PaymentSent`]: events::Event::PaymentSent
2470         pub fn list_recent_payments(&self) -> Vec<RecentPaymentDetails> {
2471                 self.pending_outbound_payments.pending_outbound_payments.lock().unwrap().iter()
2472                         .filter_map(|(payment_id, pending_outbound_payment)| match pending_outbound_payment {
2473                                 PendingOutboundPayment::AwaitingInvoice { .. } => {
2474                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
2475                                 },
2476                                 // InvoiceReceived is an intermediate state and doesn't need to be exposed
2477                                 PendingOutboundPayment::InvoiceReceived { .. } => {
2478                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
2479                                 },
2480                                 PendingOutboundPayment::Retryable { payment_hash, total_msat, .. } => {
2481                                         Some(RecentPaymentDetails::Pending {
2482                                                 payment_id: *payment_id,
2483                                                 payment_hash: *payment_hash,
2484                                                 total_msat: *total_msat,
2485                                         })
2486                                 },
2487                                 PendingOutboundPayment::Abandoned { payment_hash, .. } => {
2488                                         Some(RecentPaymentDetails::Abandoned { payment_id: *payment_id, payment_hash: *payment_hash })
2489                                 },
2490                                 PendingOutboundPayment::Fulfilled { payment_hash, .. } => {
2491                                         Some(RecentPaymentDetails::Fulfilled { payment_id: *payment_id, payment_hash: *payment_hash })
2492                                 },
2493                                 PendingOutboundPayment::Legacy { .. } => None
2494                         })
2495                         .collect()
2496         }
2497
2498         /// Helper function that issues the channel close events
2499         fn issue_channel_close_events(&self, context: &ChannelContext<SP>, closure_reason: ClosureReason) {
2500                 let mut pending_events_lock = self.pending_events.lock().unwrap();
2501                 match context.unbroadcasted_funding() {
2502                         Some(transaction) => {
2503                                 pending_events_lock.push_back((events::Event::DiscardFunding {
2504                                         channel_id: context.channel_id(), transaction
2505                                 }, None));
2506                         },
2507                         None => {},
2508                 }
2509                 pending_events_lock.push_back((events::Event::ChannelClosed {
2510                         channel_id: context.channel_id(),
2511                         user_channel_id: context.get_user_id(),
2512                         reason: closure_reason,
2513                         counterparty_node_id: Some(context.get_counterparty_node_id()),
2514                         channel_capacity_sats: Some(context.get_value_satoshis()),
2515                 }, None));
2516         }
2517
2518         fn close_channel_internal(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, target_feerate_sats_per_1000_weight: Option<u32>, override_shutdown_script: Option<ShutdownScript>) -> Result<(), APIError> {
2519                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2520
2521                 let mut failed_htlcs: Vec<(HTLCSource, PaymentHash)>;
2522                 loop {
2523                         {
2524                                 let per_peer_state = self.per_peer_state.read().unwrap();
2525
2526                                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
2527                                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
2528
2529                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2530                                 let peer_state = &mut *peer_state_lock;
2531
2532                                 match peer_state.channel_by_id.entry(channel_id.clone()) {
2533                                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
2534                                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
2535                                                         let funding_txo_opt = chan.context.get_funding_txo();
2536                                                         let their_features = &peer_state.latest_features;
2537                                                         let (shutdown_msg, mut monitor_update_opt, htlcs) =
2538                                                                 chan.get_shutdown(&self.signer_provider, their_features, target_feerate_sats_per_1000_weight, override_shutdown_script)?;
2539                                                         failed_htlcs = htlcs;
2540
2541                                                         // We can send the `shutdown` message before updating the `ChannelMonitor`
2542                                                         // here as we don't need the monitor update to complete until we send a
2543                                                         // `shutdown_signed`, which we'll delay if we're pending a monitor update.
2544                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
2545                                                                 node_id: *counterparty_node_id,
2546                                                                 msg: shutdown_msg,
2547                                                         });
2548
2549                                                         // Update the monitor with the shutdown script if necessary.
2550                                                         if let Some(monitor_update) = monitor_update_opt.take() {
2551                                                                 handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
2552                                                                         peer_state_lock, peer_state, per_peer_state, chan_phase_entry);
2553                                                                 break;
2554                                                         }
2555
2556                                                         if chan.is_shutdown() {
2557                                                                 if let ChannelPhase::Funded(chan) = remove_channel_phase!(self, chan_phase_entry) {
2558                                                                         if let Ok(channel_update) = self.get_channel_update_for_broadcast(&chan) {
2559                                                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2560                                                                                         msg: channel_update
2561                                                                                 });
2562                                                                         }
2563                                                                         self.issue_channel_close_events(&chan.context, ClosureReason::HolderForceClosed);
2564                                                                 }
2565                                                         }
2566                                                         break;
2567                                                 }
2568                                         },
2569                                         hash_map::Entry::Vacant(_) => (),
2570                                 }
2571                         }
2572                         // If we reach this point, it means that the channel_id either refers to an unfunded channel or
2573                         // it does not exist for this peer. Either way, we can attempt to force-close it.
2574                         //
2575                         // An appropriate error will be returned for non-existence of the channel if that's the case.
2576                         return self.force_close_channel_with_peer(&channel_id, counterparty_node_id, None, false).map(|_| ())
2577                 };
2578
2579                 for htlc_source in failed_htlcs.drain(..) {
2580                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2581                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(*counterparty_node_id), channel_id: *channel_id };
2582                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
2583                 }
2584
2585                 Ok(())
2586         }
2587
2588         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2589         /// will be accepted on the given channel, and after additional timeout/the closing of all
2590         /// pending HTLCs, the channel will be closed on chain.
2591         ///
2592         ///  * If we are the channel initiator, we will pay between our [`Background`] and
2593         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2594         ///    estimate.
2595         ///  * If our counterparty is the channel initiator, we will require a channel closing
2596         ///    transaction feerate of at least our [`Background`] feerate or the feerate which
2597         ///    would appear on a force-closure transaction, whichever is lower. We will allow our
2598         ///    counterparty to pay as much fee as they'd like, however.
2599         ///
2600         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2601         ///
2602         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2603         /// generate a shutdown scriptpubkey or destination script set by
2604         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2605         /// channel.
2606         ///
2607         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2608         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2609         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2610         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2611         pub fn close_channel(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey) -> Result<(), APIError> {
2612                 self.close_channel_internal(channel_id, counterparty_node_id, None, None)
2613         }
2614
2615         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2616         /// will be accepted on the given channel, and after additional timeout/the closing of all
2617         /// pending HTLCs, the channel will be closed on chain.
2618         ///
2619         /// `target_feerate_sat_per_1000_weight` has different meanings depending on if we initiated
2620         /// the channel being closed or not:
2621         ///  * If we are the channel initiator, we will pay at least this feerate on the closing
2622         ///    transaction. The upper-bound is set by
2623         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2624         ///    estimate (or `target_feerate_sat_per_1000_weight`, if it is greater).
2625         ///  * If our counterparty is the channel initiator, we will refuse to accept a channel closure
2626         ///    transaction feerate below `target_feerate_sat_per_1000_weight` (or the feerate which
2627         ///    will appear on a force-closure transaction, whichever is lower).
2628         ///
2629         /// The `shutdown_script` provided  will be used as the `scriptPubKey` for the closing transaction.
2630         /// Will fail if a shutdown script has already been set for this channel by
2631         /// ['ChannelHandshakeConfig::commit_upfront_shutdown_pubkey`]. The given shutdown script must
2632         /// also be compatible with our and the counterparty's features.
2633         ///
2634         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2635         ///
2636         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2637         /// generate a shutdown scriptpubkey or destination script set by
2638         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2639         /// channel.
2640         ///
2641         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2642         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2643         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2644         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2645         pub fn close_channel_with_feerate_and_script(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, target_feerate_sats_per_1000_weight: Option<u32>, shutdown_script: Option<ShutdownScript>) -> Result<(), APIError> {
2646                 self.close_channel_internal(channel_id, counterparty_node_id, target_feerate_sats_per_1000_weight, shutdown_script)
2647         }
2648
2649         #[inline]
2650         fn finish_force_close_channel(&self, shutdown_res: ShutdownResult) {
2651                 let (monitor_update_option, mut failed_htlcs) = shutdown_res;
2652                 log_debug!(self.logger, "Finishing force-closure of channel with {} HTLCs to fail", failed_htlcs.len());
2653                 for htlc_source in failed_htlcs.drain(..) {
2654                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
2655                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2656                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2657                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
2658                 }
2659                 if let Some((_, funding_txo, monitor_update)) = monitor_update_option {
2660                         // There isn't anything we can do if we get an update failure - we're already
2661                         // force-closing. The monitor update on the required in-memory copy should broadcast
2662                         // the latest local state, which is the best we can do anyway. Thus, it is safe to
2663                         // ignore the result here.
2664                         let _ = self.chain_monitor.update_channel(funding_txo, &monitor_update);
2665                 }
2666         }
2667
2668         /// `peer_msg` should be set when we receive a message from a peer, but not set when the
2669         /// user closes, which will be re-exposed as the `ChannelClosed` reason.
2670         fn force_close_channel_with_peer(&self, channel_id: &ChannelId, peer_node_id: &PublicKey, peer_msg: Option<&String>, broadcast: bool)
2671         -> Result<PublicKey, APIError> {
2672                 let per_peer_state = self.per_peer_state.read().unwrap();
2673                 let peer_state_mutex = per_peer_state.get(peer_node_id)
2674                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", peer_node_id) })?;
2675                 let (update_opt, counterparty_node_id) = {
2676                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2677                         let peer_state = &mut *peer_state_lock;
2678                         let closure_reason = if let Some(peer_msg) = peer_msg {
2679                                 ClosureReason::CounterpartyForceClosed { peer_msg: UntrustedString(peer_msg.to_string()) }
2680                         } else {
2681                                 ClosureReason::HolderForceClosed
2682                         };
2683                         if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(channel_id.clone()) {
2684                                 log_error!(self.logger, "Force-closing channel {}", channel_id);
2685                                 self.issue_channel_close_events(&chan_phase_entry.get().context(), closure_reason);
2686                                 let mut chan_phase = remove_channel_phase!(self, chan_phase_entry);
2687                                 match chan_phase {
2688                                         ChannelPhase::Funded(mut chan) => {
2689                                                 self.finish_force_close_channel(chan.context.force_shutdown(broadcast));
2690                                                 (self.get_channel_update_for_broadcast(&chan).ok(), chan.context.get_counterparty_node_id())
2691                                         },
2692                                         ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => {
2693                                                 self.finish_force_close_channel(chan_phase.context_mut().force_shutdown(false));
2694                                                 // Unfunded channel has no update
2695                                                 (None, chan_phase.context().get_counterparty_node_id())
2696                                         },
2697                                 }
2698                         } else if peer_state.inbound_channel_request_by_id.remove(channel_id).is_some() {
2699                                 log_error!(self.logger, "Force-closing channel {}", &channel_id);
2700                                 // N.B. that we don't send any channel close event here: we
2701                                 // don't have a user_channel_id, and we never sent any opening
2702                                 // events anyway.
2703                                 (None, *peer_node_id)
2704                         } else {
2705                                 return Err(APIError::ChannelUnavailable{ err: format!("Channel with id {} not found for the passed counterparty node_id {}", channel_id, peer_node_id) });
2706                         }
2707                 };
2708                 if let Some(update) = update_opt {
2709                         let mut peer_state = peer_state_mutex.lock().unwrap();
2710                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2711                                 msg: update
2712                         });
2713                 }
2714
2715                 Ok(counterparty_node_id)
2716         }
2717
2718         fn force_close_sending_error(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, broadcast: bool) -> Result<(), APIError> {
2719                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2720                 match self.force_close_channel_with_peer(channel_id, counterparty_node_id, None, broadcast) {
2721                         Ok(counterparty_node_id) => {
2722                                 let per_peer_state = self.per_peer_state.read().unwrap();
2723                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2724                                         let mut peer_state = peer_state_mutex.lock().unwrap();
2725                                         peer_state.pending_msg_events.push(
2726                                                 events::MessageSendEvent::HandleError {
2727                                                         node_id: counterparty_node_id,
2728                                                         action: msgs::ErrorAction::SendErrorMessage {
2729                                                                 msg: msgs::ErrorMessage { channel_id: *channel_id, data: "Channel force-closed".to_owned() }
2730                                                         },
2731                                                 }
2732                                         );
2733                                 }
2734                                 Ok(())
2735                         },
2736                         Err(e) => Err(e)
2737                 }
2738         }
2739
2740         /// Force closes a channel, immediately broadcasting the latest local transaction(s) and
2741         /// rejecting new HTLCs on the given channel. Fails if `channel_id` is unknown to
2742         /// the manager, or if the `counterparty_node_id` isn't the counterparty of the corresponding
2743         /// channel.
2744         pub fn force_close_broadcasting_latest_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey)
2745         -> Result<(), APIError> {
2746                 self.force_close_sending_error(channel_id, counterparty_node_id, true)
2747         }
2748
2749         /// Force closes a channel, rejecting new HTLCs on the given channel but skips broadcasting
2750         /// the latest local transaction(s). Fails if `channel_id` is unknown to the manager, or if the
2751         /// `counterparty_node_id` isn't the counterparty of the corresponding channel.
2752         ///
2753         /// You can always get the latest local transaction(s) to broadcast from
2754         /// [`ChannelMonitor::get_latest_holder_commitment_txn`].
2755         pub fn force_close_without_broadcasting_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey)
2756         -> Result<(), APIError> {
2757                 self.force_close_sending_error(channel_id, counterparty_node_id, false)
2758         }
2759
2760         /// Force close all channels, immediately broadcasting the latest local commitment transaction
2761         /// for each to the chain and rejecting new HTLCs on each.
2762         pub fn force_close_all_channels_broadcasting_latest_txn(&self) {
2763                 for chan in self.list_channels() {
2764                         let _ = self.force_close_broadcasting_latest_txn(&chan.channel_id, &chan.counterparty.node_id);
2765                 }
2766         }
2767
2768         /// Force close all channels rejecting new HTLCs on each but without broadcasting the latest
2769         /// local transaction(s).
2770         pub fn force_close_all_channels_without_broadcasting_txn(&self) {
2771                 for chan in self.list_channels() {
2772                         let _ = self.force_close_without_broadcasting_txn(&chan.channel_id, &chan.counterparty.node_id);
2773                 }
2774         }
2775
2776         fn construct_fwd_pending_htlc_info(
2777                 &self, msg: &msgs::UpdateAddHTLC, hop_data: msgs::InboundOnionPayload, hop_hmac: [u8; 32],
2778                 new_packet_bytes: [u8; onion_utils::ONION_DATA_LEN], shared_secret: [u8; 32],
2779                 next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>
2780         ) -> Result<PendingHTLCInfo, InboundOnionErr> {
2781                 debug_assert!(next_packet_pubkey_opt.is_some());
2782                 let outgoing_packet = msgs::OnionPacket {
2783                         version: 0,
2784                         public_key: next_packet_pubkey_opt.unwrap_or(Err(secp256k1::Error::InvalidPublicKey)),
2785                         hop_data: new_packet_bytes,
2786                         hmac: hop_hmac,
2787                 };
2788
2789                 let (short_channel_id, amt_to_forward, outgoing_cltv_value) = match hop_data {
2790                         msgs::InboundOnionPayload::Forward { short_channel_id, amt_to_forward, outgoing_cltv_value } =>
2791                                 (short_channel_id, amt_to_forward, outgoing_cltv_value),
2792                         msgs::InboundOnionPayload::Receive { .. } | msgs::InboundOnionPayload::BlindedReceive { .. } =>
2793                                 return Err(InboundOnionErr {
2794                                         msg: "Final Node OnionHopData provided for us as an intermediary node",
2795                                         err_code: 0x4000 | 22,
2796                                         err_data: Vec::new(),
2797                                 }),
2798                 };
2799
2800                 Ok(PendingHTLCInfo {
2801                         routing: PendingHTLCRouting::Forward {
2802                                 onion_packet: outgoing_packet,
2803                                 short_channel_id,
2804                         },
2805                         payment_hash: msg.payment_hash,
2806                         incoming_shared_secret: shared_secret,
2807                         incoming_amt_msat: Some(msg.amount_msat),
2808                         outgoing_amt_msat: amt_to_forward,
2809                         outgoing_cltv_value,
2810                         skimmed_fee_msat: None,
2811                 })
2812         }
2813
2814         fn construct_recv_pending_htlc_info(
2815                 &self, hop_data: msgs::InboundOnionPayload, shared_secret: [u8; 32], payment_hash: PaymentHash,
2816                 amt_msat: u64, cltv_expiry: u32, phantom_shared_secret: Option<[u8; 32]>, allow_underpay: bool,
2817                 counterparty_skimmed_fee_msat: Option<u64>,
2818         ) -> Result<PendingHTLCInfo, InboundOnionErr> {
2819                 let (payment_data, keysend_preimage, custom_tlvs, onion_amt_msat, outgoing_cltv_value, payment_metadata) = match hop_data {
2820                         msgs::InboundOnionPayload::Receive {
2821                                 payment_data, keysend_preimage, custom_tlvs, amt_msat, outgoing_cltv_value, payment_metadata, ..
2822                         } =>
2823                                 (payment_data, keysend_preimage, custom_tlvs, amt_msat, outgoing_cltv_value, payment_metadata),
2824                         msgs::InboundOnionPayload::BlindedReceive {
2825                                 amt_msat, total_msat, outgoing_cltv_value, payment_secret, ..
2826                         } => {
2827                                 let payment_data = msgs::FinalOnionHopData { payment_secret, total_msat };
2828                                 (Some(payment_data), None, Vec::new(), amt_msat, outgoing_cltv_value, None)
2829                         }
2830                         msgs::InboundOnionPayload::Forward { .. } => {
2831                                 return Err(InboundOnionErr {
2832                                         err_code: 0x4000|22,
2833                                         err_data: Vec::new(),
2834                                         msg: "Got non final data with an HMAC of 0",
2835                                 })
2836                         },
2837                 };
2838                 // final_incorrect_cltv_expiry
2839                 if outgoing_cltv_value > cltv_expiry {
2840                         return Err(InboundOnionErr {
2841                                 msg: "Upstream node set CLTV to less than the CLTV set by the sender",
2842                                 err_code: 18,
2843                                 err_data: cltv_expiry.to_be_bytes().to_vec()
2844                         })
2845                 }
2846                 // final_expiry_too_soon
2847                 // We have to have some headroom to broadcast on chain if we have the preimage, so make sure
2848                 // we have at least HTLC_FAIL_BACK_BUFFER blocks to go.
2849                 //
2850                 // Also, ensure that, in the case of an unknown preimage for the received payment hash, our
2851                 // payment logic has enough time to fail the HTLC backward before our onchain logic triggers a
2852                 // channel closure (see HTLC_FAIL_BACK_BUFFER rationale).
2853                 let current_height: u32 = self.best_block.read().unwrap().height();
2854                 if (outgoing_cltv_value as u64) <= current_height as u64 + HTLC_FAIL_BACK_BUFFER as u64 + 1 {
2855                         let mut err_data = Vec::with_capacity(12);
2856                         err_data.extend_from_slice(&amt_msat.to_be_bytes());
2857                         err_data.extend_from_slice(&current_height.to_be_bytes());
2858                         return Err(InboundOnionErr {
2859                                 err_code: 0x4000 | 15, err_data,
2860                                 msg: "The final CLTV expiry is too soon to handle",
2861                         });
2862                 }
2863                 if (!allow_underpay && onion_amt_msat > amt_msat) ||
2864                         (allow_underpay && onion_amt_msat >
2865                          amt_msat.saturating_add(counterparty_skimmed_fee_msat.unwrap_or(0)))
2866                 {
2867                         return Err(InboundOnionErr {
2868                                 err_code: 19,
2869                                 err_data: amt_msat.to_be_bytes().to_vec(),
2870                                 msg: "Upstream node sent less than we were supposed to receive in payment",
2871                         });
2872                 }
2873
2874                 let routing = if let Some(payment_preimage) = keysend_preimage {
2875                         // We need to check that the sender knows the keysend preimage before processing this
2876                         // payment further. Otherwise, an intermediary routing hop forwarding non-keysend-HTLC X
2877                         // could discover the final destination of X, by probing the adjacent nodes on the route
2878                         // with a keysend payment of identical payment hash to X and observing the processing
2879                         // time discrepancies due to a hash collision with X.
2880                         let hashed_preimage = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
2881                         if hashed_preimage != payment_hash {
2882                                 return Err(InboundOnionErr {
2883                                         err_code: 0x4000|22,
2884                                         err_data: Vec::new(),
2885                                         msg: "Payment preimage didn't match payment hash",
2886                                 });
2887                         }
2888                         if !self.default_configuration.accept_mpp_keysend && payment_data.is_some() {
2889                                 return Err(InboundOnionErr {
2890                                         err_code: 0x4000|22,
2891                                         err_data: Vec::new(),
2892                                         msg: "We don't support MPP keysend payments",
2893                                 });
2894                         }
2895                         PendingHTLCRouting::ReceiveKeysend {
2896                                 payment_data,
2897                                 payment_preimage,
2898                                 payment_metadata,
2899                                 incoming_cltv_expiry: outgoing_cltv_value,
2900                                 custom_tlvs,
2901                         }
2902                 } else if let Some(data) = payment_data {
2903                         PendingHTLCRouting::Receive {
2904                                 payment_data: data,
2905                                 payment_metadata,
2906                                 incoming_cltv_expiry: outgoing_cltv_value,
2907                                 phantom_shared_secret,
2908                                 custom_tlvs,
2909                         }
2910                 } else {
2911                         return Err(InboundOnionErr {
2912                                 err_code: 0x4000|0x2000|3,
2913                                 err_data: Vec::new(),
2914                                 msg: "We require payment_secrets",
2915                         });
2916                 };
2917                 Ok(PendingHTLCInfo {
2918                         routing,
2919                         payment_hash,
2920                         incoming_shared_secret: shared_secret,
2921                         incoming_amt_msat: Some(amt_msat),
2922                         outgoing_amt_msat: onion_amt_msat,
2923                         outgoing_cltv_value,
2924                         skimmed_fee_msat: counterparty_skimmed_fee_msat,
2925                 })
2926         }
2927
2928         fn decode_update_add_htlc_onion(
2929                 &self, msg: &msgs::UpdateAddHTLC
2930         ) -> Result<(onion_utils::Hop, [u8; 32], Option<Result<PublicKey, secp256k1::Error>>), HTLCFailureMsg> {
2931                 macro_rules! return_malformed_err {
2932                         ($msg: expr, $err_code: expr) => {
2933                                 {
2934                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2935                                         return Err(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
2936                                                 channel_id: msg.channel_id,
2937                                                 htlc_id: msg.htlc_id,
2938                                                 sha256_of_onion: Sha256::hash(&msg.onion_routing_packet.hop_data).into_inner(),
2939                                                 failure_code: $err_code,
2940                                         }));
2941                                 }
2942                         }
2943                 }
2944
2945                 if let Err(_) = msg.onion_routing_packet.public_key {
2946                         return_malformed_err!("invalid ephemeral pubkey", 0x8000 | 0x4000 | 6);
2947                 }
2948
2949                 let shared_secret = self.node_signer.ecdh(
2950                         Recipient::Node, &msg.onion_routing_packet.public_key.unwrap(), None
2951                 ).unwrap().secret_bytes();
2952
2953                 if msg.onion_routing_packet.version != 0 {
2954                         //TODO: Spec doesn't indicate if we should only hash hop_data here (and in other
2955                         //sha256_of_onion error data packets), or the entire onion_routing_packet. Either way,
2956                         //the hash doesn't really serve any purpose - in the case of hashing all data, the
2957                         //receiving node would have to brute force to figure out which version was put in the
2958                         //packet by the node that send us the message, in the case of hashing the hop_data, the
2959                         //node knows the HMAC matched, so they already know what is there...
2960                         return_malformed_err!("Unknown onion packet version", 0x8000 | 0x4000 | 4);
2961                 }
2962                 macro_rules! return_err {
2963                         ($msg: expr, $err_code: expr, $data: expr) => {
2964                                 {
2965                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2966                                         return Err(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
2967                                                 channel_id: msg.channel_id,
2968                                                 htlc_id: msg.htlc_id,
2969                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
2970                                                         .get_encrypted_failure_packet(&shared_secret, &None),
2971                                         }));
2972                                 }
2973                         }
2974                 }
2975
2976                 let next_hop = match onion_utils::decode_next_payment_hop(
2977                         shared_secret, &msg.onion_routing_packet.hop_data[..], msg.onion_routing_packet.hmac,
2978                         msg.payment_hash, &self.node_signer
2979                 ) {
2980                         Ok(res) => res,
2981                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
2982                                 return_malformed_err!(err_msg, err_code);
2983                         },
2984                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
2985                                 return_err!(err_msg, err_code, &[0; 0]);
2986                         },
2987                 };
2988                 let (outgoing_scid, outgoing_amt_msat, outgoing_cltv_value, next_packet_pk_opt) = match next_hop {
2989                         onion_utils::Hop::Forward {
2990                                 next_hop_data: msgs::InboundOnionPayload::Forward {
2991                                         short_channel_id, amt_to_forward, outgoing_cltv_value
2992                                 }, ..
2993                         } => {
2994                                 let next_packet_pk = onion_utils::next_hop_pubkey(&self.secp_ctx,
2995                                         msg.onion_routing_packet.public_key.unwrap(), &shared_secret);
2996                                 (short_channel_id, amt_to_forward, outgoing_cltv_value, Some(next_packet_pk))
2997                         },
2998                         // We'll do receive checks in [`Self::construct_pending_htlc_info`] so we have access to the
2999                         // inbound channel's state.
3000                         onion_utils::Hop::Receive { .. } => return Ok((next_hop, shared_secret, None)),
3001                         onion_utils::Hop::Forward { next_hop_data: msgs::InboundOnionPayload::Receive { .. }, .. } |
3002                                 onion_utils::Hop::Forward { next_hop_data: msgs::InboundOnionPayload::BlindedReceive { .. }, .. } =>
3003                         {
3004                                 return_err!("Final Node OnionHopData provided for us as an intermediary node", 0x4000 | 22, &[0; 0]);
3005                         }
3006                 };
3007
3008                 // Perform outbound checks here instead of in [`Self::construct_pending_htlc_info`] because we
3009                 // can't hold the outbound peer state lock at the same time as the inbound peer state lock.
3010                 if let Some((err, mut code, chan_update)) = loop {
3011                         let id_option = self.short_to_chan_info.read().unwrap().get(&outgoing_scid).cloned();
3012                         let forwarding_chan_info_opt = match id_option {
3013                                 None => { // unknown_next_peer
3014                                         // Note that this is likely a timing oracle for detecting whether an scid is a
3015                                         // phantom or an intercept.
3016                                         if (self.default_configuration.accept_intercept_htlcs &&
3017                                                 fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, outgoing_scid, &self.genesis_hash)) ||
3018                                                 fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, outgoing_scid, &self.genesis_hash)
3019                                         {
3020                                                 None
3021                                         } else {
3022                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
3023                                         }
3024                                 },
3025                                 Some((cp_id, id)) => Some((cp_id.clone(), id.clone())),
3026                         };
3027                         let chan_update_opt = if let Some((counterparty_node_id, forwarding_id)) = forwarding_chan_info_opt {
3028                                 let per_peer_state = self.per_peer_state.read().unwrap();
3029                                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
3030                                 if peer_state_mutex_opt.is_none() {
3031                                         break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
3032                                 }
3033                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
3034                                 let peer_state = &mut *peer_state_lock;
3035                                 let chan = match peer_state.channel_by_id.get_mut(&forwarding_id).map(
3036                                         |chan_phase| if let ChannelPhase::Funded(chan) = chan_phase { Some(chan) } else { None }
3037                                 ).flatten() {
3038                                         None => {
3039                                                 // Channel was removed. The short_to_chan_info and channel_by_id maps
3040                                                 // have no consistency guarantees.
3041                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
3042                                         },
3043                                         Some(chan) => chan
3044                                 };
3045                                 if !chan.context.should_announce() && !self.default_configuration.accept_forwards_to_priv_channels {
3046                                         // Note that the behavior here should be identical to the above block - we
3047                                         // should NOT reveal the existence or non-existence of a private channel if
3048                                         // we don't allow forwards outbound over them.
3049                                         break Some(("Refusing to forward to a private channel based on our config.", 0x4000 | 10, None));
3050                                 }
3051                                 if chan.context.get_channel_type().supports_scid_privacy() && outgoing_scid != chan.context.outbound_scid_alias() {
3052                                         // `option_scid_alias` (referred to in LDK as `scid_privacy`) means
3053                                         // "refuse to forward unless the SCID alias was used", so we pretend
3054                                         // we don't have the channel here.
3055                                         break Some(("Refusing to forward over real channel SCID as our counterparty requested.", 0x4000 | 10, None));
3056                                 }
3057                                 let chan_update_opt = self.get_channel_update_for_onion(outgoing_scid, chan).ok();
3058
3059                                 // Note that we could technically not return an error yet here and just hope
3060                                 // that the connection is reestablished or monitor updated by the time we get
3061                                 // around to doing the actual forward, but better to fail early if we can and
3062                                 // hopefully an attacker trying to path-trace payments cannot make this occur
3063                                 // on a small/per-node/per-channel scale.
3064                                 if !chan.context.is_live() { // channel_disabled
3065                                         // If the channel_update we're going to return is disabled (i.e. the
3066                                         // peer has been disabled for some time), return `channel_disabled`,
3067                                         // otherwise return `temporary_channel_failure`.
3068                                         if chan_update_opt.as_ref().map(|u| u.contents.flags & 2 == 2).unwrap_or(false) {
3069                                                 break Some(("Forwarding channel has been disconnected for some time.", 0x1000 | 20, chan_update_opt));
3070                                         } else {
3071                                                 break Some(("Forwarding channel is not in a ready state.", 0x1000 | 7, chan_update_opt));
3072                                         }
3073                                 }
3074                                 if outgoing_amt_msat < chan.context.get_counterparty_htlc_minimum_msat() { // amount_below_minimum
3075                                         break Some(("HTLC amount was below the htlc_minimum_msat", 0x1000 | 11, chan_update_opt));
3076                                 }
3077                                 if let Err((err, code)) = chan.htlc_satisfies_config(&msg, outgoing_amt_msat, outgoing_cltv_value) {
3078                                         break Some((err, code, chan_update_opt));
3079                                 }
3080                                 chan_update_opt
3081                         } else {
3082                                 if (msg.cltv_expiry as u64) < (outgoing_cltv_value) as u64 + MIN_CLTV_EXPIRY_DELTA as u64 {
3083                                         // We really should set `incorrect_cltv_expiry` here but as we're not
3084                                         // forwarding over a real channel we can't generate a channel_update
3085                                         // for it. Instead we just return a generic temporary_node_failure.
3086                                         break Some((
3087                                                         "Forwarding node has tampered with the intended HTLC values or origin node has an obsolete cltv_expiry_delta",
3088                                                         0x2000 | 2, None,
3089                                         ));
3090                                 }
3091                                 None
3092                         };
3093
3094                         let cur_height = self.best_block.read().unwrap().height() + 1;
3095                         // Theoretically, channel counterparty shouldn't send us a HTLC expiring now,
3096                         // but we want to be robust wrt to counterparty packet sanitization (see
3097                         // HTLC_FAIL_BACK_BUFFER rationale).
3098                         if msg.cltv_expiry <= cur_height + HTLC_FAIL_BACK_BUFFER as u32 { // expiry_too_soon
3099                                 break Some(("CLTV expiry is too close", 0x1000 | 14, chan_update_opt));
3100                         }
3101                         if msg.cltv_expiry > cur_height + CLTV_FAR_FAR_AWAY as u32 { // expiry_too_far
3102                                 break Some(("CLTV expiry is too far in the future", 21, None));
3103                         }
3104                         // If the HTLC expires ~now, don't bother trying to forward it to our
3105                         // counterparty. They should fail it anyway, but we don't want to bother with
3106                         // the round-trips or risk them deciding they definitely want the HTLC and
3107                         // force-closing to ensure they get it if we're offline.
3108                         // We previously had a much more aggressive check here which tried to ensure
3109                         // our counterparty receives an HTLC which has *our* risk threshold met on it,
3110                         // but there is no need to do that, and since we're a bit conservative with our
3111                         // risk threshold it just results in failing to forward payments.
3112                         if (outgoing_cltv_value) as u64 <= (cur_height + LATENCY_GRACE_PERIOD_BLOCKS) as u64 {
3113                                 break Some(("Outgoing CLTV value is too soon", 0x1000 | 14, chan_update_opt));
3114                         }
3115
3116                         break None;
3117                 }
3118                 {
3119                         let mut res = VecWriter(Vec::with_capacity(chan_update.serialized_length() + 2 + 8 + 2));
3120                         if let Some(chan_update) = chan_update {
3121                                 if code == 0x1000 | 11 || code == 0x1000 | 12 {
3122                                         msg.amount_msat.write(&mut res).expect("Writes cannot fail");
3123                                 }
3124                                 else if code == 0x1000 | 13 {
3125                                         msg.cltv_expiry.write(&mut res).expect("Writes cannot fail");
3126                                 }
3127                                 else if code == 0x1000 | 20 {
3128                                         // TODO: underspecified, follow https://github.com/lightning/bolts/issues/791
3129                                         0u16.write(&mut res).expect("Writes cannot fail");
3130                                 }
3131                                 (chan_update.serialized_length() as u16 + 2).write(&mut res).expect("Writes cannot fail");
3132                                 msgs::ChannelUpdate::TYPE.write(&mut res).expect("Writes cannot fail");
3133                                 chan_update.write(&mut res).expect("Writes cannot fail");
3134                         } else if code & 0x1000 == 0x1000 {
3135                                 // If we're trying to return an error that requires a `channel_update` but
3136                                 // we're forwarding to a phantom or intercept "channel" (i.e. cannot
3137                                 // generate an update), just use the generic "temporary_node_failure"
3138                                 // instead.
3139                                 code = 0x2000 | 2;
3140                         }
3141                         return_err!(err, code, &res.0[..]);
3142                 }
3143                 Ok((next_hop, shared_secret, next_packet_pk_opt))
3144         }
3145
3146         fn construct_pending_htlc_status<'a>(
3147                 &self, msg: &msgs::UpdateAddHTLC, shared_secret: [u8; 32], decoded_hop: onion_utils::Hop,
3148                 allow_underpay: bool, next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>
3149         ) -> PendingHTLCStatus {
3150                 macro_rules! return_err {
3151                         ($msg: expr, $err_code: expr, $data: expr) => {
3152                                 {
3153                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3154                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
3155                                                 channel_id: msg.channel_id,
3156                                                 htlc_id: msg.htlc_id,
3157                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
3158                                                         .get_encrypted_failure_packet(&shared_secret, &None),
3159                                         }));
3160                                 }
3161                         }
3162                 }
3163                 match decoded_hop {
3164                         onion_utils::Hop::Receive(next_hop_data) => {
3165                                 // OUR PAYMENT!
3166                                 match self.construct_recv_pending_htlc_info(next_hop_data, shared_secret, msg.payment_hash,
3167                                         msg.amount_msat, msg.cltv_expiry, None, allow_underpay, msg.skimmed_fee_msat)
3168                                 {
3169                                         Ok(info) => {
3170                                                 // Note that we could obviously respond immediately with an update_fulfill_htlc
3171                                                 // message, however that would leak that we are the recipient of this payment, so
3172                                                 // instead we stay symmetric with the forwarding case, only responding (after a
3173                                                 // delay) once they've send us a commitment_signed!
3174                                                 PendingHTLCStatus::Forward(info)
3175                                         },
3176                                         Err(InboundOnionErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3177                                 }
3178                         },
3179                         onion_utils::Hop::Forward { next_hop_data, next_hop_hmac, new_packet_bytes } => {
3180                                 match self.construct_fwd_pending_htlc_info(msg, next_hop_data, next_hop_hmac,
3181                                         new_packet_bytes, shared_secret, next_packet_pubkey_opt) {
3182                                         Ok(info) => PendingHTLCStatus::Forward(info),
3183                                         Err(InboundOnionErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3184                                 }
3185                         }
3186                 }
3187         }
3188
3189         /// Gets the current [`channel_update`] for the given channel. This first checks if the channel is
3190         /// public, and thus should be called whenever the result is going to be passed out in a
3191         /// [`MessageSendEvent::BroadcastChannelUpdate`] event.
3192         ///
3193         /// Note that in [`internal_closing_signed`], this function is called without the `peer_state`
3194         /// corresponding to the channel's counterparty locked, as the channel been removed from the
3195         /// storage and the `peer_state` lock has been dropped.
3196         ///
3197         /// [`channel_update`]: msgs::ChannelUpdate
3198         /// [`internal_closing_signed`]: Self::internal_closing_signed
3199         fn get_channel_update_for_broadcast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3200                 if !chan.context.should_announce() {
3201                         return Err(LightningError {
3202                                 err: "Cannot broadcast a channel_update for a private channel".to_owned(),
3203                                 action: msgs::ErrorAction::IgnoreError
3204                         });
3205                 }
3206                 if chan.context.get_short_channel_id().is_none() {
3207                         return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError});
3208                 }
3209                 log_trace!(self.logger, "Attempting to generate broadcast channel update for channel {}", &chan.context.channel_id());
3210                 self.get_channel_update_for_unicast(chan)
3211         }
3212
3213         /// Gets the current [`channel_update`] for the given channel. This does not check if the channel
3214         /// is public (only returning an `Err` if the channel does not yet have an assigned SCID),
3215         /// and thus MUST NOT be called unless the recipient of the resulting message has already
3216         /// provided evidence that they know about the existence of the channel.
3217         ///
3218         /// Note that through [`internal_closing_signed`], this function is called without the
3219         /// `peer_state`  corresponding to the channel's counterparty locked, as the channel been
3220         /// removed from the storage and the `peer_state` lock has been dropped.
3221         ///
3222         /// [`channel_update`]: msgs::ChannelUpdate
3223         /// [`internal_closing_signed`]: Self::internal_closing_signed
3224         fn get_channel_update_for_unicast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3225                 log_trace!(self.logger, "Attempting to generate channel update for channel {}", &chan.context.channel_id());
3226                 let short_channel_id = match chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias()) {
3227                         None => return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError}),
3228                         Some(id) => id,
3229                 };
3230
3231                 self.get_channel_update_for_onion(short_channel_id, chan)
3232         }
3233
3234         fn get_channel_update_for_onion(&self, short_channel_id: u64, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3235                 log_trace!(self.logger, "Generating channel update for channel {}", &chan.context.channel_id());
3236                 let were_node_one = self.our_network_pubkey.serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
3237
3238                 let enabled = chan.context.is_usable() && match chan.channel_update_status() {
3239                         ChannelUpdateStatus::Enabled => true,
3240                         ChannelUpdateStatus::DisabledStaged(_) => true,
3241                         ChannelUpdateStatus::Disabled => false,
3242                         ChannelUpdateStatus::EnabledStaged(_) => false,
3243                 };
3244
3245                 let unsigned = msgs::UnsignedChannelUpdate {
3246                         chain_hash: self.genesis_hash,
3247                         short_channel_id,
3248                         timestamp: chan.context.get_update_time_counter(),
3249                         flags: (!were_node_one) as u8 | ((!enabled as u8) << 1),
3250                         cltv_expiry_delta: chan.context.get_cltv_expiry_delta(),
3251                         htlc_minimum_msat: chan.context.get_counterparty_htlc_minimum_msat(),
3252                         htlc_maximum_msat: chan.context.get_announced_htlc_max_msat(),
3253                         fee_base_msat: chan.context.get_outbound_forwarding_fee_base_msat(),
3254                         fee_proportional_millionths: chan.context.get_fee_proportional_millionths(),
3255                         excess_data: Vec::new(),
3256                 };
3257                 // Panic on failure to signal LDK should be restarted to retry signing the `ChannelUpdate`.
3258                 // If we returned an error and the `node_signer` cannot provide a signature for whatever
3259                 // reason`, we wouldn't be able to receive inbound payments through the corresponding
3260                 // channel.
3261                 let sig = self.node_signer.sign_gossip_message(msgs::UnsignedGossipMessage::ChannelUpdate(&unsigned)).unwrap();
3262
3263                 Ok(msgs::ChannelUpdate {
3264                         signature: sig,
3265                         contents: unsigned
3266                 })
3267         }
3268
3269         #[cfg(test)]
3270         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> {
3271                 let _lck = self.total_consistency_lock.read().unwrap();
3272                 self.send_payment_along_path(SendAlongPathArgs {
3273                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
3274                         session_priv_bytes
3275                 })
3276         }
3277
3278         fn send_payment_along_path(&self, args: SendAlongPathArgs) -> Result<(), APIError> {
3279                 let SendAlongPathArgs {
3280                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
3281                         session_priv_bytes
3282                 } = args;
3283                 // The top-level caller should hold the total_consistency_lock read lock.
3284                 debug_assert!(self.total_consistency_lock.try_write().is_err());
3285
3286                 log_trace!(self.logger,
3287                         "Attempting to send payment with payment hash {} along path with next hop {}",
3288                         payment_hash, path.hops.first().unwrap().short_channel_id);
3289                 let prng_seed = self.entropy_source.get_secure_random_bytes();
3290                 let session_priv = SecretKey::from_slice(&session_priv_bytes[..]).expect("RNG is busted");
3291
3292                 let onion_keys = onion_utils::construct_onion_keys(&self.secp_ctx, &path, &session_priv)
3293                         .map_err(|_| APIError::InvalidRoute{err: "Pubkey along hop was maliciously selected".to_owned()})?;
3294                 let (onion_payloads, htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(path, total_value, recipient_onion, cur_height, keysend_preimage)?;
3295
3296                 let onion_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, prng_seed, payment_hash)
3297                         .map_err(|_| APIError::InvalidRoute { err: "Route size too large considering onion data".to_owned()})?;
3298
3299                 let err: Result<(), _> = loop {
3300                         let (counterparty_node_id, id) = match self.short_to_chan_info.read().unwrap().get(&path.hops.first().unwrap().short_channel_id) {
3301                                 None => return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()}),
3302                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
3303                         };
3304
3305                         let per_peer_state = self.per_peer_state.read().unwrap();
3306                         let peer_state_mutex = per_peer_state.get(&counterparty_node_id)
3307                                 .ok_or_else(|| APIError::ChannelUnavailable{err: "No peer matching the path's first hop found!".to_owned() })?;
3308                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3309                         let peer_state = &mut *peer_state_lock;
3310                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(id) {
3311                                 match chan_phase_entry.get_mut() {
3312                                         ChannelPhase::Funded(chan) => {
3313                                                 if !chan.context.is_live() {
3314                                                         return Err(APIError::ChannelUnavailable{err: "Peer for first hop currently disconnected".to_owned()});
3315                                                 }
3316                                                 let funding_txo = chan.context.get_funding_txo().unwrap();
3317                                                 let send_res = chan.send_htlc_and_commit(htlc_msat, payment_hash.clone(),
3318                                                         htlc_cltv, HTLCSource::OutboundRoute {
3319                                                                 path: path.clone(),
3320                                                                 session_priv: session_priv.clone(),
3321                                                                 first_hop_htlc_msat: htlc_msat,
3322                                                                 payment_id,
3323                                                         }, onion_packet, None, &self.fee_estimator, &self.logger);
3324                                                 match break_chan_phase_entry!(self, send_res, chan_phase_entry) {
3325                                                         Some(monitor_update) => {
3326                                                                 match handle_new_monitor_update!(self, funding_txo, monitor_update, peer_state_lock, peer_state, per_peer_state, chan_phase_entry) {
3327                                                                         false => {
3328                                                                                 // Note that MonitorUpdateInProgress here indicates (per function
3329                                                                                 // docs) that we will resend the commitment update once monitor
3330                                                                                 // updating completes. Therefore, we must return an error
3331                                                                                 // indicating that it is unsafe to retry the payment wholesale,
3332                                                                                 // which we do in the send_payment check for
3333                                                                                 // MonitorUpdateInProgress, below.
3334                                                                                 return Err(APIError::MonitorUpdateInProgress);
3335                                                                         },
3336                                                                         true => {},
3337                                                                 }
3338                                                         },
3339                                                         None => {},
3340                                                 }
3341                                         },
3342                                         _ => return Err(APIError::ChannelUnavailable{err: "Channel to first hop is unfunded".to_owned()}),
3343                                 };
3344                         } else {
3345                                 // The channel was likely removed after we fetched the id from the
3346                                 // `short_to_chan_info` map, but before we successfully locked the
3347                                 // `channel_by_id` map.
3348                                 // This can occur as no consistency guarantees exists between the two maps.
3349                                 return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()});
3350                         }
3351                         return Ok(());
3352                 };
3353
3354                 match handle_error!(self, err, path.hops.first().unwrap().pubkey) {
3355                         Ok(_) => unreachable!(),
3356                         Err(e) => {
3357                                 Err(APIError::ChannelUnavailable { err: e.err })
3358                         },
3359                 }
3360         }
3361
3362         /// Sends a payment along a given route.
3363         ///
3364         /// Value parameters are provided via the last hop in route, see documentation for [`RouteHop`]
3365         /// fields for more info.
3366         ///
3367         /// May generate [`UpdateHTLCs`] message(s) event on success, which should be relayed (e.g. via
3368         /// [`PeerManager::process_events`]).
3369         ///
3370         /// # Avoiding Duplicate Payments
3371         ///
3372         /// If a pending payment is currently in-flight with the same [`PaymentId`] provided, this
3373         /// method will error with an [`APIError::InvalidRoute`]. Note, however, that once a payment
3374         /// is no longer pending (either via [`ChannelManager::abandon_payment`], or handling of an
3375         /// [`Event::PaymentSent`] or [`Event::PaymentFailed`]) LDK will not stop you from sending a
3376         /// second payment with the same [`PaymentId`].
3377         ///
3378         /// Thus, in order to ensure duplicate payments are not sent, you should implement your own
3379         /// tracking of payments, including state to indicate once a payment has completed. Because you
3380         /// should also ensure that [`PaymentHash`]es are not re-used, for simplicity, you should
3381         /// consider using the [`PaymentHash`] as the key for tracking payments. In that case, the
3382         /// [`PaymentId`] should be a copy of the [`PaymentHash`] bytes.
3383         ///
3384         /// Additionally, in the scenario where we begin the process of sending a payment, but crash
3385         /// before `send_payment` returns (or prior to [`ChannelMonitorUpdate`] persistence if you're
3386         /// using [`ChannelMonitorUpdateStatus::InProgress`]), the payment may be lost on restart. See
3387         /// [`ChannelManager::list_recent_payments`] for more information.
3388         ///
3389         /// # Possible Error States on [`PaymentSendFailure`]
3390         ///
3391         /// Each path may have a different return value, and [`PaymentSendFailure`] may return a `Vec` with
3392         /// each entry matching the corresponding-index entry in the route paths, see
3393         /// [`PaymentSendFailure`] for more info.
3394         ///
3395         /// In general, a path may raise:
3396         ///  * [`APIError::InvalidRoute`] when an invalid route or forwarding parameter (cltv_delta, fee,
3397         ///    node public key) is specified.
3398         ///  * [`APIError::ChannelUnavailable`] if the next-hop channel is not available for updates
3399         ///    (including due to previous monitor update failure or new permanent monitor update
3400         ///    failure).
3401         ///  * [`APIError::MonitorUpdateInProgress`] if a new monitor update failure prevented sending the
3402         ///    relevant updates.
3403         ///
3404         /// Note that depending on the type of the [`PaymentSendFailure`] the HTLC may have been
3405         /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
3406         /// different route unless you intend to pay twice!
3407         ///
3408         /// [`RouteHop`]: crate::routing::router::RouteHop
3409         /// [`Event::PaymentSent`]: events::Event::PaymentSent
3410         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
3411         /// [`UpdateHTLCs`]: events::MessageSendEvent::UpdateHTLCs
3412         /// [`PeerManager::process_events`]: crate::ln::peer_handler::PeerManager::process_events
3413         /// [`ChannelMonitorUpdateStatus::InProgress`]: crate::chain::ChannelMonitorUpdateStatus::InProgress
3414         pub fn send_payment_with_route(&self, route: &Route, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<(), PaymentSendFailure> {
3415                 let best_block_height = self.best_block.read().unwrap().height();
3416                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3417                 self.pending_outbound_payments
3418                         .send_payment_with_route(route, payment_hash, recipient_onion, payment_id,
3419                                 &self.entropy_source, &self.node_signer, best_block_height,
3420                                 |args| self.send_payment_along_path(args))
3421         }
3422
3423         /// Similar to [`ChannelManager::send_payment_with_route`], but will automatically find a route based on
3424         /// `route_params` and retry failed payment paths based on `retry_strategy`.
3425         pub fn send_payment(&self, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId, route_params: RouteParameters, retry_strategy: Retry) -> Result<(), RetryableSendFailure> {
3426                 let best_block_height = self.best_block.read().unwrap().height();
3427                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3428                 self.pending_outbound_payments
3429                         .send_payment(payment_hash, recipient_onion, payment_id, retry_strategy, route_params,
3430                                 &self.router, self.list_usable_channels(), || self.compute_inflight_htlcs(),
3431                                 &self.entropy_source, &self.node_signer, best_block_height, &self.logger,
3432                                 &self.pending_events, |args| self.send_payment_along_path(args))
3433         }
3434
3435         #[cfg(test)]
3436         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> {
3437                 let best_block_height = self.best_block.read().unwrap().height();
3438                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3439                 self.pending_outbound_payments.test_send_payment_internal(route, payment_hash, recipient_onion,
3440                         keysend_preimage, payment_id, recv_value_msat, onion_session_privs, &self.node_signer,
3441                         best_block_height, |args| self.send_payment_along_path(args))
3442         }
3443
3444         #[cfg(test)]
3445         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> {
3446                 let best_block_height = self.best_block.read().unwrap().height();
3447                 self.pending_outbound_payments.test_add_new_pending_payment(payment_hash, recipient_onion, payment_id, route, None, &self.entropy_source, best_block_height)
3448         }
3449
3450         #[cfg(test)]
3451         pub(crate) fn test_set_payment_metadata(&self, payment_id: PaymentId, new_payment_metadata: Option<Vec<u8>>) {
3452                 self.pending_outbound_payments.test_set_payment_metadata(payment_id, new_payment_metadata);
3453         }
3454
3455
3456         /// Signals that no further attempts for the given payment should occur. Useful if you have a
3457         /// pending outbound payment with retries remaining, but wish to stop retrying the payment before
3458         /// retries are exhausted.
3459         ///
3460         /// # Event Generation
3461         ///
3462         /// If no [`Event::PaymentFailed`] event had been generated before, one will be generated as soon
3463         /// as there are no remaining pending HTLCs for this payment.
3464         ///
3465         /// Note that calling this method does *not* prevent a payment from succeeding. You must still
3466         /// wait until you receive either a [`Event::PaymentFailed`] or [`Event::PaymentSent`] event to
3467         /// determine the ultimate status of a payment.
3468         ///
3469         /// # Requested Invoices
3470         ///
3471         /// In the case of paying a [`Bolt12Invoice`], abandoning the payment prior to receiving the
3472         /// invoice will result in an [`Event::InvoiceRequestFailed`] and prevent any attempts at paying
3473         /// it once received. The other events may only be generated once the invoice has been received.
3474         ///
3475         /// # Restart Behavior
3476         ///
3477         /// If an [`Event::PaymentFailed`] is generated and we restart without first persisting the
3478         /// [`ChannelManager`], another [`Event::PaymentFailed`] may be generated; likewise for
3479         /// [`Event::InvoiceRequestFailed`].
3480         ///
3481         /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
3482         pub fn abandon_payment(&self, payment_id: PaymentId) {
3483                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3484                 self.pending_outbound_payments.abandon_payment(payment_id, PaymentFailureReason::UserAbandoned, &self.pending_events);
3485         }
3486
3487         /// Send a spontaneous payment, which is a payment that does not require the recipient to have
3488         /// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
3489         /// the preimage, it must be a cryptographically secure random value that no intermediate node
3490         /// would be able to guess -- otherwise, an intermediate node may claim the payment and it will
3491         /// never reach the recipient.
3492         ///
3493         /// See [`send_payment`] documentation for more details on the return value of this function
3494         /// and idempotency guarantees provided by the [`PaymentId`] key.
3495         ///
3496         /// Similar to regular payments, you MUST NOT reuse a `payment_preimage` value. See
3497         /// [`send_payment`] for more information about the risks of duplicate preimage usage.
3498         ///
3499         /// [`send_payment`]: Self::send_payment
3500         pub fn send_spontaneous_payment(&self, route: &Route, payment_preimage: Option<PaymentPreimage>, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<PaymentHash, PaymentSendFailure> {
3501                 let best_block_height = self.best_block.read().unwrap().height();
3502                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3503                 self.pending_outbound_payments.send_spontaneous_payment_with_route(
3504                         route, payment_preimage, recipient_onion, payment_id, &self.entropy_source,
3505                         &self.node_signer, best_block_height, |args| self.send_payment_along_path(args))
3506         }
3507
3508         /// Similar to [`ChannelManager::send_spontaneous_payment`], but will automatically find a route
3509         /// based on `route_params` and retry failed payment paths based on `retry_strategy`.
3510         ///
3511         /// See [`PaymentParameters::for_keysend`] for help in constructing `route_params` for spontaneous
3512         /// payments.
3513         ///
3514         /// [`PaymentParameters::for_keysend`]: crate::routing::router::PaymentParameters::for_keysend
3515         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> {
3516                 let best_block_height = self.best_block.read().unwrap().height();
3517                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3518                 self.pending_outbound_payments.send_spontaneous_payment(payment_preimage, recipient_onion,
3519                         payment_id, retry_strategy, route_params, &self.router, self.list_usable_channels(),
3520                         || self.compute_inflight_htlcs(),  &self.entropy_source, &self.node_signer, best_block_height,
3521                         &self.logger, &self.pending_events, |args| self.send_payment_along_path(args))
3522         }
3523
3524         /// Send a payment that is probing the given route for liquidity. We calculate the
3525         /// [`PaymentHash`] of probes based on a static secret and a random [`PaymentId`], which allows
3526         /// us to easily discern them from real payments.
3527         pub fn send_probe(&self, path: Path) -> Result<(PaymentHash, PaymentId), PaymentSendFailure> {
3528                 let best_block_height = self.best_block.read().unwrap().height();
3529                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3530                 self.pending_outbound_payments.send_probe(path, self.probing_cookie_secret,
3531                         &self.entropy_source, &self.node_signer, best_block_height,
3532                         |args| self.send_payment_along_path(args))
3533         }
3534
3535         /// Returns whether a payment with the given [`PaymentHash`] and [`PaymentId`] is, in fact, a
3536         /// payment probe.
3537         #[cfg(test)]
3538         pub(crate) fn payment_is_probe(&self, payment_hash: &PaymentHash, payment_id: &PaymentId) -> bool {
3539                 outbound_payment::payment_is_probe(payment_hash, payment_id, self.probing_cookie_secret)
3540         }
3541
3542         /// Sends payment probes over all paths of a route that would be used to pay the given
3543         /// amount to the given `node_id`.
3544         ///
3545         /// See [`ChannelManager::send_preflight_probes`] for more information.
3546         pub fn send_spontaneous_preflight_probes(
3547                 &self, node_id: PublicKey, amount_msat: u64, final_cltv_expiry_delta: u32, 
3548                 liquidity_limit_multiplier: Option<u64>,
3549         ) -> Result<Vec<(PaymentHash, PaymentId)>, ProbeSendFailure> {
3550                 let payment_params =
3551                         PaymentParameters::from_node_id(node_id, final_cltv_expiry_delta);
3552
3553                 let route_params = RouteParameters { payment_params, final_value_msat: amount_msat };
3554
3555                 self.send_preflight_probes(route_params, liquidity_limit_multiplier)
3556         }
3557
3558         /// Sends payment probes over all paths of a route that would be used to pay a route found
3559         /// according to the given [`RouteParameters`].
3560         ///
3561         /// This may be used to send "pre-flight" probes, i.e., to train our scorer before conducting
3562         /// the actual payment. Note this is only useful if there likely is sufficient time for the
3563         /// probe to settle before sending out the actual payment, e.g., when waiting for user
3564         /// confirmation in a wallet UI.
3565         ///
3566         /// Otherwise, there is a chance the probe could take up some liquidity needed to complete the
3567         /// actual payment. Users should therefore be cautious and might avoid sending probes if
3568         /// liquidity is scarce and/or they don't expect the probe to return before they send the
3569         /// payment. To mitigate this issue, channels with available liquidity less than the required
3570         /// amount times the given `liquidity_limit_multiplier` won't be used to send pre-flight
3571         /// probes. If `None` is given as `liquidity_limit_multiplier`, it defaults to `3`.
3572         pub fn send_preflight_probes(
3573                 &self, route_params: RouteParameters, liquidity_limit_multiplier: Option<u64>,
3574         ) -> Result<Vec<(PaymentHash, PaymentId)>, ProbeSendFailure> {
3575                 let liquidity_limit_multiplier = liquidity_limit_multiplier.unwrap_or(3);
3576
3577                 let payer = self.get_our_node_id();
3578                 let usable_channels = self.list_usable_channels();
3579                 let first_hops = usable_channels.iter().collect::<Vec<_>>();
3580                 let inflight_htlcs = self.compute_inflight_htlcs();
3581
3582                 let route = self
3583                         .router
3584                         .find_route(&payer, &route_params, Some(&first_hops), inflight_htlcs)
3585                         .map_err(|e| {
3586                                 log_error!(self.logger, "Failed to find path for payment probe: {:?}", e);
3587                                 ProbeSendFailure::RouteNotFound
3588                         })?;
3589
3590                 let mut used_liquidity_map = HashMap::with_capacity(first_hops.len());
3591
3592                 let mut res = Vec::new();
3593
3594                 for mut path in route.paths {
3595                         // If the last hop is probably an unannounced channel we refrain from probing all the
3596                         // way through to the end and instead probe up to the second-to-last channel.
3597                         while let Some(last_path_hop) = path.hops.last() {
3598                                 if last_path_hop.maybe_announced_channel {
3599                                         // We found a potentially announced last hop.
3600                                         break;
3601                                 } else {
3602                                         // Drop the last hop, as it's likely unannounced.
3603                                         log_debug!(
3604                                                 self.logger,
3605                                                 "Avoided sending payment probe all the way to last hop {} as it is likely unannounced.",
3606                                                 last_path_hop.short_channel_id
3607                                         );
3608                                         let final_value_msat = path.final_value_msat();
3609                                         path.hops.pop();
3610                                         if let Some(new_last) = path.hops.last_mut() {
3611                                                 new_last.fee_msat += final_value_msat;
3612                                         }
3613                                 }
3614                         }
3615
3616                         if path.hops.len() < 2 {
3617                                 log_debug!(
3618                                         self.logger,
3619                                         "Skipped sending payment probe over path with less than two hops."
3620                                 );
3621                                 continue;
3622                         }
3623
3624                         if let Some(first_path_hop) = path.hops.first() {
3625                                 if let Some(first_hop) = first_hops.iter().find(|h| {
3626                                         h.get_outbound_payment_scid() == Some(first_path_hop.short_channel_id)
3627                                 }) {
3628                                         let path_value = path.final_value_msat() + path.fee_msat();
3629                                         let used_liquidity =
3630                                                 used_liquidity_map.entry(first_path_hop.short_channel_id).or_insert(0);
3631
3632                                         if first_hop.next_outbound_htlc_limit_msat
3633                                                 < (*used_liquidity + path_value) * liquidity_limit_multiplier
3634                                         {
3635                                                 log_debug!(self.logger, "Skipped sending payment probe to avoid putting channel {} under the liquidity limit.", first_path_hop.short_channel_id);
3636                                                 continue;
3637                                         } else {
3638                                                 *used_liquidity += path_value;
3639                                         }
3640                                 }
3641                         }
3642
3643                         res.push(self.send_probe(path).map_err(|e| {
3644                                 log_error!(self.logger, "Failed to send pre-flight probe: {:?}", e);
3645                                 ProbeSendFailure::SendingFailed(e)
3646                         })?);
3647                 }
3648
3649                 Ok(res)
3650         }
3651
3652         /// Handles the generation of a funding transaction, optionally (for tests) with a function
3653         /// which checks the correctness of the funding transaction given the associated channel.
3654         fn funding_transaction_generated_intern<FundingOutput: Fn(&OutboundV1Channel<SP>, &Transaction) -> Result<OutPoint, APIError>>(
3655                 &self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, find_funding_output: FundingOutput
3656         ) -> Result<(), APIError> {
3657                 let per_peer_state = self.per_peer_state.read().unwrap();
3658                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3659                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3660
3661                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3662                 let peer_state = &mut *peer_state_lock;
3663                 let (chan, msg) = match peer_state.channel_by_id.remove(temporary_channel_id) {
3664                         Some(ChannelPhase::UnfundedOutboundV1(chan)) => {
3665                                 let funding_txo = find_funding_output(&chan, &funding_transaction)?;
3666
3667                                 let funding_res = chan.get_funding_created(funding_transaction, funding_txo, &self.logger)
3668                                         .map_err(|(mut chan, e)| if let ChannelError::Close(msg) = e {
3669                                                 let channel_id = chan.context.channel_id();
3670                                                 let user_id = chan.context.get_user_id();
3671                                                 let shutdown_res = chan.context.force_shutdown(false);
3672                                                 let channel_capacity = chan.context.get_value_satoshis();
3673                                                 (chan, MsgHandleErrInternal::from_finish_shutdown(msg, channel_id, user_id, shutdown_res, None, channel_capacity))
3674                                         } else { unreachable!(); });
3675                                 match funding_res {
3676                                         Ok((chan, funding_msg)) => (chan, funding_msg),
3677                                         Err((chan, err)) => {
3678                                                 mem::drop(peer_state_lock);
3679                                                 mem::drop(per_peer_state);
3680
3681                                                 let _: Result<(), _> = handle_error!(self, Err(err), chan.context.get_counterparty_node_id());
3682                                                 return Err(APIError::ChannelUnavailable {
3683                                                         err: "Signer refused to sign the initial commitment transaction".to_owned()
3684                                                 });
3685                                         },
3686                                 }
3687                         },
3688                         Some(phase) => {
3689                                 peer_state.channel_by_id.insert(*temporary_channel_id, phase);
3690                                 return Err(APIError::APIMisuseError {
3691                                         err: format!(
3692                                                 "Channel with id {} for the passed counterparty node_id {} is not an unfunded, outbound V1 channel",
3693                                                 temporary_channel_id, counterparty_node_id),
3694                                 })
3695                         },
3696                         None => return Err(APIError::ChannelUnavailable {err: format!(
3697                                 "Channel with id {} not found for the passed counterparty node_id {}",
3698                                 temporary_channel_id, counterparty_node_id),
3699                                 }),
3700                 };
3701
3702                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
3703                         node_id: chan.context.get_counterparty_node_id(),
3704                         msg,
3705                 });
3706                 match peer_state.channel_by_id.entry(chan.context.channel_id()) {
3707                         hash_map::Entry::Occupied(_) => {
3708                                 panic!("Generated duplicate funding txid?");
3709                         },
3710                         hash_map::Entry::Vacant(e) => {
3711                                 let mut id_to_peer = self.id_to_peer.lock().unwrap();
3712                                 if id_to_peer.insert(chan.context.channel_id(), chan.context.get_counterparty_node_id()).is_some() {
3713                                         panic!("id_to_peer map already contained funding txid, which shouldn't be possible");
3714                                 }
3715                                 e.insert(ChannelPhase::Funded(chan));
3716                         }
3717                 }
3718                 Ok(())
3719         }
3720
3721         #[cfg(test)]
3722         pub(crate) fn funding_transaction_generated_unchecked(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, output_index: u16) -> Result<(), APIError> {
3723                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |_, tx| {
3724                         Ok(OutPoint { txid: tx.txid(), index: output_index })
3725                 })
3726         }
3727
3728         /// Call this upon creation of a funding transaction for the given channel.
3729         ///
3730         /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
3731         /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
3732         ///
3733         /// Returns [`APIError::APIMisuseError`] if the funding transaction is not final for propagation
3734         /// across the p2p network.
3735         ///
3736         /// Returns [`APIError::ChannelUnavailable`] if a funding transaction has already been provided
3737         /// for the channel or if the channel has been closed as indicated by [`Event::ChannelClosed`].
3738         ///
3739         /// May panic if the output found in the funding transaction is duplicative with some other
3740         /// channel (note that this should be trivially prevented by using unique funding transaction
3741         /// keys per-channel).
3742         ///
3743         /// Do NOT broadcast the funding transaction yourself. When we have safely received our
3744         /// counterparty's signature the funding transaction will automatically be broadcast via the
3745         /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
3746         ///
3747         /// Note that this includes RBF or similar transaction replacement strategies - lightning does
3748         /// not currently support replacing a funding transaction on an existing channel. Instead,
3749         /// create a new channel with a conflicting funding transaction.
3750         ///
3751         /// Note to keep the miner incentives aligned in moving the blockchain forward, we recommend
3752         /// the wallet software generating the funding transaction to apply anti-fee sniping as
3753         /// implemented by Bitcoin Core wallet. See <https://bitcoinops.org/en/topics/fee-sniping/>
3754         /// for more details.
3755         ///
3756         /// [`Event::FundingGenerationReady`]: crate::events::Event::FundingGenerationReady
3757         /// [`Event::ChannelClosed`]: crate::events::Event::ChannelClosed
3758         pub fn funding_transaction_generated(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction) -> Result<(), APIError> {
3759                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3760
3761                 if !funding_transaction.is_coin_base() {
3762                         for inp in funding_transaction.input.iter() {
3763                                 if inp.witness.is_empty() {
3764                                         return Err(APIError::APIMisuseError {
3765                                                 err: "Funding transaction must be fully signed and spend Segwit outputs".to_owned()
3766                                         });
3767                                 }
3768                         }
3769                 }
3770                 {
3771                         let height = self.best_block.read().unwrap().height();
3772                         // Transactions are evaluated as final by network mempools if their locktime is strictly
3773                         // lower than the next block height. However, the modules constituting our Lightning
3774                         // node might not have perfect sync about their blockchain views. Thus, if the wallet
3775                         // module is ahead of LDK, only allow one more block of headroom.
3776                         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 {
3777                                 return Err(APIError::APIMisuseError {
3778                                         err: "Funding transaction absolute timelock is non-final".to_owned()
3779                                 });
3780                         }
3781                 }
3782                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |chan, tx| {
3783                         if tx.output.len() > u16::max_value() as usize {
3784                                 return Err(APIError::APIMisuseError {
3785                                         err: "Transaction had more than 2^16 outputs, which is not supported".to_owned()
3786                                 });
3787                         }
3788
3789                         let mut output_index = None;
3790                         let expected_spk = chan.context.get_funding_redeemscript().to_v0_p2wsh();
3791                         for (idx, outp) in tx.output.iter().enumerate() {
3792                                 if outp.script_pubkey == expected_spk && outp.value == chan.context.get_value_satoshis() {
3793                                         if output_index.is_some() {
3794                                                 return Err(APIError::APIMisuseError {
3795                                                         err: "Multiple outputs matched the expected script and value".to_owned()
3796                                                 });
3797                                         }
3798                                         output_index = Some(idx as u16);
3799                                 }
3800                         }
3801                         if output_index.is_none() {
3802                                 return Err(APIError::APIMisuseError {
3803                                         err: "No output matched the script_pubkey and value in the FundingGenerationReady event".to_owned()
3804                                 });
3805                         }
3806                         Ok(OutPoint { txid: tx.txid(), index: output_index.unwrap() })
3807                 })
3808         }
3809
3810         /// Atomically applies partial updates to the [`ChannelConfig`] of the given channels.
3811         ///
3812         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3813         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3814         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3815         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3816         ///
3817         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3818         /// `counterparty_node_id` is provided.
3819         ///
3820         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3821         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3822         ///
3823         /// If an error is returned, none of the updates should be considered applied.
3824         ///
3825         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3826         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3827         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3828         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3829         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3830         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3831         /// [`APIMisuseError`]: APIError::APIMisuseError
3832         pub fn update_partial_channel_config(
3833                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config_update: &ChannelConfigUpdate,
3834         ) -> Result<(), APIError> {
3835                 if config_update.cltv_expiry_delta.map(|delta| delta < MIN_CLTV_EXPIRY_DELTA).unwrap_or(false) {
3836                         return Err(APIError::APIMisuseError {
3837                                 err: format!("The chosen CLTV expiry delta is below the minimum of {}", MIN_CLTV_EXPIRY_DELTA),
3838                         });
3839                 }
3840
3841                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3842                 let per_peer_state = self.per_peer_state.read().unwrap();
3843                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3844                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3845                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3846                 let peer_state = &mut *peer_state_lock;
3847                 for channel_id in channel_ids {
3848                         if !peer_state.has_channel(channel_id) {
3849                                 return Err(APIError::ChannelUnavailable {
3850                                         err: format!("Channel with ID {} was not found for the passed counterparty_node_id {}", channel_id, counterparty_node_id),
3851                                 });
3852                         };
3853                 }
3854                 for channel_id in channel_ids {
3855                         if let Some(channel_phase) = peer_state.channel_by_id.get_mut(channel_id) {
3856                                 let mut config = channel_phase.context().config();
3857                                 config.apply(config_update);
3858                                 if !channel_phase.context_mut().update_config(&config) {
3859                                         continue;
3860                                 }
3861                                 if let ChannelPhase::Funded(channel) = channel_phase {
3862                                         if let Ok(msg) = self.get_channel_update_for_broadcast(channel) {
3863                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate { msg });
3864                                         } else if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
3865                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
3866                                                         node_id: channel.context.get_counterparty_node_id(),
3867                                                         msg,
3868                                                 });
3869                                         }
3870                                 }
3871                                 continue;
3872                         } else {
3873                                 // This should not be reachable as we've already checked for non-existence in the previous channel_id loop.
3874                                 debug_assert!(false);
3875                                 return Err(APIError::ChannelUnavailable {
3876                                         err: format!(
3877                                                 "Channel with ID {} for passed counterparty_node_id {} disappeared after we confirmed its existence - this should not be reachable!",
3878                                                 channel_id, counterparty_node_id),
3879                                 });
3880                         };
3881                 }
3882                 Ok(())
3883         }
3884
3885         /// Atomically updates the [`ChannelConfig`] for the given channels.
3886         ///
3887         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3888         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3889         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3890         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3891         ///
3892         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3893         /// `counterparty_node_id` is provided.
3894         ///
3895         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3896         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3897         ///
3898         /// If an error is returned, none of the updates should be considered applied.
3899         ///
3900         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3901         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3902         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3903         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3904         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3905         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3906         /// [`APIMisuseError`]: APIError::APIMisuseError
3907         pub fn update_channel_config(
3908                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config: &ChannelConfig,
3909         ) -> Result<(), APIError> {
3910                 return self.update_partial_channel_config(counterparty_node_id, channel_ids, &(*config).into());
3911         }
3912
3913         /// Attempts to forward an intercepted HTLC over the provided channel id and with the provided
3914         /// amount to forward. Should only be called in response to an [`HTLCIntercepted`] event.
3915         ///
3916         /// Intercepted HTLCs can be useful for Lightning Service Providers (LSPs) to open a just-in-time
3917         /// channel to a receiving node if the node lacks sufficient inbound liquidity.
3918         ///
3919         /// To make use of intercepted HTLCs, set [`UserConfig::accept_intercept_htlcs`] and use
3920         /// [`ChannelManager::get_intercept_scid`] to generate short channel id(s) to put in the
3921         /// receiver's invoice route hints. These route hints will signal to LDK to generate an
3922         /// [`HTLCIntercepted`] event when it receives the forwarded HTLC, and this method or
3923         /// [`ChannelManager::fail_intercepted_htlc`] MUST be called in response to the event.
3924         ///
3925         /// Note that LDK does not enforce fee requirements in `amt_to_forward_msat`, and will not stop
3926         /// you from forwarding more than you received. See
3927         /// [`HTLCIntercepted::expected_outbound_amount_msat`] for more on forwarding a different amount
3928         /// than expected.
3929         ///
3930         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
3931         /// backwards.
3932         ///
3933         /// [`UserConfig::accept_intercept_htlcs`]: crate::util::config::UserConfig::accept_intercept_htlcs
3934         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
3935         /// [`HTLCIntercepted::expected_outbound_amount_msat`]: events::Event::HTLCIntercepted::expected_outbound_amount_msat
3936         // TODO: when we move to deciding the best outbound channel at forward time, only take
3937         // `next_node_id` and not `next_hop_channel_id`
3938         pub fn forward_intercepted_htlc(&self, intercept_id: InterceptId, next_hop_channel_id: &ChannelId, next_node_id: PublicKey, amt_to_forward_msat: u64) -> Result<(), APIError> {
3939                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3940
3941                 let next_hop_scid = {
3942                         let peer_state_lock = self.per_peer_state.read().unwrap();
3943                         let peer_state_mutex = peer_state_lock.get(&next_node_id)
3944                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", next_node_id) })?;
3945                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3946                         let peer_state = &mut *peer_state_lock;
3947                         match peer_state.channel_by_id.get(next_hop_channel_id) {
3948                                 Some(ChannelPhase::Funded(chan)) => {
3949                                         if !chan.context.is_usable() {
3950                                                 return Err(APIError::ChannelUnavailable {
3951                                                         err: format!("Channel with id {} not fully established", next_hop_channel_id)
3952                                                 })
3953                                         }
3954                                         chan.context.get_short_channel_id().unwrap_or(chan.context.outbound_scid_alias())
3955                                 },
3956                                 Some(_) => return Err(APIError::ChannelUnavailable {
3957                                         err: format!("Channel with id {} for the passed counterparty node_id {} is still opening.",
3958                                                 next_hop_channel_id, next_node_id)
3959                                 }),
3960                                 None => return Err(APIError::ChannelUnavailable {
3961                                         err: format!("Channel with id {} not found for the passed counterparty node_id {}.",
3962                                                 next_hop_channel_id, next_node_id)
3963                                 })
3964                         }
3965                 };
3966
3967                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
3968                         .ok_or_else(|| APIError::APIMisuseError {
3969                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
3970                         })?;
3971
3972                 let routing = match payment.forward_info.routing {
3973                         PendingHTLCRouting::Forward { onion_packet, .. } => {
3974                                 PendingHTLCRouting::Forward { onion_packet, short_channel_id: next_hop_scid }
3975                         },
3976                         _ => unreachable!() // Only `PendingHTLCRouting::Forward`s are intercepted
3977                 };
3978                 let skimmed_fee_msat =
3979                         payment.forward_info.outgoing_amt_msat.saturating_sub(amt_to_forward_msat);
3980                 let pending_htlc_info = PendingHTLCInfo {
3981                         skimmed_fee_msat: if skimmed_fee_msat == 0 { None } else { Some(skimmed_fee_msat) },
3982                         outgoing_amt_msat: amt_to_forward_msat, routing, ..payment.forward_info
3983                 };
3984
3985                 let mut per_source_pending_forward = [(
3986                         payment.prev_short_channel_id,
3987                         payment.prev_funding_outpoint,
3988                         payment.prev_user_channel_id,
3989                         vec![(pending_htlc_info, payment.prev_htlc_id)]
3990                 )];
3991                 self.forward_htlcs(&mut per_source_pending_forward);
3992                 Ok(())
3993         }
3994
3995         /// Fails the intercepted HTLC indicated by intercept_id. Should only be called in response to
3996         /// an [`HTLCIntercepted`] event. See [`ChannelManager::forward_intercepted_htlc`].
3997         ///
3998         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
3999         /// backwards.
4000         ///
4001         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
4002         pub fn fail_intercepted_htlc(&self, intercept_id: InterceptId) -> Result<(), APIError> {
4003                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4004
4005                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
4006                         .ok_or_else(|| APIError::APIMisuseError {
4007                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
4008                         })?;
4009
4010                 if let PendingHTLCRouting::Forward { short_channel_id, .. } = payment.forward_info.routing {
4011                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4012                                 short_channel_id: payment.prev_short_channel_id,
4013                                 user_channel_id: Some(payment.prev_user_channel_id),
4014                                 outpoint: payment.prev_funding_outpoint,
4015                                 htlc_id: payment.prev_htlc_id,
4016                                 incoming_packet_shared_secret: payment.forward_info.incoming_shared_secret,
4017                                 phantom_shared_secret: None,
4018                         });
4019
4020                         let failure_reason = HTLCFailReason::from_failure_code(0x4000 | 10);
4021                         let destination = HTLCDestination::UnknownNextHop { requested_forward_scid: short_channel_id };
4022                         self.fail_htlc_backwards_internal(&htlc_source, &payment.forward_info.payment_hash, &failure_reason, destination);
4023                 } else { unreachable!() } // Only `PendingHTLCRouting::Forward`s are intercepted
4024
4025                 Ok(())
4026         }
4027
4028         /// Processes HTLCs which are pending waiting on random forward delay.
4029         ///
4030         /// Should only really ever be called in response to a PendingHTLCsForwardable event.
4031         /// Will likely generate further events.
4032         pub fn process_pending_htlc_forwards(&self) {
4033                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4034
4035                 let mut new_events = VecDeque::new();
4036                 let mut failed_forwards = Vec::new();
4037                 let mut phantom_receives: Vec<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> = Vec::new();
4038                 {
4039                         let mut forward_htlcs = HashMap::new();
4040                         mem::swap(&mut forward_htlcs, &mut self.forward_htlcs.lock().unwrap());
4041
4042                         for (short_chan_id, mut pending_forwards) in forward_htlcs {
4043                                 if short_chan_id != 0 {
4044                                         macro_rules! forwarding_channel_not_found {
4045                                                 () => {
4046                                                         for forward_info in pending_forwards.drain(..) {
4047                                                                 match forward_info {
4048                                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4049                                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4050                                                                                 forward_info: PendingHTLCInfo {
4051                                                                                         routing, incoming_shared_secret, payment_hash, outgoing_amt_msat,
4052                                                                                         outgoing_cltv_value, ..
4053                                                                                 }
4054                                                                         }) => {
4055                                                                                 macro_rules! failure_handler {
4056                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr, $next_hop_unknown: expr) => {
4057                                                                                                 log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
4058
4059                                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4060                                                                                                         short_channel_id: prev_short_channel_id,
4061                                                                                                         user_channel_id: Some(prev_user_channel_id),
4062                                                                                                         outpoint: prev_funding_outpoint,
4063                                                                                                         htlc_id: prev_htlc_id,
4064                                                                                                         incoming_packet_shared_secret: incoming_shared_secret,
4065                                                                                                         phantom_shared_secret: $phantom_ss,
4066                                                                                                 });
4067
4068                                                                                                 let reason = if $next_hop_unknown {
4069                                                                                                         HTLCDestination::UnknownNextHop { requested_forward_scid: short_chan_id }
4070                                                                                                 } else {
4071                                                                                                         HTLCDestination::FailedPayment{ payment_hash }
4072                                                                                                 };
4073
4074                                                                                                 failed_forwards.push((htlc_source, payment_hash,
4075                                                                                                         HTLCFailReason::reason($err_code, $err_data),
4076                                                                                                         reason
4077                                                                                                 ));
4078                                                                                                 continue;
4079                                                                                         }
4080                                                                                 }
4081                                                                                 macro_rules! fail_forward {
4082                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
4083                                                                                                 {
4084                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, true);
4085                                                                                                 }
4086                                                                                         }
4087                                                                                 }
4088                                                                                 macro_rules! failed_payment {
4089                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
4090                                                                                                 {
4091                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, false);
4092                                                                                                 }
4093                                                                                         }
4094                                                                                 }
4095                                                                                 if let PendingHTLCRouting::Forward { onion_packet, .. } = routing {
4096                                                                                         let phantom_pubkey_res = self.node_signer.get_node_id(Recipient::PhantomNode);
4097                                                                                         if phantom_pubkey_res.is_ok() && fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, short_chan_id, &self.genesis_hash) {
4098                                                                                                 let phantom_shared_secret = self.node_signer.ecdh(Recipient::PhantomNode, &onion_packet.public_key.unwrap(), None).unwrap().secret_bytes();
4099                                                                                                 let next_hop = match onion_utils::decode_next_payment_hop(
4100                                                                                                         phantom_shared_secret, &onion_packet.hop_data, onion_packet.hmac,
4101                                                                                                         payment_hash, &self.node_signer
4102                                                                                                 ) {
4103                                                                                                         Ok(res) => res,
4104                                                                                                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
4105                                                                                                                 let sha256_of_onion = Sha256::hash(&onion_packet.hop_data).into_inner();
4106                                                                                                                 // In this scenario, the phantom would have sent us an
4107                                                                                                                 // `update_fail_malformed_htlc`, meaning here we encrypt the error as
4108                                                                                                                 // if it came from us (the second-to-last hop) but contains the sha256
4109                                                                                                                 // of the onion.
4110                                                                                                                 failed_payment!(err_msg, err_code, sha256_of_onion.to_vec(), None);
4111                                                                                                         },
4112                                                                                                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
4113                                                                                                                 failed_payment!(err_msg, err_code, Vec::new(), Some(phantom_shared_secret));
4114                                                                                                         },
4115                                                                                                 };
4116                                                                                                 match next_hop {
4117                                                                                                         onion_utils::Hop::Receive(hop_data) => {
4118                                                                                                                 match self.construct_recv_pending_htlc_info(hop_data,
4119                                                                                                                         incoming_shared_secret, payment_hash, outgoing_amt_msat,
4120                                                                                                                         outgoing_cltv_value, Some(phantom_shared_secret), false, None)
4121                                                                                                                 {
4122                                                                                                                         Ok(info) => phantom_receives.push((prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, vec![(info, prev_htlc_id)])),
4123                                                                                                                         Err(InboundOnionErr { err_code, err_data, msg }) => failed_payment!(msg, err_code, err_data, Some(phantom_shared_secret))
4124                                                                                                                 }
4125                                                                                                         },
4126                                                                                                         _ => panic!(),
4127                                                                                                 }
4128                                                                                         } else {
4129                                                                                                 fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
4130                                                                                         }
4131                                                                                 } else {
4132                                                                                         fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
4133                                                                                 }
4134                                                                         },
4135                                                                         HTLCForwardInfo::FailHTLC { .. } => {
4136                                                                                 // Channel went away before we could fail it. This implies
4137                                                                                 // the channel is now on chain and our counterparty is
4138                                                                                 // trying to broadcast the HTLC-Timeout, but that's their
4139                                                                                 // problem, not ours.
4140                                                                         }
4141                                                                 }
4142                                                         }
4143                                                 }
4144                                         }
4145                                         let (counterparty_node_id, forward_chan_id) = match self.short_to_chan_info.read().unwrap().get(&short_chan_id) {
4146                                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
4147                                                 None => {
4148                                                         forwarding_channel_not_found!();
4149                                                         continue;
4150                                                 }
4151                                         };
4152                                         let per_peer_state = self.per_peer_state.read().unwrap();
4153                                         let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
4154                                         if peer_state_mutex_opt.is_none() {
4155                                                 forwarding_channel_not_found!();
4156                                                 continue;
4157                                         }
4158                                         let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
4159                                         let peer_state = &mut *peer_state_lock;
4160                                         if let Some(ChannelPhase::Funded(ref mut chan)) = peer_state.channel_by_id.get_mut(&forward_chan_id) {
4161                                                 for forward_info in pending_forwards.drain(..) {
4162                                                         match forward_info {
4163                                                                 HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4164                                                                         prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4165                                                                         forward_info: PendingHTLCInfo {
4166                                                                                 incoming_shared_secret, payment_hash, outgoing_amt_msat, outgoing_cltv_value,
4167                                                                                 routing: PendingHTLCRouting::Forward { onion_packet, .. }, skimmed_fee_msat, ..
4168                                                                         },
4169                                                                 }) => {
4170                                                                         log_trace!(self.logger, "Adding HTLC from short id {} with payment_hash {} to channel with short id {} after delay", prev_short_channel_id, &payment_hash, short_chan_id);
4171                                                                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4172                                                                                 short_channel_id: prev_short_channel_id,
4173                                                                                 user_channel_id: Some(prev_user_channel_id),
4174                                                                                 outpoint: prev_funding_outpoint,
4175                                                                                 htlc_id: prev_htlc_id,
4176                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
4177                                                                                 // Phantom payments are only PendingHTLCRouting::Receive.
4178                                                                                 phantom_shared_secret: None,
4179                                                                         });
4180                                                                         if let Err(e) = chan.queue_add_htlc(outgoing_amt_msat,
4181                                                                                 payment_hash, outgoing_cltv_value, htlc_source.clone(),
4182                                                                                 onion_packet, skimmed_fee_msat, &self.fee_estimator,
4183                                                                                 &self.logger)
4184                                                                         {
4185                                                                                 if let ChannelError::Ignore(msg) = e {
4186                                                                                         log_trace!(self.logger, "Failed to forward HTLC with payment_hash {}: {}", &payment_hash, msg);
4187                                                                                 } else {
4188                                                                                         panic!("Stated return value requirements in send_htlc() were not met");
4189                                                                                 }
4190                                                                                 let (failure_code, data) = self.get_htlc_temp_fail_err_and_data(0x1000|7, short_chan_id, chan);
4191                                                                                 failed_forwards.push((htlc_source, payment_hash,
4192                                                                                         HTLCFailReason::reason(failure_code, data),
4193                                                                                         HTLCDestination::NextHopChannel { node_id: Some(chan.context.get_counterparty_node_id()), channel_id: forward_chan_id }
4194                                                                                 ));
4195                                                                                 continue;
4196                                                                         }
4197                                                                 },
4198                                                                 HTLCForwardInfo::AddHTLC { .. } => {
4199                                                                         panic!("short_channel_id != 0 should imply any pending_forward entries are of type Forward");
4200                                                                 },
4201                                                                 HTLCForwardInfo::FailHTLC { htlc_id, err_packet } => {
4202                                                                         log_trace!(self.logger, "Failing HTLC back to channel with short id {} (backward HTLC ID {}) after delay", short_chan_id, htlc_id);
4203                                                                         if let Err(e) = chan.queue_fail_htlc(
4204                                                                                 htlc_id, err_packet, &self.logger
4205                                                                         ) {
4206                                                                                 if let ChannelError::Ignore(msg) = e {
4207                                                                                         log_trace!(self.logger, "Failed to fail HTLC with ID {} backwards to short_id {}: {}", htlc_id, short_chan_id, msg);
4208                                                                                 } else {
4209                                                                                         panic!("Stated return value requirements in queue_fail_htlc() were not met");
4210                                                                                 }
4211                                                                                 // fail-backs are best-effort, we probably already have one
4212                                                                                 // pending, and if not that's OK, if not, the channel is on
4213                                                                                 // the chain and sending the HTLC-Timeout is their problem.
4214                                                                                 continue;
4215                                                                         }
4216                                                                 },
4217                                                         }
4218                                                 }
4219                                         } else {
4220                                                 forwarding_channel_not_found!();
4221                                                 continue;
4222                                         }
4223                                 } else {
4224                                         'next_forwardable_htlc: for forward_info in pending_forwards.drain(..) {
4225                                                 match forward_info {
4226                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4227                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4228                                                                 forward_info: PendingHTLCInfo {
4229                                                                         routing, incoming_shared_secret, payment_hash, incoming_amt_msat, outgoing_amt_msat,
4230                                                                         skimmed_fee_msat, ..
4231                                                                 }
4232                                                         }) => {
4233                                                                 let (cltv_expiry, onion_payload, payment_data, phantom_shared_secret, mut onion_fields) = match routing {
4234                                                                         PendingHTLCRouting::Receive { payment_data, payment_metadata, incoming_cltv_expiry, phantom_shared_secret, custom_tlvs } => {
4235                                                                                 let _legacy_hop_data = Some(payment_data.clone());
4236                                                                                 let onion_fields = RecipientOnionFields { payment_secret: Some(payment_data.payment_secret),
4237                                                                                                 payment_metadata, custom_tlvs };
4238                                                                                 (incoming_cltv_expiry, OnionPayload::Invoice { _legacy_hop_data },
4239                                                                                         Some(payment_data), phantom_shared_secret, onion_fields)
4240                                                                         },
4241                                                                         PendingHTLCRouting::ReceiveKeysend { payment_data, payment_preimage, payment_metadata, incoming_cltv_expiry, custom_tlvs } => {
4242                                                                                 let onion_fields = RecipientOnionFields {
4243                                                                                         payment_secret: payment_data.as_ref().map(|data| data.payment_secret),
4244                                                                                         payment_metadata,
4245                                                                                         custom_tlvs,
4246                                                                                 };
4247                                                                                 (incoming_cltv_expiry, OnionPayload::Spontaneous(payment_preimage),
4248                                                                                         payment_data, None, onion_fields)
4249                                                                         },
4250                                                                         _ => {
4251                                                                                 panic!("short_channel_id == 0 should imply any pending_forward entries are of type Receive");
4252                                                                         }
4253                                                                 };
4254                                                                 let claimable_htlc = ClaimableHTLC {
4255                                                                         prev_hop: HTLCPreviousHopData {
4256                                                                                 short_channel_id: prev_short_channel_id,
4257                                                                                 user_channel_id: Some(prev_user_channel_id),
4258                                                                                 outpoint: prev_funding_outpoint,
4259                                                                                 htlc_id: prev_htlc_id,
4260                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
4261                                                                                 phantom_shared_secret,
4262                                                                         },
4263                                                                         // We differentiate the received value from the sender intended value
4264                                                                         // if possible so that we don't prematurely mark MPP payments complete
4265                                                                         // if routing nodes overpay
4266                                                                         value: incoming_amt_msat.unwrap_or(outgoing_amt_msat),
4267                                                                         sender_intended_value: outgoing_amt_msat,
4268                                                                         timer_ticks: 0,
4269                                                                         total_value_received: None,
4270                                                                         total_msat: if let Some(data) = &payment_data { data.total_msat } else { outgoing_amt_msat },
4271                                                                         cltv_expiry,
4272                                                                         onion_payload,
4273                                                                         counterparty_skimmed_fee_msat: skimmed_fee_msat,
4274                                                                 };
4275
4276                                                                 let mut committed_to_claimable = false;
4277
4278                                                                 macro_rules! fail_htlc {
4279                                                                         ($htlc: expr, $payment_hash: expr) => {
4280                                                                                 debug_assert!(!committed_to_claimable);
4281                                                                                 let mut htlc_msat_height_data = $htlc.value.to_be_bytes().to_vec();
4282                                                                                 htlc_msat_height_data.extend_from_slice(
4283                                                                                         &self.best_block.read().unwrap().height().to_be_bytes(),
4284                                                                                 );
4285                                                                                 failed_forwards.push((HTLCSource::PreviousHopData(HTLCPreviousHopData {
4286                                                                                                 short_channel_id: $htlc.prev_hop.short_channel_id,
4287                                                                                                 user_channel_id: $htlc.prev_hop.user_channel_id,
4288                                                                                                 outpoint: prev_funding_outpoint,
4289                                                                                                 htlc_id: $htlc.prev_hop.htlc_id,
4290                                                                                                 incoming_packet_shared_secret: $htlc.prev_hop.incoming_packet_shared_secret,
4291                                                                                                 phantom_shared_secret,
4292                                                                                         }), payment_hash,
4293                                                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
4294                                                                                         HTLCDestination::FailedPayment { payment_hash: $payment_hash },
4295                                                                                 ));
4296                                                                                 continue 'next_forwardable_htlc;
4297                                                                         }
4298                                                                 }
4299                                                                 let phantom_shared_secret = claimable_htlc.prev_hop.phantom_shared_secret;
4300                                                                 let mut receiver_node_id = self.our_network_pubkey;
4301                                                                 if phantom_shared_secret.is_some() {
4302                                                                         receiver_node_id = self.node_signer.get_node_id(Recipient::PhantomNode)
4303                                                                                 .expect("Failed to get node_id for phantom node recipient");
4304                                                                 }
4305
4306                                                                 macro_rules! check_total_value {
4307                                                                         ($purpose: expr) => {{
4308                                                                                 let mut payment_claimable_generated = false;
4309                                                                                 let is_keysend = match $purpose {
4310                                                                                         events::PaymentPurpose::SpontaneousPayment(_) => true,
4311                                                                                         events::PaymentPurpose::InvoicePayment { .. } => false,
4312                                                                                 };
4313                                                                                 let mut claimable_payments = self.claimable_payments.lock().unwrap();
4314                                                                                 if claimable_payments.pending_claiming_payments.contains_key(&payment_hash) {
4315                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4316                                                                                 }
4317                                                                                 let ref mut claimable_payment = claimable_payments.claimable_payments
4318                                                                                         .entry(payment_hash)
4319                                                                                         // Note that if we insert here we MUST NOT fail_htlc!()
4320                                                                                         .or_insert_with(|| {
4321                                                                                                 committed_to_claimable = true;
4322                                                                                                 ClaimablePayment {
4323                                                                                                         purpose: $purpose.clone(), htlcs: Vec::new(), onion_fields: None,
4324                                                                                                 }
4325                                                                                         });
4326                                                                                 if $purpose != claimable_payment.purpose {
4327                                                                                         let log_keysend = |keysend| if keysend { "keysend" } else { "non-keysend" };
4328                                                                                         log_trace!(self.logger, "Failing new {} HTLC with payment_hash {} as we already had an existing {} HTLC with the same payment hash", log_keysend(is_keysend), &payment_hash, log_keysend(!is_keysend));
4329                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4330                                                                                 }
4331                                                                                 if !self.default_configuration.accept_mpp_keysend && is_keysend && !claimable_payment.htlcs.is_empty() {
4332                                                                                         log_trace!(self.logger, "Failing new keysend HTLC with payment_hash {} as we already had an existing keysend HTLC with the same payment hash and our config states we don't accept MPP keysend", &payment_hash);
4333                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4334                                                                                 }
4335                                                                                 if let Some(earlier_fields) = &mut claimable_payment.onion_fields {
4336                                                                                         if earlier_fields.check_merge(&mut onion_fields).is_err() {
4337                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4338                                                                                         }
4339                                                                                 } else {
4340                                                                                         claimable_payment.onion_fields = Some(onion_fields);
4341                                                                                 }
4342                                                                                 let ref mut htlcs = &mut claimable_payment.htlcs;
4343                                                                                 let mut total_value = claimable_htlc.sender_intended_value;
4344                                                                                 let mut earliest_expiry = claimable_htlc.cltv_expiry;
4345                                                                                 for htlc in htlcs.iter() {
4346                                                                                         total_value += htlc.sender_intended_value;
4347                                                                                         earliest_expiry = cmp::min(earliest_expiry, htlc.cltv_expiry);
4348                                                                                         if htlc.total_msat != claimable_htlc.total_msat {
4349                                                                                                 log_trace!(self.logger, "Failing HTLCs with payment_hash {} as the HTLCs had inconsistent total values (eg {} and {})",
4350                                                                                                         &payment_hash, claimable_htlc.total_msat, htlc.total_msat);
4351                                                                                                 total_value = msgs::MAX_VALUE_MSAT;
4352                                                                                         }
4353                                                                                         if total_value >= msgs::MAX_VALUE_MSAT { break; }
4354                                                                                 }
4355                                                                                 // The condition determining whether an MPP is complete must
4356                                                                                 // match exactly the condition used in `timer_tick_occurred`
4357                                                                                 if total_value >= msgs::MAX_VALUE_MSAT {
4358                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4359                                                                                 } else if total_value - claimable_htlc.sender_intended_value >= claimable_htlc.total_msat {
4360                                                                                         log_trace!(self.logger, "Failing HTLC with payment_hash {} as payment is already claimable",
4361                                                                                                 &payment_hash);
4362                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4363                                                                                 } else if total_value >= claimable_htlc.total_msat {
4364                                                                                         #[allow(unused_assignments)] {
4365                                                                                                 committed_to_claimable = true;
4366                                                                                         }
4367                                                                                         let prev_channel_id = prev_funding_outpoint.to_channel_id();
4368                                                                                         htlcs.push(claimable_htlc);
4369                                                                                         let amount_msat = htlcs.iter().map(|htlc| htlc.value).sum();
4370                                                                                         htlcs.iter_mut().for_each(|htlc| htlc.total_value_received = Some(amount_msat));
4371                                                                                         let counterparty_skimmed_fee_msat = htlcs.iter()
4372                                                                                                 .map(|htlc| htlc.counterparty_skimmed_fee_msat.unwrap_or(0)).sum();
4373                                                                                         debug_assert!(total_value.saturating_sub(amount_msat) <=
4374                                                                                                 counterparty_skimmed_fee_msat);
4375                                                                                         new_events.push_back((events::Event::PaymentClaimable {
4376                                                                                                 receiver_node_id: Some(receiver_node_id),
4377                                                                                                 payment_hash,
4378                                                                                                 purpose: $purpose,
4379                                                                                                 amount_msat,
4380                                                                                                 counterparty_skimmed_fee_msat,
4381                                                                                                 via_channel_id: Some(prev_channel_id),
4382                                                                                                 via_user_channel_id: Some(prev_user_channel_id),
4383                                                                                                 claim_deadline: Some(earliest_expiry - HTLC_FAIL_BACK_BUFFER),
4384                                                                                                 onion_fields: claimable_payment.onion_fields.clone(),
4385                                                                                         }, None));
4386                                                                                         payment_claimable_generated = true;
4387                                                                                 } else {
4388                                                                                         // Nothing to do - we haven't reached the total
4389                                                                                         // payment value yet, wait until we receive more
4390                                                                                         // MPP parts.
4391                                                                                         htlcs.push(claimable_htlc);
4392                                                                                         #[allow(unused_assignments)] {
4393                                                                                                 committed_to_claimable = true;
4394                                                                                         }
4395                                                                                 }
4396                                                                                 payment_claimable_generated
4397                                                                         }}
4398                                                                 }
4399
4400                                                                 // Check that the payment hash and secret are known. Note that we
4401                                                                 // MUST take care to handle the "unknown payment hash" and
4402                                                                 // "incorrect payment secret" cases here identically or we'd expose
4403                                                                 // that we are the ultimate recipient of the given payment hash.
4404                                                                 // Further, we must not expose whether we have any other HTLCs
4405                                                                 // associated with the same payment_hash pending or not.
4406                                                                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
4407                                                                 match payment_secrets.entry(payment_hash) {
4408                                                                         hash_map::Entry::Vacant(_) => {
4409                                                                                 match claimable_htlc.onion_payload {
4410                                                                                         OnionPayload::Invoice { .. } => {
4411                                                                                                 let payment_data = payment_data.unwrap();
4412                                                                                                 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) {
4413                                                                                                         Ok(result) => result,
4414                                                                                                         Err(()) => {
4415                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as payment verification failed", &payment_hash);
4416                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4417                                                                                                         }
4418                                                                                                 };
4419                                                                                                 if let Some(min_final_cltv_expiry_delta) = min_final_cltv_expiry_delta {
4420                                                                                                         let expected_min_expiry_height = (self.current_best_block().height() + min_final_cltv_expiry_delta as u32) as u64;
4421                                                                                                         if (cltv_expiry as u64) < expected_min_expiry_height {
4422                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as its CLTV expiry was too soon (had {}, earliest expected {})",
4423                                                                                                                         &payment_hash, cltv_expiry, expected_min_expiry_height);
4424                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4425                                                                                                         }
4426                                                                                                 }
4427                                                                                                 let purpose = events::PaymentPurpose::InvoicePayment {
4428                                                                                                         payment_preimage: payment_preimage.clone(),
4429                                                                                                         payment_secret: payment_data.payment_secret,
4430                                                                                                 };
4431                                                                                                 check_total_value!(purpose);
4432                                                                                         },
4433                                                                                         OnionPayload::Spontaneous(preimage) => {
4434                                                                                                 let purpose = events::PaymentPurpose::SpontaneousPayment(preimage);
4435                                                                                                 check_total_value!(purpose);
4436                                                                                         }
4437                                                                                 }
4438                                                                         },
4439                                                                         hash_map::Entry::Occupied(inbound_payment) => {
4440                                                                                 if let OnionPayload::Spontaneous(_) = claimable_htlc.onion_payload {
4441                                                                                         log_trace!(self.logger, "Failing new keysend HTLC with payment_hash {} because we already have an inbound payment with the same payment hash", &payment_hash);
4442                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4443                                                                                 }
4444                                                                                 let payment_data = payment_data.unwrap();
4445                                                                                 if inbound_payment.get().payment_secret != payment_data.payment_secret {
4446                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our expected payment secret.", &payment_hash);
4447                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4448                                                                                 } else if inbound_payment.get().min_value_msat.is_some() && payment_data.total_msat < inbound_payment.get().min_value_msat.unwrap() {
4449                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our minimum value (had {}, needed {}).",
4450                                                                                                 &payment_hash, payment_data.total_msat, inbound_payment.get().min_value_msat.unwrap());
4451                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4452                                                                                 } else {
4453                                                                                         let purpose = events::PaymentPurpose::InvoicePayment {
4454                                                                                                 payment_preimage: inbound_payment.get().payment_preimage,
4455                                                                                                 payment_secret: payment_data.payment_secret,
4456                                                                                         };
4457                                                                                         let payment_claimable_generated = check_total_value!(purpose);
4458                                                                                         if payment_claimable_generated {
4459                                                                                                 inbound_payment.remove_entry();
4460                                                                                         }
4461                                                                                 }
4462                                                                         },
4463                                                                 };
4464                                                         },
4465                                                         HTLCForwardInfo::FailHTLC { .. } => {
4466                                                                 panic!("Got pending fail of our own HTLC");
4467                                                         }
4468                                                 }
4469                                         }
4470                                 }
4471                         }
4472                 }
4473
4474                 let best_block_height = self.best_block.read().unwrap().height();
4475                 self.pending_outbound_payments.check_retry_payments(&self.router, || self.list_usable_channels(),
4476                         || self.compute_inflight_htlcs(), &self.entropy_source, &self.node_signer, best_block_height,
4477                         &self.pending_events, &self.logger, |args| self.send_payment_along_path(args));
4478
4479                 for (htlc_source, payment_hash, failure_reason, destination) in failed_forwards.drain(..) {
4480                         self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
4481                 }
4482                 self.forward_htlcs(&mut phantom_receives);
4483
4484                 // Freeing the holding cell here is relatively redundant - in practice we'll do it when we
4485                 // next get a `get_and_clear_pending_msg_events` call, but some tests rely on it, and it's
4486                 // nice to do the work now if we can rather than while we're trying to get messages in the
4487                 // network stack.
4488                 self.check_free_holding_cells();
4489
4490                 if new_events.is_empty() { return }
4491                 let mut events = self.pending_events.lock().unwrap();
4492                 events.append(&mut new_events);
4493         }
4494
4495         /// Free the background events, generally called from [`PersistenceNotifierGuard`] constructors.
4496         ///
4497         /// Expects the caller to have a total_consistency_lock read lock.
4498         fn process_background_events(&self) -> NotifyOption {
4499                 debug_assert_ne!(self.total_consistency_lock.held_by_thread(), LockHeldState::NotHeldByThread);
4500
4501                 self.background_events_processed_since_startup.store(true, Ordering::Release);
4502
4503                 let mut background_events = Vec::new();
4504                 mem::swap(&mut *self.pending_background_events.lock().unwrap(), &mut background_events);
4505                 if background_events.is_empty() {
4506                         return NotifyOption::SkipPersistNoEvents;
4507                 }
4508
4509                 for event in background_events.drain(..) {
4510                         match event {
4511                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((funding_txo, update)) => {
4512                                         // The channel has already been closed, so no use bothering to care about the
4513                                         // monitor updating completing.
4514                                         let _ = self.chain_monitor.update_channel(funding_txo, &update);
4515                                 },
4516                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup { counterparty_node_id, funding_txo, update } => {
4517                                         let mut updated_chan = false;
4518                                         {
4519                                                 let per_peer_state = self.per_peer_state.read().unwrap();
4520                                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
4521                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4522                                                         let peer_state = &mut *peer_state_lock;
4523                                                         match peer_state.channel_by_id.entry(funding_txo.to_channel_id()) {
4524                                                                 hash_map::Entry::Occupied(mut chan_phase) => {
4525                                                                         updated_chan = true;
4526                                                                         handle_new_monitor_update!(self, funding_txo, update.clone(),
4527                                                                                 peer_state_lock, peer_state, per_peer_state, chan_phase);
4528                                                                 },
4529                                                                 hash_map::Entry::Vacant(_) => {},
4530                                                         }
4531                                                 }
4532                                         }
4533                                         if !updated_chan {
4534                                                 // TODO: Track this as in-flight even though the channel is closed.
4535                                                 let _ = self.chain_monitor.update_channel(funding_txo, &update);
4536                                         }
4537                                 },
4538                                 BackgroundEvent::MonitorUpdatesComplete { counterparty_node_id, channel_id } => {
4539                                         let per_peer_state = self.per_peer_state.read().unwrap();
4540                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
4541                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4542                                                 let peer_state = &mut *peer_state_lock;
4543                                                 if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&channel_id) {
4544                                                         handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, chan);
4545                                                 } else {
4546                                                         let update_actions = peer_state.monitor_update_blocked_actions
4547                                                                 .remove(&channel_id).unwrap_or(Vec::new());
4548                                                         mem::drop(peer_state_lock);
4549                                                         mem::drop(per_peer_state);
4550                                                         self.handle_monitor_update_completion_actions(update_actions);
4551                                                 }
4552                                         }
4553                                 },
4554                         }
4555                 }
4556                 NotifyOption::DoPersist
4557         }
4558
4559         #[cfg(any(test, feature = "_test_utils"))]
4560         /// Process background events, for functional testing
4561         pub fn test_process_background_events(&self) {
4562                 let _lck = self.total_consistency_lock.read().unwrap();
4563                 let _ = self.process_background_events();
4564         }
4565
4566         fn update_channel_fee(&self, chan_id: &ChannelId, chan: &mut Channel<SP>, new_feerate: u32) -> NotifyOption {
4567                 if !chan.context.is_outbound() { return NotifyOption::SkipPersistNoEvents; }
4568                 // If the feerate has decreased by less than half, don't bother
4569                 if new_feerate <= chan.context.get_feerate_sat_per_1000_weight() && new_feerate * 2 > chan.context.get_feerate_sat_per_1000_weight() {
4570                         log_trace!(self.logger, "Channel {} does not qualify for a feerate change from {} to {}.",
4571                                 chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4572                         return NotifyOption::SkipPersistNoEvents;
4573                 }
4574                 if !chan.context.is_live() {
4575                         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).",
4576                                 chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4577                         return NotifyOption::SkipPersistNoEvents;
4578                 }
4579                 log_trace!(self.logger, "Channel {} qualifies for a feerate change from {} to {}.",
4580                         &chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4581
4582                 chan.queue_update_fee(new_feerate, &self.fee_estimator, &self.logger);
4583                 NotifyOption::DoPersist
4584         }
4585
4586         #[cfg(fuzzing)]
4587         /// In chanmon_consistency we want to sometimes do the channel fee updates done in
4588         /// timer_tick_occurred, but we can't generate the disabled channel updates as it considers
4589         /// these a fuzz failure (as they usually indicate a channel force-close, which is exactly what
4590         /// it wants to detect). Thus, we have a variant exposed here for its benefit.
4591         pub fn maybe_update_chan_fees(&self) {
4592                 PersistenceNotifierGuard::optionally_notify(self, || {
4593                         let mut should_persist = NotifyOption::SkipPersistNoEvents;
4594
4595                         let normal_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
4596                         let min_mempool_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::MempoolMinimum);
4597
4598                         let per_peer_state = self.per_peer_state.read().unwrap();
4599                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
4600                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4601                                 let peer_state = &mut *peer_state_lock;
4602                                 for (chan_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
4603                                         |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
4604                                 ) {
4605                                         let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
4606                                                 min_mempool_feerate
4607                                         } else {
4608                                                 normal_feerate
4609                                         };
4610                                         let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4611                                         if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4612                                 }
4613                         }
4614
4615                         should_persist
4616                 });
4617         }
4618
4619         /// Performs actions which should happen on startup and roughly once per minute thereafter.
4620         ///
4621         /// This currently includes:
4622         ///  * Increasing or decreasing the on-chain feerate estimates for our outbound channels,
4623         ///  * Broadcasting [`ChannelUpdate`] messages if we've been disconnected from our peer for more
4624         ///    than a minute, informing the network that they should no longer attempt to route over
4625         ///    the channel.
4626         ///  * Expiring a channel's previous [`ChannelConfig`] if necessary to only allow forwarding HTLCs
4627         ///    with the current [`ChannelConfig`].
4628         ///  * Removing peers which have disconnected but and no longer have any channels.
4629         ///  * Force-closing and removing channels which have not completed establishment in a timely manner.
4630         ///
4631         /// Note that this may cause reentrancy through [`chain::Watch::update_channel`] calls or feerate
4632         /// estimate fetches.
4633         ///
4634         /// [`ChannelUpdate`]: msgs::ChannelUpdate
4635         /// [`ChannelConfig`]: crate::util::config::ChannelConfig
4636         pub fn timer_tick_occurred(&self) {
4637                 PersistenceNotifierGuard::optionally_notify(self, || {
4638                         let mut should_persist = NotifyOption::SkipPersistNoEvents;
4639
4640                         let normal_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
4641                         let min_mempool_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::MempoolMinimum);
4642
4643                         let mut handle_errors: Vec<(Result<(), _>, _)> = Vec::new();
4644                         let mut timed_out_mpp_htlcs = Vec::new();
4645                         let mut pending_peers_awaiting_removal = Vec::new();
4646
4647                         let process_unfunded_channel_tick = |
4648                                 chan_id: &ChannelId,
4649                                 context: &mut ChannelContext<SP>,
4650                                 unfunded_context: &mut UnfundedChannelContext,
4651                                 pending_msg_events: &mut Vec<MessageSendEvent>,
4652                                 counterparty_node_id: PublicKey,
4653                         | {
4654                                 context.maybe_expire_prev_config();
4655                                 if unfunded_context.should_expire_unfunded_channel() {
4656                                         log_error!(self.logger,
4657                                                 "Force-closing pending channel with ID {} for not establishing in a timely manner", chan_id);
4658                                         update_maps_on_chan_removal!(self, &context);
4659                                         self.issue_channel_close_events(&context, ClosureReason::HolderForceClosed);
4660                                         self.finish_force_close_channel(context.force_shutdown(false));
4661                                         pending_msg_events.push(MessageSendEvent::HandleError {
4662                                                 node_id: counterparty_node_id,
4663                                                 action: msgs::ErrorAction::SendErrorMessage {
4664                                                         msg: msgs::ErrorMessage {
4665                                                                 channel_id: *chan_id,
4666                                                                 data: "Force-closing pending channel due to timeout awaiting establishment handshake".to_owned(),
4667                                                         },
4668                                                 },
4669                                         });
4670                                         false
4671                                 } else {
4672                                         true
4673                                 }
4674                         };
4675
4676                         {
4677                                 let per_peer_state = self.per_peer_state.read().unwrap();
4678                                 for (counterparty_node_id, peer_state_mutex) in per_peer_state.iter() {
4679                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4680                                         let peer_state = &mut *peer_state_lock;
4681                                         let pending_msg_events = &mut peer_state.pending_msg_events;
4682                                         let counterparty_node_id = *counterparty_node_id;
4683                                         peer_state.channel_by_id.retain(|chan_id, phase| {
4684                                                 match phase {
4685                                                         ChannelPhase::Funded(chan) => {
4686                                                                 let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
4687                                                                         min_mempool_feerate
4688                                                                 } else {
4689                                                                         normal_feerate
4690                                                                 };
4691                                                                 let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4692                                                                 if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4693
4694                                                                 if let Err(e) = chan.timer_check_closing_negotiation_progress() {
4695                                                                         let (needs_close, err) = convert_chan_phase_err!(self, e, chan, chan_id, FUNDED_CHANNEL);
4696                                                                         handle_errors.push((Err(err), counterparty_node_id));
4697                                                                         if needs_close { return false; }
4698                                                                 }
4699
4700                                                                 match chan.channel_update_status() {
4701                                                                         ChannelUpdateStatus::Enabled if !chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(0)),
4702                                                                         ChannelUpdateStatus::Disabled if chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(0)),
4703                                                                         ChannelUpdateStatus::DisabledStaged(_) if chan.context.is_live()
4704                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Enabled),
4705                                                                         ChannelUpdateStatus::EnabledStaged(_) if !chan.context.is_live()
4706                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Disabled),
4707                                                                         ChannelUpdateStatus::DisabledStaged(mut n) if !chan.context.is_live() => {
4708                                                                                 n += 1;
4709                                                                                 if n >= DISABLE_GOSSIP_TICKS {
4710                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Disabled);
4711                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4712                                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4713                                                                                                         msg: update
4714                                                                                                 });
4715                                                                                         }
4716                                                                                         should_persist = NotifyOption::DoPersist;
4717                                                                                 } else {
4718                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(n));
4719                                                                                 }
4720                                                                         },
4721                                                                         ChannelUpdateStatus::EnabledStaged(mut n) if chan.context.is_live() => {
4722                                                                                 n += 1;
4723                                                                                 if n >= ENABLE_GOSSIP_TICKS {
4724                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Enabled);
4725                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4726                                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4727                                                                                                         msg: update
4728                                                                                                 });
4729                                                                                         }
4730                                                                                         should_persist = NotifyOption::DoPersist;
4731                                                                                 } else {
4732                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(n));
4733                                                                                 }
4734                                                                         },
4735                                                                         _ => {},
4736                                                                 }
4737
4738                                                                 chan.context.maybe_expire_prev_config();
4739
4740                                                                 if chan.should_disconnect_peer_awaiting_response() {
4741                                                                         log_debug!(self.logger, "Disconnecting peer {} due to not making any progress on channel {}",
4742                                                                                         counterparty_node_id, chan_id);
4743                                                                         pending_msg_events.push(MessageSendEvent::HandleError {
4744                                                                                 node_id: counterparty_node_id,
4745                                                                                 action: msgs::ErrorAction::DisconnectPeerWithWarning {
4746                                                                                         msg: msgs::WarningMessage {
4747                                                                                                 channel_id: *chan_id,
4748                                                                                                 data: "Disconnecting due to timeout awaiting response".to_owned(),
4749                                                                                         },
4750                                                                                 },
4751                                                                         });
4752                                                                 }
4753
4754                                                                 true
4755                                                         },
4756                                                         ChannelPhase::UnfundedInboundV1(chan) => {
4757                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
4758                                                                         pending_msg_events, counterparty_node_id)
4759                                                         },
4760                                                         ChannelPhase::UnfundedOutboundV1(chan) => {
4761                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
4762                                                                         pending_msg_events, counterparty_node_id)
4763                                                         },
4764                                                 }
4765                                         });
4766
4767                                         for (chan_id, req) in peer_state.inbound_channel_request_by_id.iter_mut() {
4768                                                 if { req.ticks_remaining -= 1 ; req.ticks_remaining } <= 0 {
4769                                                         log_error!(self.logger, "Force-closing unaccepted inbound channel {} for not accepting in a timely manner", &chan_id);
4770                                                         peer_state.pending_msg_events.push(
4771                                                                 events::MessageSendEvent::HandleError {
4772                                                                         node_id: counterparty_node_id,
4773                                                                         action: msgs::ErrorAction::SendErrorMessage {
4774                                                                                 msg: msgs::ErrorMessage { channel_id: chan_id.clone(), data: "Channel force-closed".to_owned() }
4775                                                                         },
4776                                                                 }
4777                                                         );
4778                                                 }
4779                                         }
4780                                         peer_state.inbound_channel_request_by_id.retain(|_, req| req.ticks_remaining > 0);
4781
4782                                         if peer_state.ok_to_remove(true) {
4783                                                 pending_peers_awaiting_removal.push(counterparty_node_id);
4784                                         }
4785                                 }
4786                         }
4787
4788                         // When a peer disconnects but still has channels, the peer's `peer_state` entry in the
4789                         // `per_peer_state` is not removed by the `peer_disconnected` function. If the channels
4790                         // of to that peer is later closed while still being disconnected (i.e. force closed),
4791                         // we therefore need to remove the peer from `peer_state` separately.
4792                         // To avoid having to take the `per_peer_state` `write` lock once the channels are
4793                         // closed, we instead remove such peers awaiting removal here on a timer, to limit the
4794                         // negative effects on parallelism as much as possible.
4795                         if pending_peers_awaiting_removal.len() > 0 {
4796                                 let mut per_peer_state = self.per_peer_state.write().unwrap();
4797                                 for counterparty_node_id in pending_peers_awaiting_removal {
4798                                         match per_peer_state.entry(counterparty_node_id) {
4799                                                 hash_map::Entry::Occupied(entry) => {
4800                                                         // Remove the entry if the peer is still disconnected and we still
4801                                                         // have no channels to the peer.
4802                                                         let remove_entry = {
4803                                                                 let peer_state = entry.get().lock().unwrap();
4804                                                                 peer_state.ok_to_remove(true)
4805                                                         };
4806                                                         if remove_entry {
4807                                                                 entry.remove_entry();
4808                                                         }
4809                                                 },
4810                                                 hash_map::Entry::Vacant(_) => { /* The PeerState has already been removed */ }
4811                                         }
4812                                 }
4813                         }
4814
4815                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
4816                                 if payment.htlcs.is_empty() {
4817                                         // This should be unreachable
4818                                         debug_assert!(false);
4819                                         return false;
4820                                 }
4821                                 if let OnionPayload::Invoice { .. } = payment.htlcs[0].onion_payload {
4822                                         // Check if we've received all the parts we need for an MPP (the value of the parts adds to total_msat).
4823                                         // In this case we're not going to handle any timeouts of the parts here.
4824                                         // This condition determining whether the MPP is complete here must match
4825                                         // exactly the condition used in `process_pending_htlc_forwards`.
4826                                         if payment.htlcs[0].total_msat <= payment.htlcs.iter()
4827                                                 .fold(0, |total, htlc| total + htlc.sender_intended_value)
4828                                         {
4829                                                 return true;
4830                                         } else if payment.htlcs.iter_mut().any(|htlc| {
4831                                                 htlc.timer_ticks += 1;
4832                                                 return htlc.timer_ticks >= MPP_TIMEOUT_TICKS
4833                                         }) {
4834                                                 timed_out_mpp_htlcs.extend(payment.htlcs.drain(..)
4835                                                         .map(|htlc: ClaimableHTLC| (htlc.prev_hop, *payment_hash)));
4836                                                 return false;
4837                                         }
4838                                 }
4839                                 true
4840                         });
4841
4842                         for htlc_source in timed_out_mpp_htlcs.drain(..) {
4843                                 let source = HTLCSource::PreviousHopData(htlc_source.0.clone());
4844                                 let reason = HTLCFailReason::from_failure_code(23);
4845                                 let receiver = HTLCDestination::FailedPayment { payment_hash: htlc_source.1 };
4846                                 self.fail_htlc_backwards_internal(&source, &htlc_source.1, &reason, receiver);
4847                         }
4848
4849                         for (err, counterparty_node_id) in handle_errors.drain(..) {
4850                                 let _ = handle_error!(self, err, counterparty_node_id);
4851                         }
4852
4853                         self.pending_outbound_payments.remove_stale_payments(&self.pending_events);
4854
4855                         // Technically we don't need to do this here, but if we have holding cell entries in a
4856                         // channel that need freeing, it's better to do that here and block a background task
4857                         // than block the message queueing pipeline.
4858                         if self.check_free_holding_cells() {
4859                                 should_persist = NotifyOption::DoPersist;
4860                         }
4861
4862                         should_persist
4863                 });
4864         }
4865
4866         /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
4867         /// after a PaymentClaimable event, failing the HTLC back to its origin and freeing resources
4868         /// along the path (including in our own channel on which we received it).
4869         ///
4870         /// Note that in some cases around unclean shutdown, it is possible the payment may have
4871         /// already been claimed by you via [`ChannelManager::claim_funds`] prior to you seeing (a
4872         /// second copy of) the [`events::Event::PaymentClaimable`] event. Alternatively, the payment
4873         /// may have already been failed automatically by LDK if it was nearing its expiration time.
4874         ///
4875         /// While LDK will never claim a payment automatically on your behalf (i.e. without you calling
4876         /// [`ChannelManager::claim_funds`]), you should still monitor for
4877         /// [`events::Event::PaymentClaimed`] events even for payments you intend to fail, especially on
4878         /// startup during which time claims that were in-progress at shutdown may be replayed.
4879         pub fn fail_htlc_backwards(&self, payment_hash: &PaymentHash) {
4880                 self.fail_htlc_backwards_with_reason(payment_hash, FailureCode::IncorrectOrUnknownPaymentDetails);
4881         }
4882
4883         /// This is a variant of [`ChannelManager::fail_htlc_backwards`] that allows you to specify the
4884         /// reason for the failure.
4885         ///
4886         /// See [`FailureCode`] for valid failure codes.
4887         pub fn fail_htlc_backwards_with_reason(&self, payment_hash: &PaymentHash, failure_code: FailureCode) {
4888                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4889
4890                 let removed_source = self.claimable_payments.lock().unwrap().claimable_payments.remove(payment_hash);
4891                 if let Some(payment) = removed_source {
4892                         for htlc in payment.htlcs {
4893                                 let reason = self.get_htlc_fail_reason_from_failure_code(failure_code, &htlc);
4894                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
4895                                 let receiver = HTLCDestination::FailedPayment { payment_hash: *payment_hash };
4896                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
4897                         }
4898                 }
4899         }
4900
4901         /// Gets error data to form an [`HTLCFailReason`] given a [`FailureCode`] and [`ClaimableHTLC`].
4902         fn get_htlc_fail_reason_from_failure_code(&self, failure_code: FailureCode, htlc: &ClaimableHTLC) -> HTLCFailReason {
4903                 match failure_code {
4904                         FailureCode::TemporaryNodeFailure => HTLCFailReason::from_failure_code(failure_code.into()),
4905                         FailureCode::RequiredNodeFeatureMissing => HTLCFailReason::from_failure_code(failure_code.into()),
4906                         FailureCode::IncorrectOrUnknownPaymentDetails => {
4907                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
4908                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
4909                                 HTLCFailReason::reason(failure_code.into(), htlc_msat_height_data)
4910                         },
4911                         FailureCode::InvalidOnionPayload(data) => {
4912                                 let fail_data = match data {
4913                                         Some((typ, offset)) => [BigSize(typ).encode(), offset.encode()].concat(),
4914                                         None => Vec::new(),
4915                                 };
4916                                 HTLCFailReason::reason(failure_code.into(), fail_data)
4917                         }
4918                 }
4919         }
4920
4921         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
4922         /// that we want to return and a channel.
4923         ///
4924         /// This is for failures on the channel on which the HTLC was *received*, not failures
4925         /// forwarding
4926         fn get_htlc_inbound_temp_fail_err_and_data(&self, desired_err_code: u16, chan: &Channel<SP>) -> (u16, Vec<u8>) {
4927                 // We can't be sure what SCID was used when relaying inbound towards us, so we have to
4928                 // guess somewhat. If its a public channel, we figure best to just use the real SCID (as
4929                 // we're not leaking that we have a channel with the counterparty), otherwise we try to use
4930                 // an inbound SCID alias before the real SCID.
4931                 let scid_pref = if chan.context.should_announce() {
4932                         chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias())
4933                 } else {
4934                         chan.context.latest_inbound_scid_alias().or(chan.context.get_short_channel_id())
4935                 };
4936                 if let Some(scid) = scid_pref {
4937                         self.get_htlc_temp_fail_err_and_data(desired_err_code, scid, chan)
4938                 } else {
4939                         (0x4000|10, Vec::new())
4940                 }
4941         }
4942
4943
4944         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
4945         /// that we want to return and a channel.
4946         fn get_htlc_temp_fail_err_and_data(&self, desired_err_code: u16, scid: u64, chan: &Channel<SP>) -> (u16, Vec<u8>) {
4947                 debug_assert_eq!(desired_err_code & 0x1000, 0x1000);
4948                 if let Ok(upd) = self.get_channel_update_for_onion(scid, chan) {
4949                         let mut enc = VecWriter(Vec::with_capacity(upd.serialized_length() + 6));
4950                         if desired_err_code == 0x1000 | 20 {
4951                                 // No flags for `disabled_flags` are currently defined so they're always two zero bytes.
4952                                 // See https://github.com/lightning/bolts/blob/341ec84/04-onion-routing.md?plain=1#L1008
4953                                 0u16.write(&mut enc).expect("Writes cannot fail");
4954                         }
4955                         (upd.serialized_length() as u16 + 2).write(&mut enc).expect("Writes cannot fail");
4956                         msgs::ChannelUpdate::TYPE.write(&mut enc).expect("Writes cannot fail");
4957                         upd.write(&mut enc).expect("Writes cannot fail");
4958                         (desired_err_code, enc.0)
4959                 } else {
4960                         // If we fail to get a unicast channel_update, it implies we don't yet have an SCID,
4961                         // which means we really shouldn't have gotten a payment to be forwarded over this
4962                         // channel yet, or if we did it's from a route hint. Either way, returning an error of
4963                         // PERM|no_such_channel should be fine.
4964                         (0x4000|10, Vec::new())
4965                 }
4966         }
4967
4968         // Fail a list of HTLCs that were just freed from the holding cell. The HTLCs need to be
4969         // failed backwards or, if they were one of our outgoing HTLCs, then their failure needs to
4970         // be surfaced to the user.
4971         fn fail_holding_cell_htlcs(
4972                 &self, mut htlcs_to_fail: Vec<(HTLCSource, PaymentHash)>, channel_id: ChannelId,
4973                 counterparty_node_id: &PublicKey
4974         ) {
4975                 let (failure_code, onion_failure_data) = {
4976                         let per_peer_state = self.per_peer_state.read().unwrap();
4977                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
4978                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4979                                 let peer_state = &mut *peer_state_lock;
4980                                 match peer_state.channel_by_id.entry(channel_id) {
4981                                         hash_map::Entry::Occupied(chan_phase_entry) => {
4982                                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get() {
4983                                                         self.get_htlc_inbound_temp_fail_err_and_data(0x1000|7, &chan)
4984                                                 } else {
4985                                                         // We shouldn't be trying to fail holding cell HTLCs on an unfunded channel.
4986                                                         debug_assert!(false);
4987                                                         (0x4000|10, Vec::new())
4988                                                 }
4989                                         },
4990                                         hash_map::Entry::Vacant(_) => (0x4000|10, Vec::new())
4991                                 }
4992                         } else { (0x4000|10, Vec::new()) }
4993                 };
4994
4995                 for (htlc_src, payment_hash) in htlcs_to_fail.drain(..) {
4996                         let reason = HTLCFailReason::reason(failure_code, onion_failure_data.clone());
4997                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id };
4998                         self.fail_htlc_backwards_internal(&htlc_src, &payment_hash, &reason, receiver);
4999                 }
5000         }
5001
5002         /// Fails an HTLC backwards to the sender of it to us.
5003         /// Note that we do not assume that channels corresponding to failed HTLCs are still available.
5004         fn fail_htlc_backwards_internal(&self, source: &HTLCSource, payment_hash: &PaymentHash, onion_error: &HTLCFailReason, destination: HTLCDestination) {
5005                 // Ensure that no peer state channel storage lock is held when calling this function.
5006                 // This ensures that future code doesn't introduce a lock-order requirement for
5007                 // `forward_htlcs` to be locked after the `per_peer_state` peer locks, which calling
5008                 // this function with any `per_peer_state` peer lock acquired would.
5009                 for (_, peer) in self.per_peer_state.read().unwrap().iter() {
5010                         debug_assert_ne!(peer.held_by_thread(), LockHeldState::HeldByThread);
5011                 }
5012
5013                 //TODO: There is a timing attack here where if a node fails an HTLC back to us they can
5014                 //identify whether we sent it or not based on the (I presume) very different runtime
5015                 //between the branches here. We should make this async and move it into the forward HTLCs
5016                 //timer handling.
5017
5018                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
5019                 // from block_connected which may run during initialization prior to the chain_monitor
5020                 // being fully configured. See the docs for `ChannelManagerReadArgs` for more.
5021                 match source {
5022                         HTLCSource::OutboundRoute { ref path, ref session_priv, ref payment_id, .. } => {
5023                                 if self.pending_outbound_payments.fail_htlc(source, payment_hash, onion_error, path,
5024                                         session_priv, payment_id, self.probing_cookie_secret, &self.secp_ctx,
5025                                         &self.pending_events, &self.logger)
5026                                 { self.push_pending_forwards_ev(); }
5027                         },
5028                         HTLCSource::PreviousHopData(HTLCPreviousHopData { ref short_channel_id, ref htlc_id, ref incoming_packet_shared_secret, ref phantom_shared_secret, ref outpoint, .. }) => {
5029                                 log_trace!(self.logger, "Failing HTLC with payment_hash {} backwards from us with {:?}", &payment_hash, onion_error);
5030                                 let err_packet = onion_error.get_encrypted_failure_packet(incoming_packet_shared_secret, phantom_shared_secret);
5031
5032                                 let mut push_forward_ev = false;
5033                                 let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
5034                                 if forward_htlcs.is_empty() {
5035                                         push_forward_ev = true;
5036                                 }
5037                                 match forward_htlcs.entry(*short_channel_id) {
5038                                         hash_map::Entry::Occupied(mut entry) => {
5039                                                 entry.get_mut().push(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet });
5040                                         },
5041                                         hash_map::Entry::Vacant(entry) => {
5042                                                 entry.insert(vec!(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet }));
5043                                         }
5044                                 }
5045                                 mem::drop(forward_htlcs);
5046                                 if push_forward_ev { self.push_pending_forwards_ev(); }
5047                                 let mut pending_events = self.pending_events.lock().unwrap();
5048                                 pending_events.push_back((events::Event::HTLCHandlingFailed {
5049                                         prev_channel_id: outpoint.to_channel_id(),
5050                                         failed_next_destination: destination,
5051                                 }, None));
5052                         },
5053                 }
5054         }
5055
5056         /// Provides a payment preimage in response to [`Event::PaymentClaimable`], generating any
5057         /// [`MessageSendEvent`]s needed to claim the payment.
5058         ///
5059         /// This method is guaranteed to ensure the payment has been claimed but only if the current
5060         /// height is strictly below [`Event::PaymentClaimable::claim_deadline`]. To avoid race
5061         /// conditions, you should wait for an [`Event::PaymentClaimed`] before considering the payment
5062         /// successful. It will generally be available in the next [`process_pending_events`] call.
5063         ///
5064         /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
5065         /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentClaimable`
5066         /// event matches your expectation. If you fail to do so and call this method, you may provide
5067         /// the sender "proof-of-payment" when they did not fulfill the full expected payment.
5068         ///
5069         /// This function will fail the payment if it has custom TLVs with even type numbers, as we
5070         /// will assume they are unknown. If you intend to accept even custom TLVs, you should use
5071         /// [`claim_funds_with_known_custom_tlvs`].
5072         ///
5073         /// [`Event::PaymentClaimable`]: crate::events::Event::PaymentClaimable
5074         /// [`Event::PaymentClaimable::claim_deadline`]: crate::events::Event::PaymentClaimable::claim_deadline
5075         /// [`Event::PaymentClaimed`]: crate::events::Event::PaymentClaimed
5076         /// [`process_pending_events`]: EventsProvider::process_pending_events
5077         /// [`create_inbound_payment`]: Self::create_inbound_payment
5078         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
5079         /// [`claim_funds_with_known_custom_tlvs`]: Self::claim_funds_with_known_custom_tlvs
5080         pub fn claim_funds(&self, payment_preimage: PaymentPreimage) {
5081                 self.claim_payment_internal(payment_preimage, false);
5082         }
5083
5084         /// This is a variant of [`claim_funds`] that allows accepting a payment with custom TLVs with
5085         /// even type numbers.
5086         ///
5087         /// # Note
5088         ///
5089         /// You MUST check you've understood all even TLVs before using this to
5090         /// claim, otherwise you may unintentionally agree to some protocol you do not understand.
5091         ///
5092         /// [`claim_funds`]: Self::claim_funds
5093         pub fn claim_funds_with_known_custom_tlvs(&self, payment_preimage: PaymentPreimage) {
5094                 self.claim_payment_internal(payment_preimage, true);
5095         }
5096
5097         fn claim_payment_internal(&self, payment_preimage: PaymentPreimage, custom_tlvs_known: bool) {
5098                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
5099
5100                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5101
5102                 let mut sources = {
5103                         let mut claimable_payments = self.claimable_payments.lock().unwrap();
5104                         if let Some(payment) = claimable_payments.claimable_payments.remove(&payment_hash) {
5105                                 let mut receiver_node_id = self.our_network_pubkey;
5106                                 for htlc in payment.htlcs.iter() {
5107                                         if htlc.prev_hop.phantom_shared_secret.is_some() {
5108                                                 let phantom_pubkey = self.node_signer.get_node_id(Recipient::PhantomNode)
5109                                                         .expect("Failed to get node_id for phantom node recipient");
5110                                                 receiver_node_id = phantom_pubkey;
5111                                                 break;
5112                                         }
5113                                 }
5114
5115                                 let htlcs = payment.htlcs.iter().map(events::ClaimedHTLC::from).collect();
5116                                 let sender_intended_value = payment.htlcs.first().map(|htlc| htlc.total_msat);
5117                                 let dup_purpose = claimable_payments.pending_claiming_payments.insert(payment_hash,
5118                                         ClaimingPayment { amount_msat: payment.htlcs.iter().map(|source| source.value).sum(),
5119                                         payment_purpose: payment.purpose, receiver_node_id, htlcs, sender_intended_value
5120                                 });
5121                                 if dup_purpose.is_some() {
5122                                         debug_assert!(false, "Shouldn't get a duplicate pending claim event ever");
5123                                         log_error!(self.logger, "Got a duplicate pending claimable event on payment hash {}! Please report this bug",
5124                                                 &payment_hash);
5125                                 }
5126
5127                                 if let Some(RecipientOnionFields { ref custom_tlvs, .. }) = payment.onion_fields {
5128                                         if !custom_tlvs_known && custom_tlvs.iter().any(|(typ, _)| typ % 2 == 0) {
5129                                                 log_info!(self.logger, "Rejecting payment with payment hash {} as we cannot accept payment with unknown even TLVs: {}",
5130                                                         &payment_hash, log_iter!(custom_tlvs.iter().map(|(typ, _)| typ).filter(|typ| *typ % 2 == 0)));
5131                                                 claimable_payments.pending_claiming_payments.remove(&payment_hash);
5132                                                 mem::drop(claimable_payments);
5133                                                 for htlc in payment.htlcs {
5134                                                         let reason = self.get_htlc_fail_reason_from_failure_code(FailureCode::InvalidOnionPayload(None), &htlc);
5135                                                         let source = HTLCSource::PreviousHopData(htlc.prev_hop);
5136                                                         let receiver = HTLCDestination::FailedPayment { payment_hash };
5137                                                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
5138                                                 }
5139                                                 return;
5140                                         }
5141                                 }
5142
5143                                 payment.htlcs
5144                         } else { return; }
5145                 };
5146                 debug_assert!(!sources.is_empty());
5147
5148                 // Just in case one HTLC has been failed between when we generated the `PaymentClaimable`
5149                 // and when we got here we need to check that the amount we're about to claim matches the
5150                 // amount we told the user in the last `PaymentClaimable`. We also do a sanity-check that
5151                 // the MPP parts all have the same `total_msat`.
5152                 let mut claimable_amt_msat = 0;
5153                 let mut prev_total_msat = None;
5154                 let mut expected_amt_msat = None;
5155                 let mut valid_mpp = true;
5156                 let mut errs = Vec::new();
5157                 let per_peer_state = self.per_peer_state.read().unwrap();
5158                 for htlc in sources.iter() {
5159                         if prev_total_msat.is_some() && prev_total_msat != Some(htlc.total_msat) {
5160                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different expected total amounts - this should not be reachable!");
5161                                 debug_assert!(false);
5162                                 valid_mpp = false;
5163                                 break;
5164                         }
5165                         prev_total_msat = Some(htlc.total_msat);
5166
5167                         if expected_amt_msat.is_some() && expected_amt_msat != htlc.total_value_received {
5168                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different received total amounts - this should not be reachable!");
5169                                 debug_assert!(false);
5170                                 valid_mpp = false;
5171                                 break;
5172                         }
5173                         expected_amt_msat = htlc.total_value_received;
5174                         claimable_amt_msat += htlc.value;
5175                 }
5176                 mem::drop(per_peer_state);
5177                 if sources.is_empty() || expected_amt_msat.is_none() {
5178                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5179                         log_info!(self.logger, "Attempted to claim an incomplete payment which no longer had any available HTLCs!");
5180                         return;
5181                 }
5182                 if claimable_amt_msat != expected_amt_msat.unwrap() {
5183                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5184                         log_info!(self.logger, "Attempted to claim an incomplete payment, expected {} msat, had {} available to claim.",
5185                                 expected_amt_msat.unwrap(), claimable_amt_msat);
5186                         return;
5187                 }
5188                 if valid_mpp {
5189                         for htlc in sources.drain(..) {
5190                                 if let Err((pk, err)) = self.claim_funds_from_hop(
5191                                         htlc.prev_hop, payment_preimage,
5192                                         |_| Some(MonitorUpdateCompletionAction::PaymentClaimed { payment_hash }))
5193                                 {
5194                                         if let msgs::ErrorAction::IgnoreError = err.err.action {
5195                                                 // We got a temporary failure updating monitor, but will claim the
5196                                                 // HTLC when the monitor updating is restored (or on chain).
5197                                                 log_error!(self.logger, "Temporary failure claiming HTLC, treating as success: {}", err.err.err);
5198                                         } else { errs.push((pk, err)); }
5199                                 }
5200                         }
5201                 }
5202                 if !valid_mpp {
5203                         for htlc in sources.drain(..) {
5204                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
5205                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
5206                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
5207                                 let reason = HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data);
5208                                 let receiver = HTLCDestination::FailedPayment { payment_hash };
5209                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
5210                         }
5211                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5212                 }
5213
5214                 // Now we can handle any errors which were generated.
5215                 for (counterparty_node_id, err) in errs.drain(..) {
5216                         let res: Result<(), _> = Err(err);
5217                         let _ = handle_error!(self, res, counterparty_node_id);
5218                 }
5219         }
5220
5221         fn claim_funds_from_hop<ComplFunc: FnOnce(Option<u64>) -> Option<MonitorUpdateCompletionAction>>(&self,
5222                 prev_hop: HTLCPreviousHopData, payment_preimage: PaymentPreimage, completion_action: ComplFunc)
5223         -> Result<(), (PublicKey, MsgHandleErrInternal)> {
5224                 //TODO: Delay the claimed_funds relaying just like we do outbound relay!
5225
5226                 // If we haven't yet run background events assume we're still deserializing and shouldn't
5227                 // actually pass `ChannelMonitorUpdate`s to users yet. Instead, queue them up as
5228                 // `BackgroundEvent`s.
5229                 let during_init = !self.background_events_processed_since_startup.load(Ordering::Acquire);
5230
5231                 {
5232                         let per_peer_state = self.per_peer_state.read().unwrap();
5233                         let chan_id = prev_hop.outpoint.to_channel_id();
5234                         let counterparty_node_id_opt = match self.short_to_chan_info.read().unwrap().get(&prev_hop.short_channel_id) {
5235                                 Some((cp_id, _dup_chan_id)) => Some(cp_id.clone()),
5236                                 None => None
5237                         };
5238
5239                         let peer_state_opt = counterparty_node_id_opt.as_ref().map(
5240                                 |counterparty_node_id| per_peer_state.get(counterparty_node_id)
5241                                         .map(|peer_mutex| peer_mutex.lock().unwrap())
5242                         ).unwrap_or(None);
5243
5244                         if peer_state_opt.is_some() {
5245                                 let mut peer_state_lock = peer_state_opt.unwrap();
5246                                 let peer_state = &mut *peer_state_lock;
5247                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(chan_id) {
5248                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
5249                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
5250                                                 let fulfill_res = chan.get_update_fulfill_htlc_and_commit(prev_hop.htlc_id, payment_preimage, &self.logger);
5251
5252                                                 if let UpdateFulfillCommitFetch::NewClaim { htlc_value_msat, monitor_update } = fulfill_res {
5253                                                         if let Some(action) = completion_action(Some(htlc_value_msat)) {
5254                                                                 log_trace!(self.logger, "Tracking monitor update completion action for channel {}: {:?}",
5255                                                                         chan_id, action);
5256                                                                 peer_state.monitor_update_blocked_actions.entry(chan_id).or_insert(Vec::new()).push(action);
5257                                                         }
5258                                                         if !during_init {
5259                                                                 handle_new_monitor_update!(self, prev_hop.outpoint, monitor_update, peer_state_lock,
5260                                                                         peer_state, per_peer_state, chan_phase_entry);
5261                                                         } else {
5262                                                                 // If we're running during init we cannot update a monitor directly -
5263                                                                 // they probably haven't actually been loaded yet. Instead, push the
5264                                                                 // monitor update as a background event.
5265                                                                 self.pending_background_events.lock().unwrap().push(
5266                                                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
5267                                                                                 counterparty_node_id,
5268                                                                                 funding_txo: prev_hop.outpoint,
5269                                                                                 update: monitor_update.clone(),
5270                                                                         });
5271                                                         }
5272                                                 }
5273                                         }
5274                                         return Ok(());
5275                                 }
5276                         }
5277                 }
5278                 let preimage_update = ChannelMonitorUpdate {
5279                         update_id: CLOSED_CHANNEL_UPDATE_ID,
5280                         updates: vec![ChannelMonitorUpdateStep::PaymentPreimage {
5281                                 payment_preimage,
5282                         }],
5283                 };
5284
5285                 if !during_init {
5286                         // We update the ChannelMonitor on the backward link, after
5287                         // receiving an `update_fulfill_htlc` from the forward link.
5288                         let update_res = self.chain_monitor.update_channel(prev_hop.outpoint, &preimage_update);
5289                         if update_res != ChannelMonitorUpdateStatus::Completed {
5290                                 // TODO: This needs to be handled somehow - if we receive a monitor update
5291                                 // with a preimage we *must* somehow manage to propagate it to the upstream
5292                                 // channel, or we must have an ability to receive the same event and try
5293                                 // again on restart.
5294                                 log_error!(self.logger, "Critical error: failed to update channel monitor with preimage {:?}: {:?}",
5295                                         payment_preimage, update_res);
5296                         }
5297                 } else {
5298                         // If we're running during init we cannot update a monitor directly - they probably
5299                         // haven't actually been loaded yet. Instead, push the monitor update as a background
5300                         // event.
5301                         // Note that while it's safe to use `ClosedMonitorUpdateRegeneratedOnStartup` here (the
5302                         // channel is already closed) we need to ultimately handle the monitor update
5303                         // completion action only after we've completed the monitor update. This is the only
5304                         // way to guarantee this update *will* be regenerated on startup (otherwise if this was
5305                         // from a forwarded HTLC the downstream preimage may be deleted before we claim
5306                         // upstream). Thus, we need to transition to some new `BackgroundEvent` type which will
5307                         // complete the monitor update completion action from `completion_action`.
5308                         self.pending_background_events.lock().unwrap().push(
5309                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((
5310                                         prev_hop.outpoint, preimage_update,
5311                                 )));
5312                 }
5313                 // Note that we do process the completion action here. This totally could be a
5314                 // duplicate claim, but we have no way of knowing without interrogating the
5315                 // `ChannelMonitor` we've provided the above update to. Instead, note that `Event`s are
5316                 // generally always allowed to be duplicative (and it's specifically noted in
5317                 // `PaymentForwarded`).
5318                 self.handle_monitor_update_completion_actions(completion_action(None));
5319                 Ok(())
5320         }
5321
5322         fn finalize_claims(&self, sources: Vec<HTLCSource>) {
5323                 self.pending_outbound_payments.finalize_claims(sources, &self.pending_events);
5324         }
5325
5326         fn claim_funds_internal(&self, source: HTLCSource, payment_preimage: PaymentPreimage,
5327                 forwarded_htlc_value_msat: Option<u64>, from_onchain: bool,
5328                 next_channel_counterparty_node_id: Option<PublicKey>, next_channel_outpoint: OutPoint
5329         ) {
5330                 match source {
5331                         HTLCSource::OutboundRoute { session_priv, payment_id, path, .. } => {
5332                                 debug_assert!(self.background_events_processed_since_startup.load(Ordering::Acquire),
5333                                         "We don't support claim_htlc claims during startup - monitors may not be available yet");
5334                                 if let Some(pubkey) = next_channel_counterparty_node_id {
5335                                         debug_assert_eq!(pubkey, path.hops[0].pubkey);
5336                                 }
5337                                 let ev_completion_action = EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
5338                                         channel_funding_outpoint: next_channel_outpoint,
5339                                         counterparty_node_id: path.hops[0].pubkey,
5340                                 };
5341                                 self.pending_outbound_payments.claim_htlc(payment_id, payment_preimage,
5342                                         session_priv, path, from_onchain, ev_completion_action, &self.pending_events,
5343                                         &self.logger);
5344                         },
5345                         HTLCSource::PreviousHopData(hop_data) => {
5346                                 let prev_outpoint = hop_data.outpoint;
5347                                 let completed_blocker = RAAMonitorUpdateBlockingAction::from_prev_hop_data(&hop_data);
5348                                 let res = self.claim_funds_from_hop(hop_data, payment_preimage,
5349                                         |htlc_claim_value_msat| {
5350                                                 if let Some(forwarded_htlc_value) = forwarded_htlc_value_msat {
5351                                                         let fee_earned_msat = if let Some(claimed_htlc_value) = htlc_claim_value_msat {
5352                                                                 Some(claimed_htlc_value - forwarded_htlc_value)
5353                                                         } else { None };
5354
5355                                                         Some(MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
5356                                                                 event: events::Event::PaymentForwarded {
5357                                                                         fee_earned_msat,
5358                                                                         claim_from_onchain_tx: from_onchain,
5359                                                                         prev_channel_id: Some(prev_outpoint.to_channel_id()),
5360                                                                         next_channel_id: Some(next_channel_outpoint.to_channel_id()),
5361                                                                         outbound_amount_forwarded_msat: forwarded_htlc_value_msat,
5362                                                                 },
5363                                                                 downstream_counterparty_and_funding_outpoint:
5364                                                                         if let Some(node_id) = next_channel_counterparty_node_id {
5365                                                                                 Some((node_id, next_channel_outpoint, completed_blocker))
5366                                                                         } else {
5367                                                                                 // We can only get `None` here if we are processing a
5368                                                                                 // `ChannelMonitor`-originated event, in which case we
5369                                                                                 // don't care about ensuring we wake the downstream
5370                                                                                 // channel's monitor updating - the channel is already
5371                                                                                 // closed.
5372                                                                                 None
5373                                                                         },
5374                                                         })
5375                                                 } else { None }
5376                                         });
5377                                 if let Err((pk, err)) = res {
5378                                         let result: Result<(), _> = Err(err);
5379                                         let _ = handle_error!(self, result, pk);
5380                                 }
5381                         },
5382                 }
5383         }
5384
5385         /// Gets the node_id held by this ChannelManager
5386         pub fn get_our_node_id(&self) -> PublicKey {
5387                 self.our_network_pubkey.clone()
5388         }
5389
5390         fn handle_monitor_update_completion_actions<I: IntoIterator<Item=MonitorUpdateCompletionAction>>(&self, actions: I) {
5391                 for action in actions.into_iter() {
5392                         match action {
5393                                 MonitorUpdateCompletionAction::PaymentClaimed { payment_hash } => {
5394                                         let payment = self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5395                                         if let Some(ClaimingPayment {
5396                                                 amount_msat,
5397                                                 payment_purpose: purpose,
5398                                                 receiver_node_id,
5399                                                 htlcs,
5400                                                 sender_intended_value: sender_intended_total_msat,
5401                                         }) = payment {
5402                                                 self.pending_events.lock().unwrap().push_back((events::Event::PaymentClaimed {
5403                                                         payment_hash,
5404                                                         purpose,
5405                                                         amount_msat,
5406                                                         receiver_node_id: Some(receiver_node_id),
5407                                                         htlcs,
5408                                                         sender_intended_total_msat,
5409                                                 }, None));
5410                                         }
5411                                 },
5412                                 MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
5413                                         event, downstream_counterparty_and_funding_outpoint
5414                                 } => {
5415                                         self.pending_events.lock().unwrap().push_back((event, None));
5416                                         if let Some((node_id, funding_outpoint, blocker)) = downstream_counterparty_and_funding_outpoint {
5417                                                 self.handle_monitor_update_release(node_id, funding_outpoint, Some(blocker));
5418                                         }
5419                                 },
5420                         }
5421                 }
5422         }
5423
5424         /// Handles a channel reentering a functional state, either due to reconnect or a monitor
5425         /// update completion.
5426         fn handle_channel_resumption(&self, pending_msg_events: &mut Vec<MessageSendEvent>,
5427                 channel: &mut Channel<SP>, raa: Option<msgs::RevokeAndACK>,
5428                 commitment_update: Option<msgs::CommitmentUpdate>, order: RAACommitmentOrder,
5429                 pending_forwards: Vec<(PendingHTLCInfo, u64)>, funding_broadcastable: Option<Transaction>,
5430                 channel_ready: Option<msgs::ChannelReady>, announcement_sigs: Option<msgs::AnnouncementSignatures>)
5431         -> Option<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> {
5432                 log_trace!(self.logger, "Handling channel resumption for channel {} with {} RAA, {} commitment update, {} pending forwards, {}broadcasting funding, {} channel ready, {} announcement",
5433                         &channel.context.channel_id(),
5434                         if raa.is_some() { "an" } else { "no" },
5435                         if commitment_update.is_some() { "a" } else { "no" }, pending_forwards.len(),
5436                         if funding_broadcastable.is_some() { "" } else { "not " },
5437                         if channel_ready.is_some() { "sending" } else { "without" },
5438                         if announcement_sigs.is_some() { "sending" } else { "without" });
5439
5440                 let mut htlc_forwards = None;
5441
5442                 let counterparty_node_id = channel.context.get_counterparty_node_id();
5443                 if !pending_forwards.is_empty() {
5444                         htlc_forwards = Some((channel.context.get_short_channel_id().unwrap_or(channel.context.outbound_scid_alias()),
5445                                 channel.context.get_funding_txo().unwrap(), channel.context.get_user_id(), pending_forwards));
5446                 }
5447
5448                 if let Some(msg) = channel_ready {
5449                         send_channel_ready!(self, pending_msg_events, channel, msg);
5450                 }
5451                 if let Some(msg) = announcement_sigs {
5452                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
5453                                 node_id: counterparty_node_id,
5454                                 msg,
5455                         });
5456                 }
5457
5458                 macro_rules! handle_cs { () => {
5459                         if let Some(update) = commitment_update {
5460                                 pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
5461                                         node_id: counterparty_node_id,
5462                                         updates: update,
5463                                 });
5464                         }
5465                 } }
5466                 macro_rules! handle_raa { () => {
5467                         if let Some(revoke_and_ack) = raa {
5468                                 pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
5469                                         node_id: counterparty_node_id,
5470                                         msg: revoke_and_ack,
5471                                 });
5472                         }
5473                 } }
5474                 match order {
5475                         RAACommitmentOrder::CommitmentFirst => {
5476                                 handle_cs!();
5477                                 handle_raa!();
5478                         },
5479                         RAACommitmentOrder::RevokeAndACKFirst => {
5480                                 handle_raa!();
5481                                 handle_cs!();
5482                         },
5483                 }
5484
5485                 if let Some(tx) = funding_broadcastable {
5486                         log_info!(self.logger, "Broadcasting funding transaction with txid {}", tx.txid());
5487                         self.tx_broadcaster.broadcast_transactions(&[&tx]);
5488                 }
5489
5490                 {
5491                         let mut pending_events = self.pending_events.lock().unwrap();
5492                         emit_channel_pending_event!(pending_events, channel);
5493                         emit_channel_ready_event!(pending_events, channel);
5494                 }
5495
5496                 htlc_forwards
5497         }
5498
5499         fn channel_monitor_updated(&self, funding_txo: &OutPoint, highest_applied_update_id: u64, counterparty_node_id: Option<&PublicKey>) {
5500                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
5501
5502                 let counterparty_node_id = match counterparty_node_id {
5503                         Some(cp_id) => cp_id.clone(),
5504                         None => {
5505                                 // TODO: Once we can rely on the counterparty_node_id from the
5506                                 // monitor event, this and the id_to_peer map should be removed.
5507                                 let id_to_peer = self.id_to_peer.lock().unwrap();
5508                                 match id_to_peer.get(&funding_txo.to_channel_id()) {
5509                                         Some(cp_id) => cp_id.clone(),
5510                                         None => return,
5511                                 }
5512                         }
5513                 };
5514                 let per_peer_state = self.per_peer_state.read().unwrap();
5515                 let mut peer_state_lock;
5516                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
5517                 if peer_state_mutex_opt.is_none() { return }
5518                 peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
5519                 let peer_state = &mut *peer_state_lock;
5520                 let channel =
5521                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&funding_txo.to_channel_id()) {
5522                                 chan
5523                         } else {
5524                                 let update_actions = peer_state.monitor_update_blocked_actions
5525                                         .remove(&funding_txo.to_channel_id()).unwrap_or(Vec::new());
5526                                 mem::drop(peer_state_lock);
5527                                 mem::drop(per_peer_state);
5528                                 self.handle_monitor_update_completion_actions(update_actions);
5529                                 return;
5530                         };
5531                 let remaining_in_flight =
5532                         if let Some(pending) = peer_state.in_flight_monitor_updates.get_mut(funding_txo) {
5533                                 pending.retain(|upd| upd.update_id > highest_applied_update_id);
5534                                 pending.len()
5535                         } else { 0 };
5536                 log_trace!(self.logger, "ChannelMonitor updated to {}. Current highest is {}. {} pending in-flight updates.",
5537                         highest_applied_update_id, channel.context.get_latest_monitor_update_id(),
5538                         remaining_in_flight);
5539                 if !channel.is_awaiting_monitor_update() || channel.context.get_latest_monitor_update_id() != highest_applied_update_id {
5540                         return;
5541                 }
5542                 handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, channel);
5543         }
5544
5545         /// Accepts a request to open a channel after a [`Event::OpenChannelRequest`].
5546         ///
5547         /// The `temporary_channel_id` parameter indicates which inbound channel should be accepted,
5548         /// and the `counterparty_node_id` parameter is the id of the peer which has requested to open
5549         /// the channel.
5550         ///
5551         /// The `user_channel_id` parameter will be provided back in
5552         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
5553         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
5554         ///
5555         /// Note that this method will return an error and reject the channel, if it requires support
5556         /// for zero confirmations. Instead, `accept_inbound_channel_from_trusted_peer_0conf` must be
5557         /// used to accept such channels.
5558         ///
5559         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
5560         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
5561         pub fn accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
5562                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, false, user_channel_id)
5563         }
5564
5565         /// Accepts a request to open a channel after a [`events::Event::OpenChannelRequest`], treating
5566         /// it as confirmed immediately.
5567         ///
5568         /// The `user_channel_id` parameter will be provided back in
5569         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
5570         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
5571         ///
5572         /// Unlike [`ChannelManager::accept_inbound_channel`], this method accepts the incoming channel
5573         /// and (if the counterparty agrees), enables forwarding of payments immediately.
5574         ///
5575         /// This fully trusts that the counterparty has honestly and correctly constructed the funding
5576         /// transaction and blindly assumes that it will eventually confirm.
5577         ///
5578         /// If it does not confirm before we decide to close the channel, or if the funding transaction
5579         /// does not pay to the correct script the correct amount, *you will lose funds*.
5580         ///
5581         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
5582         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
5583         pub fn accept_inbound_channel_from_trusted_peer_0conf(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
5584                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, true, user_channel_id)
5585         }
5586
5587         fn do_accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, accept_0conf: bool, user_channel_id: u128) -> Result<(), APIError> {
5588                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5589
5590                 let peers_without_funded_channels =
5591                         self.peers_without_funded_channels(|peer| { peer.total_channel_count() > 0 });
5592                 let per_peer_state = self.per_peer_state.read().unwrap();
5593                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5594                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
5595                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5596                 let peer_state = &mut *peer_state_lock;
5597                 let is_only_peer_channel = peer_state.total_channel_count() == 1;
5598
5599                 // Find (and remove) the channel in the unaccepted table. If it's not there, something weird is
5600                 // happening and return an error. N.B. that we create channel with an outbound SCID of zero so
5601                 // that we can delay allocating the SCID until after we're sure that the checks below will
5602                 // succeed.
5603                 let mut channel = match peer_state.inbound_channel_request_by_id.remove(temporary_channel_id) {
5604                         Some(unaccepted_channel) => {
5605                                 let best_block_height = self.best_block.read().unwrap().height();
5606                                 InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
5607                                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features,
5608                                         &unaccepted_channel.open_channel_msg, user_channel_id, &self.default_configuration, best_block_height,
5609                                         &self.logger, accept_0conf).map_err(|e| APIError::ChannelUnavailable { err: e.to_string() })
5610                         }
5611                         _ => Err(APIError::APIMisuseError { err: "No such channel awaiting to be accepted.".to_owned() })
5612                 }?;
5613
5614                 if accept_0conf {
5615                         // This should have been correctly configured by the call to InboundV1Channel::new.
5616                         debug_assert!(channel.context.minimum_depth().unwrap() == 0);
5617                 } else if channel.context.get_channel_type().requires_zero_conf() {
5618                         let send_msg_err_event = events::MessageSendEvent::HandleError {
5619                                 node_id: channel.context.get_counterparty_node_id(),
5620                                 action: msgs::ErrorAction::SendErrorMessage{
5621                                         msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "No zero confirmation channels accepted".to_owned(), }
5622                                 }
5623                         };
5624                         peer_state.pending_msg_events.push(send_msg_err_event);
5625                         return Err(APIError::APIMisuseError { err: "Please use accept_inbound_channel_from_trusted_peer_0conf to accept channels with zero confirmations.".to_owned() });
5626                 } else {
5627                         // If this peer already has some channels, a new channel won't increase our number of peers
5628                         // with unfunded channels, so as long as we aren't over the maximum number of unfunded
5629                         // channels per-peer we can accept channels from a peer with existing ones.
5630                         if is_only_peer_channel && peers_without_funded_channels >= MAX_UNFUNDED_CHANNEL_PEERS {
5631                                 let send_msg_err_event = events::MessageSendEvent::HandleError {
5632                                         node_id: channel.context.get_counterparty_node_id(),
5633                                         action: msgs::ErrorAction::SendErrorMessage{
5634                                                 msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "Have too many peers with unfunded channels, not accepting new ones".to_owned(), }
5635                                         }
5636                                 };
5637                                 peer_state.pending_msg_events.push(send_msg_err_event);
5638                                 return Err(APIError::APIMisuseError { err: "Too many peers with unfunded channels, refusing to accept new ones".to_owned() });
5639                         }
5640                 }
5641
5642                 // Now that we know we have a channel, assign an outbound SCID alias.
5643                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
5644                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
5645
5646                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
5647                         node_id: channel.context.get_counterparty_node_id(),
5648                         msg: channel.accept_inbound_channel(),
5649                 });
5650
5651                 peer_state.channel_by_id.insert(temporary_channel_id.clone(), ChannelPhase::UnfundedInboundV1(channel));
5652
5653                 Ok(())
5654         }
5655
5656         /// Gets the number of peers which match the given filter and do not have any funded, outbound,
5657         /// or 0-conf channels.
5658         ///
5659         /// The filter is called for each peer and provided with the number of unfunded, inbound, and
5660         /// non-0-conf channels we have with the peer.
5661         fn peers_without_funded_channels<Filter>(&self, maybe_count_peer: Filter) -> usize
5662         where Filter: Fn(&PeerState<SP>) -> bool {
5663                 let mut peers_without_funded_channels = 0;
5664                 let best_block_height = self.best_block.read().unwrap().height();
5665                 {
5666                         let peer_state_lock = self.per_peer_state.read().unwrap();
5667                         for (_, peer_mtx) in peer_state_lock.iter() {
5668                                 let peer = peer_mtx.lock().unwrap();
5669                                 if !maybe_count_peer(&*peer) { continue; }
5670                                 let num_unfunded_channels = Self::unfunded_channel_count(&peer, best_block_height);
5671                                 if num_unfunded_channels == peer.total_channel_count() {
5672                                         peers_without_funded_channels += 1;
5673                                 }
5674                         }
5675                 }
5676                 return peers_without_funded_channels;
5677         }
5678
5679         fn unfunded_channel_count(
5680                 peer: &PeerState<SP>, best_block_height: u32
5681         ) -> usize {
5682                 let mut num_unfunded_channels = 0;
5683                 for (_, phase) in peer.channel_by_id.iter() {
5684                         match phase {
5685                                 ChannelPhase::Funded(chan) => {
5686                                         // This covers non-zero-conf inbound `Channel`s that we are currently monitoring, but those
5687                                         // which have not yet had any confirmations on-chain.
5688                                         if !chan.context.is_outbound() && chan.context.minimum_depth().unwrap_or(1) != 0 &&
5689                                                 chan.context.get_funding_tx_confirmations(best_block_height) == 0
5690                                         {
5691                                                 num_unfunded_channels += 1;
5692                                         }
5693                                 },
5694                                 ChannelPhase::UnfundedInboundV1(chan) => {
5695                                         if chan.context.minimum_depth().unwrap_or(1) != 0 {
5696                                                 num_unfunded_channels += 1;
5697                                         }
5698                                 },
5699                                 ChannelPhase::UnfundedOutboundV1(_) => {
5700                                         // Outbound channels don't contribute to the unfunded count in the DoS context.
5701                                         continue;
5702                                 }
5703                         }
5704                 }
5705                 num_unfunded_channels + peer.inbound_channel_request_by_id.len()
5706         }
5707
5708         fn internal_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) -> Result<(), MsgHandleErrInternal> {
5709                 // Note that the ChannelManager is NOT re-persisted on disk after this, so any changes are
5710                 // likely to be lost on restart!
5711                 if msg.chain_hash != self.genesis_hash {
5712                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Unknown genesis block hash".to_owned(), msg.temporary_channel_id.clone()));
5713                 }
5714
5715                 if !self.default_configuration.accept_inbound_channels {
5716                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No inbound channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5717                 }
5718
5719                 // Get the number of peers with channels, but without funded ones. We don't care too much
5720                 // about peers that never open a channel, so we filter by peers that have at least one
5721                 // channel, and then limit the number of those with unfunded channels.
5722                 let channeled_peers_without_funding =
5723                         self.peers_without_funded_channels(|node| node.total_channel_count() > 0);
5724
5725                 let per_peer_state = self.per_peer_state.read().unwrap();
5726                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5727                     .ok_or_else(|| {
5728                                 debug_assert!(false);
5729                                 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())
5730                         })?;
5731                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5732                 let peer_state = &mut *peer_state_lock;
5733
5734                 // If this peer already has some channels, a new channel won't increase our number of peers
5735                 // with unfunded channels, so as long as we aren't over the maximum number of unfunded
5736                 // channels per-peer we can accept channels from a peer with existing ones.
5737                 if peer_state.total_channel_count() == 0 &&
5738                         channeled_peers_without_funding >= MAX_UNFUNDED_CHANNEL_PEERS &&
5739                         !self.default_configuration.manually_accept_inbound_channels
5740                 {
5741                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5742                                 "Have too many peers with unfunded channels, not accepting new ones".to_owned(),
5743                                 msg.temporary_channel_id.clone()));
5744                 }
5745
5746                 let best_block_height = self.best_block.read().unwrap().height();
5747                 if Self::unfunded_channel_count(peer_state, best_block_height) >= MAX_UNFUNDED_CHANS_PER_PEER {
5748                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5749                                 format!("Refusing more than {} unfunded channels.", MAX_UNFUNDED_CHANS_PER_PEER),
5750                                 msg.temporary_channel_id.clone()));
5751                 }
5752
5753                 let channel_id = msg.temporary_channel_id;
5754                 let channel_exists = peer_state.has_channel(&channel_id);
5755                 if channel_exists {
5756                         return Err(MsgHandleErrInternal::send_err_msg_no_close("temporary_channel_id collision for the same peer!".to_owned(), msg.temporary_channel_id.clone()));
5757                 }
5758
5759                 // If we're doing manual acceptance checks on the channel, then defer creation until we're sure we want to accept.
5760                 if self.default_configuration.manually_accept_inbound_channels {
5761                         let mut pending_events = self.pending_events.lock().unwrap();
5762                         pending_events.push_back((events::Event::OpenChannelRequest {
5763                                 temporary_channel_id: msg.temporary_channel_id.clone(),
5764                                 counterparty_node_id: counterparty_node_id.clone(),
5765                                 funding_satoshis: msg.funding_satoshis,
5766                                 push_msat: msg.push_msat,
5767                                 channel_type: msg.channel_type.clone().unwrap(),
5768                         }, None));
5769                         peer_state.inbound_channel_request_by_id.insert(channel_id, InboundChannelRequest {
5770                                 open_channel_msg: msg.clone(),
5771                                 ticks_remaining: UNACCEPTED_INBOUND_CHANNEL_AGE_LIMIT_TICKS,
5772                         });
5773                         return Ok(());
5774                 }
5775
5776                 // Otherwise create the channel right now.
5777                 let mut random_bytes = [0u8; 16];
5778                 random_bytes.copy_from_slice(&self.entropy_source.get_secure_random_bytes()[..16]);
5779                 let user_channel_id = u128::from_be_bytes(random_bytes);
5780                 let mut channel = match InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
5781                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features, msg, user_channel_id,
5782                         &self.default_configuration, best_block_height, &self.logger, /*is_0conf=*/false)
5783                 {
5784                         Err(e) => {
5785                                 return Err(MsgHandleErrInternal::from_chan_no_close(e, msg.temporary_channel_id));
5786                         },
5787                         Ok(res) => res
5788                 };
5789
5790                 let channel_type = channel.context.get_channel_type();
5791                 if channel_type.requires_zero_conf() {
5792                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No zero confirmation channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5793                 }
5794                 if channel_type.requires_anchors_zero_fee_htlc_tx() {
5795                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No channels with anchor outputs accepted".to_owned(), msg.temporary_channel_id.clone()));
5796                 }
5797
5798                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
5799                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
5800
5801                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
5802                         node_id: counterparty_node_id.clone(),
5803                         msg: channel.accept_inbound_channel(),
5804                 });
5805                 peer_state.channel_by_id.insert(channel_id, ChannelPhase::UnfundedInboundV1(channel));
5806                 Ok(())
5807         }
5808
5809         fn internal_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) -> Result<(), MsgHandleErrInternal> {
5810                 // Note that the ChannelManager is NOT re-persisted on disk after this, so any changes are
5811                 // likely to be lost on restart!
5812                 let (value, output_script, user_id) = {
5813                         let per_peer_state = self.per_peer_state.read().unwrap();
5814                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5815                                 .ok_or_else(|| {
5816                                         debug_assert!(false);
5817                                         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)
5818                                 })?;
5819                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5820                         let peer_state = &mut *peer_state_lock;
5821                         match peer_state.channel_by_id.entry(msg.temporary_channel_id) {
5822                                 hash_map::Entry::Occupied(mut phase) => {
5823                                         match phase.get_mut() {
5824                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
5825                                                         try_chan_phase_entry!(self, chan.accept_channel(&msg, &self.default_configuration.channel_handshake_limits, &peer_state.latest_features), phase);
5826                                                         (chan.context.get_value_satoshis(), chan.context.get_funding_redeemscript().to_v0_p2wsh(), chan.context.get_user_id())
5827                                                 },
5828                                                 _ => {
5829                                                         return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got an unexpected accept_channel message from peer with counterparty_node_id {}", counterparty_node_id), msg.temporary_channel_id));
5830                                                 }
5831                                         }
5832                                 },
5833                                 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))
5834                         }
5835                 };
5836                 let mut pending_events = self.pending_events.lock().unwrap();
5837                 pending_events.push_back((events::Event::FundingGenerationReady {
5838                         temporary_channel_id: msg.temporary_channel_id,
5839                         counterparty_node_id: *counterparty_node_id,
5840                         channel_value_satoshis: value,
5841                         output_script,
5842                         user_channel_id: user_id,
5843                 }, None));
5844                 Ok(())
5845         }
5846
5847         fn internal_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) -> Result<(), MsgHandleErrInternal> {
5848                 let best_block = *self.best_block.read().unwrap();
5849
5850                 let per_peer_state = self.per_peer_state.read().unwrap();
5851                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5852                         .ok_or_else(|| {
5853                                 debug_assert!(false);
5854                                 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)
5855                         })?;
5856
5857                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5858                 let peer_state = &mut *peer_state_lock;
5859                 let (chan, funding_msg, monitor) =
5860                         match peer_state.channel_by_id.remove(&msg.temporary_channel_id) {
5861                                 Some(ChannelPhase::UnfundedInboundV1(inbound_chan)) => {
5862                                         match inbound_chan.funding_created(msg, best_block, &self.signer_provider, &self.logger) {
5863                                                 Ok(res) => res,
5864                                                 Err((mut inbound_chan, err)) => {
5865                                                         // We've already removed this inbound channel from the map in `PeerState`
5866                                                         // above so at this point we just need to clean up any lingering entries
5867                                                         // concerning this channel as it is safe to do so.
5868                                                         update_maps_on_chan_removal!(self, &inbound_chan.context);
5869                                                         let user_id = inbound_chan.context.get_user_id();
5870                                                         let shutdown_res = inbound_chan.context.force_shutdown(false);
5871                                                         return Err(MsgHandleErrInternal::from_finish_shutdown(format!("{}", err),
5872                                                                 msg.temporary_channel_id, user_id, shutdown_res, None, inbound_chan.context.get_value_satoshis()));
5873                                                 },
5874                                         }
5875                                 },
5876                                 Some(ChannelPhase::Funded(_)) | Some(ChannelPhase::UnfundedOutboundV1(_)) => {
5877                                         return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got an unexpected funding_created message from peer with counterparty_node_id {}", counterparty_node_id), msg.temporary_channel_id));
5878                                 },
5879                                 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))
5880                         };
5881
5882                 match peer_state.channel_by_id.entry(funding_msg.channel_id) {
5883                         hash_map::Entry::Occupied(_) => {
5884                                 Err(MsgHandleErrInternal::send_err_msg_no_close("Already had channel with the new channel_id".to_owned(), funding_msg.channel_id))
5885                         },
5886                         hash_map::Entry::Vacant(e) => {
5887                                 let mut id_to_peer_lock = self.id_to_peer.lock().unwrap();
5888                                 match id_to_peer_lock.entry(chan.context.channel_id()) {
5889                                         hash_map::Entry::Occupied(_) => {
5890                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close(
5891                                                         "The funding_created message had the same funding_txid as an existing channel - funding is not possible".to_owned(),
5892                                                         funding_msg.channel_id))
5893                                         },
5894                                         hash_map::Entry::Vacant(i_e) => {
5895                                                 let monitor_res = self.chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor);
5896                                                 if let Ok(persist_state) = monitor_res {
5897                                                         i_e.insert(chan.context.get_counterparty_node_id());
5898                                                         mem::drop(id_to_peer_lock);
5899
5900                                                         // There's no problem signing a counterparty's funding transaction if our monitor
5901                                                         // hasn't persisted to disk yet - we can't lose money on a transaction that we haven't
5902                                                         // accepted payment from yet. We do, however, need to wait to send our channel_ready
5903                                                         // until we have persisted our monitor.
5904                                                         let new_channel_id = funding_msg.channel_id;
5905                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
5906                                                                 node_id: counterparty_node_id.clone(),
5907                                                                 msg: funding_msg,
5908                                                         });
5909
5910                                                         if let ChannelPhase::Funded(chan) = e.insert(ChannelPhase::Funded(chan)) {
5911                                                                 handle_new_monitor_update!(self, persist_state, peer_state_lock, peer_state,
5912                                                                         per_peer_state, chan, MANUALLY_REMOVING_INITIAL_MONITOR,
5913                                                                         { peer_state.channel_by_id.remove(&new_channel_id) });
5914                                                         } else {
5915                                                                 unreachable!("This must be a funded channel as we just inserted it.");
5916                                                         }
5917                                                         Ok(())
5918                                                 } else {
5919                                                         log_error!(self.logger, "Persisting initial ChannelMonitor failed, implying the funding outpoint was duplicated");
5920                                                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5921                                                                 "The funding_created message had the same funding_txid as an existing channel - funding is not possible".to_owned(),
5922                                                                 funding_msg.channel_id));
5923                                                 }
5924                                         }
5925                                 }
5926                         }
5927                 }
5928         }
5929
5930         fn internal_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) -> Result<(), MsgHandleErrInternal> {
5931                 let best_block = *self.best_block.read().unwrap();
5932                 let per_peer_state = self.per_peer_state.read().unwrap();
5933                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5934                         .ok_or_else(|| {
5935                                 debug_assert!(false);
5936                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5937                         })?;
5938
5939                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5940                 let peer_state = &mut *peer_state_lock;
5941                 match peer_state.channel_by_id.entry(msg.channel_id) {
5942                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
5943                                 match chan_phase_entry.get_mut() {
5944                                         ChannelPhase::Funded(ref mut chan) => {
5945                                                 let monitor = try_chan_phase_entry!(self,
5946                                                         chan.funding_signed(&msg, best_block, &self.signer_provider, &self.logger), chan_phase_entry);
5947                                                 if let Ok(persist_status) = self.chain_monitor.watch_channel(chan.context.get_funding_txo().unwrap(), monitor) {
5948                                                         handle_new_monitor_update!(self, persist_status, peer_state_lock, peer_state, per_peer_state, chan_phase_entry, INITIAL_MONITOR);
5949                                                         Ok(())
5950                                                 } else {
5951                                                         try_chan_phase_entry!(self, Err(ChannelError::Close("Channel funding outpoint was a duplicate".to_owned())), chan_phase_entry)
5952                                                 }
5953                                         },
5954                                         _ => {
5955                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id));
5956                                         },
5957                                 }
5958                         },
5959                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
5960                 }
5961         }
5962
5963         fn internal_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) -> Result<(), MsgHandleErrInternal> {
5964                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
5965                 // closing a channel), so any changes are likely to be lost on restart!
5966                 let per_peer_state = self.per_peer_state.read().unwrap();
5967                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5968                         .ok_or_else(|| {
5969                                 debug_assert!(false);
5970                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5971                         })?;
5972                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5973                 let peer_state = &mut *peer_state_lock;
5974                 match peer_state.channel_by_id.entry(msg.channel_id) {
5975                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
5976                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
5977                                         let announcement_sigs_opt = try_chan_phase_entry!(self, chan.channel_ready(&msg, &self.node_signer,
5978                                                 self.genesis_hash.clone(), &self.default_configuration, &self.best_block.read().unwrap(), &self.logger), chan_phase_entry);
5979                                         if let Some(announcement_sigs) = announcement_sigs_opt {
5980                                                 log_trace!(self.logger, "Sending announcement_signatures for channel {}", chan.context.channel_id());
5981                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
5982                                                         node_id: counterparty_node_id.clone(),
5983                                                         msg: announcement_sigs,
5984                                                 });
5985                                         } else if chan.context.is_usable() {
5986                                                 // If we're sending an announcement_signatures, we'll send the (public)
5987                                                 // channel_update after sending a channel_announcement when we receive our
5988                                                 // counterparty's announcement_signatures. Thus, we only bother to send a
5989                                                 // channel_update here if the channel is not public, i.e. we're not sending an
5990                                                 // announcement_signatures.
5991                                                 log_trace!(self.logger, "Sending private initial channel_update for our counterparty on channel {}", chan.context.channel_id());
5992                                                 if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
5993                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
5994                                                                 node_id: counterparty_node_id.clone(),
5995                                                                 msg,
5996                                                         });
5997                                                 }
5998                                         }
5999
6000                                         {
6001                                                 let mut pending_events = self.pending_events.lock().unwrap();
6002                                                 emit_channel_ready_event!(pending_events, chan);
6003                                         }
6004
6005                                         Ok(())
6006                                 } else {
6007                                         try_chan_phase_entry!(self, Err(ChannelError::Close(
6008                                                 "Got a channel_ready message for an unfunded channel!".into())), chan_phase_entry)
6009                                 }
6010                         },
6011                         hash_map::Entry::Vacant(_) => {
6012                                 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))
6013                         }
6014                 }
6015         }
6016
6017         fn internal_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) -> Result<(), MsgHandleErrInternal> {
6018                 let mut dropped_htlcs: Vec<(HTLCSource, PaymentHash)>;
6019                 let result: Result<(), _> = loop {
6020                         let per_peer_state = self.per_peer_state.read().unwrap();
6021                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6022                                 .ok_or_else(|| {
6023                                         debug_assert!(false);
6024                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6025                                 })?;
6026                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6027                         let peer_state = &mut *peer_state_lock;
6028                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(msg.channel_id.clone()) {
6029                                 let phase = chan_phase_entry.get_mut();
6030                                 match phase {
6031                                         ChannelPhase::Funded(chan) => {
6032                                                 if !chan.received_shutdown() {
6033                                                         log_info!(self.logger, "Received a shutdown message from our counterparty for channel {}{}.",
6034                                                                 msg.channel_id,
6035                                                                 if chan.sent_shutdown() { " after we initiated shutdown" } else { "" });
6036                                                 }
6037
6038                                                 let funding_txo_opt = chan.context.get_funding_txo();
6039                                                 let (shutdown, monitor_update_opt, htlcs) = try_chan_phase_entry!(self,
6040                                                         chan.shutdown(&self.signer_provider, &peer_state.latest_features, &msg), chan_phase_entry);
6041                                                 dropped_htlcs = htlcs;
6042
6043                                                 if let Some(msg) = shutdown {
6044                                                         // We can send the `shutdown` message before updating the `ChannelMonitor`
6045                                                         // here as we don't need the monitor update to complete until we send a
6046                                                         // `shutdown_signed`, which we'll delay if we're pending a monitor update.
6047                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
6048                                                                 node_id: *counterparty_node_id,
6049                                                                 msg,
6050                                                         });
6051                                                 }
6052                                                 // Update the monitor with the shutdown script if necessary.
6053                                                 if let Some(monitor_update) = monitor_update_opt {
6054                                                         handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
6055                                                                 peer_state_lock, peer_state, per_peer_state, chan_phase_entry);
6056                                                 }
6057                                                 break Ok(());
6058                                         },
6059                                         ChannelPhase::UnfundedInboundV1(_) | ChannelPhase::UnfundedOutboundV1(_) => {
6060                                                 let context = phase.context_mut();
6061                                                 log_error!(self.logger, "Immediately closing unfunded channel {} as peer asked to cooperatively shut it down (which is unnecessary)", &msg.channel_id);
6062                                                 self.issue_channel_close_events(&context, ClosureReason::CounterpartyCoopClosedUnfundedChannel);
6063                                                 let mut chan = remove_channel_phase!(self, chan_phase_entry);
6064                                                 self.finish_force_close_channel(chan.context_mut().force_shutdown(false));
6065                                                 return Ok(());
6066                                         },
6067                                 }
6068                         } else {
6069                                 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))
6070                         }
6071                 };
6072                 for htlc_source in dropped_htlcs.drain(..) {
6073                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id: msg.channel_id };
6074                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
6075                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
6076                 }
6077
6078                 result
6079         }
6080
6081         fn internal_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) -> Result<(), MsgHandleErrInternal> {
6082                 let per_peer_state = self.per_peer_state.read().unwrap();
6083                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6084                         .ok_or_else(|| {
6085                                 debug_assert!(false);
6086                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6087                         })?;
6088                 let (tx, chan_option) = {
6089                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6090                         let peer_state = &mut *peer_state_lock;
6091                         match peer_state.channel_by_id.entry(msg.channel_id.clone()) {
6092                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6093                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6094                                                 let (closing_signed, tx) = try_chan_phase_entry!(self, chan.closing_signed(&self.fee_estimator, &msg), chan_phase_entry);
6095                                                 if let Some(msg) = closing_signed {
6096                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
6097                                                                 node_id: counterparty_node_id.clone(),
6098                                                                 msg,
6099                                                         });
6100                                                 }
6101                                                 if tx.is_some() {
6102                                                         // We're done with this channel, we've got a signed closing transaction and
6103                                                         // will send the closing_signed back to the remote peer upon return. This
6104                                                         // also implies there are no pending HTLCs left on the channel, so we can
6105                                                         // fully delete it from tracking (the channel monitor is still around to
6106                                                         // watch for old state broadcasts)!
6107                                                         (tx, Some(remove_channel_phase!(self, chan_phase_entry)))
6108                                                 } else { (tx, None) }
6109                                         } else {
6110                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6111                                                         "Got a closing_signed message for an unfunded channel!".into())), chan_phase_entry);
6112                                         }
6113                                 },
6114                                 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))
6115                         }
6116                 };
6117                 if let Some(broadcast_tx) = tx {
6118                         log_info!(self.logger, "Broadcasting {}", log_tx!(broadcast_tx));
6119                         self.tx_broadcaster.broadcast_transactions(&[&broadcast_tx]);
6120                 }
6121                 if let Some(ChannelPhase::Funded(chan)) = chan_option {
6122                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6123                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6124                                 let peer_state = &mut *peer_state_lock;
6125                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6126                                         msg: update
6127                                 });
6128                         }
6129                         self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
6130                 }
6131                 Ok(())
6132         }
6133
6134         fn internal_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) -> Result<(), MsgHandleErrInternal> {
6135                 //TODO: BOLT 4 points out a specific attack where a peer may re-send an onion packet and
6136                 //determine the state of the payment based on our response/if we forward anything/the time
6137                 //we take to respond. We should take care to avoid allowing such an attack.
6138                 //
6139                 //TODO: There exists a further attack where a node may garble the onion data, forward it to
6140                 //us repeatedly garbled in different ways, and compare our error messages, which are
6141                 //encrypted with the same key. It's not immediately obvious how to usefully exploit that,
6142                 //but we should prevent it anyway.
6143
6144                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
6145                 // closing a channel), so any changes are likely to be lost on restart!
6146
6147                 let decoded_hop_res = self.decode_update_add_htlc_onion(msg);
6148                 let per_peer_state = self.per_peer_state.read().unwrap();
6149                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6150                         .ok_or_else(|| {
6151                                 debug_assert!(false);
6152                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6153                         })?;
6154                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6155                 let peer_state = &mut *peer_state_lock;
6156                 match peer_state.channel_by_id.entry(msg.channel_id) {
6157                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6158                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6159                                         let pending_forward_info = match decoded_hop_res {
6160                                                 Ok((next_hop, shared_secret, next_packet_pk_opt)) =>
6161                                                         self.construct_pending_htlc_status(msg, shared_secret, next_hop,
6162                                                                 chan.context.config().accept_underpaying_htlcs, next_packet_pk_opt),
6163                                                 Err(e) => PendingHTLCStatus::Fail(e)
6164                                         };
6165                                         let create_pending_htlc_status = |chan: &Channel<SP>, pending_forward_info: PendingHTLCStatus, error_code: u16| {
6166                                                 // If the update_add is completely bogus, the call will Err and we will close,
6167                                                 // but if we've sent a shutdown and they haven't acknowledged it yet, we just
6168                                                 // want to reject the new HTLC and fail it backwards instead of forwarding.
6169                                                 match pending_forward_info {
6170                                                         PendingHTLCStatus::Forward(PendingHTLCInfo { ref incoming_shared_secret, .. }) => {
6171                                                                 let reason = if (error_code & 0x1000) != 0 {
6172                                                                         let (real_code, error_data) = self.get_htlc_inbound_temp_fail_err_and_data(error_code, chan);
6173                                                                         HTLCFailReason::reason(real_code, error_data)
6174                                                                 } else {
6175                                                                         HTLCFailReason::from_failure_code(error_code)
6176                                                                 }.get_encrypted_failure_packet(incoming_shared_secret, &None);
6177                                                                 let msg = msgs::UpdateFailHTLC {
6178                                                                         channel_id: msg.channel_id,
6179                                                                         htlc_id: msg.htlc_id,
6180                                                                         reason
6181                                                                 };
6182                                                                 PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msg))
6183                                                         },
6184                                                         _ => pending_forward_info
6185                                                 }
6186                                         };
6187                                         try_chan_phase_entry!(self, chan.update_add_htlc(&msg, pending_forward_info, create_pending_htlc_status, &self.fee_estimator, &self.logger), chan_phase_entry);
6188                                 } else {
6189                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6190                                                 "Got an update_add_htlc message for an unfunded channel!".into())), chan_phase_entry);
6191                                 }
6192                         },
6193                         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))
6194                 }
6195                 Ok(())
6196         }
6197
6198         fn internal_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) -> Result<(), MsgHandleErrInternal> {
6199                 let funding_txo;
6200                 let (htlc_source, forwarded_htlc_value) = {
6201                         let per_peer_state = self.per_peer_state.read().unwrap();
6202                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6203                                 .ok_or_else(|| {
6204                                         debug_assert!(false);
6205                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6206                                 })?;
6207                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6208                         let peer_state = &mut *peer_state_lock;
6209                         match peer_state.channel_by_id.entry(msg.channel_id) {
6210                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6211                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6212                                                 let res = try_chan_phase_entry!(self, chan.update_fulfill_htlc(&msg), chan_phase_entry);
6213                                                 if let HTLCSource::PreviousHopData(prev_hop) = &res.0 {
6214                                                         peer_state.actions_blocking_raa_monitor_updates.entry(msg.channel_id)
6215                                                                 .or_insert_with(Vec::new)
6216                                                                 .push(RAAMonitorUpdateBlockingAction::from_prev_hop_data(&prev_hop));
6217                                                 }
6218                                                 // Note that we do not need to push an `actions_blocking_raa_monitor_updates`
6219                                                 // entry here, even though we *do* need to block the next RAA monitor update.
6220                                                 // We do this instead in the `claim_funds_internal` by attaching a
6221                                                 // `ReleaseRAAChannelMonitorUpdate` action to the event generated when the
6222                                                 // outbound HTLC is claimed. This is guaranteed to all complete before we
6223                                                 // process the RAA as messages are processed from single peers serially.
6224                                                 funding_txo = chan.context.get_funding_txo().expect("We won't accept a fulfill until funded");
6225                                                 res
6226                                         } else {
6227                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6228                                                         "Got an update_fulfill_htlc message for an unfunded channel!".into())), chan_phase_entry);
6229                                         }
6230                                 },
6231                                 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))
6232                         }
6233                 };
6234                 self.claim_funds_internal(htlc_source, msg.payment_preimage.clone(), Some(forwarded_htlc_value), false, Some(*counterparty_node_id), funding_txo);
6235                 Ok(())
6236         }
6237
6238         fn internal_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) -> Result<(), MsgHandleErrInternal> {
6239                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
6240                 // closing a channel), so any changes are likely to be lost on restart!
6241                 let per_peer_state = self.per_peer_state.read().unwrap();
6242                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6243                         .ok_or_else(|| {
6244                                 debug_assert!(false);
6245                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6246                         })?;
6247                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6248                 let peer_state = &mut *peer_state_lock;
6249                 match peer_state.channel_by_id.entry(msg.channel_id) {
6250                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6251                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6252                                         try_chan_phase_entry!(self, chan.update_fail_htlc(&msg, HTLCFailReason::from_msg(msg)), chan_phase_entry);
6253                                 } else {
6254                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6255                                                 "Got an update_fail_htlc message for an unfunded channel!".into())), chan_phase_entry);
6256                                 }
6257                         },
6258                         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))
6259                 }
6260                 Ok(())
6261         }
6262
6263         fn internal_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) -> Result<(), MsgHandleErrInternal> {
6264                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
6265                 // closing a channel), so any changes are likely to be lost on restart!
6266                 let per_peer_state = self.per_peer_state.read().unwrap();
6267                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6268                         .ok_or_else(|| {
6269                                 debug_assert!(false);
6270                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6271                         })?;
6272                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6273                 let peer_state = &mut *peer_state_lock;
6274                 match peer_state.channel_by_id.entry(msg.channel_id) {
6275                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6276                                 if (msg.failure_code & 0x8000) == 0 {
6277                                         let chan_err: ChannelError = ChannelError::Close("Got update_fail_malformed_htlc with BADONION not set".to_owned());
6278                                         try_chan_phase_entry!(self, Err(chan_err), chan_phase_entry);
6279                                 }
6280                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6281                                         try_chan_phase_entry!(self, chan.update_fail_malformed_htlc(&msg, HTLCFailReason::reason(msg.failure_code, msg.sha256_of_onion.to_vec())), chan_phase_entry);
6282                                 } else {
6283                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6284                                                 "Got an update_fail_malformed_htlc message for an unfunded channel!".into())), chan_phase_entry);
6285                                 }
6286                                 Ok(())
6287                         },
6288                         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))
6289                 }
6290         }
6291
6292         fn internal_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) -> Result<(), MsgHandleErrInternal> {
6293                 let per_peer_state = self.per_peer_state.read().unwrap();
6294                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6295                         .ok_or_else(|| {
6296                                 debug_assert!(false);
6297                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6298                         })?;
6299                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6300                 let peer_state = &mut *peer_state_lock;
6301                 match peer_state.channel_by_id.entry(msg.channel_id) {
6302                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6303                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6304                                         let funding_txo = chan.context.get_funding_txo();
6305                                         let monitor_update_opt = try_chan_phase_entry!(self, chan.commitment_signed(&msg, &self.logger), chan_phase_entry);
6306                                         if let Some(monitor_update) = monitor_update_opt {
6307                                                 handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update, peer_state_lock,
6308                                                         peer_state, per_peer_state, chan_phase_entry);
6309                                         }
6310                                         Ok(())
6311                                 } else {
6312                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6313                                                 "Got a commitment_signed message for an unfunded channel!".into())), chan_phase_entry);
6314                                 }
6315                         },
6316                         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))
6317                 }
6318         }
6319
6320         #[inline]
6321         fn forward_htlcs(&self, per_source_pending_forwards: &mut [(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)]) {
6322                 for &mut (prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, ref mut pending_forwards) in per_source_pending_forwards {
6323                         let mut push_forward_event = false;
6324                         let mut new_intercept_events = VecDeque::new();
6325                         let mut failed_intercept_forwards = Vec::new();
6326                         if !pending_forwards.is_empty() {
6327                                 for (forward_info, prev_htlc_id) in pending_forwards.drain(..) {
6328                                         let scid = match forward_info.routing {
6329                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
6330                                                 PendingHTLCRouting::Receive { .. } => 0,
6331                                                 PendingHTLCRouting::ReceiveKeysend { .. } => 0,
6332                                         };
6333                                         // Pull this now to avoid introducing a lock order with `forward_htlcs`.
6334                                         let is_our_scid = self.short_to_chan_info.read().unwrap().contains_key(&scid);
6335
6336                                         let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
6337                                         let forward_htlcs_empty = forward_htlcs.is_empty();
6338                                         match forward_htlcs.entry(scid) {
6339                                                 hash_map::Entry::Occupied(mut entry) => {
6340                                                         entry.get_mut().push(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
6341                                                                 prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info }));
6342                                                 },
6343                                                 hash_map::Entry::Vacant(entry) => {
6344                                                         if !is_our_scid && forward_info.incoming_amt_msat.is_some() &&
6345                                                            fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, scid, &self.genesis_hash)
6346                                                         {
6347                                                                 let intercept_id = InterceptId(Sha256::hash(&forward_info.incoming_shared_secret).into_inner());
6348                                                                 let mut pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
6349                                                                 match pending_intercepts.entry(intercept_id) {
6350                                                                         hash_map::Entry::Vacant(entry) => {
6351                                                                                 new_intercept_events.push_back((events::Event::HTLCIntercepted {
6352                                                                                         requested_next_hop_scid: scid,
6353                                                                                         payment_hash: forward_info.payment_hash,
6354                                                                                         inbound_amount_msat: forward_info.incoming_amt_msat.unwrap(),
6355                                                                                         expected_outbound_amount_msat: forward_info.outgoing_amt_msat,
6356                                                                                         intercept_id
6357                                                                                 }, None));
6358                                                                                 entry.insert(PendingAddHTLCInfo {
6359                                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info });
6360                                                                         },
6361                                                                         hash_map::Entry::Occupied(_) => {
6362                                                                                 log_info!(self.logger, "Failed to forward incoming HTLC: detected duplicate intercepted payment over short channel id {}", scid);
6363                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
6364                                                                                         short_channel_id: prev_short_channel_id,
6365                                                                                         user_channel_id: Some(prev_user_channel_id),
6366                                                                                         outpoint: prev_funding_outpoint,
6367                                                                                         htlc_id: prev_htlc_id,
6368                                                                                         incoming_packet_shared_secret: forward_info.incoming_shared_secret,
6369                                                                                         phantom_shared_secret: None,
6370                                                                                 });
6371
6372                                                                                 failed_intercept_forwards.push((htlc_source, forward_info.payment_hash,
6373                                                                                                 HTLCFailReason::from_failure_code(0x4000 | 10),
6374                                                                                                 HTLCDestination::InvalidForward { requested_forward_scid: scid },
6375                                                                                 ));
6376                                                                         }
6377                                                                 }
6378                                                         } else {
6379                                                                 // We don't want to generate a PendingHTLCsForwardable event if only intercepted
6380                                                                 // payments are being processed.
6381                                                                 if forward_htlcs_empty {
6382                                                                         push_forward_event = true;
6383                                                                 }
6384                                                                 entry.insert(vec!(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
6385                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info })));
6386                                                         }
6387                                                 }
6388                                         }
6389                                 }
6390                         }
6391
6392                         for (htlc_source, payment_hash, failure_reason, destination) in failed_intercept_forwards.drain(..) {
6393                                 self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
6394                         }
6395
6396                         if !new_intercept_events.is_empty() {
6397                                 let mut events = self.pending_events.lock().unwrap();
6398                                 events.append(&mut new_intercept_events);
6399                         }
6400                         if push_forward_event { self.push_pending_forwards_ev() }
6401                 }
6402         }
6403
6404         fn push_pending_forwards_ev(&self) {
6405                 let mut pending_events = self.pending_events.lock().unwrap();
6406                 let is_processing_events = self.pending_events_processor.load(Ordering::Acquire);
6407                 let num_forward_events = pending_events.iter().filter(|(ev, _)|
6408                         if let events::Event::PendingHTLCsForwardable { .. } = ev { true } else { false }
6409                 ).count();
6410                 // We only want to push a PendingHTLCsForwardable event if no others are queued. Processing
6411                 // events is done in batches and they are not removed until we're done processing each
6412                 // batch. Since handling a `PendingHTLCsForwardable` event will call back into the
6413                 // `ChannelManager`, we'll still see the original forwarding event not removed. Phantom
6414                 // payments will need an additional forwarding event before being claimed to make them look
6415                 // real by taking more time.
6416                 if (is_processing_events && num_forward_events <= 1) || num_forward_events < 1 {
6417                         pending_events.push_back((Event::PendingHTLCsForwardable {
6418                                 time_forwardable: Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS),
6419                         }, None));
6420                 }
6421         }
6422
6423         /// Checks whether [`ChannelMonitorUpdate`]s generated by the receipt of a remote
6424         /// [`msgs::RevokeAndACK`] should be held for the given channel until some other action
6425         /// completes. Note that this needs to happen in the same [`PeerState`] mutex as any release of
6426         /// the [`ChannelMonitorUpdate`] in question.
6427         fn raa_monitor_updates_held(&self,
6428                 actions_blocking_raa_monitor_updates: &BTreeMap<ChannelId, Vec<RAAMonitorUpdateBlockingAction>>,
6429                 channel_funding_outpoint: OutPoint, counterparty_node_id: PublicKey
6430         ) -> bool {
6431                 actions_blocking_raa_monitor_updates
6432                         .get(&channel_funding_outpoint.to_channel_id()).map(|v| !v.is_empty()).unwrap_or(false)
6433                 || self.pending_events.lock().unwrap().iter().any(|(_, action)| {
6434                         action == &Some(EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
6435                                 channel_funding_outpoint,
6436                                 counterparty_node_id,
6437                         })
6438                 })
6439         }
6440
6441         #[cfg(any(test, feature = "_test_utils"))]
6442         pub(crate) fn test_raa_monitor_updates_held(&self,
6443                 counterparty_node_id: PublicKey, channel_id: ChannelId
6444         ) -> bool {
6445                 let per_peer_state = self.per_peer_state.read().unwrap();
6446                 if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
6447                         let mut peer_state_lck = peer_state_mtx.lock().unwrap();
6448                         let peer_state = &mut *peer_state_lck;
6449
6450                         if let Some(chan) = peer_state.channel_by_id.get(&channel_id) {
6451                                 return self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
6452                                         chan.context().get_funding_txo().unwrap(), counterparty_node_id);
6453                         }
6454                 }
6455                 false
6456         }
6457
6458         fn internal_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) -> Result<(), MsgHandleErrInternal> {
6459                 let (htlcs_to_fail, res) = {
6460                         let per_peer_state = self.per_peer_state.read().unwrap();
6461                         let mut peer_state_lock = per_peer_state.get(counterparty_node_id)
6462                                 .ok_or_else(|| {
6463                                         debug_assert!(false);
6464                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6465                                 }).map(|mtx| mtx.lock().unwrap())?;
6466                         let peer_state = &mut *peer_state_lock;
6467                         match peer_state.channel_by_id.entry(msg.channel_id) {
6468                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6469                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6470                                                 let funding_txo_opt = chan.context.get_funding_txo();
6471                                                 let mon_update_blocked = if let Some(funding_txo) = funding_txo_opt {
6472                                                         self.raa_monitor_updates_held(
6473                                                                 &peer_state.actions_blocking_raa_monitor_updates, funding_txo,
6474                                                                 *counterparty_node_id)
6475                                                 } else { false };
6476                                                 let (htlcs_to_fail, monitor_update_opt) = try_chan_phase_entry!(self,
6477                                                         chan.revoke_and_ack(&msg, &self.fee_estimator, &self.logger, mon_update_blocked), chan_phase_entry);
6478                                                 if let Some(monitor_update) = monitor_update_opt {
6479                                                         let funding_txo = funding_txo_opt
6480                                                                 .expect("Funding outpoint must have been set for RAA handling to succeed");
6481                                                         handle_new_monitor_update!(self, funding_txo, monitor_update,
6482                                                                 peer_state_lock, peer_state, per_peer_state, chan_phase_entry);
6483                                                 }
6484                                                 (htlcs_to_fail, Ok(()))
6485                                         } else {
6486                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6487                                                         "Got a revoke_and_ack message for an unfunded channel!".into())), chan_phase_entry);
6488                                         }
6489                                 },
6490                                 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))
6491                         }
6492                 };
6493                 self.fail_holding_cell_htlcs(htlcs_to_fail, msg.channel_id, counterparty_node_id);
6494                 res
6495         }
6496
6497         fn internal_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) -> Result<(), MsgHandleErrInternal> {
6498                 let per_peer_state = self.per_peer_state.read().unwrap();
6499                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6500                         .ok_or_else(|| {
6501                                 debug_assert!(false);
6502                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6503                         })?;
6504                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6505                 let peer_state = &mut *peer_state_lock;
6506                 match peer_state.channel_by_id.entry(msg.channel_id) {
6507                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6508                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6509                                         try_chan_phase_entry!(self, chan.update_fee(&self.fee_estimator, &msg, &self.logger), chan_phase_entry);
6510                                 } else {
6511                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6512                                                 "Got an update_fee message for an unfunded channel!".into())), chan_phase_entry);
6513                                 }
6514                         },
6515                         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))
6516                 }
6517                 Ok(())
6518         }
6519
6520         fn internal_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) -> Result<(), MsgHandleErrInternal> {
6521                 let per_peer_state = self.per_peer_state.read().unwrap();
6522                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6523                         .ok_or_else(|| {
6524                                 debug_assert!(false);
6525                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6526                         })?;
6527                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6528                 let peer_state = &mut *peer_state_lock;
6529                 match peer_state.channel_by_id.entry(msg.channel_id) {
6530                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6531                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6532                                         if !chan.context.is_usable() {
6533                                                 return Err(MsgHandleErrInternal::from_no_close(LightningError{err: "Got an announcement_signatures before we were ready for it".to_owned(), action: msgs::ErrorAction::IgnoreError}));
6534                                         }
6535
6536                                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
6537                                                 msg: try_chan_phase_entry!(self, chan.announcement_signatures(
6538                                                         &self.node_signer, self.genesis_hash.clone(), self.best_block.read().unwrap().height(),
6539                                                         msg, &self.default_configuration
6540                                                 ), chan_phase_entry),
6541                                                 // Note that announcement_signatures fails if the channel cannot be announced,
6542                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
6543                                                 update_msg: Some(self.get_channel_update_for_broadcast(chan).unwrap()),
6544                                         });
6545                                 } else {
6546                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6547                                                 "Got an announcement_signatures message for an unfunded channel!".into())), chan_phase_entry);
6548                                 }
6549                         },
6550                         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))
6551                 }
6552                 Ok(())
6553         }
6554
6555         /// Returns DoPersist if anything changed, otherwise either SkipPersistNoEvents or an Err.
6556         fn internal_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) -> Result<NotifyOption, MsgHandleErrInternal> {
6557                 let (chan_counterparty_node_id, chan_id) = match self.short_to_chan_info.read().unwrap().get(&msg.contents.short_channel_id) {
6558                         Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
6559                         None => {
6560                                 // It's not a local channel
6561                                 return Ok(NotifyOption::SkipPersistNoEvents)
6562                         }
6563                 };
6564                 let per_peer_state = self.per_peer_state.read().unwrap();
6565                 let peer_state_mutex_opt = per_peer_state.get(&chan_counterparty_node_id);
6566                 if peer_state_mutex_opt.is_none() {
6567                         return Ok(NotifyOption::SkipPersistNoEvents)
6568                 }
6569                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
6570                 let peer_state = &mut *peer_state_lock;
6571                 match peer_state.channel_by_id.entry(chan_id) {
6572                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6573                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6574                                         if chan.context.get_counterparty_node_id() != *counterparty_node_id {
6575                                                 if chan.context.should_announce() {
6576                                                         // If the announcement is about a channel of ours which is public, some
6577                                                         // other peer may simply be forwarding all its gossip to us. Don't provide
6578                                                         // a scary-looking error message and return Ok instead.
6579                                                         return Ok(NotifyOption::SkipPersistNoEvents);
6580                                                 }
6581                                                 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));
6582                                         }
6583                                         let were_node_one = self.get_our_node_id().serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
6584                                         let msg_from_node_one = msg.contents.flags & 1 == 0;
6585                                         if were_node_one == msg_from_node_one {
6586                                                 return Ok(NotifyOption::SkipPersistNoEvents);
6587                                         } else {
6588                                                 log_debug!(self.logger, "Received channel_update for channel {}.", chan_id);
6589                                                 try_chan_phase_entry!(self, chan.channel_update(&msg), chan_phase_entry);
6590                                         }
6591                                 } else {
6592                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6593                                                 "Got a channel_update for an unfunded channel!".into())), chan_phase_entry);
6594                                 }
6595                         },
6596                         hash_map::Entry::Vacant(_) => return Ok(NotifyOption::SkipPersistNoEvents)
6597                 }
6598                 Ok(NotifyOption::DoPersist)
6599         }
6600
6601         fn internal_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) -> Result<NotifyOption, MsgHandleErrInternal> {
6602                 let htlc_forwards;
6603                 let need_lnd_workaround = {
6604                         let per_peer_state = self.per_peer_state.read().unwrap();
6605
6606                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6607                                 .ok_or_else(|| {
6608                                         debug_assert!(false);
6609                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6610                                 })?;
6611                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6612                         let peer_state = &mut *peer_state_lock;
6613                         match peer_state.channel_by_id.entry(msg.channel_id) {
6614                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6615                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6616                                                 // Currently, we expect all holding cell update_adds to be dropped on peer
6617                                                 // disconnect, so Channel's reestablish will never hand us any holding cell
6618                                                 // freed HTLCs to fail backwards. If in the future we no longer drop pending
6619                                                 // add-HTLCs on disconnect, we may be handed HTLCs to fail backwards here.
6620                                                 let responses = try_chan_phase_entry!(self, chan.channel_reestablish(
6621                                                         msg, &self.logger, &self.node_signer, self.genesis_hash,
6622                                                         &self.default_configuration, &*self.best_block.read().unwrap()), chan_phase_entry);
6623                                                 let mut channel_update = None;
6624                                                 if let Some(msg) = responses.shutdown_msg {
6625                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
6626                                                                 node_id: counterparty_node_id.clone(),
6627                                                                 msg,
6628                                                         });
6629                                                 } else if chan.context.is_usable() {
6630                                                         // If the channel is in a usable state (ie the channel is not being shut
6631                                                         // down), send a unicast channel_update to our counterparty to make sure
6632                                                         // they have the latest channel parameters.
6633                                                         if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
6634                                                                 channel_update = Some(events::MessageSendEvent::SendChannelUpdate {
6635                                                                         node_id: chan.context.get_counterparty_node_id(),
6636                                                                         msg,
6637                                                                 });
6638                                                         }
6639                                                 }
6640                                                 let need_lnd_workaround = chan.context.workaround_lnd_bug_4006.take();
6641                                                 htlc_forwards = self.handle_channel_resumption(
6642                                                         &mut peer_state.pending_msg_events, chan, responses.raa, responses.commitment_update, responses.order,
6643                                                         Vec::new(), None, responses.channel_ready, responses.announcement_sigs);
6644                                                 if let Some(upd) = channel_update {
6645                                                         peer_state.pending_msg_events.push(upd);
6646                                                 }
6647                                                 need_lnd_workaround
6648                                         } else {
6649                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6650                                                         "Got a channel_reestablish message for an unfunded channel!".into())), chan_phase_entry);
6651                                         }
6652                                 },
6653                                 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))
6654                         }
6655                 };
6656
6657                 let mut persist = NotifyOption::SkipPersistHandleEvents;
6658                 if let Some(forwards) = htlc_forwards {
6659                         self.forward_htlcs(&mut [forwards][..]);
6660                         persist = NotifyOption::DoPersist;
6661                 }
6662
6663                 if let Some(channel_ready_msg) = need_lnd_workaround {
6664                         self.internal_channel_ready(counterparty_node_id, &channel_ready_msg)?;
6665                 }
6666                 Ok(persist)
6667         }
6668
6669         /// Process pending events from the [`chain::Watch`], returning whether any events were processed.
6670         fn process_pending_monitor_events(&self) -> bool {
6671                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
6672
6673                 let mut failed_channels = Vec::new();
6674                 let mut pending_monitor_events = self.chain_monitor.release_pending_monitor_events();
6675                 let has_pending_monitor_events = !pending_monitor_events.is_empty();
6676                 for (funding_outpoint, mut monitor_events, counterparty_node_id) in pending_monitor_events.drain(..) {
6677                         for monitor_event in monitor_events.drain(..) {
6678                                 match monitor_event {
6679                                         MonitorEvent::HTLCEvent(htlc_update) => {
6680                                                 if let Some(preimage) = htlc_update.payment_preimage {
6681                                                         log_trace!(self.logger, "Claiming HTLC with preimage {} from our monitor", preimage);
6682                                                         self.claim_funds_internal(htlc_update.source, preimage, htlc_update.htlc_value_satoshis.map(|v| v * 1000), true, counterparty_node_id, funding_outpoint);
6683                                                 } else {
6684                                                         log_trace!(self.logger, "Failing HTLC with hash {} from our monitor", &htlc_update.payment_hash);
6685                                                         let receiver = HTLCDestination::NextHopChannel { node_id: counterparty_node_id, channel_id: funding_outpoint.to_channel_id() };
6686                                                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
6687                                                         self.fail_htlc_backwards_internal(&htlc_update.source, &htlc_update.payment_hash, &reason, receiver);
6688                                                 }
6689                                         },
6690                                         MonitorEvent::HolderForceClosed(funding_outpoint) => {
6691                                                 let counterparty_node_id_opt = match counterparty_node_id {
6692                                                         Some(cp_id) => Some(cp_id),
6693                                                         None => {
6694                                                                 // TODO: Once we can rely on the counterparty_node_id from the
6695                                                                 // monitor event, this and the id_to_peer map should be removed.
6696                                                                 let id_to_peer = self.id_to_peer.lock().unwrap();
6697                                                                 id_to_peer.get(&funding_outpoint.to_channel_id()).cloned()
6698                                                         }
6699                                                 };
6700                                                 if let Some(counterparty_node_id) = counterparty_node_id_opt {
6701                                                         let per_peer_state = self.per_peer_state.read().unwrap();
6702                                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
6703                                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6704                                                                 let peer_state = &mut *peer_state_lock;
6705                                                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6706                                                                 if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(funding_outpoint.to_channel_id()) {
6707                                                                         if let ChannelPhase::Funded(mut chan) = remove_channel_phase!(self, chan_phase_entry) {
6708                                                                                 failed_channels.push(chan.context.force_shutdown(false));
6709                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6710                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6711                                                                                                 msg: update
6712                                                                                         });
6713                                                                                 }
6714                                                                                 self.issue_channel_close_events(&chan.context, ClosureReason::HolderForceClosed);
6715                                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
6716                                                                                         node_id: chan.context.get_counterparty_node_id(),
6717                                                                                         action: msgs::ErrorAction::SendErrorMessage {
6718                                                                                                 msg: msgs::ErrorMessage { channel_id: chan.context.channel_id(), data: "Channel force-closed".to_owned() }
6719                                                                                         },
6720                                                                                 });
6721                                                                         }
6722                                                                 }
6723                                                         }
6724                                                 }
6725                                         },
6726                                         MonitorEvent::Completed { funding_txo, monitor_update_id } => {
6727                                                 self.channel_monitor_updated(&funding_txo, monitor_update_id, counterparty_node_id.as_ref());
6728                                         },
6729                                 }
6730                         }
6731                 }
6732
6733                 for failure in failed_channels.drain(..) {
6734                         self.finish_force_close_channel(failure);
6735                 }
6736
6737                 has_pending_monitor_events
6738         }
6739
6740         /// In chanmon_consistency_target, we'd like to be able to restore monitor updating without
6741         /// handling all pending events (i.e. not PendingHTLCsForwardable). Thus, we expose monitor
6742         /// update events as a separate process method here.
6743         #[cfg(fuzzing)]
6744         pub fn process_monitor_events(&self) {
6745                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6746                 self.process_pending_monitor_events();
6747         }
6748
6749         /// Check the holding cell in each channel and free any pending HTLCs in them if possible.
6750         /// Returns whether there were any updates such as if pending HTLCs were freed or a monitor
6751         /// update was applied.
6752         fn check_free_holding_cells(&self) -> bool {
6753                 let mut has_monitor_update = false;
6754                 let mut failed_htlcs = Vec::new();
6755
6756                 // Walk our list of channels and find any that need to update. Note that when we do find an
6757                 // update, if it includes actions that must be taken afterwards, we have to drop the
6758                 // per-peer state lock as well as the top level per_peer_state lock. Thus, we loop until we
6759                 // manage to go through all our peers without finding a single channel to update.
6760                 'peer_loop: loop {
6761                         let per_peer_state = self.per_peer_state.read().unwrap();
6762                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6763                                 'chan_loop: loop {
6764                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6765                                         let peer_state: &mut PeerState<_> = &mut *peer_state_lock;
6766                                         for (channel_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
6767                                                 |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
6768                                         ) {
6769                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
6770                                                 let funding_txo = chan.context.get_funding_txo();
6771                                                 let (monitor_opt, holding_cell_failed_htlcs) =
6772                                                         chan.maybe_free_holding_cell_htlcs(&self.fee_estimator, &self.logger);
6773                                                 if !holding_cell_failed_htlcs.is_empty() {
6774                                                         failed_htlcs.push((holding_cell_failed_htlcs, *channel_id, counterparty_node_id));
6775                                                 }
6776                                                 if let Some(monitor_update) = monitor_opt {
6777                                                         has_monitor_update = true;
6778
6779                                                         let channel_id: ChannelId = *channel_id;
6780                                                         handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update,
6781                                                                 peer_state_lock, peer_state, per_peer_state, chan, MANUALLY_REMOVING,
6782                                                                 peer_state.channel_by_id.remove(&channel_id));
6783                                                         continue 'peer_loop;
6784                                                 }
6785                                         }
6786                                         break 'chan_loop;
6787                                 }
6788                         }
6789                         break 'peer_loop;
6790                 }
6791
6792                 let has_update = has_monitor_update || !failed_htlcs.is_empty();
6793                 for (failures, channel_id, counterparty_node_id) in failed_htlcs.drain(..) {
6794                         self.fail_holding_cell_htlcs(failures, channel_id, &counterparty_node_id);
6795                 }
6796
6797                 has_update
6798         }
6799
6800         /// Check whether any channels have finished removing all pending updates after a shutdown
6801         /// exchange and can now send a closing_signed.
6802         /// Returns whether any closing_signed messages were generated.
6803         fn maybe_generate_initial_closing_signed(&self) -> bool {
6804                 let mut handle_errors: Vec<(PublicKey, Result<(), _>)> = Vec::new();
6805                 let mut has_update = false;
6806                 {
6807                         let per_peer_state = self.per_peer_state.read().unwrap();
6808
6809                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6810                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6811                                 let peer_state = &mut *peer_state_lock;
6812                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6813                                 peer_state.channel_by_id.retain(|channel_id, phase| {
6814                                         match phase {
6815                                                 ChannelPhase::Funded(chan) => {
6816                                                         match chan.maybe_propose_closing_signed(&self.fee_estimator, &self.logger) {
6817                                                                 Ok((msg_opt, tx_opt)) => {
6818                                                                         if let Some(msg) = msg_opt {
6819                                                                                 has_update = true;
6820                                                                                 pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
6821                                                                                         node_id: chan.context.get_counterparty_node_id(), msg,
6822                                                                                 });
6823                                                                         }
6824                                                                         if let Some(tx) = tx_opt {
6825                                                                                 // We're done with this channel. We got a closing_signed and sent back
6826                                                                                 // a closing_signed with a closing transaction to broadcast.
6827                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6828                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6829                                                                                                 msg: update
6830                                                                                         });
6831                                                                                 }
6832
6833                                                                                 self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
6834
6835                                                                                 log_info!(self.logger, "Broadcasting {}", log_tx!(tx));
6836                                                                                 self.tx_broadcaster.broadcast_transactions(&[&tx]);
6837                                                                                 update_maps_on_chan_removal!(self, &chan.context);
6838                                                                                 false
6839                                                                         } else { true }
6840                                                                 },
6841                                                                 Err(e) => {
6842                                                                         has_update = true;
6843                                                                         let (close_channel, res) = convert_chan_phase_err!(self, e, chan, channel_id, FUNDED_CHANNEL);
6844                                                                         handle_errors.push((chan.context.get_counterparty_node_id(), Err(res)));
6845                                                                         !close_channel
6846                                                                 }
6847                                                         }
6848                                                 },
6849                                                 _ => true, // Retain unfunded channels if present.
6850                                         }
6851                                 });
6852                         }
6853                 }
6854
6855                 for (counterparty_node_id, err) in handle_errors.drain(..) {
6856                         let _ = handle_error!(self, err, counterparty_node_id);
6857                 }
6858
6859                 has_update
6860         }
6861
6862         /// Handle a list of channel failures during a block_connected or block_disconnected call,
6863         /// pushing the channel monitor update (if any) to the background events queue and removing the
6864         /// Channel object.
6865         fn handle_init_event_channel_failures(&self, mut failed_channels: Vec<ShutdownResult>) {
6866                 for mut failure in failed_channels.drain(..) {
6867                         // Either a commitment transactions has been confirmed on-chain or
6868                         // Channel::block_disconnected detected that the funding transaction has been
6869                         // reorganized out of the main chain.
6870                         // We cannot broadcast our latest local state via monitor update (as
6871                         // Channel::force_shutdown tries to make us do) as we may still be in initialization,
6872                         // so we track the update internally and handle it when the user next calls
6873                         // timer_tick_occurred, guaranteeing we're running normally.
6874                         if let Some((counterparty_node_id, funding_txo, update)) = failure.0.take() {
6875                                 assert_eq!(update.updates.len(), 1);
6876                                 if let ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } = update.updates[0] {
6877                                         assert!(should_broadcast);
6878                                 } else { unreachable!(); }
6879                                 self.pending_background_events.lock().unwrap().push(
6880                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
6881                                                 counterparty_node_id, funding_txo, update
6882                                         });
6883                         }
6884                         self.finish_force_close_channel(failure);
6885                 }
6886         }
6887
6888         /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
6889         /// to pay us.
6890         ///
6891         /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
6892         /// [`PaymentHash`] and [`PaymentPreimage`] for you.
6893         ///
6894         /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentClaimable`], which
6895         /// will have the [`PaymentClaimable::purpose`] be [`PaymentPurpose::InvoicePayment`] with
6896         /// its [`PaymentPurpose::InvoicePayment::payment_preimage`] field filled in. That should then be
6897         /// passed directly to [`claim_funds`].
6898         ///
6899         /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
6900         ///
6901         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
6902         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
6903         ///
6904         /// # Note
6905         ///
6906         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
6907         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
6908         ///
6909         /// Errors if `min_value_msat` is greater than total bitcoin supply.
6910         ///
6911         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
6912         /// on versions of LDK prior to 0.0.114.
6913         ///
6914         /// [`claim_funds`]: Self::claim_funds
6915         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
6916         /// [`PaymentClaimable::purpose`]: events::Event::PaymentClaimable::purpose
6917         /// [`PaymentPurpose::InvoicePayment`]: events::PaymentPurpose::InvoicePayment
6918         /// [`PaymentPurpose::InvoicePayment::payment_preimage`]: events::PaymentPurpose::InvoicePayment::payment_preimage
6919         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
6920         pub fn create_inbound_payment(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32,
6921                 min_final_cltv_expiry_delta: Option<u16>) -> Result<(PaymentHash, PaymentSecret), ()> {
6922                 inbound_payment::create(&self.inbound_payment_key, min_value_msat, invoice_expiry_delta_secs,
6923                         &self.entropy_source, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
6924                         min_final_cltv_expiry_delta)
6925         }
6926
6927         /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
6928         /// stored external to LDK.
6929         ///
6930         /// A [`PaymentClaimable`] event will only be generated if the [`PaymentSecret`] matches a
6931         /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
6932         /// the `min_value_msat` provided here, if one is provided.
6933         ///
6934         /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) should be globally unique, though
6935         /// note that LDK will not stop you from registering duplicate payment hashes for inbound
6936         /// payments.
6937         ///
6938         /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
6939         /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
6940         /// before a [`PaymentClaimable`] event will be generated, ensuring that we do not provide the
6941         /// sender "proof-of-payment" unless they have paid the required amount.
6942         ///
6943         /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
6944         /// in excess of the current time. This should roughly match the expiry time set in the invoice.
6945         /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
6946         /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
6947         /// invoices when no timeout is set.
6948         ///
6949         /// Note that we use block header time to time-out pending inbound payments (with some margin
6950         /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
6951         /// accept a payment and generate a [`PaymentClaimable`] event for some time after the expiry.
6952         /// If you need exact expiry semantics, you should enforce them upon receipt of
6953         /// [`PaymentClaimable`].
6954         ///
6955         /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry_delta`
6956         /// set to at least [`MIN_FINAL_CLTV_EXPIRY_DELTA`].
6957         ///
6958         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
6959         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
6960         ///
6961         /// # Note
6962         ///
6963         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
6964         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
6965         ///
6966         /// Errors if `min_value_msat` is greater than total bitcoin supply.
6967         ///
6968         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
6969         /// on versions of LDK prior to 0.0.114.
6970         ///
6971         /// [`create_inbound_payment`]: Self::create_inbound_payment
6972         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
6973         pub fn create_inbound_payment_for_hash(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>,
6974                 invoice_expiry_delta_secs: u32, min_final_cltv_expiry: Option<u16>) -> Result<PaymentSecret, ()> {
6975                 inbound_payment::create_from_hash(&self.inbound_payment_key, min_value_msat, payment_hash,
6976                         invoice_expiry_delta_secs, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
6977                         min_final_cltv_expiry)
6978         }
6979
6980         /// Gets an LDK-generated payment preimage from a payment hash and payment secret that were
6981         /// previously returned from [`create_inbound_payment`].
6982         ///
6983         /// [`create_inbound_payment`]: Self::create_inbound_payment
6984         pub fn get_payment_preimage(&self, payment_hash: PaymentHash, payment_secret: PaymentSecret) -> Result<PaymentPreimage, APIError> {
6985                 inbound_payment::get_payment_preimage(payment_hash, payment_secret, &self.inbound_payment_key)
6986         }
6987
6988         /// Gets a fake short channel id for use in receiving [phantom node payments]. These fake scids
6989         /// are used when constructing the phantom invoice's route hints.
6990         ///
6991         /// [phantom node payments]: crate::sign::PhantomKeysManager
6992         pub fn get_phantom_scid(&self) -> u64 {
6993                 let best_block_height = self.best_block.read().unwrap().height();
6994                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
6995                 loop {
6996                         let scid_candidate = fake_scid::Namespace::Phantom.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
6997                         // Ensure the generated scid doesn't conflict with a real channel.
6998                         match short_to_chan_info.get(&scid_candidate) {
6999                                 Some(_) => continue,
7000                                 None => return scid_candidate
7001                         }
7002                 }
7003         }
7004
7005         /// Gets route hints for use in receiving [phantom node payments].
7006         ///
7007         /// [phantom node payments]: crate::sign::PhantomKeysManager
7008         pub fn get_phantom_route_hints(&self) -> PhantomRouteHints {
7009                 PhantomRouteHints {
7010                         channels: self.list_usable_channels(),
7011                         phantom_scid: self.get_phantom_scid(),
7012                         real_node_pubkey: self.get_our_node_id(),
7013                 }
7014         }
7015
7016         /// Gets a fake short channel id for use in receiving intercepted payments. These fake scids are
7017         /// used when constructing the route hints for HTLCs intended to be intercepted. See
7018         /// [`ChannelManager::forward_intercepted_htlc`].
7019         ///
7020         /// Note that this method is not guaranteed to return unique values, you may need to call it a few
7021         /// times to get a unique scid.
7022         pub fn get_intercept_scid(&self) -> u64 {
7023                 let best_block_height = self.best_block.read().unwrap().height();
7024                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
7025                 loop {
7026                         let scid_candidate = fake_scid::Namespace::Intercept.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
7027                         // Ensure the generated scid doesn't conflict with a real channel.
7028                         if short_to_chan_info.contains_key(&scid_candidate) { continue }
7029                         return scid_candidate
7030                 }
7031         }
7032
7033         /// Gets inflight HTLC information by processing pending outbound payments that are in
7034         /// our channels. May be used during pathfinding to account for in-use channel liquidity.
7035         pub fn compute_inflight_htlcs(&self) -> InFlightHtlcs {
7036                 let mut inflight_htlcs = InFlightHtlcs::new();
7037
7038                 let per_peer_state = self.per_peer_state.read().unwrap();
7039                 for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7040                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7041                         let peer_state = &mut *peer_state_lock;
7042                         for chan in peer_state.channel_by_id.values().filter_map(
7043                                 |phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }
7044                         ) {
7045                                 for (htlc_source, _) in chan.inflight_htlc_sources() {
7046                                         if let HTLCSource::OutboundRoute { path, .. } = htlc_source {
7047                                                 inflight_htlcs.process_path(path, self.get_our_node_id());
7048                                         }
7049                                 }
7050                         }
7051                 }
7052
7053                 inflight_htlcs
7054         }
7055
7056         #[cfg(any(test, feature = "_test_utils"))]
7057         pub fn get_and_clear_pending_events(&self) -> Vec<events::Event> {
7058                 let events = core::cell::RefCell::new(Vec::new());
7059                 let event_handler = |event: events::Event| events.borrow_mut().push(event);
7060                 self.process_pending_events(&event_handler);
7061                 events.into_inner()
7062         }
7063
7064         #[cfg(feature = "_test_utils")]
7065         pub fn push_pending_event(&self, event: events::Event) {
7066                 let mut events = self.pending_events.lock().unwrap();
7067                 events.push_back((event, None));
7068         }
7069
7070         #[cfg(test)]
7071         pub fn pop_pending_event(&self) -> Option<events::Event> {
7072                 let mut events = self.pending_events.lock().unwrap();
7073                 events.pop_front().map(|(e, _)| e)
7074         }
7075
7076         #[cfg(test)]
7077         pub fn has_pending_payments(&self) -> bool {
7078                 self.pending_outbound_payments.has_pending_payments()
7079         }
7080
7081         #[cfg(test)]
7082         pub fn clear_pending_payments(&self) {
7083                 self.pending_outbound_payments.clear_pending_payments()
7084         }
7085
7086         /// When something which was blocking a channel from updating its [`ChannelMonitor`] (e.g. an
7087         /// [`Event`] being handled) completes, this should be called to restore the channel to normal
7088         /// operation. It will double-check that nothing *else* is also blocking the same channel from
7089         /// making progress and then let any blocked [`ChannelMonitorUpdate`]s fly.
7090         fn handle_monitor_update_release(&self, counterparty_node_id: PublicKey, channel_funding_outpoint: OutPoint, mut completed_blocker: Option<RAAMonitorUpdateBlockingAction>) {
7091                 let mut errors = Vec::new();
7092                 loop {
7093                         let per_peer_state = self.per_peer_state.read().unwrap();
7094                         if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
7095                                 let mut peer_state_lck = peer_state_mtx.lock().unwrap();
7096                                 let peer_state = &mut *peer_state_lck;
7097
7098                                 if let Some(blocker) = completed_blocker.take() {
7099                                         // Only do this on the first iteration of the loop.
7100                                         if let Some(blockers) = peer_state.actions_blocking_raa_monitor_updates
7101                                                 .get_mut(&channel_funding_outpoint.to_channel_id())
7102                                         {
7103                                                 blockers.retain(|iter| iter != &blocker);
7104                                         }
7105                                 }
7106
7107                                 if self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
7108                                         channel_funding_outpoint, counterparty_node_id) {
7109                                         // Check that, while holding the peer lock, we don't have anything else
7110                                         // blocking monitor updates for this channel. If we do, release the monitor
7111                                         // update(s) when those blockers complete.
7112                                         log_trace!(self.logger, "Delaying monitor unlock for channel {} as another channel's mon update needs to complete first",
7113                                                 &channel_funding_outpoint.to_channel_id());
7114                                         break;
7115                                 }
7116
7117                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(channel_funding_outpoint.to_channel_id()) {
7118                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7119                                                 debug_assert_eq!(chan.context.get_funding_txo().unwrap(), channel_funding_outpoint);
7120                                                 if let Some((monitor_update, further_update_exists)) = chan.unblock_next_blocked_monitor_update() {
7121                                                         log_debug!(self.logger, "Unlocking monitor updating for channel {} and updating monitor",
7122                                                                 channel_funding_outpoint.to_channel_id());
7123                                                         handle_new_monitor_update!(self, channel_funding_outpoint, monitor_update,
7124                                                                 peer_state_lck, peer_state, per_peer_state, chan_phase_entry);
7125                                                         if further_update_exists {
7126                                                                 // If there are more `ChannelMonitorUpdate`s to process, restart at the
7127                                                                 // top of the loop.
7128                                                                 continue;
7129                                                         }
7130                                                 } else {
7131                                                         log_trace!(self.logger, "Unlocked monitor updating for channel {} without monitors to update",
7132                                                                 channel_funding_outpoint.to_channel_id());
7133                                                 }
7134                                         }
7135                                 }
7136                         } else {
7137                                 log_debug!(self.logger,
7138                                         "Got a release post-RAA monitor update for peer {} but the channel is gone",
7139                                         log_pubkey!(counterparty_node_id));
7140                         }
7141                         break;
7142                 }
7143                 for (err, counterparty_node_id) in errors {
7144                         let res = Err::<(), _>(err);
7145                         let _ = handle_error!(self, res, counterparty_node_id);
7146                 }
7147         }
7148
7149         fn handle_post_event_actions(&self, actions: Vec<EventCompletionAction>) {
7150                 for action in actions {
7151                         match action {
7152                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
7153                                         channel_funding_outpoint, counterparty_node_id
7154                                 } => {
7155                                         self.handle_monitor_update_release(counterparty_node_id, channel_funding_outpoint, None);
7156                                 }
7157                         }
7158                 }
7159         }
7160
7161         /// Processes any events asynchronously in the order they were generated since the last call
7162         /// using the given event handler.
7163         ///
7164         /// See the trait-level documentation of [`EventsProvider`] for requirements.
7165         pub async fn process_pending_events_async<Future: core::future::Future, H: Fn(Event) -> Future>(
7166                 &self, handler: H
7167         ) {
7168                 let mut ev;
7169                 process_events_body!(self, ev, { handler(ev).await });
7170         }
7171 }
7172
7173 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>
7174 where
7175         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7176         T::Target: BroadcasterInterface,
7177         ES::Target: EntropySource,
7178         NS::Target: NodeSigner,
7179         SP::Target: SignerProvider,
7180         F::Target: FeeEstimator,
7181         R::Target: Router,
7182         L::Target: Logger,
7183 {
7184         /// Returns `MessageSendEvent`s strictly ordered per-peer, in the order they were generated.
7185         /// The returned array will contain `MessageSendEvent`s for different peers if
7186         /// `MessageSendEvent`s to more than one peer exists, but `MessageSendEvent`s to the same peer
7187         /// is always placed next to each other.
7188         ///
7189         /// Note that that while `MessageSendEvent`s are strictly ordered per-peer, the peer order for
7190         /// the chunks of `MessageSendEvent`s for different peers is random. I.e. if the array contains
7191         /// `MessageSendEvent`s  for both `node_a` and `node_b`, the `MessageSendEvent`s for `node_a`
7192         /// will randomly be placed first or last in the returned array.
7193         ///
7194         /// Note that even though `BroadcastChannelAnnouncement` and `BroadcastChannelUpdate`
7195         /// `MessageSendEvent`s are intended to be broadcasted to all peers, they will be pleaced among
7196         /// the `MessageSendEvent`s to the specific peer they were generated under.
7197         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent> {
7198                 let events = RefCell::new(Vec::new());
7199                 PersistenceNotifierGuard::optionally_notify(self, || {
7200                         let mut result = NotifyOption::SkipPersistNoEvents;
7201
7202                         // TODO: This behavior should be documented. It's unintuitive that we query
7203                         // ChannelMonitors when clearing other events.
7204                         if self.process_pending_monitor_events() {
7205                                 result = NotifyOption::DoPersist;
7206                         }
7207
7208                         if self.check_free_holding_cells() {
7209                                 result = NotifyOption::DoPersist;
7210                         }
7211                         if self.maybe_generate_initial_closing_signed() {
7212                                 result = NotifyOption::DoPersist;
7213                         }
7214
7215                         let mut pending_events = Vec::new();
7216                         let per_peer_state = self.per_peer_state.read().unwrap();
7217                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7218                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7219                                 let peer_state = &mut *peer_state_lock;
7220                                 if peer_state.pending_msg_events.len() > 0 {
7221                                         pending_events.append(&mut peer_state.pending_msg_events);
7222                                 }
7223                         }
7224
7225                         if !pending_events.is_empty() {
7226                                 events.replace(pending_events);
7227                         }
7228
7229                         result
7230                 });
7231                 events.into_inner()
7232         }
7233 }
7234
7235 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>
7236 where
7237         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7238         T::Target: BroadcasterInterface,
7239         ES::Target: EntropySource,
7240         NS::Target: NodeSigner,
7241         SP::Target: SignerProvider,
7242         F::Target: FeeEstimator,
7243         R::Target: Router,
7244         L::Target: Logger,
7245 {
7246         /// Processes events that must be periodically handled.
7247         ///
7248         /// An [`EventHandler`] may safely call back to the provider in order to handle an event.
7249         /// However, it must not call [`Writeable::write`] as doing so would result in a deadlock.
7250         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler {
7251                 let mut ev;
7252                 process_events_body!(self, ev, handler.handle_event(ev));
7253         }
7254 }
7255
7256 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>
7257 where
7258         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7259         T::Target: BroadcasterInterface,
7260         ES::Target: EntropySource,
7261         NS::Target: NodeSigner,
7262         SP::Target: SignerProvider,
7263         F::Target: FeeEstimator,
7264         R::Target: Router,
7265         L::Target: Logger,
7266 {
7267         fn filtered_block_connected(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
7268                 {
7269                         let best_block = self.best_block.read().unwrap();
7270                         assert_eq!(best_block.block_hash(), header.prev_blockhash,
7271                                 "Blocks must be connected in chain-order - the connected header must build on the last connected header");
7272                         assert_eq!(best_block.height(), height - 1,
7273                                 "Blocks must be connected in chain-order - the connected block height must be one greater than the previous height");
7274                 }
7275
7276                 self.transactions_confirmed(header, txdata, height);
7277                 self.best_block_updated(header, height);
7278         }
7279
7280         fn block_disconnected(&self, header: &BlockHeader, height: u32) {
7281                 let _persistence_guard =
7282                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7283                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7284                 let new_height = height - 1;
7285                 {
7286                         let mut best_block = self.best_block.write().unwrap();
7287                         assert_eq!(best_block.block_hash(), header.block_hash(),
7288                                 "Blocks must be disconnected in chain-order - the disconnected header must be the last connected header");
7289                         assert_eq!(best_block.height(), height,
7290                                 "Blocks must be disconnected in chain-order - the disconnected block must have the correct height");
7291                         *best_block = BestBlock::new(header.prev_blockhash, new_height)
7292                 }
7293
7294                 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));
7295         }
7296 }
7297
7298 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>
7299 where
7300         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7301         T::Target: BroadcasterInterface,
7302         ES::Target: EntropySource,
7303         NS::Target: NodeSigner,
7304         SP::Target: SignerProvider,
7305         F::Target: FeeEstimator,
7306         R::Target: Router,
7307         L::Target: Logger,
7308 {
7309         fn transactions_confirmed(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
7310                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7311                 // during initialization prior to the chain_monitor being fully configured in some cases.
7312                 // See the docs for `ChannelManagerReadArgs` for more.
7313
7314                 let block_hash = header.block_hash();
7315                 log_trace!(self.logger, "{} transactions included in block {} at height {} provided", txdata.len(), block_hash, height);
7316
7317                 let _persistence_guard =
7318                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7319                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7320                 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)
7321                         .map(|(a, b)| (a, Vec::new(), b)));
7322
7323                 let last_best_block_height = self.best_block.read().unwrap().height();
7324                 if height < last_best_block_height {
7325                         let timestamp = self.highest_seen_timestamp.load(Ordering::Acquire);
7326                         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));
7327                 }
7328         }
7329
7330         fn best_block_updated(&self, header: &BlockHeader, height: u32) {
7331                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7332                 // during initialization prior to the chain_monitor being fully configured in some cases.
7333                 // See the docs for `ChannelManagerReadArgs` for more.
7334
7335                 let block_hash = header.block_hash();
7336                 log_trace!(self.logger, "New best block: {} at height {}", block_hash, height);
7337
7338                 let _persistence_guard =
7339                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7340                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7341                 *self.best_block.write().unwrap() = BestBlock::new(block_hash, height);
7342
7343                 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));
7344
7345                 macro_rules! max_time {
7346                         ($timestamp: expr) => {
7347                                 loop {
7348                                         // Update $timestamp to be the max of its current value and the block
7349                                         // timestamp. This should keep us close to the current time without relying on
7350                                         // having an explicit local time source.
7351                                         // Just in case we end up in a race, we loop until we either successfully
7352                                         // update $timestamp or decide we don't need to.
7353                                         let old_serial = $timestamp.load(Ordering::Acquire);
7354                                         if old_serial >= header.time as usize { break; }
7355                                         if $timestamp.compare_exchange(old_serial, header.time as usize, Ordering::AcqRel, Ordering::Relaxed).is_ok() {
7356                                                 break;
7357                                         }
7358                                 }
7359                         }
7360                 }
7361                 max_time!(self.highest_seen_timestamp);
7362                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
7363                 payment_secrets.retain(|_, inbound_payment| {
7364                         inbound_payment.expiry_time > header.time as u64
7365                 });
7366         }
7367
7368         fn get_relevant_txids(&self) -> Vec<(Txid, Option<BlockHash>)> {
7369                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
7370                 for (_cp_id, peer_state_mutex) in self.per_peer_state.read().unwrap().iter() {
7371                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7372                         let peer_state = &mut *peer_state_lock;
7373                         for chan in peer_state.channel_by_id.values().filter_map(|phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }) {
7374                                 if let (Some(funding_txo), Some(block_hash)) = (chan.context.get_funding_txo(), chan.context.get_funding_tx_confirmed_in()) {
7375                                         res.push((funding_txo.txid, Some(block_hash)));
7376                                 }
7377                         }
7378                 }
7379                 res
7380         }
7381
7382         fn transaction_unconfirmed(&self, txid: &Txid) {
7383                 let _persistence_guard =
7384                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7385                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7386                 self.do_chain_event(None, |channel| {
7387                         if let Some(funding_txo) = channel.context.get_funding_txo() {
7388                                 if funding_txo.txid == *txid {
7389                                         channel.funding_transaction_unconfirmed(&self.logger).map(|()| (None, Vec::new(), None))
7390                                 } else { Ok((None, Vec::new(), None)) }
7391                         } else { Ok((None, Vec::new(), None)) }
7392                 });
7393         }
7394 }
7395
7396 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>
7397 where
7398         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7399         T::Target: BroadcasterInterface,
7400         ES::Target: EntropySource,
7401         NS::Target: NodeSigner,
7402         SP::Target: SignerProvider,
7403         F::Target: FeeEstimator,
7404         R::Target: Router,
7405         L::Target: Logger,
7406 {
7407         /// Calls a function which handles an on-chain event (blocks dis/connected, transactions
7408         /// un/confirmed, etc) on each channel, handling any resulting errors or messages generated by
7409         /// the function.
7410         fn do_chain_event<FN: Fn(&mut Channel<SP>) -> Result<(Option<msgs::ChannelReady>, Vec<(HTLCSource, PaymentHash)>, Option<msgs::AnnouncementSignatures>), ClosureReason>>
7411                         (&self, height_opt: Option<u32>, f: FN) {
7412                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7413                 // during initialization prior to the chain_monitor being fully configured in some cases.
7414                 // See the docs for `ChannelManagerReadArgs` for more.
7415
7416                 let mut failed_channels = Vec::new();
7417                 let mut timed_out_htlcs = Vec::new();
7418                 {
7419                         let per_peer_state = self.per_peer_state.read().unwrap();
7420                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7421                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7422                                 let peer_state = &mut *peer_state_lock;
7423                                 let pending_msg_events = &mut peer_state.pending_msg_events;
7424                                 peer_state.channel_by_id.retain(|_, phase| {
7425                                         match phase {
7426                                                 // Retain unfunded channels.
7427                                                 ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => true,
7428                                                 ChannelPhase::Funded(channel) => {
7429                                                         let res = f(channel);
7430                                                         if let Ok((channel_ready_opt, mut timed_out_pending_htlcs, announcement_sigs)) = res {
7431                                                                 for (source, payment_hash) in timed_out_pending_htlcs.drain(..) {
7432                                                                         let (failure_code, data) = self.get_htlc_inbound_temp_fail_err_and_data(0x1000|14 /* expiry_too_soon */, &channel);
7433                                                                         timed_out_htlcs.push((source, payment_hash, HTLCFailReason::reason(failure_code, data),
7434                                                                                 HTLCDestination::NextHopChannel { node_id: Some(channel.context.get_counterparty_node_id()), channel_id: channel.context.channel_id() }));
7435                                                                 }
7436                                                                 if let Some(channel_ready) = channel_ready_opt {
7437                                                                         send_channel_ready!(self, pending_msg_events, channel, channel_ready);
7438                                                                         if channel.context.is_usable() {
7439                                                                                 log_trace!(self.logger, "Sending channel_ready with private initial channel_update for our counterparty on channel {}", channel.context.channel_id());
7440                                                                                 if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
7441                                                                                         pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
7442                                                                                                 node_id: channel.context.get_counterparty_node_id(),
7443                                                                                                 msg,
7444                                                                                         });
7445                                                                                 }
7446                                                                         } else {
7447                                                                                 log_trace!(self.logger, "Sending channel_ready WITHOUT channel_update for {}", channel.context.channel_id());
7448                                                                         }
7449                                                                 }
7450
7451                                                                 {
7452                                                                         let mut pending_events = self.pending_events.lock().unwrap();
7453                                                                         emit_channel_ready_event!(pending_events, channel);
7454                                                                 }
7455
7456                                                                 if let Some(announcement_sigs) = announcement_sigs {
7457                                                                         log_trace!(self.logger, "Sending announcement_signatures for channel {}", channel.context.channel_id());
7458                                                                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
7459                                                                                 node_id: channel.context.get_counterparty_node_id(),
7460                                                                                 msg: announcement_sigs,
7461                                                                         });
7462                                                                         if let Some(height) = height_opt {
7463                                                                                 if let Some(announcement) = channel.get_signed_channel_announcement(&self.node_signer, self.genesis_hash, height, &self.default_configuration) {
7464                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
7465                                                                                                 msg: announcement,
7466                                                                                                 // Note that announcement_signatures fails if the channel cannot be announced,
7467                                                                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
7468                                                                                                 update_msg: Some(self.get_channel_update_for_broadcast(channel).unwrap()),
7469                                                                                         });
7470                                                                                 }
7471                                                                         }
7472                                                                 }
7473                                                                 if channel.is_our_channel_ready() {
7474                                                                         if let Some(real_scid) = channel.context.get_short_channel_id() {
7475                                                                                 // If we sent a 0conf channel_ready, and now have an SCID, we add it
7476                                                                                 // to the short_to_chan_info map here. Note that we check whether we
7477                                                                                 // can relay using the real SCID at relay-time (i.e.
7478                                                                                 // enforce option_scid_alias then), and if the funding tx is ever
7479                                                                                 // un-confirmed we force-close the channel, ensuring short_to_chan_info
7480                                                                                 // is always consistent.
7481                                                                                 let mut short_to_chan_info = self.short_to_chan_info.write().unwrap();
7482                                                                                 let scid_insert = short_to_chan_info.insert(real_scid, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
7483                                                                                 assert!(scid_insert.is_none() || scid_insert.unwrap() == (channel.context.get_counterparty_node_id(), channel.context.channel_id()),
7484                                                                                         "SCIDs should never collide - ensure you weren't behind by a full {} blocks when creating channels",
7485                                                                                         fake_scid::MAX_SCID_BLOCKS_FROM_NOW);
7486                                                                         }
7487                                                                 }
7488                                                         } else if let Err(reason) = res {
7489                                                                 update_maps_on_chan_removal!(self, &channel.context);
7490                                                                 // It looks like our counterparty went on-chain or funding transaction was
7491                                                                 // reorged out of the main chain. Close the channel.
7492                                                                 failed_channels.push(channel.context.force_shutdown(true));
7493                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&channel) {
7494                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
7495                                                                                 msg: update
7496                                                                         });
7497                                                                 }
7498                                                                 let reason_message = format!("{}", reason);
7499                                                                 self.issue_channel_close_events(&channel.context, reason);
7500                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
7501                                                                         node_id: channel.context.get_counterparty_node_id(),
7502                                                                         action: msgs::ErrorAction::SendErrorMessage { msg: msgs::ErrorMessage {
7503                                                                                 channel_id: channel.context.channel_id(),
7504                                                                                 data: reason_message,
7505                                                                         } },
7506                                                                 });
7507                                                                 return false;
7508                                                         }
7509                                                         true
7510                                                 }
7511                                         }
7512                                 });
7513                         }
7514                 }
7515
7516                 if let Some(height) = height_opt {
7517                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
7518                                 payment.htlcs.retain(|htlc| {
7519                                         // If height is approaching the number of blocks we think it takes us to get
7520                                         // our commitment transaction confirmed before the HTLC expires, plus the
7521                                         // number of blocks we generally consider it to take to do a commitment update,
7522                                         // just give up on it and fail the HTLC.
7523                                         if height >= htlc.cltv_expiry - HTLC_FAIL_BACK_BUFFER {
7524                                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
7525                                                 htlc_msat_height_data.extend_from_slice(&height.to_be_bytes());
7526
7527                                                 timed_out_htlcs.push((HTLCSource::PreviousHopData(htlc.prev_hop.clone()), payment_hash.clone(),
7528                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
7529                                                         HTLCDestination::FailedPayment { payment_hash: payment_hash.clone() }));
7530                                                 false
7531                                         } else { true }
7532                                 });
7533                                 !payment.htlcs.is_empty() // Only retain this entry if htlcs has at least one entry.
7534                         });
7535
7536                         let mut intercepted_htlcs = self.pending_intercepted_htlcs.lock().unwrap();
7537                         intercepted_htlcs.retain(|_, htlc| {
7538                                 if height >= htlc.forward_info.outgoing_cltv_value - HTLC_FAIL_BACK_BUFFER {
7539                                         let prev_hop_data = HTLCSource::PreviousHopData(HTLCPreviousHopData {
7540                                                 short_channel_id: htlc.prev_short_channel_id,
7541                                                 user_channel_id: Some(htlc.prev_user_channel_id),
7542                                                 htlc_id: htlc.prev_htlc_id,
7543                                                 incoming_packet_shared_secret: htlc.forward_info.incoming_shared_secret,
7544                                                 phantom_shared_secret: None,
7545                                                 outpoint: htlc.prev_funding_outpoint,
7546                                         });
7547
7548                                         let requested_forward_scid /* intercept scid */ = match htlc.forward_info.routing {
7549                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
7550                                                 _ => unreachable!(),
7551                                         };
7552                                         timed_out_htlcs.push((prev_hop_data, htlc.forward_info.payment_hash,
7553                                                         HTLCFailReason::from_failure_code(0x2000 | 2),
7554                                                         HTLCDestination::InvalidForward { requested_forward_scid }));
7555                                         log_trace!(self.logger, "Timing out intercepted HTLC with requested forward scid {}", requested_forward_scid);
7556                                         false
7557                                 } else { true }
7558                         });
7559                 }
7560
7561                 self.handle_init_event_channel_failures(failed_channels);
7562
7563                 for (source, payment_hash, reason, destination) in timed_out_htlcs.drain(..) {
7564                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, destination);
7565                 }
7566         }
7567
7568         /// Gets a [`Future`] that completes when this [`ChannelManager`] may need to be persisted or
7569         /// may have events that need processing.
7570         ///
7571         /// In order to check if this [`ChannelManager`] needs persisting, call
7572         /// [`Self::get_and_clear_needs_persistence`].
7573         ///
7574         /// Note that callbacks registered on the [`Future`] MUST NOT call back into this
7575         /// [`ChannelManager`] and should instead register actions to be taken later.
7576         pub fn get_event_or_persistence_needed_future(&self) -> Future {
7577                 self.event_persist_notifier.get_future()
7578         }
7579
7580         /// Returns true if this [`ChannelManager`] needs to be persisted.
7581         pub fn get_and_clear_needs_persistence(&self) -> bool {
7582                 self.needs_persist_flag.swap(false, Ordering::AcqRel)
7583         }
7584
7585         #[cfg(any(test, feature = "_test_utils"))]
7586         pub fn get_event_or_persist_condvar_value(&self) -> bool {
7587                 self.event_persist_notifier.notify_pending()
7588         }
7589
7590         /// Gets the latest best block which was connected either via the [`chain::Listen`] or
7591         /// [`chain::Confirm`] interfaces.
7592         pub fn current_best_block(&self) -> BestBlock {
7593                 self.best_block.read().unwrap().clone()
7594         }
7595
7596         /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
7597         /// [`ChannelManager`].
7598         pub fn node_features(&self) -> NodeFeatures {
7599                 provided_node_features(&self.default_configuration)
7600         }
7601
7602         /// Fetches the set of [`Bolt11InvoiceFeatures`] flags which are provided by or required by
7603         /// [`ChannelManager`].
7604         ///
7605         /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
7606         /// or not. Thus, this method is not public.
7607         #[cfg(any(feature = "_test_utils", test))]
7608         pub fn invoice_features(&self) -> Bolt11InvoiceFeatures {
7609                 provided_invoice_features(&self.default_configuration)
7610         }
7611
7612         /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
7613         /// [`ChannelManager`].
7614         pub fn channel_features(&self) -> ChannelFeatures {
7615                 provided_channel_features(&self.default_configuration)
7616         }
7617
7618         /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
7619         /// [`ChannelManager`].
7620         pub fn channel_type_features(&self) -> ChannelTypeFeatures {
7621                 provided_channel_type_features(&self.default_configuration)
7622         }
7623
7624         /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
7625         /// [`ChannelManager`].
7626         pub fn init_features(&self) -> InitFeatures {
7627                 provided_init_features(&self.default_configuration)
7628         }
7629 }
7630
7631 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
7632         ChannelMessageHandler for ChannelManager<M, T, ES, NS, SP, F, R, L>
7633 where
7634         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7635         T::Target: BroadcasterInterface,
7636         ES::Target: EntropySource,
7637         NS::Target: NodeSigner,
7638         SP::Target: SignerProvider,
7639         F::Target: FeeEstimator,
7640         R::Target: Router,
7641         L::Target: Logger,
7642 {
7643         fn handle_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) {
7644                 // Note that we never need to persist the updated ChannelManager for an inbound
7645                 // open_channel message - pre-funded channels are never written so there should be no
7646                 // change to the contents.
7647                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7648                         let res = self.internal_open_channel(counterparty_node_id, msg);
7649                         let persist = match &res {
7650                                 Err(e) if e.closes_channel() => {
7651                                         debug_assert!(false, "We shouldn't close a new channel");
7652                                         NotifyOption::DoPersist
7653                                 },
7654                                 _ => NotifyOption::SkipPersistHandleEvents,
7655                         };
7656                         let _ = handle_error!(self, res, *counterparty_node_id);
7657                         persist
7658                 });
7659         }
7660
7661         fn handle_open_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannelV2) {
7662                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7663                         "Dual-funded channels not supported".to_owned(),
7664                          msg.temporary_channel_id.clone())), *counterparty_node_id);
7665         }
7666
7667         fn handle_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) {
7668                 // Note that we never need to persist the updated ChannelManager for an inbound
7669                 // accept_channel message - pre-funded channels are never written so there should be no
7670                 // change to the contents.
7671                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7672                         let _ = handle_error!(self, self.internal_accept_channel(counterparty_node_id, msg), *counterparty_node_id);
7673                         NotifyOption::SkipPersistHandleEvents
7674                 });
7675         }
7676
7677         fn handle_accept_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannelV2) {
7678                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7679                         "Dual-funded channels not supported".to_owned(),
7680                          msg.temporary_channel_id.clone())), *counterparty_node_id);
7681         }
7682
7683         fn handle_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) {
7684                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7685                 let _ = handle_error!(self, self.internal_funding_created(counterparty_node_id, msg), *counterparty_node_id);
7686         }
7687
7688         fn handle_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) {
7689                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7690                 let _ = handle_error!(self, self.internal_funding_signed(counterparty_node_id, msg), *counterparty_node_id);
7691         }
7692
7693         fn handle_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) {
7694                 // Note that we never need to persist the updated ChannelManager for an inbound
7695                 // channel_ready message - while the channel's state will change, any channel_ready message
7696                 // will ultimately be re-sent on startup and the `ChannelMonitor` won't be updated so we
7697                 // will not force-close the channel on startup.
7698                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7699                         let res = self.internal_channel_ready(counterparty_node_id, msg);
7700                         let persist = match &res {
7701                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7702                                 _ => NotifyOption::SkipPersistHandleEvents,
7703                         };
7704                         let _ = handle_error!(self, res, *counterparty_node_id);
7705                         persist
7706                 });
7707         }
7708
7709         fn handle_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) {
7710                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7711                 let _ = handle_error!(self, self.internal_shutdown(counterparty_node_id, msg), *counterparty_node_id);
7712         }
7713
7714         fn handle_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) {
7715                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7716                 let _ = handle_error!(self, self.internal_closing_signed(counterparty_node_id, msg), *counterparty_node_id);
7717         }
7718
7719         fn handle_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) {
7720                 // Note that we never need to persist the updated ChannelManager for an inbound
7721                 // update_add_htlc message - the message itself doesn't change our channel state only the
7722                 // `commitment_signed` message afterwards will.
7723                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7724                         let res = self.internal_update_add_htlc(counterparty_node_id, msg);
7725                         let persist = match &res {
7726                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7727                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7728                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
7729                         };
7730                         let _ = handle_error!(self, res, *counterparty_node_id);
7731                         persist
7732                 });
7733         }
7734
7735         fn handle_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) {
7736                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7737                 let _ = handle_error!(self, self.internal_update_fulfill_htlc(counterparty_node_id, msg), *counterparty_node_id);
7738         }
7739
7740         fn handle_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) {
7741                 // Note that we never need to persist the updated ChannelManager for an inbound
7742                 // update_fail_htlc message - the message itself doesn't change our channel state only the
7743                 // `commitment_signed` message afterwards will.
7744                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7745                         let res = self.internal_update_fail_htlc(counterparty_node_id, msg);
7746                         let persist = match &res {
7747                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7748                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7749                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
7750                         };
7751                         let _ = handle_error!(self, res, *counterparty_node_id);
7752                         persist
7753                 });
7754         }
7755
7756         fn handle_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) {
7757                 // Note that we never need to persist the updated ChannelManager for an inbound
7758                 // update_fail_malformed_htlc message - the message itself doesn't change our channel state
7759                 // only the `commitment_signed` message afterwards will.
7760                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7761                         let res = self.internal_update_fail_malformed_htlc(counterparty_node_id, msg);
7762                         let persist = match &res {
7763                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7764                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7765                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
7766                         };
7767                         let _ = handle_error!(self, res, *counterparty_node_id);
7768                         persist
7769                 });
7770         }
7771
7772         fn handle_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) {
7773                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7774                 let _ = handle_error!(self, self.internal_commitment_signed(counterparty_node_id, msg), *counterparty_node_id);
7775         }
7776
7777         fn handle_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) {
7778                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7779                 let _ = handle_error!(self, self.internal_revoke_and_ack(counterparty_node_id, msg), *counterparty_node_id);
7780         }
7781
7782         fn handle_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) {
7783                 // Note that we never need to persist the updated ChannelManager for an inbound
7784                 // update_fee message - the message itself doesn't change our channel state only the
7785                 // `commitment_signed` message afterwards will.
7786                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7787                         let res = self.internal_update_fee(counterparty_node_id, msg);
7788                         let persist = match &res {
7789                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7790                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7791                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
7792                         };
7793                         let _ = handle_error!(self, res, *counterparty_node_id);
7794                         persist
7795                 });
7796         }
7797
7798         fn handle_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) {
7799                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7800                 let _ = handle_error!(self, self.internal_announcement_signatures(counterparty_node_id, msg), *counterparty_node_id);
7801         }
7802
7803         fn handle_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) {
7804                 PersistenceNotifierGuard::optionally_notify(self, || {
7805                         if let Ok(persist) = handle_error!(self, self.internal_channel_update(counterparty_node_id, msg), *counterparty_node_id) {
7806                                 persist
7807                         } else {
7808                                 NotifyOption::DoPersist
7809                         }
7810                 });
7811         }
7812
7813         fn handle_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) {
7814                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7815                         let res = self.internal_channel_reestablish(counterparty_node_id, msg);
7816                         let persist = match &res {
7817                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7818                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7819                                 Ok(persist) => *persist,
7820                         };
7821                         let _ = handle_error!(self, res, *counterparty_node_id);
7822                         persist
7823                 });
7824         }
7825
7826         fn peer_disconnected(&self, counterparty_node_id: &PublicKey) {
7827                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(
7828                         self, || NotifyOption::SkipPersistHandleEvents);
7829
7830                 let mut failed_channels = Vec::new();
7831                 let mut per_peer_state = self.per_peer_state.write().unwrap();
7832                 let remove_peer = {
7833                         log_debug!(self.logger, "Marking channels with {} disconnected and generating channel_updates.",
7834                                 log_pubkey!(counterparty_node_id));
7835                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
7836                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7837                                 let peer_state = &mut *peer_state_lock;
7838                                 let pending_msg_events = &mut peer_state.pending_msg_events;
7839                                 peer_state.channel_by_id.retain(|_, phase| {
7840                                         let context = match phase {
7841                                                 ChannelPhase::Funded(chan) => {
7842                                                         chan.remove_uncommitted_htlcs_and_mark_paused(&self.logger);
7843                                                         // We only retain funded channels that are not shutdown.
7844                                                         if !chan.is_shutdown() {
7845                                                                 return true;
7846                                                         }
7847                                                         &chan.context
7848                                                 },
7849                                                 // Unfunded channels will always be removed.
7850                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
7851                                                         &chan.context
7852                                                 },
7853                                                 ChannelPhase::UnfundedInboundV1(chan) => {
7854                                                         &chan.context
7855                                                 },
7856                                         };
7857                                         // Clean up for removal.
7858                                         update_maps_on_chan_removal!(self, &context);
7859                                         self.issue_channel_close_events(&context, ClosureReason::DisconnectedPeer);
7860                                         false
7861                                 });
7862                                 // Note that we don't bother generating any events for pre-accept channels -
7863                                 // they're not considered "channels" yet from the PoV of our events interface.
7864                                 peer_state.inbound_channel_request_by_id.clear();
7865                                 pending_msg_events.retain(|msg| {
7866                                         match msg {
7867                                                 // V1 Channel Establishment
7868                                                 &events::MessageSendEvent::SendAcceptChannel { .. } => false,
7869                                                 &events::MessageSendEvent::SendOpenChannel { .. } => false,
7870                                                 &events::MessageSendEvent::SendFundingCreated { .. } => false,
7871                                                 &events::MessageSendEvent::SendFundingSigned { .. } => false,
7872                                                 // V2 Channel Establishment
7873                                                 &events::MessageSendEvent::SendAcceptChannelV2 { .. } => false,
7874                                                 &events::MessageSendEvent::SendOpenChannelV2 { .. } => false,
7875                                                 // Common Channel Establishment
7876                                                 &events::MessageSendEvent::SendChannelReady { .. } => false,
7877                                                 &events::MessageSendEvent::SendAnnouncementSignatures { .. } => false,
7878                                                 // Interactive Transaction Construction
7879                                                 &events::MessageSendEvent::SendTxAddInput { .. } => false,
7880                                                 &events::MessageSendEvent::SendTxAddOutput { .. } => false,
7881                                                 &events::MessageSendEvent::SendTxRemoveInput { .. } => false,
7882                                                 &events::MessageSendEvent::SendTxRemoveOutput { .. } => false,
7883                                                 &events::MessageSendEvent::SendTxComplete { .. } => false,
7884                                                 &events::MessageSendEvent::SendTxSignatures { .. } => false,
7885                                                 &events::MessageSendEvent::SendTxInitRbf { .. } => false,
7886                                                 &events::MessageSendEvent::SendTxAckRbf { .. } => false,
7887                                                 &events::MessageSendEvent::SendTxAbort { .. } => false,
7888                                                 // Channel Operations
7889                                                 &events::MessageSendEvent::UpdateHTLCs { .. } => false,
7890                                                 &events::MessageSendEvent::SendRevokeAndACK { .. } => false,
7891                                                 &events::MessageSendEvent::SendClosingSigned { .. } => false,
7892                                                 &events::MessageSendEvent::SendShutdown { .. } => false,
7893                                                 &events::MessageSendEvent::SendChannelReestablish { .. } => false,
7894                                                 &events::MessageSendEvent::HandleError { .. } => false,
7895                                                 // Gossip
7896                                                 &events::MessageSendEvent::SendChannelAnnouncement { .. } => false,
7897                                                 &events::MessageSendEvent::BroadcastChannelAnnouncement { .. } => true,
7898                                                 &events::MessageSendEvent::BroadcastChannelUpdate { .. } => true,
7899                                                 &events::MessageSendEvent::BroadcastNodeAnnouncement { .. } => true,
7900                                                 &events::MessageSendEvent::SendChannelUpdate { .. } => false,
7901                                                 &events::MessageSendEvent::SendChannelRangeQuery { .. } => false,
7902                                                 &events::MessageSendEvent::SendShortIdsQuery { .. } => false,
7903                                                 &events::MessageSendEvent::SendReplyChannelRange { .. } => false,
7904                                                 &events::MessageSendEvent::SendGossipTimestampFilter { .. } => false,
7905                                         }
7906                                 });
7907                                 debug_assert!(peer_state.is_connected, "A disconnected peer cannot disconnect");
7908                                 peer_state.is_connected = false;
7909                                 peer_state.ok_to_remove(true)
7910                         } else { debug_assert!(false, "Unconnected peer disconnected"); true }
7911                 };
7912                 if remove_peer {
7913                         per_peer_state.remove(counterparty_node_id);
7914                 }
7915                 mem::drop(per_peer_state);
7916
7917                 for failure in failed_channels.drain(..) {
7918                         self.finish_force_close_channel(failure);
7919                 }
7920         }
7921
7922         fn peer_connected(&self, counterparty_node_id: &PublicKey, init_msg: &msgs::Init, inbound: bool) -> Result<(), ()> {
7923                 if !init_msg.features.supports_static_remote_key() {
7924                         log_debug!(self.logger, "Peer {} does not support static remote key, disconnecting", log_pubkey!(counterparty_node_id));
7925                         return Err(());
7926                 }
7927
7928                 let mut res = Ok(());
7929
7930                 PersistenceNotifierGuard::optionally_notify(self, || {
7931                         // If we have too many peers connected which don't have funded channels, disconnect the
7932                         // peer immediately (as long as it doesn't have funded channels). If we have a bunch of
7933                         // unfunded channels taking up space in memory for disconnected peers, we still let new
7934                         // peers connect, but we'll reject new channels from them.
7935                         let connected_peers_without_funded_channels = self.peers_without_funded_channels(|node| node.is_connected);
7936                         let inbound_peer_limited = inbound && connected_peers_without_funded_channels >= MAX_NO_CHANNEL_PEERS;
7937
7938                         {
7939                                 let mut peer_state_lock = self.per_peer_state.write().unwrap();
7940                                 match peer_state_lock.entry(counterparty_node_id.clone()) {
7941                                         hash_map::Entry::Vacant(e) => {
7942                                                 if inbound_peer_limited {
7943                                                         res = Err(());
7944                                                         return NotifyOption::SkipPersistNoEvents;
7945                                                 }
7946                                                 e.insert(Mutex::new(PeerState {
7947                                                         channel_by_id: HashMap::new(),
7948                                                         inbound_channel_request_by_id: HashMap::new(),
7949                                                         latest_features: init_msg.features.clone(),
7950                                                         pending_msg_events: Vec::new(),
7951                                                         in_flight_monitor_updates: BTreeMap::new(),
7952                                                         monitor_update_blocked_actions: BTreeMap::new(),
7953                                                         actions_blocking_raa_monitor_updates: BTreeMap::new(),
7954                                                         is_connected: true,
7955                                                 }));
7956                                         },
7957                                         hash_map::Entry::Occupied(e) => {
7958                                                 let mut peer_state = e.get().lock().unwrap();
7959                                                 peer_state.latest_features = init_msg.features.clone();
7960
7961                                                 let best_block_height = self.best_block.read().unwrap().height();
7962                                                 if inbound_peer_limited &&
7963                                                         Self::unfunded_channel_count(&*peer_state, best_block_height) ==
7964                                                         peer_state.channel_by_id.len()
7965                                                 {
7966                                                         res = Err(());
7967                                                         return NotifyOption::SkipPersistNoEvents;
7968                                                 }
7969
7970                                                 debug_assert!(!peer_state.is_connected, "A peer shouldn't be connected twice");
7971                                                 peer_state.is_connected = true;
7972                                         },
7973                                 }
7974                         }
7975
7976                         log_debug!(self.logger, "Generating channel_reestablish events for {}", log_pubkey!(counterparty_node_id));
7977
7978                         let per_peer_state = self.per_peer_state.read().unwrap();
7979                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
7980                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7981                                 let peer_state = &mut *peer_state_lock;
7982                                 let pending_msg_events = &mut peer_state.pending_msg_events;
7983
7984                                 peer_state.channel_by_id.iter_mut().filter_map(|(_, phase)|
7985                                         if let ChannelPhase::Funded(chan) = phase { Some(chan) } else {
7986                                                 // Since unfunded channel maps are cleared upon disconnecting a peer, and they're not persisted
7987                                                 // (so won't be recovered after a crash), they shouldn't exist here and we would never need to
7988                                                 // worry about closing and removing them.
7989                                                 debug_assert!(false);
7990                                                 None
7991                                         }
7992                                 ).for_each(|chan| {
7993                                         pending_msg_events.push(events::MessageSendEvent::SendChannelReestablish {
7994                                                 node_id: chan.context.get_counterparty_node_id(),
7995                                                 msg: chan.get_channel_reestablish(&self.logger),
7996                                         });
7997                                 });
7998                         }
7999
8000                         return NotifyOption::SkipPersistHandleEvents;
8001                         //TODO: Also re-broadcast announcement_signatures
8002                 });
8003                 res
8004         }
8005
8006         fn handle_error(&self, counterparty_node_id: &PublicKey, msg: &msgs::ErrorMessage) {
8007                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8008
8009                 match &msg.data as &str {
8010                         "cannot co-op close channel w/ active htlcs"|
8011                         "link failed to shutdown" =>
8012                         {
8013                                 // LND hasn't properly handled shutdown messages ever, and force-closes any time we
8014                                 // send one while HTLCs are still present. The issue is tracked at
8015                                 // https://github.com/lightningnetwork/lnd/issues/6039 and has had multiple patches
8016                                 // to fix it but none so far have managed to land upstream. The issue appears to be
8017                                 // very low priority for the LND team despite being marked "P1".
8018                                 // We're not going to bother handling this in a sensible way, instead simply
8019                                 // repeating the Shutdown message on repeat until morale improves.
8020                                 if !msg.channel_id.is_zero() {
8021                                         let per_peer_state = self.per_peer_state.read().unwrap();
8022                                         let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
8023                                         if peer_state_mutex_opt.is_none() { return; }
8024                                         let mut peer_state = peer_state_mutex_opt.unwrap().lock().unwrap();
8025                                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get(&msg.channel_id) {
8026                                                 if let Some(msg) = chan.get_outbound_shutdown() {
8027                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
8028                                                                 node_id: *counterparty_node_id,
8029                                                                 msg,
8030                                                         });
8031                                                 }
8032                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::HandleError {
8033                                                         node_id: *counterparty_node_id,
8034                                                         action: msgs::ErrorAction::SendWarningMessage {
8035                                                                 msg: msgs::WarningMessage {
8036                                                                         channel_id: msg.channel_id,
8037                                                                         data: "You appear to be exhibiting LND bug 6039, we'll keep sending you shutdown messages until you handle them correctly".to_owned()
8038                                                                 },
8039                                                                 log_level: Level::Trace,
8040                                                         }
8041                                                 });
8042                                         }
8043                                 }
8044                                 return;
8045                         }
8046                         _ => {}
8047                 }
8048
8049                 if msg.channel_id.is_zero() {
8050                         let channel_ids: Vec<ChannelId> = {
8051                                 let per_peer_state = self.per_peer_state.read().unwrap();
8052                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
8053                                 if peer_state_mutex_opt.is_none() { return; }
8054                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
8055                                 let peer_state = &mut *peer_state_lock;
8056                                 // Note that we don't bother generating any events for pre-accept channels -
8057                                 // they're not considered "channels" yet from the PoV of our events interface.
8058                                 peer_state.inbound_channel_request_by_id.clear();
8059                                 peer_state.channel_by_id.keys().cloned().collect()
8060                         };
8061                         for channel_id in channel_ids {
8062                                 // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
8063                                 let _ = self.force_close_channel_with_peer(&channel_id, counterparty_node_id, Some(&msg.data), true);
8064                         }
8065                 } else {
8066                         {
8067                                 // First check if we can advance the channel type and try again.
8068                                 let per_peer_state = self.per_peer_state.read().unwrap();
8069                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
8070                                 if peer_state_mutex_opt.is_none() { return; }
8071                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
8072                                 let peer_state = &mut *peer_state_lock;
8073                                 if let Some(ChannelPhase::UnfundedOutboundV1(chan)) = peer_state.channel_by_id.get_mut(&msg.channel_id) {
8074                                         if let Ok(msg) = chan.maybe_handle_error_without_close(self.genesis_hash, &self.fee_estimator) {
8075                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
8076                                                         node_id: *counterparty_node_id,
8077                                                         msg,
8078                                                 });
8079                                                 return;
8080                                         }
8081                                 }
8082                         }
8083
8084                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
8085                         let _ = self.force_close_channel_with_peer(&msg.channel_id, counterparty_node_id, Some(&msg.data), true);
8086                 }
8087         }
8088
8089         fn provided_node_features(&self) -> NodeFeatures {
8090                 provided_node_features(&self.default_configuration)
8091         }
8092
8093         fn provided_init_features(&self, _their_init_features: &PublicKey) -> InitFeatures {
8094                 provided_init_features(&self.default_configuration)
8095         }
8096
8097         fn get_genesis_hashes(&self) -> Option<Vec<ChainHash>> {
8098                 Some(vec![ChainHash::from(&self.genesis_hash[..])])
8099         }
8100
8101         fn handle_tx_add_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddInput) {
8102                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8103                         "Dual-funded channels not supported".to_owned(),
8104                          msg.channel_id.clone())), *counterparty_node_id);
8105         }
8106
8107         fn handle_tx_add_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddOutput) {
8108                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8109                         "Dual-funded channels not supported".to_owned(),
8110                          msg.channel_id.clone())), *counterparty_node_id);
8111         }
8112
8113         fn handle_tx_remove_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveInput) {
8114                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8115                         "Dual-funded channels not supported".to_owned(),
8116                          msg.channel_id.clone())), *counterparty_node_id);
8117         }
8118
8119         fn handle_tx_remove_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveOutput) {
8120                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8121                         "Dual-funded channels not supported".to_owned(),
8122                          msg.channel_id.clone())), *counterparty_node_id);
8123         }
8124
8125         fn handle_tx_complete(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxComplete) {
8126                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8127                         "Dual-funded channels not supported".to_owned(),
8128                          msg.channel_id.clone())), *counterparty_node_id);
8129         }
8130
8131         fn handle_tx_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxSignatures) {
8132                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8133                         "Dual-funded channels not supported".to_owned(),
8134                          msg.channel_id.clone())), *counterparty_node_id);
8135         }
8136
8137         fn handle_tx_init_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxInitRbf) {
8138                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8139                         "Dual-funded channels not supported".to_owned(),
8140                          msg.channel_id.clone())), *counterparty_node_id);
8141         }
8142
8143         fn handle_tx_ack_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAckRbf) {
8144                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8145                         "Dual-funded channels not supported".to_owned(),
8146                          msg.channel_id.clone())), *counterparty_node_id);
8147         }
8148
8149         fn handle_tx_abort(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAbort) {
8150                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8151                         "Dual-funded channels not supported".to_owned(),
8152                          msg.channel_id.clone())), *counterparty_node_id);
8153         }
8154 }
8155
8156 /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
8157 /// [`ChannelManager`].
8158 pub(crate) fn provided_node_features(config: &UserConfig) -> NodeFeatures {
8159         let mut node_features = provided_init_features(config).to_context();
8160         node_features.set_keysend_optional();
8161         node_features
8162 }
8163
8164 /// Fetches the set of [`Bolt11InvoiceFeatures`] flags which are provided by or required by
8165 /// [`ChannelManager`].
8166 ///
8167 /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
8168 /// or not. Thus, this method is not public.
8169 #[cfg(any(feature = "_test_utils", test))]
8170 pub(crate) fn provided_invoice_features(config: &UserConfig) -> Bolt11InvoiceFeatures {
8171         provided_init_features(config).to_context()
8172 }
8173
8174 /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
8175 /// [`ChannelManager`].
8176 pub(crate) fn provided_channel_features(config: &UserConfig) -> ChannelFeatures {
8177         provided_init_features(config).to_context()
8178 }
8179
8180 /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
8181 /// [`ChannelManager`].
8182 pub(crate) fn provided_channel_type_features(config: &UserConfig) -> ChannelTypeFeatures {
8183         ChannelTypeFeatures::from_init(&provided_init_features(config))
8184 }
8185
8186 /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
8187 /// [`ChannelManager`].
8188 pub fn provided_init_features(config: &UserConfig) -> InitFeatures {
8189         // Note that if new features are added here which other peers may (eventually) require, we
8190         // should also add the corresponding (optional) bit to the [`ChannelMessageHandler`] impl for
8191         // [`ErroringMessageHandler`].
8192         let mut features = InitFeatures::empty();
8193         features.set_data_loss_protect_required();
8194         features.set_upfront_shutdown_script_optional();
8195         features.set_variable_length_onion_required();
8196         features.set_static_remote_key_required();
8197         features.set_payment_secret_required();
8198         features.set_basic_mpp_optional();
8199         features.set_wumbo_optional();
8200         features.set_shutdown_any_segwit_optional();
8201         features.set_channel_type_optional();
8202         features.set_scid_privacy_optional();
8203         features.set_zero_conf_optional();
8204         if config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx {
8205                 features.set_anchors_zero_fee_htlc_tx_optional();
8206         }
8207         features
8208 }
8209
8210 const SERIALIZATION_VERSION: u8 = 1;
8211 const MIN_SERIALIZATION_VERSION: u8 = 1;
8212
8213 impl_writeable_tlv_based!(CounterpartyForwardingInfo, {
8214         (2, fee_base_msat, required),
8215         (4, fee_proportional_millionths, required),
8216         (6, cltv_expiry_delta, required),
8217 });
8218
8219 impl_writeable_tlv_based!(ChannelCounterparty, {
8220         (2, node_id, required),
8221         (4, features, required),
8222         (6, unspendable_punishment_reserve, required),
8223         (8, forwarding_info, option),
8224         (9, outbound_htlc_minimum_msat, option),
8225         (11, outbound_htlc_maximum_msat, option),
8226 });
8227
8228 impl Writeable for ChannelDetails {
8229         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8230                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
8231                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
8232                 let user_channel_id_low = self.user_channel_id as u64;
8233                 let user_channel_id_high_opt = Some((self.user_channel_id >> 64) as u64);
8234                 write_tlv_fields!(writer, {
8235                         (1, self.inbound_scid_alias, option),
8236                         (2, self.channel_id, required),
8237                         (3, self.channel_type, option),
8238                         (4, self.counterparty, required),
8239                         (5, self.outbound_scid_alias, option),
8240                         (6, self.funding_txo, option),
8241                         (7, self.config, option),
8242                         (8, self.short_channel_id, option),
8243                         (9, self.confirmations, option),
8244                         (10, self.channel_value_satoshis, required),
8245                         (12, self.unspendable_punishment_reserve, option),
8246                         (14, user_channel_id_low, required),
8247                         (16, self.next_outbound_htlc_limit_msat, required),  // Forwards compatibility for removed balance_msat field.
8248                         (18, self.outbound_capacity_msat, required),
8249                         (19, self.next_outbound_htlc_limit_msat, required),
8250                         (20, self.inbound_capacity_msat, required),
8251                         (21, self.next_outbound_htlc_minimum_msat, required),
8252                         (22, self.confirmations_required, option),
8253                         (24, self.force_close_spend_delay, option),
8254                         (26, self.is_outbound, required),
8255                         (28, self.is_channel_ready, required),
8256                         (30, self.is_usable, required),
8257                         (32, self.is_public, required),
8258                         (33, self.inbound_htlc_minimum_msat, option),
8259                         (35, self.inbound_htlc_maximum_msat, option),
8260                         (37, user_channel_id_high_opt, option),
8261                         (39, self.feerate_sat_per_1000_weight, option),
8262                         (41, self.channel_shutdown_state, option),
8263                 });
8264                 Ok(())
8265         }
8266 }
8267
8268 impl Readable for ChannelDetails {
8269         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8270                 _init_and_read_len_prefixed_tlv_fields!(reader, {
8271                         (1, inbound_scid_alias, option),
8272                         (2, channel_id, required),
8273                         (3, channel_type, option),
8274                         (4, counterparty, required),
8275                         (5, outbound_scid_alias, option),
8276                         (6, funding_txo, option),
8277                         (7, config, option),
8278                         (8, short_channel_id, option),
8279                         (9, confirmations, option),
8280                         (10, channel_value_satoshis, required),
8281                         (12, unspendable_punishment_reserve, option),
8282                         (14, user_channel_id_low, required),
8283                         (16, _balance_msat, option),  // Backwards compatibility for removed balance_msat field.
8284                         (18, outbound_capacity_msat, required),
8285                         // Note that by the time we get past the required read above, outbound_capacity_msat will be
8286                         // filled in, so we can safely unwrap it here.
8287                         (19, next_outbound_htlc_limit_msat, (default_value, outbound_capacity_msat.0.unwrap() as u64)),
8288                         (20, inbound_capacity_msat, required),
8289                         (21, next_outbound_htlc_minimum_msat, (default_value, 0)),
8290                         (22, confirmations_required, option),
8291                         (24, force_close_spend_delay, option),
8292                         (26, is_outbound, required),
8293                         (28, is_channel_ready, required),
8294                         (30, is_usable, required),
8295                         (32, is_public, required),
8296                         (33, inbound_htlc_minimum_msat, option),
8297                         (35, inbound_htlc_maximum_msat, option),
8298                         (37, user_channel_id_high_opt, option),
8299                         (39, feerate_sat_per_1000_weight, option),
8300                         (41, channel_shutdown_state, option),
8301                 });
8302
8303                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
8304                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
8305                 let user_channel_id_low: u64 = user_channel_id_low.0.unwrap();
8306                 let user_channel_id = user_channel_id_low as u128 +
8307                         ((user_channel_id_high_opt.unwrap_or(0 as u64) as u128) << 64);
8308
8309                 let _balance_msat: Option<u64> = _balance_msat;
8310
8311                 Ok(Self {
8312                         inbound_scid_alias,
8313                         channel_id: channel_id.0.unwrap(),
8314                         channel_type,
8315                         counterparty: counterparty.0.unwrap(),
8316                         outbound_scid_alias,
8317                         funding_txo,
8318                         config,
8319                         short_channel_id,
8320                         channel_value_satoshis: channel_value_satoshis.0.unwrap(),
8321                         unspendable_punishment_reserve,
8322                         user_channel_id,
8323                         outbound_capacity_msat: outbound_capacity_msat.0.unwrap(),
8324                         next_outbound_htlc_limit_msat: next_outbound_htlc_limit_msat.0.unwrap(),
8325                         next_outbound_htlc_minimum_msat: next_outbound_htlc_minimum_msat.0.unwrap(),
8326                         inbound_capacity_msat: inbound_capacity_msat.0.unwrap(),
8327                         confirmations_required,
8328                         confirmations,
8329                         force_close_spend_delay,
8330                         is_outbound: is_outbound.0.unwrap(),
8331                         is_channel_ready: is_channel_ready.0.unwrap(),
8332                         is_usable: is_usable.0.unwrap(),
8333                         is_public: is_public.0.unwrap(),
8334                         inbound_htlc_minimum_msat,
8335                         inbound_htlc_maximum_msat,
8336                         feerate_sat_per_1000_weight,
8337                         channel_shutdown_state,
8338                 })
8339         }
8340 }
8341
8342 impl_writeable_tlv_based!(PhantomRouteHints, {
8343         (2, channels, required_vec),
8344         (4, phantom_scid, required),
8345         (6, real_node_pubkey, required),
8346 });
8347
8348 impl_writeable_tlv_based_enum!(PendingHTLCRouting,
8349         (0, Forward) => {
8350                 (0, onion_packet, required),
8351                 (2, short_channel_id, required),
8352         },
8353         (1, Receive) => {
8354                 (0, payment_data, required),
8355                 (1, phantom_shared_secret, option),
8356                 (2, incoming_cltv_expiry, required),
8357                 (3, payment_metadata, option),
8358                 (5, custom_tlvs, optional_vec),
8359         },
8360         (2, ReceiveKeysend) => {
8361                 (0, payment_preimage, required),
8362                 (2, incoming_cltv_expiry, required),
8363                 (3, payment_metadata, option),
8364                 (4, payment_data, option), // Added in 0.0.116
8365                 (5, custom_tlvs, optional_vec),
8366         },
8367 ;);
8368
8369 impl_writeable_tlv_based!(PendingHTLCInfo, {
8370         (0, routing, required),
8371         (2, incoming_shared_secret, required),
8372         (4, payment_hash, required),
8373         (6, outgoing_amt_msat, required),
8374         (8, outgoing_cltv_value, required),
8375         (9, incoming_amt_msat, option),
8376         (10, skimmed_fee_msat, option),
8377 });
8378
8379
8380 impl Writeable for HTLCFailureMsg {
8381         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8382                 match self {
8383                         HTLCFailureMsg::Relay(msgs::UpdateFailHTLC { channel_id, htlc_id, reason }) => {
8384                                 0u8.write(writer)?;
8385                                 channel_id.write(writer)?;
8386                                 htlc_id.write(writer)?;
8387                                 reason.write(writer)?;
8388                         },
8389                         HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
8390                                 channel_id, htlc_id, sha256_of_onion, failure_code
8391                         }) => {
8392                                 1u8.write(writer)?;
8393                                 channel_id.write(writer)?;
8394                                 htlc_id.write(writer)?;
8395                                 sha256_of_onion.write(writer)?;
8396                                 failure_code.write(writer)?;
8397                         },
8398                 }
8399                 Ok(())
8400         }
8401 }
8402
8403 impl Readable for HTLCFailureMsg {
8404         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8405                 let id: u8 = Readable::read(reader)?;
8406                 match id {
8407                         0 => {
8408                                 Ok(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
8409                                         channel_id: Readable::read(reader)?,
8410                                         htlc_id: Readable::read(reader)?,
8411                                         reason: Readable::read(reader)?,
8412                                 }))
8413                         },
8414                         1 => {
8415                                 Ok(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
8416                                         channel_id: Readable::read(reader)?,
8417                                         htlc_id: Readable::read(reader)?,
8418                                         sha256_of_onion: Readable::read(reader)?,
8419                                         failure_code: Readable::read(reader)?,
8420                                 }))
8421                         },
8422                         // In versions prior to 0.0.101, HTLCFailureMsg objects were written with type 0 or 1 but
8423                         // weren't length-prefixed and thus didn't support reading the TLV stream suffix of the network
8424                         // messages contained in the variants.
8425                         // In version 0.0.101, support for reading the variants with these types was added, and
8426                         // we should migrate to writing these variants when UpdateFailHTLC or
8427                         // UpdateFailMalformedHTLC get TLV fields.
8428                         2 => {
8429                                 let length: BigSize = Readable::read(reader)?;
8430                                 let mut s = FixedLengthReader::new(reader, length.0);
8431                                 let res = Readable::read(&mut s)?;
8432                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
8433                                 Ok(HTLCFailureMsg::Relay(res))
8434                         },
8435                         3 => {
8436                                 let length: BigSize = Readable::read(reader)?;
8437                                 let mut s = FixedLengthReader::new(reader, length.0);
8438                                 let res = Readable::read(&mut s)?;
8439                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
8440                                 Ok(HTLCFailureMsg::Malformed(res))
8441                         },
8442                         _ => Err(DecodeError::UnknownRequiredFeature),
8443                 }
8444         }
8445 }
8446
8447 impl_writeable_tlv_based_enum!(PendingHTLCStatus, ;
8448         (0, Forward),
8449         (1, Fail),
8450 );
8451
8452 impl_writeable_tlv_based!(HTLCPreviousHopData, {
8453         (0, short_channel_id, required),
8454         (1, phantom_shared_secret, option),
8455         (2, outpoint, required),
8456         (4, htlc_id, required),
8457         (6, incoming_packet_shared_secret, required),
8458         (7, user_channel_id, option),
8459 });
8460
8461 impl Writeable for ClaimableHTLC {
8462         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8463                 let (payment_data, keysend_preimage) = match &self.onion_payload {
8464                         OnionPayload::Invoice { _legacy_hop_data } => (_legacy_hop_data.as_ref(), None),
8465                         OnionPayload::Spontaneous(preimage) => (None, Some(preimage)),
8466                 };
8467                 write_tlv_fields!(writer, {
8468                         (0, self.prev_hop, required),
8469                         (1, self.total_msat, required),
8470                         (2, self.value, required),
8471                         (3, self.sender_intended_value, required),
8472                         (4, payment_data, option),
8473                         (5, self.total_value_received, option),
8474                         (6, self.cltv_expiry, required),
8475                         (8, keysend_preimage, option),
8476                         (10, self.counterparty_skimmed_fee_msat, option),
8477                 });
8478                 Ok(())
8479         }
8480 }
8481
8482 impl Readable for ClaimableHTLC {
8483         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8484                 _init_and_read_len_prefixed_tlv_fields!(reader, {
8485                         (0, prev_hop, required),
8486                         (1, total_msat, option),
8487                         (2, value_ser, required),
8488                         (3, sender_intended_value, option),
8489                         (4, payment_data_opt, option),
8490                         (5, total_value_received, option),
8491                         (6, cltv_expiry, required),
8492                         (8, keysend_preimage, option),
8493                         (10, counterparty_skimmed_fee_msat, option),
8494                 });
8495                 let payment_data: Option<msgs::FinalOnionHopData> = payment_data_opt;
8496                 let value = value_ser.0.unwrap();
8497                 let onion_payload = match keysend_preimage {
8498                         Some(p) => {
8499                                 if payment_data.is_some() {
8500                                         return Err(DecodeError::InvalidValue)
8501                                 }
8502                                 if total_msat.is_none() {
8503                                         total_msat = Some(value);
8504                                 }
8505                                 OnionPayload::Spontaneous(p)
8506                         },
8507                         None => {
8508                                 if total_msat.is_none() {
8509                                         if payment_data.is_none() {
8510                                                 return Err(DecodeError::InvalidValue)
8511                                         }
8512                                         total_msat = Some(payment_data.as_ref().unwrap().total_msat);
8513                                 }
8514                                 OnionPayload::Invoice { _legacy_hop_data: payment_data }
8515                         },
8516                 };
8517                 Ok(Self {
8518                         prev_hop: prev_hop.0.unwrap(),
8519                         timer_ticks: 0,
8520                         value,
8521                         sender_intended_value: sender_intended_value.unwrap_or(value),
8522                         total_value_received,
8523                         total_msat: total_msat.unwrap(),
8524                         onion_payload,
8525                         cltv_expiry: cltv_expiry.0.unwrap(),
8526                         counterparty_skimmed_fee_msat,
8527                 })
8528         }
8529 }
8530
8531 impl Readable for HTLCSource {
8532         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8533                 let id: u8 = Readable::read(reader)?;
8534                 match id {
8535                         0 => {
8536                                 let mut session_priv: crate::util::ser::RequiredWrapper<SecretKey> = crate::util::ser::RequiredWrapper(None);
8537                                 let mut first_hop_htlc_msat: u64 = 0;
8538                                 let mut path_hops = Vec::new();
8539                                 let mut payment_id = None;
8540                                 let mut payment_params: Option<PaymentParameters> = None;
8541                                 let mut blinded_tail: Option<BlindedTail> = None;
8542                                 read_tlv_fields!(reader, {
8543                                         (0, session_priv, required),
8544                                         (1, payment_id, option),
8545                                         (2, first_hop_htlc_msat, required),
8546                                         (4, path_hops, required_vec),
8547                                         (5, payment_params, (option: ReadableArgs, 0)),
8548                                         (6, blinded_tail, option),
8549                                 });
8550                                 if payment_id.is_none() {
8551                                         // For backwards compat, if there was no payment_id written, use the session_priv bytes
8552                                         // instead.
8553                                         payment_id = Some(PaymentId(*session_priv.0.unwrap().as_ref()));
8554                                 }
8555                                 let path = Path { hops: path_hops, blinded_tail };
8556                                 if path.hops.len() == 0 {
8557                                         return Err(DecodeError::InvalidValue);
8558                                 }
8559                                 if let Some(params) = payment_params.as_mut() {
8560                                         if let Payee::Clear { ref mut final_cltv_expiry_delta, .. } = params.payee {
8561                                                 if final_cltv_expiry_delta == &0 {
8562                                                         *final_cltv_expiry_delta = path.final_cltv_expiry_delta().ok_or(DecodeError::InvalidValue)?;
8563                                                 }
8564                                         }
8565                                 }
8566                                 Ok(HTLCSource::OutboundRoute {
8567                                         session_priv: session_priv.0.unwrap(),
8568                                         first_hop_htlc_msat,
8569                                         path,
8570                                         payment_id: payment_id.unwrap(),
8571                                 })
8572                         }
8573                         1 => Ok(HTLCSource::PreviousHopData(Readable::read(reader)?)),
8574                         _ => Err(DecodeError::UnknownRequiredFeature),
8575                 }
8576         }
8577 }
8578
8579 impl Writeable for HTLCSource {
8580         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), crate::io::Error> {
8581                 match self {
8582                         HTLCSource::OutboundRoute { ref session_priv, ref first_hop_htlc_msat, ref path, payment_id } => {
8583                                 0u8.write(writer)?;
8584                                 let payment_id_opt = Some(payment_id);
8585                                 write_tlv_fields!(writer, {
8586                                         (0, session_priv, required),
8587                                         (1, payment_id_opt, option),
8588                                         (2, first_hop_htlc_msat, required),
8589                                         // 3 was previously used to write a PaymentSecret for the payment.
8590                                         (4, path.hops, required_vec),
8591                                         (5, None::<PaymentParameters>, option), // payment_params in LDK versions prior to 0.0.115
8592                                         (6, path.blinded_tail, option),
8593                                  });
8594                         }
8595                         HTLCSource::PreviousHopData(ref field) => {
8596                                 1u8.write(writer)?;
8597                                 field.write(writer)?;
8598                         }
8599                 }
8600                 Ok(())
8601         }
8602 }
8603
8604 impl_writeable_tlv_based!(PendingAddHTLCInfo, {
8605         (0, forward_info, required),
8606         (1, prev_user_channel_id, (default_value, 0)),
8607         (2, prev_short_channel_id, required),
8608         (4, prev_htlc_id, required),
8609         (6, prev_funding_outpoint, required),
8610 });
8611
8612 impl_writeable_tlv_based_enum!(HTLCForwardInfo,
8613         (1, FailHTLC) => {
8614                 (0, htlc_id, required),
8615                 (2, err_packet, required),
8616         };
8617         (0, AddHTLC)
8618 );
8619
8620 impl_writeable_tlv_based!(PendingInboundPayment, {
8621         (0, payment_secret, required),
8622         (2, expiry_time, required),
8623         (4, user_payment_id, required),
8624         (6, payment_preimage, required),
8625         (8, min_value_msat, required),
8626 });
8627
8628 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>
8629 where
8630         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8631         T::Target: BroadcasterInterface,
8632         ES::Target: EntropySource,
8633         NS::Target: NodeSigner,
8634         SP::Target: SignerProvider,
8635         F::Target: FeeEstimator,
8636         R::Target: Router,
8637         L::Target: Logger,
8638 {
8639         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8640                 let _consistency_lock = self.total_consistency_lock.write().unwrap();
8641
8642                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
8643
8644                 self.genesis_hash.write(writer)?;
8645                 {
8646                         let best_block = self.best_block.read().unwrap();
8647                         best_block.height().write(writer)?;
8648                         best_block.block_hash().write(writer)?;
8649                 }
8650
8651                 let mut serializable_peer_count: u64 = 0;
8652                 {
8653                         let per_peer_state = self.per_peer_state.read().unwrap();
8654                         let mut number_of_funded_channels = 0;
8655                         for (_, peer_state_mutex) in per_peer_state.iter() {
8656                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8657                                 let peer_state = &mut *peer_state_lock;
8658                                 if !peer_state.ok_to_remove(false) {
8659                                         serializable_peer_count += 1;
8660                                 }
8661
8662                                 number_of_funded_channels += peer_state.channel_by_id.iter().filter(
8663                                         |(_, phase)| if let ChannelPhase::Funded(chan) = phase { chan.context.is_funding_initiated() } else { false }
8664                                 ).count();
8665                         }
8666
8667                         (number_of_funded_channels as u64).write(writer)?;
8668
8669                         for (_, peer_state_mutex) in per_peer_state.iter() {
8670                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8671                                 let peer_state = &mut *peer_state_lock;
8672                                 for channel in peer_state.channel_by_id.iter().filter_map(
8673                                         |(_, phase)| if let ChannelPhase::Funded(channel) = phase {
8674                                                 if channel.context.is_funding_initiated() { Some(channel) } else { None }
8675                                         } else { None }
8676                                 ) {
8677                                         channel.write(writer)?;
8678                                 }
8679                         }
8680                 }
8681
8682                 {
8683                         let forward_htlcs = self.forward_htlcs.lock().unwrap();
8684                         (forward_htlcs.len() as u64).write(writer)?;
8685                         for (short_channel_id, pending_forwards) in forward_htlcs.iter() {
8686                                 short_channel_id.write(writer)?;
8687                                 (pending_forwards.len() as u64).write(writer)?;
8688                                 for forward in pending_forwards {
8689                                         forward.write(writer)?;
8690                                 }
8691                         }
8692                 }
8693
8694                 let per_peer_state = self.per_peer_state.write().unwrap();
8695
8696                 let pending_inbound_payments = self.pending_inbound_payments.lock().unwrap();
8697                 let claimable_payments = self.claimable_payments.lock().unwrap();
8698                 let pending_outbound_payments = self.pending_outbound_payments.pending_outbound_payments.lock().unwrap();
8699
8700                 let mut htlc_purposes: Vec<&events::PaymentPurpose> = Vec::new();
8701                 let mut htlc_onion_fields: Vec<&_> = Vec::new();
8702                 (claimable_payments.claimable_payments.len() as u64).write(writer)?;
8703                 for (payment_hash, payment) in claimable_payments.claimable_payments.iter() {
8704                         payment_hash.write(writer)?;
8705                         (payment.htlcs.len() as u64).write(writer)?;
8706                         for htlc in payment.htlcs.iter() {
8707                                 htlc.write(writer)?;
8708                         }
8709                         htlc_purposes.push(&payment.purpose);
8710                         htlc_onion_fields.push(&payment.onion_fields);
8711                 }
8712
8713                 let mut monitor_update_blocked_actions_per_peer = None;
8714                 let mut peer_states = Vec::new();
8715                 for (_, peer_state_mutex) in per_peer_state.iter() {
8716                         // Because we're holding the owning `per_peer_state` write lock here there's no chance
8717                         // of a lockorder violation deadlock - no other thread can be holding any
8718                         // per_peer_state lock at all.
8719                         peer_states.push(peer_state_mutex.unsafe_well_ordered_double_lock_self());
8720                 }
8721
8722                 (serializable_peer_count).write(writer)?;
8723                 for ((peer_pubkey, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
8724                         // Peers which we have no channels to should be dropped once disconnected. As we
8725                         // disconnect all peers when shutting down and serializing the ChannelManager, we
8726                         // consider all peers as disconnected here. There's therefore no need write peers with
8727                         // no channels.
8728                         if !peer_state.ok_to_remove(false) {
8729                                 peer_pubkey.write(writer)?;
8730                                 peer_state.latest_features.write(writer)?;
8731                                 if !peer_state.monitor_update_blocked_actions.is_empty() {
8732                                         monitor_update_blocked_actions_per_peer
8733                                                 .get_or_insert_with(Vec::new)
8734                                                 .push((*peer_pubkey, &peer_state.monitor_update_blocked_actions));
8735                                 }
8736                         }
8737                 }
8738
8739                 let events = self.pending_events.lock().unwrap();
8740                 // LDK versions prior to 0.0.115 don't support post-event actions, thus if there's no
8741                 // actions at all, skip writing the required TLV. Otherwise, pre-0.0.115 versions will
8742                 // refuse to read the new ChannelManager.
8743                 let events_not_backwards_compatible = events.iter().any(|(_, action)| action.is_some());
8744                 if events_not_backwards_compatible {
8745                         // If we're gonna write a even TLV that will overwrite our events anyway we might as
8746                         // well save the space and not write any events here.
8747                         0u64.write(writer)?;
8748                 } else {
8749                         (events.len() as u64).write(writer)?;
8750                         for (event, _) in events.iter() {
8751                                 event.write(writer)?;
8752                         }
8753                 }
8754
8755                 // LDK versions prior to 0.0.116 wrote the `pending_background_events`
8756                 // `MonitorUpdateRegeneratedOnStartup`s here, however there was never a reason to do so -
8757                 // the closing monitor updates were always effectively replayed on startup (either directly
8758                 // by calling `broadcast_latest_holder_commitment_txn` on a `ChannelMonitor` during
8759                 // deserialization or, in 0.0.115, by regenerating the monitor update itself).
8760                 0u64.write(writer)?;
8761
8762                 // Prior to 0.0.111 we tracked node_announcement serials here, however that now happens in
8763                 // `PeerManager`, and thus we simply write the `highest_seen_timestamp` twice, which is
8764                 // likely to be identical.
8765                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
8766                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
8767
8768                 (pending_inbound_payments.len() as u64).write(writer)?;
8769                 for (hash, pending_payment) in pending_inbound_payments.iter() {
8770                         hash.write(writer)?;
8771                         pending_payment.write(writer)?;
8772                 }
8773
8774                 // For backwards compat, write the session privs and their total length.
8775                 let mut num_pending_outbounds_compat: u64 = 0;
8776                 for (_, outbound) in pending_outbound_payments.iter() {
8777                         if !outbound.is_fulfilled() && !outbound.abandoned() {
8778                                 num_pending_outbounds_compat += outbound.remaining_parts() as u64;
8779                         }
8780                 }
8781                 num_pending_outbounds_compat.write(writer)?;
8782                 for (_, outbound) in pending_outbound_payments.iter() {
8783                         match outbound {
8784                                 PendingOutboundPayment::Legacy { session_privs } |
8785                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
8786                                         for session_priv in session_privs.iter() {
8787                                                 session_priv.write(writer)?;
8788                                         }
8789                                 }
8790                                 PendingOutboundPayment::AwaitingInvoice { .. } => {},
8791                                 PendingOutboundPayment::InvoiceReceived { .. } => {},
8792                                 PendingOutboundPayment::Fulfilled { .. } => {},
8793                                 PendingOutboundPayment::Abandoned { .. } => {},
8794                         }
8795                 }
8796
8797                 // Encode without retry info for 0.0.101 compatibility.
8798                 let mut pending_outbound_payments_no_retry: HashMap<PaymentId, HashSet<[u8; 32]>> = HashMap::new();
8799                 for (id, outbound) in pending_outbound_payments.iter() {
8800                         match outbound {
8801                                 PendingOutboundPayment::Legacy { session_privs } |
8802                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
8803                                         pending_outbound_payments_no_retry.insert(*id, session_privs.clone());
8804                                 },
8805                                 _ => {},
8806                         }
8807                 }
8808
8809                 let mut pending_intercepted_htlcs = None;
8810                 let our_pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
8811                 if our_pending_intercepts.len() != 0 {
8812                         pending_intercepted_htlcs = Some(our_pending_intercepts);
8813                 }
8814
8815                 let mut pending_claiming_payments = Some(&claimable_payments.pending_claiming_payments);
8816                 if pending_claiming_payments.as_ref().unwrap().is_empty() {
8817                         // LDK versions prior to 0.0.113 do not know how to read the pending claimed payments
8818                         // map. Thus, if there are no entries we skip writing a TLV for it.
8819                         pending_claiming_payments = None;
8820                 }
8821
8822                 let mut in_flight_monitor_updates: Option<HashMap<(&PublicKey, &OutPoint), &Vec<ChannelMonitorUpdate>>> = None;
8823                 for ((counterparty_id, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
8824                         for (funding_outpoint, updates) in peer_state.in_flight_monitor_updates.iter() {
8825                                 if !updates.is_empty() {
8826                                         if in_flight_monitor_updates.is_none() { in_flight_monitor_updates = Some(HashMap::new()); }
8827                                         in_flight_monitor_updates.as_mut().unwrap().insert((counterparty_id, funding_outpoint), updates);
8828                                 }
8829                         }
8830                 }
8831
8832                 write_tlv_fields!(writer, {
8833                         (1, pending_outbound_payments_no_retry, required),
8834                         (2, pending_intercepted_htlcs, option),
8835                         (3, pending_outbound_payments, required),
8836                         (4, pending_claiming_payments, option),
8837                         (5, self.our_network_pubkey, required),
8838                         (6, monitor_update_blocked_actions_per_peer, option),
8839                         (7, self.fake_scid_rand_bytes, required),
8840                         (8, if events_not_backwards_compatible { Some(&*events) } else { None }, option),
8841                         (9, htlc_purposes, required_vec),
8842                         (10, in_flight_monitor_updates, option),
8843                         (11, self.probing_cookie_secret, required),
8844                         (13, htlc_onion_fields, optional_vec),
8845                 });
8846
8847                 Ok(())
8848         }
8849 }
8850
8851 impl Writeable for VecDeque<(Event, Option<EventCompletionAction>)> {
8852         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
8853                 (self.len() as u64).write(w)?;
8854                 for (event, action) in self.iter() {
8855                         event.write(w)?;
8856                         action.write(w)?;
8857                         #[cfg(debug_assertions)] {
8858                                 // Events are MaybeReadable, in some cases indicating that they shouldn't actually
8859                                 // be persisted and are regenerated on restart. However, if such an event has a
8860                                 // post-event-handling action we'll write nothing for the event and would have to
8861                                 // either forget the action or fail on deserialization (which we do below). Thus,
8862                                 // check that the event is sane here.
8863                                 let event_encoded = event.encode();
8864                                 let event_read: Option<Event> =
8865                                         MaybeReadable::read(&mut &event_encoded[..]).unwrap();
8866                                 if action.is_some() { assert!(event_read.is_some()); }
8867                         }
8868                 }
8869                 Ok(())
8870         }
8871 }
8872 impl Readable for VecDeque<(Event, Option<EventCompletionAction>)> {
8873         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8874                 let len: u64 = Readable::read(reader)?;
8875                 const MAX_ALLOC_SIZE: u64 = 1024 * 16;
8876                 let mut events: Self = VecDeque::with_capacity(cmp::min(
8877                         MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>() as u64,
8878                         len) as usize);
8879                 for _ in 0..len {
8880                         let ev_opt = MaybeReadable::read(reader)?;
8881                         let action = Readable::read(reader)?;
8882                         if let Some(ev) = ev_opt {
8883                                 events.push_back((ev, action));
8884                         } else if action.is_some() {
8885                                 return Err(DecodeError::InvalidValue);
8886                         }
8887                 }
8888                 Ok(events)
8889         }
8890 }
8891
8892 impl_writeable_tlv_based_enum!(ChannelShutdownState,
8893         (0, NotShuttingDown) => {},
8894         (2, ShutdownInitiated) => {},
8895         (4, ResolvingHTLCs) => {},
8896         (6, NegotiatingClosingFee) => {},
8897         (8, ShutdownComplete) => {}, ;
8898 );
8899
8900 /// Arguments for the creation of a ChannelManager that are not deserialized.
8901 ///
8902 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
8903 /// is:
8904 /// 1) Deserialize all stored [`ChannelMonitor`]s.
8905 /// 2) Deserialize the [`ChannelManager`] by filling in this struct and calling:
8906 ///    `<(BlockHash, ChannelManager)>::read(reader, args)`
8907 ///    This may result in closing some channels if the [`ChannelMonitor`] is newer than the stored
8908 ///    [`ChannelManager`] state to ensure no loss of funds. Thus, transactions may be broadcasted.
8909 /// 3) If you are not fetching full blocks, register all relevant [`ChannelMonitor`] outpoints the
8910 ///    same way you would handle a [`chain::Filter`] call using
8911 ///    [`ChannelMonitor::get_outputs_to_watch`] and [`ChannelMonitor::get_funding_txo`].
8912 /// 4) Reconnect blocks on your [`ChannelMonitor`]s.
8913 /// 5) Disconnect/connect blocks on the [`ChannelManager`].
8914 /// 6) Re-persist the [`ChannelMonitor`]s to ensure the latest state is on disk.
8915 ///    Note that if you're using a [`ChainMonitor`] for your [`chain::Watch`] implementation, you
8916 ///    will likely accomplish this as a side-effect of calling [`chain::Watch::watch_channel`] in
8917 ///    the next step.
8918 /// 7) Move the [`ChannelMonitor`]s into your local [`chain::Watch`]. If you're using a
8919 ///    [`ChainMonitor`], this is done by calling [`chain::Watch::watch_channel`].
8920 ///
8921 /// Note that the ordering of #4-7 is not of importance, however all four must occur before you
8922 /// call any other methods on the newly-deserialized [`ChannelManager`].
8923 ///
8924 /// Note that because some channels may be closed during deserialization, it is critical that you
8925 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
8926 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
8927 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
8928 /// not force-close the same channels but consider them live), you may end up revoking a state for
8929 /// which you've already broadcasted the transaction.
8930 ///
8931 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
8932 pub struct ChannelManagerReadArgs<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8933 where
8934         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8935         T::Target: BroadcasterInterface,
8936         ES::Target: EntropySource,
8937         NS::Target: NodeSigner,
8938         SP::Target: SignerProvider,
8939         F::Target: FeeEstimator,
8940         R::Target: Router,
8941         L::Target: Logger,
8942 {
8943         /// A cryptographically secure source of entropy.
8944         pub entropy_source: ES,
8945
8946         /// A signer that is able to perform node-scoped cryptographic operations.
8947         pub node_signer: NS,
8948
8949         /// The keys provider which will give us relevant keys. Some keys will be loaded during
8950         /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
8951         /// signing data.
8952         pub signer_provider: SP,
8953
8954         /// The fee_estimator for use in the ChannelManager in the future.
8955         ///
8956         /// No calls to the FeeEstimator will be made during deserialization.
8957         pub fee_estimator: F,
8958         /// The chain::Watch for use in the ChannelManager in the future.
8959         ///
8960         /// No calls to the chain::Watch will be made during deserialization. It is assumed that
8961         /// you have deserialized ChannelMonitors separately and will add them to your
8962         /// chain::Watch after deserializing this ChannelManager.
8963         pub chain_monitor: M,
8964
8965         /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
8966         /// used to broadcast the latest local commitment transactions of channels which must be
8967         /// force-closed during deserialization.
8968         pub tx_broadcaster: T,
8969         /// The router which will be used in the ChannelManager in the future for finding routes
8970         /// on-the-fly for trampoline payments. Absent in private nodes that don't support forwarding.
8971         ///
8972         /// No calls to the router will be made during deserialization.
8973         pub router: R,
8974         /// The Logger for use in the ChannelManager and which may be used to log information during
8975         /// deserialization.
8976         pub logger: L,
8977         /// Default settings used for new channels. Any existing channels will continue to use the
8978         /// runtime settings which were stored when the ChannelManager was serialized.
8979         pub default_config: UserConfig,
8980
8981         /// A map from channel funding outpoints to ChannelMonitors for those channels (ie
8982         /// value.context.get_funding_txo() should be the key).
8983         ///
8984         /// If a monitor is inconsistent with the channel state during deserialization the channel will
8985         /// be force-closed using the data in the ChannelMonitor and the channel will be dropped. This
8986         /// is true for missing channels as well. If there is a monitor missing for which we find
8987         /// channel data Err(DecodeError::InvalidValue) will be returned.
8988         ///
8989         /// In such cases the latest local transactions will be sent to the tx_broadcaster included in
8990         /// this struct.
8991         ///
8992         /// This is not exported to bindings users because we have no HashMap bindings
8993         pub channel_monitors: HashMap<OutPoint, &'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>,
8994 }
8995
8996 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8997                 ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>
8998 where
8999         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
9000         T::Target: BroadcasterInterface,
9001         ES::Target: EntropySource,
9002         NS::Target: NodeSigner,
9003         SP::Target: SignerProvider,
9004         F::Target: FeeEstimator,
9005         R::Target: Router,
9006         L::Target: Logger,
9007 {
9008         /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
9009         /// HashMap for you. This is primarily useful for C bindings where it is not practical to
9010         /// populate a HashMap directly from C.
9011         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,
9012                         mut channel_monitors: Vec<&'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>) -> Self {
9013                 Self {
9014                         entropy_source, node_signer, signer_provider, fee_estimator, chain_monitor, tx_broadcaster, router, logger, default_config,
9015                         channel_monitors: channel_monitors.drain(..).map(|monitor| { (monitor.get_funding_txo().0, monitor) }).collect()
9016                 }
9017         }
9018 }
9019
9020 // Implement ReadableArgs for an Arc'd ChannelManager to make it a bit easier to work with the
9021 // SipmleArcChannelManager type:
9022 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
9023         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, Arc<ChannelManager<M, T, ES, NS, SP, F, R, L>>)
9024 where
9025         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
9026         T::Target: BroadcasterInterface,
9027         ES::Target: EntropySource,
9028         NS::Target: NodeSigner,
9029         SP::Target: SignerProvider,
9030         F::Target: FeeEstimator,
9031         R::Target: Router,
9032         L::Target: Logger,
9033 {
9034         fn read<Reader: io::Read>(reader: &mut Reader, args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
9035                 let (blockhash, chan_manager) = <(BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)>::read(reader, args)?;
9036                 Ok((blockhash, Arc::new(chan_manager)))
9037         }
9038 }
9039
9040 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
9041         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)
9042 where
9043         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
9044         T::Target: BroadcasterInterface,
9045         ES::Target: EntropySource,
9046         NS::Target: NodeSigner,
9047         SP::Target: SignerProvider,
9048         F::Target: FeeEstimator,
9049         R::Target: Router,
9050         L::Target: Logger,
9051 {
9052         fn read<Reader: io::Read>(reader: &mut Reader, mut args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
9053                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
9054
9055                 let genesis_hash: BlockHash = Readable::read(reader)?;
9056                 let best_block_height: u32 = Readable::read(reader)?;
9057                 let best_block_hash: BlockHash = Readable::read(reader)?;
9058
9059                 let mut failed_htlcs = Vec::new();
9060
9061                 let channel_count: u64 = Readable::read(reader)?;
9062                 let mut funding_txo_set = HashSet::with_capacity(cmp::min(channel_count as usize, 128));
9063                 let mut funded_peer_channels: HashMap<PublicKey, HashMap<ChannelId, ChannelPhase<SP>>> = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
9064                 let mut id_to_peer = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
9065                 let mut short_to_chan_info = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
9066                 let mut channel_closures = VecDeque::new();
9067                 let mut close_background_events = Vec::new();
9068                 for _ in 0..channel_count {
9069                         let mut channel: Channel<SP> = Channel::read(reader, (
9070                                 &args.entropy_source, &args.signer_provider, best_block_height, &provided_channel_type_features(&args.default_config)
9071                         ))?;
9072                         let funding_txo = channel.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
9073                         funding_txo_set.insert(funding_txo.clone());
9074                         if let Some(ref mut monitor) = args.channel_monitors.get_mut(&funding_txo) {
9075                                 if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() ||
9076                                                 channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() ||
9077                                                 channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() ||
9078                                                 channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
9079                                         // But if the channel is behind of the monitor, close the channel:
9080                                         log_error!(args.logger, "A ChannelManager is stale compared to the current ChannelMonitor!");
9081                                         log_error!(args.logger, " The channel will be force-closed and the latest commitment transaction from the ChannelMonitor broadcast.");
9082                                         if channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
9083                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
9084                                                         &channel.context.channel_id(), monitor.get_latest_update_id(), channel.context.get_latest_monitor_update_id());
9085                                         }
9086                                         if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() {
9087                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at holder commitment number {} but the ChannelManager is at holder commitment number {}.",
9088                                                         &channel.context.channel_id(), monitor.get_cur_holder_commitment_number(), channel.get_cur_holder_commitment_transaction_number());
9089                                         }
9090                                         if channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() {
9091                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at revoked counterparty transaction number {} but the ChannelManager is at revoked counterparty transaction number {}.",
9092                                                         &channel.context.channel_id(), monitor.get_min_seen_secret(), channel.get_revoked_counterparty_commitment_transaction_number());
9093                                         }
9094                                         if channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() {
9095                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at counterparty commitment transaction number {} but the ChannelManager is at counterparty commitment transaction number {}.",
9096                                                         &channel.context.channel_id(), monitor.get_cur_counterparty_commitment_number(), channel.get_cur_counterparty_commitment_transaction_number());
9097                                         }
9098                                         let (monitor_update, mut new_failed_htlcs) = channel.context.force_shutdown(true);
9099                                         if let Some((counterparty_node_id, funding_txo, update)) = monitor_update {
9100                                                 close_background_events.push(BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
9101                                                         counterparty_node_id, funding_txo, update
9102                                                 });
9103                                         }
9104                                         failed_htlcs.append(&mut new_failed_htlcs);
9105                                         channel_closures.push_back((events::Event::ChannelClosed {
9106                                                 channel_id: channel.context.channel_id(),
9107                                                 user_channel_id: channel.context.get_user_id(),
9108                                                 reason: ClosureReason::OutdatedChannelManager,
9109                                                 counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
9110                                                 channel_capacity_sats: Some(channel.context.get_value_satoshis()),
9111                                         }, None));
9112                                         for (channel_htlc_source, payment_hash) in channel.inflight_htlc_sources() {
9113                                                 let mut found_htlc = false;
9114                                                 for (monitor_htlc_source, _) in monitor.get_all_current_outbound_htlcs() {
9115                                                         if *channel_htlc_source == monitor_htlc_source { found_htlc = true; break; }
9116                                                 }
9117                                                 if !found_htlc {
9118                                                         // If we have some HTLCs in the channel which are not present in the newer
9119                                                         // ChannelMonitor, they have been removed and should be failed back to
9120                                                         // ensure we don't forget them entirely. Note that if the missing HTLC(s)
9121                                                         // were actually claimed we'd have generated and ensured the previous-hop
9122                                                         // claim update ChannelMonitor updates were persisted prior to persising
9123                                                         // the ChannelMonitor update for the forward leg, so attempting to fail the
9124                                                         // backwards leg of the HTLC will simply be rejected.
9125                                                         log_info!(args.logger,
9126                                                                 "Failing HTLC with hash {} as it is missing in the ChannelMonitor for channel {} but was present in the (stale) ChannelManager",
9127                                                                 &channel.context.channel_id(), &payment_hash);
9128                                                         failed_htlcs.push((channel_htlc_source.clone(), *payment_hash, channel.context.get_counterparty_node_id(), channel.context.channel_id()));
9129                                                 }
9130                                         }
9131                                 } else {
9132                                         log_info!(args.logger, "Successfully loaded channel {} at update_id {} against monitor at update id {}",
9133                                                 &channel.context.channel_id(), channel.context.get_latest_monitor_update_id(),
9134                                                 monitor.get_latest_update_id());
9135                                         if let Some(short_channel_id) = channel.context.get_short_channel_id() {
9136                                                 short_to_chan_info.insert(short_channel_id, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
9137                                         }
9138                                         if channel.context.is_funding_initiated() {
9139                                                 id_to_peer.insert(channel.context.channel_id(), channel.context.get_counterparty_node_id());
9140                                         }
9141                                         match funded_peer_channels.entry(channel.context.get_counterparty_node_id()) {
9142                                                 hash_map::Entry::Occupied(mut entry) => {
9143                                                         let by_id_map = entry.get_mut();
9144                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
9145                                                 },
9146                                                 hash_map::Entry::Vacant(entry) => {
9147                                                         let mut by_id_map = HashMap::new();
9148                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
9149                                                         entry.insert(by_id_map);
9150                                                 }
9151                                         }
9152                                 }
9153                         } else if channel.is_awaiting_initial_mon_persist() {
9154                                 // If we were persisted and shut down while the initial ChannelMonitor persistence
9155                                 // was in-progress, we never broadcasted the funding transaction and can still
9156                                 // safely discard the channel.
9157                                 let _ = channel.context.force_shutdown(false);
9158                                 channel_closures.push_back((events::Event::ChannelClosed {
9159                                         channel_id: channel.context.channel_id(),
9160                                         user_channel_id: channel.context.get_user_id(),
9161                                         reason: ClosureReason::DisconnectedPeer,
9162                                         counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
9163                                         channel_capacity_sats: Some(channel.context.get_value_satoshis()),
9164                                 }, None));
9165                         } else {
9166                                 log_error!(args.logger, "Missing ChannelMonitor for channel {} needed by ChannelManager.", &channel.context.channel_id());
9167                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
9168                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
9169                                 log_error!(args.logger, " Without the ChannelMonitor we cannot continue without risking funds.");
9170                                 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");
9171                                 return Err(DecodeError::InvalidValue);
9172                         }
9173                 }
9174
9175                 for (funding_txo, _) in args.channel_monitors.iter() {
9176                         if !funding_txo_set.contains(funding_txo) {
9177                                 log_info!(args.logger, "Queueing monitor update to ensure missing channel {} is force closed",
9178                                         &funding_txo.to_channel_id());
9179                                 let monitor_update = ChannelMonitorUpdate {
9180                                         update_id: CLOSED_CHANNEL_UPDATE_ID,
9181                                         updates: vec![ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast: true }],
9182                                 };
9183                                 close_background_events.push(BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((*funding_txo, monitor_update)));
9184                         }
9185                 }
9186
9187                 const MAX_ALLOC_SIZE: usize = 1024 * 64;
9188                 let forward_htlcs_count: u64 = Readable::read(reader)?;
9189                 let mut forward_htlcs = HashMap::with_capacity(cmp::min(forward_htlcs_count as usize, 128));
9190                 for _ in 0..forward_htlcs_count {
9191                         let short_channel_id = Readable::read(reader)?;
9192                         let pending_forwards_count: u64 = Readable::read(reader)?;
9193                         let mut pending_forwards = Vec::with_capacity(cmp::min(pending_forwards_count as usize, MAX_ALLOC_SIZE/mem::size_of::<HTLCForwardInfo>()));
9194                         for _ in 0..pending_forwards_count {
9195                                 pending_forwards.push(Readable::read(reader)?);
9196                         }
9197                         forward_htlcs.insert(short_channel_id, pending_forwards);
9198                 }
9199
9200                 let claimable_htlcs_count: u64 = Readable::read(reader)?;
9201                 let mut claimable_htlcs_list = Vec::with_capacity(cmp::min(claimable_htlcs_count as usize, 128));
9202                 for _ in 0..claimable_htlcs_count {
9203                         let payment_hash = Readable::read(reader)?;
9204                         let previous_hops_len: u64 = Readable::read(reader)?;
9205                         let mut previous_hops = Vec::with_capacity(cmp::min(previous_hops_len as usize, MAX_ALLOC_SIZE/mem::size_of::<ClaimableHTLC>()));
9206                         for _ in 0..previous_hops_len {
9207                                 previous_hops.push(<ClaimableHTLC as Readable>::read(reader)?);
9208                         }
9209                         claimable_htlcs_list.push((payment_hash, previous_hops));
9210                 }
9211
9212                 let peer_state_from_chans = |channel_by_id| {
9213                         PeerState {
9214                                 channel_by_id,
9215                                 inbound_channel_request_by_id: HashMap::new(),
9216                                 latest_features: InitFeatures::empty(),
9217                                 pending_msg_events: Vec::new(),
9218                                 in_flight_monitor_updates: BTreeMap::new(),
9219                                 monitor_update_blocked_actions: BTreeMap::new(),
9220                                 actions_blocking_raa_monitor_updates: BTreeMap::new(),
9221                                 is_connected: false,
9222                         }
9223                 };
9224
9225                 let peer_count: u64 = Readable::read(reader)?;
9226                 let mut per_peer_state = HashMap::with_capacity(cmp::min(peer_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(PublicKey, Mutex<PeerState<SP>>)>()));
9227                 for _ in 0..peer_count {
9228                         let peer_pubkey = Readable::read(reader)?;
9229                         let peer_chans = funded_peer_channels.remove(&peer_pubkey).unwrap_or(HashMap::new());
9230                         let mut peer_state = peer_state_from_chans(peer_chans);
9231                         peer_state.latest_features = Readable::read(reader)?;
9232                         per_peer_state.insert(peer_pubkey, Mutex::new(peer_state));
9233                 }
9234
9235                 let event_count: u64 = Readable::read(reader)?;
9236                 let mut pending_events_read: VecDeque<(events::Event, Option<EventCompletionAction>)> =
9237                         VecDeque::with_capacity(cmp::min(event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>()));
9238                 for _ in 0..event_count {
9239                         match MaybeReadable::read(reader)? {
9240                                 Some(event) => pending_events_read.push_back((event, None)),
9241                                 None => continue,
9242                         }
9243                 }
9244
9245                 let background_event_count: u64 = Readable::read(reader)?;
9246                 for _ in 0..background_event_count {
9247                         match <u8 as Readable>::read(reader)? {
9248                                 0 => {
9249                                         // LDK versions prior to 0.0.116 wrote pending `MonitorUpdateRegeneratedOnStartup`s here,
9250                                         // however we really don't (and never did) need them - we regenerate all
9251                                         // on-startup monitor updates.
9252                                         let _: OutPoint = Readable::read(reader)?;
9253                                         let _: ChannelMonitorUpdate = Readable::read(reader)?;
9254                                 }
9255                                 _ => return Err(DecodeError::InvalidValue),
9256                         }
9257                 }
9258
9259                 let _last_node_announcement_serial: u32 = Readable::read(reader)?; // Only used < 0.0.111
9260                 let highest_seen_timestamp: u32 = Readable::read(reader)?;
9261
9262                 let pending_inbound_payment_count: u64 = Readable::read(reader)?;
9263                 let mut pending_inbound_payments: HashMap<PaymentHash, PendingInboundPayment> = HashMap::with_capacity(cmp::min(pending_inbound_payment_count as usize, MAX_ALLOC_SIZE/(3*32)));
9264                 for _ in 0..pending_inbound_payment_count {
9265                         if pending_inbound_payments.insert(Readable::read(reader)?, Readable::read(reader)?).is_some() {
9266                                 return Err(DecodeError::InvalidValue);
9267                         }
9268                 }
9269
9270                 let pending_outbound_payments_count_compat: u64 = Readable::read(reader)?;
9271                 let mut pending_outbound_payments_compat: HashMap<PaymentId, PendingOutboundPayment> =
9272                         HashMap::with_capacity(cmp::min(pending_outbound_payments_count_compat as usize, MAX_ALLOC_SIZE/32));
9273                 for _ in 0..pending_outbound_payments_count_compat {
9274                         let session_priv = Readable::read(reader)?;
9275                         let payment = PendingOutboundPayment::Legacy {
9276                                 session_privs: [session_priv].iter().cloned().collect()
9277                         };
9278                         if pending_outbound_payments_compat.insert(PaymentId(session_priv), payment).is_some() {
9279                                 return Err(DecodeError::InvalidValue)
9280                         };
9281                 }
9282
9283                 // pending_outbound_payments_no_retry is for compatibility with 0.0.101 clients.
9284                 let mut pending_outbound_payments_no_retry: Option<HashMap<PaymentId, HashSet<[u8; 32]>>> = None;
9285                 let mut pending_outbound_payments = None;
9286                 let mut pending_intercepted_htlcs: Option<HashMap<InterceptId, PendingAddHTLCInfo>> = Some(HashMap::new());
9287                 let mut received_network_pubkey: Option<PublicKey> = None;
9288                 let mut fake_scid_rand_bytes: Option<[u8; 32]> = None;
9289                 let mut probing_cookie_secret: Option<[u8; 32]> = None;
9290                 let mut claimable_htlc_purposes = None;
9291                 let mut claimable_htlc_onion_fields = None;
9292                 let mut pending_claiming_payments = Some(HashMap::new());
9293                 let mut monitor_update_blocked_actions_per_peer: Option<Vec<(_, BTreeMap<_, Vec<_>>)>> = Some(Vec::new());
9294                 let mut events_override = None;
9295                 let mut in_flight_monitor_updates: Option<HashMap<(PublicKey, OutPoint), Vec<ChannelMonitorUpdate>>> = None;
9296                 read_tlv_fields!(reader, {
9297                         (1, pending_outbound_payments_no_retry, option),
9298                         (2, pending_intercepted_htlcs, option),
9299                         (3, pending_outbound_payments, option),
9300                         (4, pending_claiming_payments, option),
9301                         (5, received_network_pubkey, option),
9302                         (6, monitor_update_blocked_actions_per_peer, option),
9303                         (7, fake_scid_rand_bytes, option),
9304                         (8, events_override, option),
9305                         (9, claimable_htlc_purposes, optional_vec),
9306                         (10, in_flight_monitor_updates, option),
9307                         (11, probing_cookie_secret, option),
9308                         (13, claimable_htlc_onion_fields, optional_vec),
9309                 });
9310                 if fake_scid_rand_bytes.is_none() {
9311                         fake_scid_rand_bytes = Some(args.entropy_source.get_secure_random_bytes());
9312                 }
9313
9314                 if probing_cookie_secret.is_none() {
9315                         probing_cookie_secret = Some(args.entropy_source.get_secure_random_bytes());
9316                 }
9317
9318                 if let Some(events) = events_override {
9319                         pending_events_read = events;
9320                 }
9321
9322                 if !channel_closures.is_empty() {
9323                         pending_events_read.append(&mut channel_closures);
9324                 }
9325
9326                 if pending_outbound_payments.is_none() && pending_outbound_payments_no_retry.is_none() {
9327                         pending_outbound_payments = Some(pending_outbound_payments_compat);
9328                 } else if pending_outbound_payments.is_none() {
9329                         let mut outbounds = HashMap::new();
9330                         for (id, session_privs) in pending_outbound_payments_no_retry.unwrap().drain() {
9331                                 outbounds.insert(id, PendingOutboundPayment::Legacy { session_privs });
9332                         }
9333                         pending_outbound_payments = Some(outbounds);
9334                 }
9335                 let pending_outbounds = OutboundPayments {
9336                         pending_outbound_payments: Mutex::new(pending_outbound_payments.unwrap()),
9337                         retry_lock: Mutex::new(())
9338                 };
9339
9340                 // We have to replay (or skip, if they were completed after we wrote the `ChannelManager`)
9341                 // each `ChannelMonitorUpdate` in `in_flight_monitor_updates`. After doing so, we have to
9342                 // check that each channel we have isn't newer than the latest `ChannelMonitorUpdate`(s) we
9343                 // replayed, and for each monitor update we have to replay we have to ensure there's a
9344                 // `ChannelMonitor` for it.
9345                 //
9346                 // In order to do so we first walk all of our live channels (so that we can check their
9347                 // state immediately after doing the update replays, when we have the `update_id`s
9348                 // available) and then walk any remaining in-flight updates.
9349                 //
9350                 // Because the actual handling of the in-flight updates is the same, it's macro'ized here:
9351                 let mut pending_background_events = Vec::new();
9352                 macro_rules! handle_in_flight_updates {
9353                         ($counterparty_node_id: expr, $chan_in_flight_upds: expr, $funding_txo: expr,
9354                          $monitor: expr, $peer_state: expr, $channel_info_log: expr
9355                         ) => { {
9356                                 let mut max_in_flight_update_id = 0;
9357                                 $chan_in_flight_upds.retain(|upd| upd.update_id > $monitor.get_latest_update_id());
9358                                 for update in $chan_in_flight_upds.iter() {
9359                                         log_trace!(args.logger, "Replaying ChannelMonitorUpdate {} for {}channel {}",
9360                                                 update.update_id, $channel_info_log, &$funding_txo.to_channel_id());
9361                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id, update.update_id);
9362                                         pending_background_events.push(
9363                                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
9364                                                         counterparty_node_id: $counterparty_node_id,
9365                                                         funding_txo: $funding_txo,
9366                                                         update: update.clone(),
9367                                                 });
9368                                 }
9369                                 if $chan_in_flight_upds.is_empty() {
9370                                         // We had some updates to apply, but it turns out they had completed before we
9371                                         // were serialized, we just weren't notified of that. Thus, we may have to run
9372                                         // the completion actions for any monitor updates, but otherwise are done.
9373                                         pending_background_events.push(
9374                                                 BackgroundEvent::MonitorUpdatesComplete {
9375                                                         counterparty_node_id: $counterparty_node_id,
9376                                                         channel_id: $funding_txo.to_channel_id(),
9377                                                 });
9378                                 }
9379                                 if $peer_state.in_flight_monitor_updates.insert($funding_txo, $chan_in_flight_upds).is_some() {
9380                                         log_error!(args.logger, "Duplicate in-flight monitor update set for the same channel!");
9381                                         return Err(DecodeError::InvalidValue);
9382                                 }
9383                                 max_in_flight_update_id
9384                         } }
9385                 }
9386
9387                 for (counterparty_id, peer_state_mtx) in per_peer_state.iter_mut() {
9388                         let mut peer_state_lock = peer_state_mtx.lock().unwrap();
9389                         let peer_state = &mut *peer_state_lock;
9390                         for phase in peer_state.channel_by_id.values() {
9391                                 if let ChannelPhase::Funded(chan) = phase {
9392                                         // Channels that were persisted have to be funded, otherwise they should have been
9393                                         // discarded.
9394                                         let funding_txo = chan.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
9395                                         let monitor = args.channel_monitors.get(&funding_txo)
9396                                                 .expect("We already checked for monitor presence when loading channels");
9397                                         let mut max_in_flight_update_id = monitor.get_latest_update_id();
9398                                         if let Some(in_flight_upds) = &mut in_flight_monitor_updates {
9399                                                 if let Some(mut chan_in_flight_upds) = in_flight_upds.remove(&(*counterparty_id, funding_txo)) {
9400                                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id,
9401                                                                 handle_in_flight_updates!(*counterparty_id, chan_in_flight_upds,
9402                                                                         funding_txo, monitor, peer_state, ""));
9403                                                 }
9404                                         }
9405                                         if chan.get_latest_unblocked_monitor_update_id() > max_in_flight_update_id {
9406                                                 // If the channel is ahead of the monitor, return InvalidValue:
9407                                                 log_error!(args.logger, "A ChannelMonitor is stale compared to the current ChannelManager! This indicates a potentially-critical violation of the chain::Watch API!");
9408                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} with update_id through {} in-flight",
9409                                                         chan.context.channel_id(), monitor.get_latest_update_id(), max_in_flight_update_id);
9410                                                 log_error!(args.logger, " but the ChannelManager is at update_id {}.", chan.get_latest_unblocked_monitor_update_id());
9411                                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
9412                                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
9413                                                 log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
9414                                                 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");
9415                                                 return Err(DecodeError::InvalidValue);
9416                                         }
9417                                 } else {
9418                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
9419                                         // created in this `channel_by_id` map.
9420                                         debug_assert!(false);
9421                                         return Err(DecodeError::InvalidValue);
9422                                 }
9423                         }
9424                 }
9425
9426                 if let Some(in_flight_upds) = in_flight_monitor_updates {
9427                         for ((counterparty_id, funding_txo), mut chan_in_flight_updates) in in_flight_upds {
9428                                 if let Some(monitor) = args.channel_monitors.get(&funding_txo) {
9429                                         // Now that we've removed all the in-flight monitor updates for channels that are
9430                                         // still open, we need to replay any monitor updates that are for closed channels,
9431                                         // creating the neccessary peer_state entries as we go.
9432                                         let peer_state_mutex = per_peer_state.entry(counterparty_id).or_insert_with(|| {
9433                                                 Mutex::new(peer_state_from_chans(HashMap::new()))
9434                                         });
9435                                         let mut peer_state = peer_state_mutex.lock().unwrap();
9436                                         handle_in_flight_updates!(counterparty_id, chan_in_flight_updates,
9437                                                 funding_txo, monitor, peer_state, "closed ");
9438                                 } else {
9439                                         log_error!(args.logger, "A ChannelMonitor is missing even though we have in-flight updates for it! This indicates a potentially-critical violation of the chain::Watch API!");
9440                                         log_error!(args.logger, " The ChannelMonitor for channel {} is missing.",
9441                                                 &funding_txo.to_channel_id());
9442                                         log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
9443                                         log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
9444                                         log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
9445                                         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");
9446                                         return Err(DecodeError::InvalidValue);
9447                                 }
9448                         }
9449                 }
9450
9451                 // Note that we have to do the above replays before we push new monitor updates.
9452                 pending_background_events.append(&mut close_background_events);
9453
9454                 // If there's any preimages for forwarded HTLCs hanging around in ChannelMonitors we
9455                 // should ensure we try them again on the inbound edge. We put them here and do so after we
9456                 // have a fully-constructed `ChannelManager` at the end.
9457                 let mut pending_claims_to_replay = Vec::new();
9458
9459                 {
9460                         // If we're tracking pending payments, ensure we haven't lost any by looking at the
9461                         // ChannelMonitor data for any channels for which we do not have authorative state
9462                         // (i.e. those for which we just force-closed above or we otherwise don't have a
9463                         // corresponding `Channel` at all).
9464                         // This avoids several edge-cases where we would otherwise "forget" about pending
9465                         // payments which are still in-flight via their on-chain state.
9466                         // We only rebuild the pending payments map if we were most recently serialized by
9467                         // 0.0.102+
9468                         for (_, monitor) in args.channel_monitors.iter() {
9469                                 let counterparty_opt = id_to_peer.get(&monitor.get_funding_txo().0.to_channel_id());
9470                                 if counterparty_opt.is_none() {
9471                                         for (htlc_source, (htlc, _)) in monitor.get_pending_or_resolved_outbound_htlcs() {
9472                                                 if let HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } = htlc_source {
9473                                                         if path.hops.is_empty() {
9474                                                                 log_error!(args.logger, "Got an empty path for a pending payment");
9475                                                                 return Err(DecodeError::InvalidValue);
9476                                                         }
9477
9478                                                         let path_amt = path.final_value_msat();
9479                                                         let mut session_priv_bytes = [0; 32];
9480                                                         session_priv_bytes[..].copy_from_slice(&session_priv[..]);
9481                                                         match pending_outbounds.pending_outbound_payments.lock().unwrap().entry(payment_id) {
9482                                                                 hash_map::Entry::Occupied(mut entry) => {
9483                                                                         let newly_added = entry.get_mut().insert(session_priv_bytes, &path);
9484                                                                         log_info!(args.logger, "{} a pending payment path for {} msat for session priv {} on an existing pending payment with payment hash {}",
9485                                                                                 if newly_added { "Added" } else { "Had" }, path_amt, log_bytes!(session_priv_bytes), &htlc.payment_hash);
9486                                                                 },
9487                                                                 hash_map::Entry::Vacant(entry) => {
9488                                                                         let path_fee = path.fee_msat();
9489                                                                         entry.insert(PendingOutboundPayment::Retryable {
9490                                                                                 retry_strategy: None,
9491                                                                                 attempts: PaymentAttempts::new(),
9492                                                                                 payment_params: None,
9493                                                                                 session_privs: [session_priv_bytes].iter().map(|a| *a).collect(),
9494                                                                                 payment_hash: htlc.payment_hash,
9495                                                                                 payment_secret: None, // only used for retries, and we'll never retry on startup
9496                                                                                 payment_metadata: None, // only used for retries, and we'll never retry on startup
9497                                                                                 keysend_preimage: None, // only used for retries, and we'll never retry on startup
9498                                                                                 custom_tlvs: Vec::new(), // only used for retries, and we'll never retry on startup
9499                                                                                 pending_amt_msat: path_amt,
9500                                                                                 pending_fee_msat: Some(path_fee),
9501                                                                                 total_msat: path_amt,
9502                                                                                 starting_block_height: best_block_height,
9503                                                                         });
9504                                                                         log_info!(args.logger, "Added a pending payment for {} msat with payment hash {} for path with session priv {}",
9505                                                                                 path_amt, &htlc.payment_hash,  log_bytes!(session_priv_bytes));
9506                                                                 }
9507                                                         }
9508                                                 }
9509                                         }
9510                                         for (htlc_source, (htlc, preimage_opt)) in monitor.get_all_current_outbound_htlcs() {
9511                                                 match htlc_source {
9512                                                         HTLCSource::PreviousHopData(prev_hop_data) => {
9513                                                                 let pending_forward_matches_htlc = |info: &PendingAddHTLCInfo| {
9514                                                                         info.prev_funding_outpoint == prev_hop_data.outpoint &&
9515                                                                                 info.prev_htlc_id == prev_hop_data.htlc_id
9516                                                                 };
9517                                                                 // The ChannelMonitor is now responsible for this HTLC's
9518                                                                 // failure/success and will let us know what its outcome is. If we
9519                                                                 // still have an entry for this HTLC in `forward_htlcs` or
9520                                                                 // `pending_intercepted_htlcs`, we were apparently not persisted after
9521                                                                 // the monitor was when forwarding the payment.
9522                                                                 forward_htlcs.retain(|_, forwards| {
9523                                                                         forwards.retain(|forward| {
9524                                                                                 if let HTLCForwardInfo::AddHTLC(htlc_info) = forward {
9525                                                                                         if pending_forward_matches_htlc(&htlc_info) {
9526                                                                                                 log_info!(args.logger, "Removing pending to-forward HTLC with hash {} as it was forwarded to the closed channel {}",
9527                                                                                                         &htlc.payment_hash, &monitor.get_funding_txo().0.to_channel_id());
9528                                                                                                 false
9529                                                                                         } else { true }
9530                                                                                 } else { true }
9531                                                                         });
9532                                                                         !forwards.is_empty()
9533                                                                 });
9534                                                                 pending_intercepted_htlcs.as_mut().unwrap().retain(|intercepted_id, htlc_info| {
9535                                                                         if pending_forward_matches_htlc(&htlc_info) {
9536                                                                                 log_info!(args.logger, "Removing pending intercepted HTLC with hash {} as it was forwarded to the closed channel {}",
9537                                                                                         &htlc.payment_hash, &monitor.get_funding_txo().0.to_channel_id());
9538                                                                                 pending_events_read.retain(|(event, _)| {
9539                                                                                         if let Event::HTLCIntercepted { intercept_id: ev_id, .. } = event {
9540                                                                                                 intercepted_id != ev_id
9541                                                                                         } else { true }
9542                                                                                 });
9543                                                                                 false
9544                                                                         } else { true }
9545                                                                 });
9546                                                         },
9547                                                         HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } => {
9548                                                                 if let Some(preimage) = preimage_opt {
9549                                                                         let pending_events = Mutex::new(pending_events_read);
9550                                                                         // Note that we set `from_onchain` to "false" here,
9551                                                                         // deliberately keeping the pending payment around forever.
9552                                                                         // Given it should only occur when we have a channel we're
9553                                                                         // force-closing for being stale that's okay.
9554                                                                         // The alternative would be to wipe the state when claiming,
9555                                                                         // generating a `PaymentPathSuccessful` event but regenerating
9556                                                                         // it and the `PaymentSent` on every restart until the
9557                                                                         // `ChannelMonitor` is removed.
9558                                                                         let compl_action =
9559                                                                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
9560                                                                                         channel_funding_outpoint: monitor.get_funding_txo().0,
9561                                                                                         counterparty_node_id: path.hops[0].pubkey,
9562                                                                                 };
9563                                                                         pending_outbounds.claim_htlc(payment_id, preimage, session_priv,
9564                                                                                 path, false, compl_action, &pending_events, &args.logger);
9565                                                                         pending_events_read = pending_events.into_inner().unwrap();
9566                                                                 }
9567                                                         },
9568                                                 }
9569                                         }
9570                                 }
9571
9572                                 // Whether the downstream channel was closed or not, try to re-apply any payment
9573                                 // preimages from it which may be needed in upstream channels for forwarded
9574                                 // payments.
9575                                 let outbound_claimed_htlcs_iter = monitor.get_all_current_outbound_htlcs()
9576                                         .into_iter()
9577                                         .filter_map(|(htlc_source, (htlc, preimage_opt))| {
9578                                                 if let HTLCSource::PreviousHopData(_) = htlc_source {
9579                                                         if let Some(payment_preimage) = preimage_opt {
9580                                                                 Some((htlc_source, payment_preimage, htlc.amount_msat,
9581                                                                         // Check if `counterparty_opt.is_none()` to see if the
9582                                                                         // downstream chan is closed (because we don't have a
9583                                                                         // channel_id -> peer map entry).
9584                                                                         counterparty_opt.is_none(),
9585                                                                         counterparty_opt.cloned().or(monitor.get_counterparty_node_id()),
9586                                                                         monitor.get_funding_txo().0))
9587                                                         } else { None }
9588                                                 } else {
9589                                                         // If it was an outbound payment, we've handled it above - if a preimage
9590                                                         // came in and we persisted the `ChannelManager` we either handled it and
9591                                                         // are good to go or the channel force-closed - we don't have to handle the
9592                                                         // channel still live case here.
9593                                                         None
9594                                                 }
9595                                         });
9596                                 for tuple in outbound_claimed_htlcs_iter {
9597                                         pending_claims_to_replay.push(tuple);
9598                                 }
9599                         }
9600                 }
9601
9602                 if !forward_htlcs.is_empty() || pending_outbounds.needs_abandon() {
9603                         // If we have pending HTLCs to forward, assume we either dropped a
9604                         // `PendingHTLCsForwardable` or the user received it but never processed it as they
9605                         // shut down before the timer hit. Either way, set the time_forwardable to a small
9606                         // constant as enough time has likely passed that we should simply handle the forwards
9607                         // now, or at least after the user gets a chance to reconnect to our peers.
9608                         pending_events_read.push_back((events::Event::PendingHTLCsForwardable {
9609                                 time_forwardable: Duration::from_secs(2),
9610                         }, None));
9611                 }
9612
9613                 let inbound_pmt_key_material = args.node_signer.get_inbound_payment_key_material();
9614                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
9615
9616                 let mut claimable_payments = HashMap::with_capacity(claimable_htlcs_list.len());
9617                 if let Some(purposes) = claimable_htlc_purposes {
9618                         if purposes.len() != claimable_htlcs_list.len() {
9619                                 return Err(DecodeError::InvalidValue);
9620                         }
9621                         if let Some(onion_fields) = claimable_htlc_onion_fields {
9622                                 if onion_fields.len() != claimable_htlcs_list.len() {
9623                                         return Err(DecodeError::InvalidValue);
9624                                 }
9625                                 for (purpose, (onion, (payment_hash, htlcs))) in
9626                                         purposes.into_iter().zip(onion_fields.into_iter().zip(claimable_htlcs_list.into_iter()))
9627                                 {
9628                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
9629                                                 purpose, htlcs, onion_fields: onion,
9630                                         });
9631                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
9632                                 }
9633                         } else {
9634                                 for (purpose, (payment_hash, htlcs)) in purposes.into_iter().zip(claimable_htlcs_list.into_iter()) {
9635                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
9636                                                 purpose, htlcs, onion_fields: None,
9637                                         });
9638                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
9639                                 }
9640                         }
9641                 } else {
9642                         // LDK versions prior to 0.0.107 did not write a `pending_htlc_purposes`, but do
9643                         // include a `_legacy_hop_data` in the `OnionPayload`.
9644                         for (payment_hash, htlcs) in claimable_htlcs_list.drain(..) {
9645                                 if htlcs.is_empty() {
9646                                         return Err(DecodeError::InvalidValue);
9647                                 }
9648                                 let purpose = match &htlcs[0].onion_payload {
9649                                         OnionPayload::Invoice { _legacy_hop_data } => {
9650                                                 if let Some(hop_data) = _legacy_hop_data {
9651                                                         events::PaymentPurpose::InvoicePayment {
9652                                                                 payment_preimage: match pending_inbound_payments.get(&payment_hash) {
9653                                                                         Some(inbound_payment) => inbound_payment.payment_preimage,
9654                                                                         None => match inbound_payment::verify(payment_hash, &hop_data, 0, &expanded_inbound_key, &args.logger) {
9655                                                                                 Ok((payment_preimage, _)) => payment_preimage,
9656                                                                                 Err(()) => {
9657                                                                                         log_error!(args.logger, "Failed to read claimable payment data for HTLC with payment hash {} - was not a pending inbound payment and didn't match our payment key", &payment_hash);
9658                                                                                         return Err(DecodeError::InvalidValue);
9659                                                                                 }
9660                                                                         }
9661                                                                 },
9662                                                                 payment_secret: hop_data.payment_secret,
9663                                                         }
9664                                                 } else { return Err(DecodeError::InvalidValue); }
9665                                         },
9666                                         OnionPayload::Spontaneous(payment_preimage) =>
9667                                                 events::PaymentPurpose::SpontaneousPayment(*payment_preimage),
9668                                 };
9669                                 claimable_payments.insert(payment_hash, ClaimablePayment {
9670                                         purpose, htlcs, onion_fields: None,
9671                                 });
9672                         }
9673                 }
9674
9675                 let mut secp_ctx = Secp256k1::new();
9676                 secp_ctx.seeded_randomize(&args.entropy_source.get_secure_random_bytes());
9677
9678                 let our_network_pubkey = match args.node_signer.get_node_id(Recipient::Node) {
9679                         Ok(key) => key,
9680                         Err(()) => return Err(DecodeError::InvalidValue)
9681                 };
9682                 if let Some(network_pubkey) = received_network_pubkey {
9683                         if network_pubkey != our_network_pubkey {
9684                                 log_error!(args.logger, "Key that was generated does not match the existing key.");
9685                                 return Err(DecodeError::InvalidValue);
9686                         }
9687                 }
9688
9689                 let mut outbound_scid_aliases = HashSet::new();
9690                 for (_peer_node_id, peer_state_mutex) in per_peer_state.iter_mut() {
9691                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9692                         let peer_state = &mut *peer_state_lock;
9693                         for (chan_id, phase) in peer_state.channel_by_id.iter_mut() {
9694                                 if let ChannelPhase::Funded(chan) = phase {
9695                                         if chan.context.outbound_scid_alias() == 0 {
9696                                                 let mut outbound_scid_alias;
9697                                                 loop {
9698                                                         outbound_scid_alias = fake_scid::Namespace::OutboundAlias
9699                                                                 .get_fake_scid(best_block_height, &genesis_hash, fake_scid_rand_bytes.as_ref().unwrap(), &args.entropy_source);
9700                                                         if outbound_scid_aliases.insert(outbound_scid_alias) { break; }
9701                                                 }
9702                                                 chan.context.set_outbound_scid_alias(outbound_scid_alias);
9703                                         } else if !outbound_scid_aliases.insert(chan.context.outbound_scid_alias()) {
9704                                                 // Note that in rare cases its possible to hit this while reading an older
9705                                                 // channel if we just happened to pick a colliding outbound alias above.
9706                                                 log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
9707                                                 return Err(DecodeError::InvalidValue);
9708                                         }
9709                                         if chan.context.is_usable() {
9710                                                 if short_to_chan_info.insert(chan.context.outbound_scid_alias(), (chan.context.get_counterparty_node_id(), *chan_id)).is_some() {
9711                                                         // Note that in rare cases its possible to hit this while reading an older
9712                                                         // channel if we just happened to pick a colliding outbound alias above.
9713                                                         log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
9714                                                         return Err(DecodeError::InvalidValue);
9715                                                 }
9716                                         }
9717                                 } else {
9718                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
9719                                         // created in this `channel_by_id` map.
9720                                         debug_assert!(false);
9721                                         return Err(DecodeError::InvalidValue);
9722                                 }
9723                         }
9724                 }
9725
9726                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(args.fee_estimator);
9727
9728                 for (_, monitor) in args.channel_monitors.iter() {
9729                         for (payment_hash, payment_preimage) in monitor.get_stored_preimages() {
9730                                 if let Some(payment) = claimable_payments.remove(&payment_hash) {
9731                                         log_info!(args.logger, "Re-claiming HTLCs with payment hash {} as we've released the preimage to a ChannelMonitor!", &payment_hash);
9732                                         let mut claimable_amt_msat = 0;
9733                                         let mut receiver_node_id = Some(our_network_pubkey);
9734                                         let phantom_shared_secret = payment.htlcs[0].prev_hop.phantom_shared_secret;
9735                                         if phantom_shared_secret.is_some() {
9736                                                 let phantom_pubkey = args.node_signer.get_node_id(Recipient::PhantomNode)
9737                                                         .expect("Failed to get node_id for phantom node recipient");
9738                                                 receiver_node_id = Some(phantom_pubkey)
9739                                         }
9740                                         for claimable_htlc in &payment.htlcs {
9741                                                 claimable_amt_msat += claimable_htlc.value;
9742
9743                                                 // Add a holding-cell claim of the payment to the Channel, which should be
9744                                                 // applied ~immediately on peer reconnection. Because it won't generate a
9745                                                 // new commitment transaction we can just provide the payment preimage to
9746                                                 // the corresponding ChannelMonitor and nothing else.
9747                                                 //
9748                                                 // We do so directly instead of via the normal ChannelMonitor update
9749                                                 // procedure as the ChainMonitor hasn't yet been initialized, implying
9750                                                 // we're not allowed to call it directly yet. Further, we do the update
9751                                                 // without incrementing the ChannelMonitor update ID as there isn't any
9752                                                 // reason to.
9753                                                 // If we were to generate a new ChannelMonitor update ID here and then
9754                                                 // crash before the user finishes block connect we'd end up force-closing
9755                                                 // this channel as well. On the flip side, there's no harm in restarting
9756                                                 // without the new monitor persisted - we'll end up right back here on
9757                                                 // restart.
9758                                                 let previous_channel_id = claimable_htlc.prev_hop.outpoint.to_channel_id();
9759                                                 if let Some(peer_node_id) = id_to_peer.get(&previous_channel_id){
9760                                                         let peer_state_mutex = per_peer_state.get(peer_node_id).unwrap();
9761                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9762                                                         let peer_state = &mut *peer_state_lock;
9763                                                         if let Some(ChannelPhase::Funded(channel)) = peer_state.channel_by_id.get_mut(&previous_channel_id) {
9764                                                                 channel.claim_htlc_while_disconnected_dropping_mon_update(claimable_htlc.prev_hop.htlc_id, payment_preimage, &args.logger);
9765                                                         }
9766                                                 }
9767                                                 if let Some(previous_hop_monitor) = args.channel_monitors.get(&claimable_htlc.prev_hop.outpoint) {
9768                                                         previous_hop_monitor.provide_payment_preimage(&payment_hash, &payment_preimage, &args.tx_broadcaster, &bounded_fee_estimator, &args.logger);
9769                                                 }
9770                                         }
9771                                         pending_events_read.push_back((events::Event::PaymentClaimed {
9772                                                 receiver_node_id,
9773                                                 payment_hash,
9774                                                 purpose: payment.purpose,
9775                                                 amount_msat: claimable_amt_msat,
9776                                                 htlcs: payment.htlcs.iter().map(events::ClaimedHTLC::from).collect(),
9777                                                 sender_intended_total_msat: payment.htlcs.first().map(|htlc| htlc.total_msat),
9778                                         }, None));
9779                                 }
9780                         }
9781                 }
9782
9783                 for (node_id, monitor_update_blocked_actions) in monitor_update_blocked_actions_per_peer.unwrap() {
9784                         if let Some(peer_state) = per_peer_state.get(&node_id) {
9785                                 for (_, actions) in monitor_update_blocked_actions.iter() {
9786                                         for action in actions.iter() {
9787                                                 if let MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
9788                                                         downstream_counterparty_and_funding_outpoint:
9789                                                                 Some((blocked_node_id, blocked_channel_outpoint, blocking_action)), ..
9790                                                 } = action {
9791                                                         if let Some(blocked_peer_state) = per_peer_state.get(&blocked_node_id) {
9792                                                                 blocked_peer_state.lock().unwrap().actions_blocking_raa_monitor_updates
9793                                                                         .entry(blocked_channel_outpoint.to_channel_id())
9794                                                                         .or_insert_with(Vec::new).push(blocking_action.clone());
9795                                                         } else {
9796                                                                 // If the channel we were blocking has closed, we don't need to
9797                                                                 // worry about it - the blocked monitor update should never have
9798                                                                 // been released from the `Channel` object so it can't have
9799                                                                 // completed, and if the channel closed there's no reason to bother
9800                                                                 // anymore.
9801                                                         }
9802                                                 }
9803                                         }
9804                                 }
9805                                 peer_state.lock().unwrap().monitor_update_blocked_actions = monitor_update_blocked_actions;
9806                         } else {
9807                                 log_error!(args.logger, "Got blocked actions without a per-peer-state for {}", node_id);
9808                                 return Err(DecodeError::InvalidValue);
9809                         }
9810                 }
9811
9812                 let channel_manager = ChannelManager {
9813                         genesis_hash,
9814                         fee_estimator: bounded_fee_estimator,
9815                         chain_monitor: args.chain_monitor,
9816                         tx_broadcaster: args.tx_broadcaster,
9817                         router: args.router,
9818
9819                         best_block: RwLock::new(BestBlock::new(best_block_hash, best_block_height)),
9820
9821                         inbound_payment_key: expanded_inbound_key,
9822                         pending_inbound_payments: Mutex::new(pending_inbound_payments),
9823                         pending_outbound_payments: pending_outbounds,
9824                         pending_intercepted_htlcs: Mutex::new(pending_intercepted_htlcs.unwrap()),
9825
9826                         forward_htlcs: Mutex::new(forward_htlcs),
9827                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments, pending_claiming_payments: pending_claiming_payments.unwrap() }),
9828                         outbound_scid_aliases: Mutex::new(outbound_scid_aliases),
9829                         id_to_peer: Mutex::new(id_to_peer),
9830                         short_to_chan_info: FairRwLock::new(short_to_chan_info),
9831                         fake_scid_rand_bytes: fake_scid_rand_bytes.unwrap(),
9832
9833                         probing_cookie_secret: probing_cookie_secret.unwrap(),
9834
9835                         our_network_pubkey,
9836                         secp_ctx,
9837
9838                         highest_seen_timestamp: AtomicUsize::new(highest_seen_timestamp as usize),
9839
9840                         per_peer_state: FairRwLock::new(per_peer_state),
9841
9842                         pending_events: Mutex::new(pending_events_read),
9843                         pending_events_processor: AtomicBool::new(false),
9844                         pending_background_events: Mutex::new(pending_background_events),
9845                         total_consistency_lock: RwLock::new(()),
9846                         background_events_processed_since_startup: AtomicBool::new(false),
9847
9848                         event_persist_notifier: Notifier::new(),
9849                         needs_persist_flag: AtomicBool::new(false),
9850
9851                         entropy_source: args.entropy_source,
9852                         node_signer: args.node_signer,
9853                         signer_provider: args.signer_provider,
9854
9855                         logger: args.logger,
9856                         default_configuration: args.default_config,
9857                 };
9858
9859                 for htlc_source in failed_htlcs.drain(..) {
9860                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
9861                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
9862                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
9863                         channel_manager.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
9864                 }
9865
9866                 for (source, preimage, downstream_value, downstream_closed, downstream_node_id, downstream_funding) in pending_claims_to_replay {
9867                         // We use `downstream_closed` in place of `from_onchain` here just as a guess - we
9868                         // don't remember in the `ChannelMonitor` where we got a preimage from, but if the
9869                         // channel is closed we just assume that it probably came from an on-chain claim.
9870                         channel_manager.claim_funds_internal(source, preimage, Some(downstream_value),
9871                                 downstream_closed, downstream_node_id, downstream_funding);
9872                 }
9873
9874                 //TODO: Broadcast channel update for closed channels, but only after we've made a
9875                 //connection or two.
9876
9877                 Ok((best_block_hash.clone(), channel_manager))
9878         }
9879 }
9880
9881 #[cfg(test)]
9882 mod tests {
9883         use bitcoin::hashes::Hash;
9884         use bitcoin::hashes::sha256::Hash as Sha256;
9885         use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
9886         use core::sync::atomic::Ordering;
9887         use crate::events::{Event, HTLCDestination, MessageSendEvent, MessageSendEventsProvider, ClosureReason};
9888         use crate::ln::{PaymentPreimage, PaymentHash, PaymentSecret};
9889         use crate::ln::ChannelId;
9890         use crate::ln::channelmanager::{inbound_payment, PaymentId, PaymentSendFailure, RecipientOnionFields, InterceptId};
9891         use crate::ln::functional_test_utils::*;
9892         use crate::ln::msgs::{self, ErrorAction};
9893         use crate::ln::msgs::ChannelMessageHandler;
9894         use crate::routing::router::{PaymentParameters, RouteParameters, find_route};
9895         use crate::util::errors::APIError;
9896         use crate::util::test_utils;
9897         use crate::util::config::{ChannelConfig, ChannelConfigUpdate};
9898         use crate::sign::EntropySource;
9899
9900         #[test]
9901         fn test_notify_limits() {
9902                 // Check that a few cases which don't require the persistence of a new ChannelManager,
9903                 // indeed, do not cause the persistence of a new ChannelManager.
9904                 let chanmon_cfgs = create_chanmon_cfgs(3);
9905                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
9906                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
9907                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
9908
9909                 // All nodes start with a persistable update pending as `create_network` connects each node
9910                 // with all other nodes to make most tests simpler.
9911                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
9912                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
9913                 assert!(nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
9914
9915                 let mut chan = create_announced_chan_between_nodes(&nodes, 0, 1);
9916
9917                 // We check that the channel info nodes have doesn't change too early, even though we try
9918                 // to connect messages with new values
9919                 chan.0.contents.fee_base_msat *= 2;
9920                 chan.1.contents.fee_base_msat *= 2;
9921                 let node_a_chan_info = nodes[0].node.list_channels_with_counterparty(
9922                         &nodes[1].node.get_our_node_id()).pop().unwrap();
9923                 let node_b_chan_info = nodes[1].node.list_channels_with_counterparty(
9924                         &nodes[0].node.get_our_node_id()).pop().unwrap();
9925
9926                 // The first two nodes (which opened a channel) should now require fresh persistence
9927                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
9928                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
9929                 // ... but the last node should not.
9930                 assert!(!nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
9931                 // After persisting the first two nodes they should no longer need fresh persistence.
9932                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
9933                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
9934
9935                 // Node 3, unrelated to the only channel, shouldn't care if it receives a channel_update
9936                 // about the channel.
9937                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.0);
9938                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.1);
9939                 assert!(!nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
9940
9941                 // The nodes which are a party to the channel should also ignore messages from unrelated
9942                 // parties.
9943                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
9944                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
9945                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
9946                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
9947                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
9948                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
9949
9950                 // At this point the channel info given by peers should still be the same.
9951                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
9952                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
9953
9954                 // An earlier version of handle_channel_update didn't check the directionality of the
9955                 // update message and would always update the local fee info, even if our peer was
9956                 // (spuriously) forwarding us our own channel_update.
9957                 let as_node_one = nodes[0].node.get_our_node_id().serialize()[..] < nodes[1].node.get_our_node_id().serialize()[..];
9958                 let as_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.0 } else { &chan.1 };
9959                 let bs_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.1 } else { &chan.0 };
9960
9961                 // First deliver each peers' own message, checking that the node doesn't need to be
9962                 // persisted and that its channel info remains the same.
9963                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &as_update);
9964                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &bs_update);
9965                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
9966                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
9967                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
9968                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
9969
9970                 // Finally, deliver the other peers' message, ensuring each node needs to be persisted and
9971                 // the channel info has updated.
9972                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &bs_update);
9973                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &as_update);
9974                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
9975                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
9976                 assert_ne!(nodes[0].node.list_channels()[0], node_a_chan_info);
9977                 assert_ne!(nodes[1].node.list_channels()[0], node_b_chan_info);
9978         }
9979
9980         #[test]
9981         fn test_keysend_dup_hash_partial_mpp() {
9982                 // Test that a keysend payment with a duplicate hash to an existing partial MPP payment fails as
9983                 // expected.
9984                 let chanmon_cfgs = create_chanmon_cfgs(2);
9985                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9986                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9987                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9988                 create_announced_chan_between_nodes(&nodes, 0, 1);
9989
9990                 // First, send a partial MPP payment.
9991                 let (route, our_payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100_000);
9992                 let mut mpp_route = route.clone();
9993                 mpp_route.paths.push(mpp_route.paths[0].clone());
9994
9995                 let payment_id = PaymentId([42; 32]);
9996                 // Use the utility function send_payment_along_path to send the payment with MPP data which
9997                 // indicates there are more HTLCs coming.
9998                 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.
9999                 let session_privs = nodes[0].node.test_add_new_pending_payment(our_payment_hash,
10000                         RecipientOnionFields::secret_only(payment_secret), payment_id, &mpp_route).unwrap();
10001                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[0], &our_payment_hash,
10002                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[0]).unwrap();
10003                 check_added_monitors!(nodes[0], 1);
10004                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10005                 assert_eq!(events.len(), 1);
10006                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), false, None);
10007
10008                 // Next, send a keysend payment with the same payment_hash and make sure it fails.
10009                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10010                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
10011                 check_added_monitors!(nodes[0], 1);
10012                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10013                 assert_eq!(events.len(), 1);
10014                 let ev = events.drain(..).next().unwrap();
10015                 let payment_event = SendEvent::from_event(ev);
10016                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
10017                 check_added_monitors!(nodes[1], 0);
10018                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
10019                 expect_pending_htlcs_forwardable!(nodes[1]);
10020                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
10021                 check_added_monitors!(nodes[1], 1);
10022                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10023                 assert!(updates.update_add_htlcs.is_empty());
10024                 assert!(updates.update_fulfill_htlcs.is_empty());
10025                 assert_eq!(updates.update_fail_htlcs.len(), 1);
10026                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10027                 assert!(updates.update_fee.is_none());
10028                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
10029                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
10030                 expect_payment_failed!(nodes[0], our_payment_hash, true);
10031
10032                 // Send the second half of the original MPP payment.
10033                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[1], &our_payment_hash,
10034                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[1]).unwrap();
10035                 check_added_monitors!(nodes[0], 1);
10036                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10037                 assert_eq!(events.len(), 1);
10038                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), true, None);
10039
10040                 // Claim the full MPP payment. Note that we can't use a test utility like
10041                 // claim_funds_along_route because the ordering of the messages causes the second half of the
10042                 // payment to be put in the holding cell, which confuses the test utilities. So we exchange the
10043                 // lightning messages manually.
10044                 nodes[1].node.claim_funds(payment_preimage);
10045                 expect_payment_claimed!(nodes[1], our_payment_hash, 200_000);
10046                 check_added_monitors!(nodes[1], 2);
10047
10048                 let bs_first_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10049                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_first_updates.update_fulfill_htlcs[0]);
10050                 expect_payment_sent(&nodes[0], payment_preimage, None, false, false);
10051                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_first_updates.commitment_signed);
10052                 check_added_monitors!(nodes[0], 1);
10053                 let (as_first_raa, as_first_cs) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10054                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_first_raa);
10055                 check_added_monitors!(nodes[1], 1);
10056                 let bs_second_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10057                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_first_cs);
10058                 check_added_monitors!(nodes[1], 1);
10059                 let bs_first_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
10060                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_second_updates.update_fulfill_htlcs[0]);
10061                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_second_updates.commitment_signed);
10062                 check_added_monitors!(nodes[0], 1);
10063                 let as_second_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
10064                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_first_raa);
10065                 let as_second_updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10066                 check_added_monitors!(nodes[0], 1);
10067                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_second_raa);
10068                 check_added_monitors!(nodes[1], 1);
10069                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_second_updates.commitment_signed);
10070                 check_added_monitors!(nodes[1], 1);
10071                 let bs_third_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
10072                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_third_raa);
10073                 check_added_monitors!(nodes[0], 1);
10074
10075                 // Note that successful MPP payments will generate a single PaymentSent event upon the first
10076                 // path's success and a PaymentPathSuccessful event for each path's success.
10077                 let events = nodes[0].node.get_and_clear_pending_events();
10078                 assert_eq!(events.len(), 2);
10079                 match events[0] {
10080                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
10081                                 assert_eq!(payment_id, *actual_payment_id);
10082                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
10083                                 assert_eq!(route.paths[0], *path);
10084                         },
10085                         _ => panic!("Unexpected event"),
10086                 }
10087                 match events[1] {
10088                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
10089                                 assert_eq!(payment_id, *actual_payment_id);
10090                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
10091                                 assert_eq!(route.paths[0], *path);
10092                         },
10093                         _ => panic!("Unexpected event"),
10094                 }
10095         }
10096
10097         #[test]
10098         fn test_keysend_dup_payment_hash() {
10099                 do_test_keysend_dup_payment_hash(false);
10100                 do_test_keysend_dup_payment_hash(true);
10101         }
10102
10103         fn do_test_keysend_dup_payment_hash(accept_mpp_keysend: bool) {
10104                 // (1): Test that a keysend payment with a duplicate payment hash to an existing pending
10105                 //      outbound regular payment fails as expected.
10106                 // (2): Test that a regular payment with a duplicate payment hash to an existing keysend payment
10107                 //      fails as expected.
10108                 // (3): Test that a keysend payment with a duplicate payment hash to an existing keysend
10109                 //      payment fails as expected. When `accept_mpp_keysend` is false, this tests that we
10110                 //      reject MPP keysend payments, since in this case where the payment has no payment
10111                 //      secret, a keysend payment with a duplicate hash is basically an MPP keysend. If
10112                 //      `accept_mpp_keysend` is true, this tests that we only accept MPP keysends with
10113                 //      payment secrets and reject otherwise.
10114                 let chanmon_cfgs = create_chanmon_cfgs(2);
10115                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10116                 let mut mpp_keysend_cfg = test_default_channel_config();
10117                 mpp_keysend_cfg.accept_mpp_keysend = accept_mpp_keysend;
10118                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(mpp_keysend_cfg)]);
10119                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10120                 create_announced_chan_between_nodes(&nodes, 0, 1);
10121                 let scorer = test_utils::TestScorer::new();
10122                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
10123
10124                 // To start (1), send a regular payment but don't claim it.
10125                 let expected_route = [&nodes[1]];
10126                 let (payment_preimage, payment_hash, ..) = route_payment(&nodes[0], &expected_route, 100_000);
10127
10128                 // Next, attempt a keysend payment and make sure it fails.
10129                 let route_params = RouteParameters::from_payment_params_and_value(
10130                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(),
10131                         TEST_FINAL_CLTV, false), 100_000);
10132                 let route = find_route(
10133                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
10134                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
10135                 ).unwrap();
10136                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10137                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
10138                 check_added_monitors!(nodes[0], 1);
10139                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10140                 assert_eq!(events.len(), 1);
10141                 let ev = events.drain(..).next().unwrap();
10142                 let payment_event = SendEvent::from_event(ev);
10143                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
10144                 check_added_monitors!(nodes[1], 0);
10145                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
10146                 // We have to forward pending HTLCs twice - once tries to forward the payment forward (and
10147                 // fails), the second will process the resulting failure and fail the HTLC backward
10148                 expect_pending_htlcs_forwardable!(nodes[1]);
10149                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
10150                 check_added_monitors!(nodes[1], 1);
10151                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10152                 assert!(updates.update_add_htlcs.is_empty());
10153                 assert!(updates.update_fulfill_htlcs.is_empty());
10154                 assert_eq!(updates.update_fail_htlcs.len(), 1);
10155                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10156                 assert!(updates.update_fee.is_none());
10157                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
10158                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
10159                 expect_payment_failed!(nodes[0], payment_hash, true);
10160
10161                 // Finally, claim the original payment.
10162                 claim_payment(&nodes[0], &expected_route, payment_preimage);
10163
10164                 // To start (2), send a keysend payment but don't claim it.
10165                 let payment_preimage = PaymentPreimage([42; 32]);
10166                 let route = find_route(
10167                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
10168                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
10169                 ).unwrap();
10170                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10171                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
10172                 check_added_monitors!(nodes[0], 1);
10173                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10174                 assert_eq!(events.len(), 1);
10175                 let event = events.pop().unwrap();
10176                 let path = vec![&nodes[1]];
10177                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
10178
10179                 // Next, attempt a regular payment and make sure it fails.
10180                 let payment_secret = PaymentSecret([43; 32]);
10181                 nodes[0].node.send_payment_with_route(&route, payment_hash,
10182                         RecipientOnionFields::secret_only(payment_secret), PaymentId(payment_hash.0)).unwrap();
10183                 check_added_monitors!(nodes[0], 1);
10184                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10185                 assert_eq!(events.len(), 1);
10186                 let ev = events.drain(..).next().unwrap();
10187                 let payment_event = SendEvent::from_event(ev);
10188                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
10189                 check_added_monitors!(nodes[1], 0);
10190                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
10191                 expect_pending_htlcs_forwardable!(nodes[1]);
10192                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
10193                 check_added_monitors!(nodes[1], 1);
10194                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10195                 assert!(updates.update_add_htlcs.is_empty());
10196                 assert!(updates.update_fulfill_htlcs.is_empty());
10197                 assert_eq!(updates.update_fail_htlcs.len(), 1);
10198                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10199                 assert!(updates.update_fee.is_none());
10200                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
10201                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
10202                 expect_payment_failed!(nodes[0], payment_hash, true);
10203
10204                 // Finally, succeed the keysend payment.
10205                 claim_payment(&nodes[0], &expected_route, payment_preimage);
10206
10207                 // To start (3), send a keysend payment but don't claim it.
10208                 let payment_id_1 = PaymentId([44; 32]);
10209                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10210                         RecipientOnionFields::spontaneous_empty(), payment_id_1).unwrap();
10211                 check_added_monitors!(nodes[0], 1);
10212                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10213                 assert_eq!(events.len(), 1);
10214                 let event = events.pop().unwrap();
10215                 let path = vec![&nodes[1]];
10216                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
10217
10218                 // Next, attempt a keysend payment and make sure it fails.
10219                 let route_params = RouteParameters::from_payment_params_and_value(
10220                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(), TEST_FINAL_CLTV, false),
10221                         100_000
10222                 );
10223                 let route = find_route(
10224                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
10225                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
10226                 ).unwrap();
10227                 let payment_id_2 = PaymentId([45; 32]);
10228                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10229                         RecipientOnionFields::spontaneous_empty(), payment_id_2).unwrap();
10230                 check_added_monitors!(nodes[0], 1);
10231                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10232                 assert_eq!(events.len(), 1);
10233                 let ev = events.drain(..).next().unwrap();
10234                 let payment_event = SendEvent::from_event(ev);
10235                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
10236                 check_added_monitors!(nodes[1], 0);
10237                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
10238                 expect_pending_htlcs_forwardable!(nodes[1]);
10239                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
10240                 check_added_monitors!(nodes[1], 1);
10241                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10242                 assert!(updates.update_add_htlcs.is_empty());
10243                 assert!(updates.update_fulfill_htlcs.is_empty());
10244                 assert_eq!(updates.update_fail_htlcs.len(), 1);
10245                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10246                 assert!(updates.update_fee.is_none());
10247                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
10248                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
10249                 expect_payment_failed!(nodes[0], payment_hash, true);
10250
10251                 // Finally, claim the original payment.
10252                 claim_payment(&nodes[0], &expected_route, payment_preimage);
10253         }
10254
10255         #[test]
10256         fn test_keysend_hash_mismatch() {
10257                 // Test that if we receive a keysend `update_add_htlc` msg, we fail as expected if the keysend
10258                 // preimage doesn't match the msg's payment hash.
10259                 let chanmon_cfgs = create_chanmon_cfgs(2);
10260                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10261                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10262                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10263
10264                 let payer_pubkey = nodes[0].node.get_our_node_id();
10265                 let payee_pubkey = nodes[1].node.get_our_node_id();
10266
10267                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
10268                 let route_params = RouteParameters::from_payment_params_and_value(
10269                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
10270                 let network_graph = nodes[0].network_graph.clone();
10271                 let first_hops = nodes[0].node.list_usable_channels();
10272                 let scorer = test_utils::TestScorer::new();
10273                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
10274                 let route = find_route(
10275                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
10276                         nodes[0].logger, &scorer, &(), &random_seed_bytes
10277                 ).unwrap();
10278
10279                 let test_preimage = PaymentPreimage([42; 32]);
10280                 let mismatch_payment_hash = PaymentHash([43; 32]);
10281                 let session_privs = nodes[0].node.test_add_new_pending_payment(mismatch_payment_hash,
10282                         RecipientOnionFields::spontaneous_empty(), PaymentId(mismatch_payment_hash.0), &route).unwrap();
10283                 nodes[0].node.test_send_payment_internal(&route, mismatch_payment_hash,
10284                         RecipientOnionFields::spontaneous_empty(), Some(test_preimage), PaymentId(mismatch_payment_hash.0), None, session_privs).unwrap();
10285                 check_added_monitors!(nodes[0], 1);
10286
10287                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10288                 assert_eq!(updates.update_add_htlcs.len(), 1);
10289                 assert!(updates.update_fulfill_htlcs.is_empty());
10290                 assert!(updates.update_fail_htlcs.is_empty());
10291                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10292                 assert!(updates.update_fee.is_none());
10293                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
10294
10295                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "Payment preimage didn't match payment hash", 1);
10296         }
10297
10298         #[test]
10299         fn test_keysend_msg_with_secret_err() {
10300                 // Test that we error as expected if we receive a keysend payment that includes a payment
10301                 // secret when we don't support MPP keysend.
10302                 let mut reject_mpp_keysend_cfg = test_default_channel_config();
10303                 reject_mpp_keysend_cfg.accept_mpp_keysend = false;
10304                 let chanmon_cfgs = create_chanmon_cfgs(2);
10305                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10306                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(reject_mpp_keysend_cfg)]);
10307                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10308
10309                 let payer_pubkey = nodes[0].node.get_our_node_id();
10310                 let payee_pubkey = nodes[1].node.get_our_node_id();
10311
10312                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
10313                 let route_params = RouteParameters::from_payment_params_and_value(
10314                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
10315                 let network_graph = nodes[0].network_graph.clone();
10316                 let first_hops = nodes[0].node.list_usable_channels();
10317                 let scorer = test_utils::TestScorer::new();
10318                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
10319                 let route = find_route(
10320                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
10321                         nodes[0].logger, &scorer, &(), &random_seed_bytes
10322                 ).unwrap();
10323
10324                 let test_preimage = PaymentPreimage([42; 32]);
10325                 let test_secret = PaymentSecret([43; 32]);
10326                 let payment_hash = PaymentHash(Sha256::hash(&test_preimage.0).into_inner());
10327                 let session_privs = nodes[0].node.test_add_new_pending_payment(payment_hash,
10328                         RecipientOnionFields::secret_only(test_secret), PaymentId(payment_hash.0), &route).unwrap();
10329                 nodes[0].node.test_send_payment_internal(&route, payment_hash,
10330                         RecipientOnionFields::secret_only(test_secret), Some(test_preimage),
10331                         PaymentId(payment_hash.0), None, session_privs).unwrap();
10332                 check_added_monitors!(nodes[0], 1);
10333
10334                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10335                 assert_eq!(updates.update_add_htlcs.len(), 1);
10336                 assert!(updates.update_fulfill_htlcs.is_empty());
10337                 assert!(updates.update_fail_htlcs.is_empty());
10338                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10339                 assert!(updates.update_fee.is_none());
10340                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
10341
10342                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "We don't support MPP keysend payments", 1);
10343         }
10344
10345         #[test]
10346         fn test_multi_hop_missing_secret() {
10347                 let chanmon_cfgs = create_chanmon_cfgs(4);
10348                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
10349                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
10350                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
10351
10352                 let chan_1_id = create_announced_chan_between_nodes(&nodes, 0, 1).0.contents.short_channel_id;
10353                 let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2).0.contents.short_channel_id;
10354                 let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3).0.contents.short_channel_id;
10355                 let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3).0.contents.short_channel_id;
10356
10357                 // Marshall an MPP route.
10358                 let (mut route, payment_hash, _, _) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
10359                 let path = route.paths[0].clone();
10360                 route.paths.push(path);
10361                 route.paths[0].hops[0].pubkey = nodes[1].node.get_our_node_id();
10362                 route.paths[0].hops[0].short_channel_id = chan_1_id;
10363                 route.paths[0].hops[1].short_channel_id = chan_3_id;
10364                 route.paths[1].hops[0].pubkey = nodes[2].node.get_our_node_id();
10365                 route.paths[1].hops[0].short_channel_id = chan_2_id;
10366                 route.paths[1].hops[1].short_channel_id = chan_4_id;
10367
10368                 match nodes[0].node.send_payment_with_route(&route, payment_hash,
10369                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_hash.0))
10370                 .unwrap_err() {
10371                         PaymentSendFailure::ParameterError(APIError::APIMisuseError { ref err }) => {
10372                                 assert!(regex::Regex::new(r"Payment secret is required for multi-path payments").unwrap().is_match(err))
10373                         },
10374                         _ => panic!("unexpected error")
10375                 }
10376         }
10377
10378         #[test]
10379         fn test_drop_disconnected_peers_when_removing_channels() {
10380                 let chanmon_cfgs = create_chanmon_cfgs(2);
10381                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10382                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10383                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10384
10385                 let chan = create_announced_chan_between_nodes(&nodes, 0, 1);
10386
10387                 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
10388                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10389
10390                 nodes[0].node.force_close_broadcasting_latest_txn(&chan.2, &nodes[1].node.get_our_node_id()).unwrap();
10391                 check_closed_broadcast!(nodes[0], true);
10392                 check_added_monitors!(nodes[0], 1);
10393                 check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed, [nodes[1].node.get_our_node_id()], 100000);
10394
10395                 {
10396                         // Assert that nodes[1] is awaiting removal for nodes[0] once nodes[1] has been
10397                         // disconnected and the channel between has been force closed.
10398                         let nodes_0_per_peer_state = nodes[0].node.per_peer_state.read().unwrap();
10399                         // Assert that nodes[1] isn't removed before `timer_tick_occurred` has been executed.
10400                         assert_eq!(nodes_0_per_peer_state.len(), 1);
10401                         assert!(nodes_0_per_peer_state.get(&nodes[1].node.get_our_node_id()).is_some());
10402                 }
10403
10404                 nodes[0].node.timer_tick_occurred();
10405
10406                 {
10407                         // Assert that nodes[1] has now been removed.
10408                         assert_eq!(nodes[0].node.per_peer_state.read().unwrap().len(), 0);
10409                 }
10410         }
10411
10412         #[test]
10413         fn bad_inbound_payment_hash() {
10414                 // Add coverage for checking that a user-provided payment hash matches the payment secret.
10415                 let chanmon_cfgs = create_chanmon_cfgs(2);
10416                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10417                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10418                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10419
10420                 let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[0]);
10421                 let payment_data = msgs::FinalOnionHopData {
10422                         payment_secret,
10423                         total_msat: 100_000,
10424                 };
10425
10426                 // Ensure that if the payment hash given to `inbound_payment::verify` differs from the original,
10427                 // payment verification fails as expected.
10428                 let mut bad_payment_hash = payment_hash.clone();
10429                 bad_payment_hash.0[0] += 1;
10430                 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) {
10431                         Ok(_) => panic!("Unexpected ok"),
10432                         Err(()) => {
10433                                 nodes[0].logger.assert_log_contains("lightning::ln::inbound_payment", "Failing HTLC with user-generated payment_hash", 1);
10434                         }
10435                 }
10436
10437                 // Check that using the original payment hash succeeds.
10438                 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());
10439         }
10440
10441         #[test]
10442         fn test_id_to_peer_coverage() {
10443                 // Test that the `ChannelManager:id_to_peer` contains channels which have been assigned
10444                 // a `channel_id` (i.e. have had the funding tx created), and that they are removed once
10445                 // the channel is successfully closed.
10446                 let chanmon_cfgs = create_chanmon_cfgs(2);
10447                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10448                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10449                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10450
10451                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1_000_000, 500_000_000, 42, None).unwrap();
10452                 let open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10453                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel);
10454                 let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10455                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
10456
10457                 let (temporary_channel_id, tx, _funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 1_000_000, 42);
10458                 let channel_id = ChannelId::from_bytes(tx.txid().into_inner());
10459                 {
10460                         // Ensure that the `id_to_peer` map is empty until either party has received the
10461                         // funding transaction, and have the real `channel_id`.
10462                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
10463                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10464                 }
10465
10466                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
10467                 {
10468                         // Assert that `nodes[0]`'s `id_to_peer` map is populated with the channel as soon as
10469                         // as it has the funding transaction.
10470                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10471                         assert_eq!(nodes_0_lock.len(), 1);
10472                         assert!(nodes_0_lock.contains_key(&channel_id));
10473                 }
10474
10475                 assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10476
10477                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
10478
10479                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
10480                 {
10481                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10482                         assert_eq!(nodes_0_lock.len(), 1);
10483                         assert!(nodes_0_lock.contains_key(&channel_id));
10484                 }
10485                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
10486
10487                 {
10488                         // Assert that `nodes[1]`'s `id_to_peer` map is populated with the channel as soon as
10489                         // as it has the funding transaction.
10490                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10491                         assert_eq!(nodes_1_lock.len(), 1);
10492                         assert!(nodes_1_lock.contains_key(&channel_id));
10493                 }
10494                 check_added_monitors!(nodes[1], 1);
10495                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
10496                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
10497                 check_added_monitors!(nodes[0], 1);
10498                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
10499                 let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
10500                 let (announcement, nodes_0_update, nodes_1_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
10501                 update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &nodes_0_update, &nodes_1_update);
10502
10503                 nodes[0].node.close_channel(&channel_id, &nodes[1].node.get_our_node_id()).unwrap();
10504                 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()));
10505                 let nodes_1_shutdown = get_event_msg!(nodes[1], MessageSendEvent::SendShutdown, nodes[0].node.get_our_node_id());
10506                 nodes[0].node.handle_shutdown(&nodes[1].node.get_our_node_id(), &nodes_1_shutdown);
10507
10508                 let closing_signed_node_0 = get_event_msg!(nodes[0], MessageSendEvent::SendClosingSigned, nodes[1].node.get_our_node_id());
10509                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0);
10510                 {
10511                         // Assert that the channel is kept in the `id_to_peer` map for both nodes until the
10512                         // channel can be fully closed by both parties (i.e. no outstanding htlcs exists, the
10513                         // fee for the closing transaction has been negotiated and the parties has the other
10514                         // party's signature for the fee negotiated closing transaction.)
10515                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10516                         assert_eq!(nodes_0_lock.len(), 1);
10517                         assert!(nodes_0_lock.contains_key(&channel_id));
10518                 }
10519
10520                 {
10521                         // At this stage, `nodes[1]` has proposed a fee for the closing transaction in the
10522                         // `handle_closing_signed` call above. As `nodes[1]` has not yet received the signature
10523                         // from `nodes[0]` for the closing transaction with the proposed fee, the channel is
10524                         // kept in the `nodes[1]`'s `id_to_peer` map.
10525                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10526                         assert_eq!(nodes_1_lock.len(), 1);
10527                         assert!(nodes_1_lock.contains_key(&channel_id));
10528                 }
10529
10530                 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()));
10531                 {
10532                         // `nodes[0]` accepts `nodes[1]`'s proposed fee for the closing transaction, and
10533                         // therefore has all it needs to fully close the channel (both signatures for the
10534                         // closing transaction).
10535                         // Assert that the channel is removed from `nodes[0]`'s `id_to_peer` map as it can be
10536                         // fully closed by `nodes[0]`.
10537                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
10538
10539                         // Assert that the channel is still in `nodes[1]`'s  `id_to_peer` map, as `nodes[1]`
10540                         // doesn't have `nodes[0]`'s signature for the closing transaction yet.
10541                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10542                         assert_eq!(nodes_1_lock.len(), 1);
10543                         assert!(nodes_1_lock.contains_key(&channel_id));
10544                 }
10545
10546                 let (_nodes_0_update, closing_signed_node_0) = get_closing_signed_broadcast!(nodes[0].node, nodes[1].node.get_our_node_id());
10547
10548                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0.unwrap());
10549                 {
10550                         // Assert that the channel has now been removed from both parties `id_to_peer` map once
10551                         // they both have everything required to fully close the channel.
10552                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10553                 }
10554                 let (_nodes_1_update, _none) = get_closing_signed_broadcast!(nodes[1].node, nodes[0].node.get_our_node_id());
10555
10556                 check_closed_event!(nodes[0], 1, ClosureReason::CooperativeClosure, [nodes[1].node.get_our_node_id()], 1000000);
10557                 check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure, [nodes[0].node.get_our_node_id()], 1000000);
10558         }
10559
10560         fn check_not_connected_to_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
10561                 let expected_message = format!("Not connected to node: {}", expected_public_key);
10562                 check_api_error_message(expected_message, res_err)
10563         }
10564
10565         fn check_unkown_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
10566                 let expected_message = format!("Can't find a peer matching the passed counterparty node_id {}", expected_public_key);
10567                 check_api_error_message(expected_message, res_err)
10568         }
10569
10570         fn check_api_error_message<T>(expected_err_message: String, res_err: Result<T, APIError>) {
10571                 match res_err {
10572                         Err(APIError::APIMisuseError { err }) => {
10573                                 assert_eq!(err, expected_err_message);
10574                         },
10575                         Err(APIError::ChannelUnavailable { err }) => {
10576                                 assert_eq!(err, expected_err_message);
10577                         },
10578                         Ok(_) => panic!("Unexpected Ok"),
10579                         Err(_) => panic!("Unexpected Error"),
10580                 }
10581         }
10582
10583         #[test]
10584         fn test_api_calls_with_unkown_counterparty_node() {
10585                 // Tests that our API functions that expects a `counterparty_node_id` as input, behaves as
10586                 // expected if the `counterparty_node_id` is an unkown peer in the
10587                 // `ChannelManager::per_peer_state` map.
10588                 let chanmon_cfg = create_chanmon_cfgs(2);
10589                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
10590                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[None, None]);
10591                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
10592
10593                 // Dummy values
10594                 let channel_id = ChannelId::from_bytes([4; 32]);
10595                 let unkown_public_key = PublicKey::from_secret_key(&Secp256k1::signing_only(), &SecretKey::from_slice(&[42; 32]).unwrap());
10596                 let intercept_id = InterceptId([0; 32]);
10597
10598                 // Test the API functions.
10599                 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);
10600
10601                 check_unkown_peer_error(nodes[0].node.accept_inbound_channel(&channel_id, &unkown_public_key, 42), unkown_public_key);
10602
10603                 check_unkown_peer_error(nodes[0].node.close_channel(&channel_id, &unkown_public_key), unkown_public_key);
10604
10605                 check_unkown_peer_error(nodes[0].node.force_close_broadcasting_latest_txn(&channel_id, &unkown_public_key), unkown_public_key);
10606
10607                 check_unkown_peer_error(nodes[0].node.force_close_without_broadcasting_txn(&channel_id, &unkown_public_key), unkown_public_key);
10608
10609                 check_unkown_peer_error(nodes[0].node.forward_intercepted_htlc(intercept_id, &channel_id, unkown_public_key, 1_000_000), unkown_public_key);
10610
10611                 check_unkown_peer_error(nodes[0].node.update_channel_config(&unkown_public_key, &[channel_id], &ChannelConfig::default()), unkown_public_key);
10612         }
10613
10614         #[test]
10615         fn test_connection_limiting() {
10616                 // Test that we limit un-channel'd peers and un-funded channels properly.
10617                 let chanmon_cfgs = create_chanmon_cfgs(2);
10618                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10619                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10620                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10621
10622                 // Note that create_network connects the nodes together for us
10623
10624                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10625                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10626
10627                 let mut funding_tx = None;
10628                 for idx in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
10629                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10630                         let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10631
10632                         if idx == 0 {
10633                                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
10634                                 let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100_000, 42);
10635                                 funding_tx = Some(tx.clone());
10636                                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx).unwrap();
10637                                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
10638
10639                                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
10640                                 check_added_monitors!(nodes[1], 1);
10641                                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
10642
10643                                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
10644
10645                                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
10646                                 check_added_monitors!(nodes[0], 1);
10647                                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
10648                         }
10649                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10650                 }
10651
10652                 // A MAX_UNFUNDED_CHANS_PER_PEER + 1 channel will be summarily rejected
10653                 open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10654                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10655                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10656                         open_channel_msg.temporary_channel_id);
10657
10658                 // Further, because all of our channels with nodes[0] are inbound, and none of them funded,
10659                 // it doesn't count as a "protected" peer, i.e. it counts towards the MAX_NO_CHANNEL_PEERS
10660                 // limit.
10661                 let mut peer_pks = Vec::with_capacity(super::MAX_NO_CHANNEL_PEERS);
10662                 for _ in 1..super::MAX_NO_CHANNEL_PEERS {
10663                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10664                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10665                         peer_pks.push(random_pk);
10666                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
10667                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10668                         }, true).unwrap();
10669                 }
10670                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10671                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10672                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10673                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10674                 }, true).unwrap_err();
10675
10676                 // Also importantly, because nodes[0] isn't "protected", we will refuse a reconnection from
10677                 // them if we have too many un-channel'd peers.
10678                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10679                 let chan_closed_events = nodes[1].node.get_and_clear_pending_events();
10680                 assert_eq!(chan_closed_events.len(), super::MAX_UNFUNDED_CHANS_PER_PEER - 1);
10681                 for ev in chan_closed_events {
10682                         if let Event::ChannelClosed { .. } = ev { } else { panic!(); }
10683                 }
10684                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10685                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10686                 }, true).unwrap();
10687                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10688                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10689                 }, true).unwrap_err();
10690
10691                 // but of course if the connection is outbound its allowed...
10692                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10693                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10694                 }, false).unwrap();
10695                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10696
10697                 // Now nodes[0] is disconnected but still has a pending, un-funded channel lying around.
10698                 // Even though we accept one more connection from new peers, we won't actually let them
10699                 // open channels.
10700                 assert!(peer_pks.len() > super::MAX_UNFUNDED_CHANNEL_PEERS - 1);
10701                 for i in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
10702                         nodes[1].node.handle_open_channel(&peer_pks[i], &open_channel_msg);
10703                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, peer_pks[i]);
10704                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10705                 }
10706                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10707                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
10708                         open_channel_msg.temporary_channel_id);
10709
10710                 // Of course, however, outbound channels are always allowed
10711                 nodes[1].node.create_channel(last_random_pk, 100_000, 0, 42, None).unwrap();
10712                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, last_random_pk);
10713
10714                 // If we fund the first channel, nodes[0] has a live on-chain channel with us, it is now
10715                 // "protected" and can connect again.
10716                 mine_transaction(&nodes[1], funding_tx.as_ref().unwrap());
10717                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10718                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10719                 }, true).unwrap();
10720                 get_event_msg!(nodes[1], MessageSendEvent::SendChannelReestablish, nodes[0].node.get_our_node_id());
10721
10722                 // Further, because the first channel was funded, we can open another channel with
10723                 // last_random_pk.
10724                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10725                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
10726         }
10727
10728         #[test]
10729         fn test_outbound_chans_unlimited() {
10730                 // Test that we never refuse an outbound channel even if a peer is unfuned-channel-limited
10731                 let chanmon_cfgs = create_chanmon_cfgs(2);
10732                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10733                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10734                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10735
10736                 // Note that create_network connects the nodes together for us
10737
10738                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10739                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10740
10741                 for _ in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
10742                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10743                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10744                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10745                 }
10746
10747                 // Once we have MAX_UNFUNDED_CHANS_PER_PEER unfunded channels, new inbound channels will be
10748                 // rejected.
10749                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10750                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10751                         open_channel_msg.temporary_channel_id);
10752
10753                 // but we can still open an outbound channel.
10754                 nodes[1].node.create_channel(nodes[0].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10755                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
10756
10757                 // but even with such an outbound channel, additional inbound channels will still fail.
10758                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10759                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10760                         open_channel_msg.temporary_channel_id);
10761         }
10762
10763         #[test]
10764         fn test_0conf_limiting() {
10765                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
10766                 // flag set and (sometimes) accept channels as 0conf.
10767                 let chanmon_cfgs = create_chanmon_cfgs(2);
10768                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10769                 let mut settings = test_default_channel_config();
10770                 settings.manually_accept_inbound_channels = true;
10771                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(settings)]);
10772                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10773
10774                 // Note that create_network connects the nodes together for us
10775
10776                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10777                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10778
10779                 // First, get us up to MAX_UNFUNDED_CHANNEL_PEERS so we can test at the edge
10780                 for _ in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
10781                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10782                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10783                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
10784                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10785                         }, true).unwrap();
10786
10787                         nodes[1].node.handle_open_channel(&random_pk, &open_channel_msg);
10788                         let events = nodes[1].node.get_and_clear_pending_events();
10789                         match events[0] {
10790                                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
10791                                         nodes[1].node.accept_inbound_channel(&temporary_channel_id, &random_pk, 23).unwrap();
10792                                 }
10793                                 _ => panic!("Unexpected event"),
10794                         }
10795                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, random_pk);
10796                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10797                 }
10798
10799                 // If we try to accept a channel from another peer non-0conf it will fail.
10800                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10801                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10802                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10803                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10804                 }, true).unwrap();
10805                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10806                 let events = nodes[1].node.get_and_clear_pending_events();
10807                 match events[0] {
10808                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10809                                 match nodes[1].node.accept_inbound_channel(&temporary_channel_id, &last_random_pk, 23) {
10810                                         Err(APIError::APIMisuseError { err }) =>
10811                                                 assert_eq!(err, "Too many peers with unfunded channels, refusing to accept new ones"),
10812                                         _ => panic!(),
10813                                 }
10814                         }
10815                         _ => panic!("Unexpected event"),
10816                 }
10817                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
10818                         open_channel_msg.temporary_channel_id);
10819
10820                 // ...however if we accept the same channel 0conf it should work just fine.
10821                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10822                 let events = nodes[1].node.get_and_clear_pending_events();
10823                 match events[0] {
10824                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10825                                 nodes[1].node.accept_inbound_channel_from_trusted_peer_0conf(&temporary_channel_id, &last_random_pk, 23).unwrap();
10826                         }
10827                         _ => panic!("Unexpected event"),
10828                 }
10829                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
10830         }
10831
10832         #[test]
10833         fn reject_excessively_underpaying_htlcs() {
10834                 let chanmon_cfg = create_chanmon_cfgs(1);
10835                 let node_cfg = create_node_cfgs(1, &chanmon_cfg);
10836                 let node_chanmgr = create_node_chanmgrs(1, &node_cfg, &[None]);
10837                 let node = create_network(1, &node_cfg, &node_chanmgr);
10838                 let sender_intended_amt_msat = 100;
10839                 let extra_fee_msat = 10;
10840                 let hop_data = msgs::InboundOnionPayload::Receive {
10841                         amt_msat: 100,
10842                         outgoing_cltv_value: 42,
10843                         payment_metadata: None,
10844                         keysend_preimage: None,
10845                         payment_data: Some(msgs::FinalOnionHopData {
10846                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
10847                         }),
10848                         custom_tlvs: Vec::new(),
10849                 };
10850                 // Check that if the amount we received + the penultimate hop extra fee is less than the sender
10851                 // intended amount, we fail the payment.
10852                 if let Err(crate::ln::channelmanager::InboundOnionErr { err_code, .. }) =
10853                         node[0].node.construct_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
10854                                 sender_intended_amt_msat - extra_fee_msat - 1, 42, None, true, Some(extra_fee_msat))
10855                 {
10856                         assert_eq!(err_code, 19);
10857                 } else { panic!(); }
10858
10859                 // If amt_received + extra_fee is equal to the sender intended amount, we're fine.
10860                 let hop_data = msgs::InboundOnionPayload::Receive { // This is the same payload as above, InboundOnionPayload doesn't implement Clone
10861                         amt_msat: 100,
10862                         outgoing_cltv_value: 42,
10863                         payment_metadata: None,
10864                         keysend_preimage: None,
10865                         payment_data: Some(msgs::FinalOnionHopData {
10866                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
10867                         }),
10868                         custom_tlvs: Vec::new(),
10869                 };
10870                 assert!(node[0].node.construct_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
10871                         sender_intended_amt_msat - extra_fee_msat, 42, None, true, Some(extra_fee_msat)).is_ok());
10872         }
10873
10874         #[test]
10875         fn test_inbound_anchors_manual_acceptance() {
10876                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
10877                 // flag set and (sometimes) accept channels as 0conf.
10878                 let mut anchors_cfg = test_default_channel_config();
10879                 anchors_cfg.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
10880
10881                 let mut anchors_manual_accept_cfg = anchors_cfg.clone();
10882                 anchors_manual_accept_cfg.manually_accept_inbound_channels = true;
10883
10884                 let chanmon_cfgs = create_chanmon_cfgs(3);
10885                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
10886                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs,
10887                         &[Some(anchors_cfg.clone()), Some(anchors_cfg.clone()), Some(anchors_manual_accept_cfg.clone())]);
10888                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
10889
10890                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10891                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10892
10893                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10894                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
10895                 let msg_events = nodes[1].node.get_and_clear_pending_msg_events();
10896                 match &msg_events[0] {
10897                         MessageSendEvent::HandleError { node_id, action } => {
10898                                 assert_eq!(*node_id, nodes[0].node.get_our_node_id());
10899                                 match action {
10900                                         ErrorAction::SendErrorMessage { msg } =>
10901                                                 assert_eq!(msg.data, "No channels with anchor outputs accepted".to_owned()),
10902                                         _ => panic!("Unexpected error action"),
10903                                 }
10904                         }
10905                         _ => panic!("Unexpected event"),
10906                 }
10907
10908                 nodes[2].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10909                 let events = nodes[2].node.get_and_clear_pending_events();
10910                 match events[0] {
10911                         Event::OpenChannelRequest { temporary_channel_id, .. } =>
10912                                 nodes[2].node.accept_inbound_channel(&temporary_channel_id, &nodes[0].node.get_our_node_id(), 23).unwrap(),
10913                         _ => panic!("Unexpected event"),
10914                 }
10915                 get_event_msg!(nodes[2], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10916         }
10917
10918         #[test]
10919         fn test_anchors_zero_fee_htlc_tx_fallback() {
10920                 // Tests that if both nodes support anchors, but the remote node does not want to accept
10921                 // anchor channels at the moment, an error it sent to the local node such that it can retry
10922                 // the channel without the anchors feature.
10923                 let chanmon_cfgs = create_chanmon_cfgs(2);
10924                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10925                 let mut anchors_config = test_default_channel_config();
10926                 anchors_config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
10927                 anchors_config.manually_accept_inbound_channels = true;
10928                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(anchors_config.clone()), Some(anchors_config.clone())]);
10929                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10930
10931                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 0, None).unwrap();
10932                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10933                 assert!(open_channel_msg.channel_type.as_ref().unwrap().supports_anchors_zero_fee_htlc_tx());
10934
10935                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10936                 let events = nodes[1].node.get_and_clear_pending_events();
10937                 match events[0] {
10938                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10939                                 nodes[1].node.force_close_broadcasting_latest_txn(&temporary_channel_id, &nodes[0].node.get_our_node_id()).unwrap();
10940                         }
10941                         _ => panic!("Unexpected event"),
10942                 }
10943
10944                 let error_msg = get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id());
10945                 nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &error_msg);
10946
10947                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10948                 assert!(!open_channel_msg.channel_type.unwrap().supports_anchors_zero_fee_htlc_tx());
10949
10950                 // Since nodes[1] should not have accepted the channel, it should
10951                 // not have generated any events.
10952                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
10953         }
10954
10955         #[test]
10956         fn test_update_channel_config() {
10957                 let chanmon_cfg = create_chanmon_cfgs(2);
10958                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
10959                 let mut user_config = test_default_channel_config();
10960                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config), Some(user_config)]);
10961                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
10962                 let _ = create_announced_chan_between_nodes(&nodes, 0, 1);
10963                 let channel = &nodes[0].node.list_channels()[0];
10964
10965                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
10966                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10967                 assert_eq!(events.len(), 0);
10968
10969                 user_config.channel_config.forwarding_fee_base_msat += 10;
10970                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
10971                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_base_msat, user_config.channel_config.forwarding_fee_base_msat);
10972                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10973                 assert_eq!(events.len(), 1);
10974                 match &events[0] {
10975                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
10976                         _ => panic!("expected BroadcastChannelUpdate event"),
10977                 }
10978
10979                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate::default()).unwrap();
10980                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10981                 assert_eq!(events.len(), 0);
10982
10983                 let new_cltv_expiry_delta = user_config.channel_config.cltv_expiry_delta + 6;
10984                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
10985                         cltv_expiry_delta: Some(new_cltv_expiry_delta),
10986                         ..Default::default()
10987                 }).unwrap();
10988                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
10989                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10990                 assert_eq!(events.len(), 1);
10991                 match &events[0] {
10992                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
10993                         _ => panic!("expected BroadcastChannelUpdate event"),
10994                 }
10995
10996                 let new_fee = user_config.channel_config.forwarding_fee_proportional_millionths + 100;
10997                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
10998                         forwarding_fee_proportional_millionths: Some(new_fee),
10999                         ..Default::default()
11000                 }).unwrap();
11001                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
11002                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, new_fee);
11003                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11004                 assert_eq!(events.len(), 1);
11005                 match &events[0] {
11006                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
11007                         _ => panic!("expected BroadcastChannelUpdate event"),
11008                 }
11009
11010                 // If we provide a channel_id not associated with the peer, we should get an error and no updates
11011                 // should be applied to ensure update atomicity as specified in the API docs.
11012                 let bad_channel_id = ChannelId::v1_from_funding_txid(&[10; 32], 10);
11013                 let current_fee = nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths;
11014                 let new_fee = current_fee + 100;
11015                 assert!(
11016                         matches!(
11017                                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id, bad_channel_id], &ChannelConfigUpdate {
11018                                         forwarding_fee_proportional_millionths: Some(new_fee),
11019                                         ..Default::default()
11020                                 }),
11021                                 Err(APIError::ChannelUnavailable { err: _ }),
11022                         )
11023                 );
11024                 // Check that the fee hasn't changed for the channel that exists.
11025                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, current_fee);
11026                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11027                 assert_eq!(events.len(), 0);
11028         }
11029
11030         #[test]
11031         fn test_payment_display() {
11032                 let payment_id = PaymentId([42; 32]);
11033                 assert_eq!(format!("{}", &payment_id), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
11034                 let payment_hash = PaymentHash([42; 32]);
11035                 assert_eq!(format!("{}", &payment_hash), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
11036                 let payment_preimage = PaymentPreimage([42; 32]);
11037                 assert_eq!(format!("{}", &payment_preimage), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
11038         }
11039 }
11040
11041 #[cfg(ldk_bench)]
11042 pub mod bench {
11043         use crate::chain::Listen;
11044         use crate::chain::chainmonitor::{ChainMonitor, Persist};
11045         use crate::sign::{KeysManager, InMemorySigner};
11046         use crate::events::{Event, MessageSendEvent, MessageSendEventsProvider};
11047         use crate::ln::channelmanager::{BestBlock, ChainParameters, ChannelManager, PaymentHash, PaymentPreimage, PaymentId, RecipientOnionFields, Retry};
11048         use crate::ln::functional_test_utils::*;
11049         use crate::ln::msgs::{ChannelMessageHandler, Init};
11050         use crate::routing::gossip::NetworkGraph;
11051         use crate::routing::router::{PaymentParameters, RouteParameters};
11052         use crate::util::test_utils;
11053         use crate::util::config::{UserConfig, MaxDustHTLCExposure};
11054
11055         use bitcoin::hashes::Hash;
11056         use bitcoin::hashes::sha256::Hash as Sha256;
11057         use bitcoin::{Block, BlockHeader, PackedLockTime, Transaction, TxMerkleNode, TxOut};
11058
11059         use crate::sync::{Arc, Mutex, RwLock};
11060
11061         use criterion::Criterion;
11062
11063         type Manager<'a, P> = ChannelManager<
11064                 &'a ChainMonitor<InMemorySigner, &'a test_utils::TestChainSource,
11065                         &'a test_utils::TestBroadcaster, &'a test_utils::TestFeeEstimator,
11066                         &'a test_utils::TestLogger, &'a P>,
11067                 &'a test_utils::TestBroadcaster, &'a KeysManager, &'a KeysManager, &'a KeysManager,
11068                 &'a test_utils::TestFeeEstimator, &'a test_utils::TestRouter<'a>,
11069                 &'a test_utils::TestLogger>;
11070
11071         struct ANodeHolder<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> {
11072                 node: &'node_cfg Manager<'chan_mon_cfg, P>,
11073         }
11074         impl<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> NodeHolder for ANodeHolder<'node_cfg, 'chan_mon_cfg, P> {
11075                 type CM = Manager<'chan_mon_cfg, P>;
11076                 #[inline]
11077                 fn node(&self) -> &Manager<'chan_mon_cfg, P> { self.node }
11078                 #[inline]
11079                 fn chain_monitor(&self) -> Option<&test_utils::TestChainMonitor> { None }
11080         }
11081
11082         pub fn bench_sends(bench: &mut Criterion) {
11083                 bench_two_sends(bench, "bench_sends", test_utils::TestPersister::new(), test_utils::TestPersister::new());
11084         }
11085
11086         pub fn bench_two_sends<P: Persist<InMemorySigner>>(bench: &mut Criterion, bench_name: &str, persister_a: P, persister_b: P) {
11087                 // Do a simple benchmark of sending a payment back and forth between two nodes.
11088                 // Note that this is unrealistic as each payment send will require at least two fsync
11089                 // calls per node.
11090                 let network = bitcoin::Network::Testnet;
11091                 let genesis_block = bitcoin::blockdata::constants::genesis_block(network);
11092
11093                 let tx_broadcaster = test_utils::TestBroadcaster::new(network);
11094                 let fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
11095                 let logger_a = test_utils::TestLogger::with_id("node a".to_owned());
11096                 let scorer = RwLock::new(test_utils::TestScorer::new());
11097                 let router = test_utils::TestRouter::new(Arc::new(NetworkGraph::new(network, &logger_a)), &scorer);
11098
11099                 let mut config: UserConfig = Default::default();
11100                 config.channel_config.max_dust_htlc_exposure = MaxDustHTLCExposure::FeeRateMultiplier(5_000_000 / 253);
11101                 config.channel_handshake_config.minimum_depth = 1;
11102
11103                 let chain_monitor_a = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_a);
11104                 let seed_a = [1u8; 32];
11105                 let keys_manager_a = KeysManager::new(&seed_a, 42, 42);
11106                 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 {
11107                         network,
11108                         best_block: BestBlock::from_network(network),
11109                 }, genesis_block.header.time);
11110                 let node_a_holder = ANodeHolder { node: &node_a };
11111
11112                 let logger_b = test_utils::TestLogger::with_id("node a".to_owned());
11113                 let chain_monitor_b = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_b);
11114                 let seed_b = [2u8; 32];
11115                 let keys_manager_b = KeysManager::new(&seed_b, 42, 42);
11116                 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 {
11117                         network,
11118                         best_block: BestBlock::from_network(network),
11119                 }, genesis_block.header.time);
11120                 let node_b_holder = ANodeHolder { node: &node_b };
11121
11122                 node_a.peer_connected(&node_b.get_our_node_id(), &Init {
11123                         features: node_b.init_features(), networks: None, remote_network_address: None
11124                 }, true).unwrap();
11125                 node_b.peer_connected(&node_a.get_our_node_id(), &Init {
11126                         features: node_a.init_features(), networks: None, remote_network_address: None
11127                 }, false).unwrap();
11128                 node_a.create_channel(node_b.get_our_node_id(), 8_000_000, 100_000_000, 42, None).unwrap();
11129                 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()));
11130                 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()));
11131
11132                 let tx;
11133                 if let Event::FundingGenerationReady { temporary_channel_id, output_script, .. } = get_event!(node_a_holder, Event::FundingGenerationReady) {
11134                         tx = Transaction { version: 2, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: vec![TxOut {
11135                                 value: 8_000_000, script_pubkey: output_script,
11136                         }]};
11137                         node_a.funding_transaction_generated(&temporary_channel_id, &node_b.get_our_node_id(), tx.clone()).unwrap();
11138                 } else { panic!(); }
11139
11140                 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()));
11141                 let events_b = node_b.get_and_clear_pending_events();
11142                 assert_eq!(events_b.len(), 1);
11143                 match events_b[0] {
11144                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
11145                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
11146                         },
11147                         _ => panic!("Unexpected event"),
11148                 }
11149
11150                 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()));
11151                 let events_a = node_a.get_and_clear_pending_events();
11152                 assert_eq!(events_a.len(), 1);
11153                 match events_a[0] {
11154                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
11155                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
11156                         },
11157                         _ => panic!("Unexpected event"),
11158                 }
11159
11160                 assert_eq!(&tx_broadcaster.txn_broadcasted.lock().unwrap()[..], &[tx.clone()]);
11161
11162                 let block = create_dummy_block(BestBlock::from_network(network).block_hash(), 42, vec![tx]);
11163                 Listen::block_connected(&node_a, &block, 1);
11164                 Listen::block_connected(&node_b, &block, 1);
11165
11166                 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()));
11167                 let msg_events = node_a.get_and_clear_pending_msg_events();
11168                 assert_eq!(msg_events.len(), 2);
11169                 match msg_events[0] {
11170                         MessageSendEvent::SendChannelReady { ref msg, .. } => {
11171                                 node_b.handle_channel_ready(&node_a.get_our_node_id(), msg);
11172                                 get_event_msg!(node_b_holder, MessageSendEvent::SendChannelUpdate, node_a.get_our_node_id());
11173                         },
11174                         _ => panic!(),
11175                 }
11176                 match msg_events[1] {
11177                         MessageSendEvent::SendChannelUpdate { .. } => {},
11178                         _ => panic!(),
11179                 }
11180
11181                 let events_a = node_a.get_and_clear_pending_events();
11182                 assert_eq!(events_a.len(), 1);
11183                 match events_a[0] {
11184                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
11185                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
11186                         },
11187                         _ => panic!("Unexpected event"),
11188                 }
11189
11190                 let events_b = node_b.get_and_clear_pending_events();
11191                 assert_eq!(events_b.len(), 1);
11192                 match events_b[0] {
11193                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
11194                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
11195                         },
11196                         _ => panic!("Unexpected event"),
11197                 }
11198
11199                 let mut payment_count: u64 = 0;
11200                 macro_rules! send_payment {
11201                         ($node_a: expr, $node_b: expr) => {
11202                                 let payment_params = PaymentParameters::from_node_id($node_b.get_our_node_id(), TEST_FINAL_CLTV)
11203                                         .with_bolt11_features($node_b.invoice_features()).unwrap();
11204                                 let mut payment_preimage = PaymentPreimage([0; 32]);
11205                                 payment_preimage.0[0..8].copy_from_slice(&payment_count.to_le_bytes());
11206                                 payment_count += 1;
11207                                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner());
11208                                 let payment_secret = $node_b.create_inbound_payment_for_hash(payment_hash, None, 7200, None).unwrap();
11209
11210                                 $node_a.send_payment(payment_hash, RecipientOnionFields::secret_only(payment_secret),
11211                                         PaymentId(payment_hash.0),
11212                                         RouteParameters::from_payment_params_and_value(payment_params, 10_000),
11213                                         Retry::Attempts(0)).unwrap();
11214                                 let payment_event = SendEvent::from_event($node_a.get_and_clear_pending_msg_events().pop().unwrap());
11215                                 $node_b.handle_update_add_htlc(&$node_a.get_our_node_id(), &payment_event.msgs[0]);
11216                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &payment_event.commitment_msg);
11217                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_b }, &$node_a.get_our_node_id());
11218                                 $node_a.handle_revoke_and_ack(&$node_b.get_our_node_id(), &raa);
11219                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &cs);
11220                                 $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()));
11221
11222                                 expect_pending_htlcs_forwardable!(ANodeHolder { node: &$node_b });
11223                                 expect_payment_claimable!(ANodeHolder { node: &$node_b }, payment_hash, payment_secret, 10_000);
11224                                 $node_b.claim_funds(payment_preimage);
11225                                 expect_payment_claimed!(ANodeHolder { node: &$node_b }, payment_hash, 10_000);
11226
11227                                 match $node_b.get_and_clear_pending_msg_events().pop().unwrap() {
11228                                         MessageSendEvent::UpdateHTLCs { node_id, updates } => {
11229                                                 assert_eq!(node_id, $node_a.get_our_node_id());
11230                                                 $node_a.handle_update_fulfill_htlc(&$node_b.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
11231                                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &updates.commitment_signed);
11232                                         },
11233                                         _ => panic!("Failed to generate claim event"),
11234                                 }
11235
11236                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_a }, &$node_b.get_our_node_id());
11237                                 $node_b.handle_revoke_and_ack(&$node_a.get_our_node_id(), &raa);
11238                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &cs);
11239                                 $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()));
11240
11241                                 expect_payment_sent!(ANodeHolder { node: &$node_a }, payment_preimage);
11242                         }
11243                 }
11244
11245                 bench.bench_function(bench_name, |b| b.iter(|| {
11246                         send_payment!(node_a, node_b);
11247                         send_payment!(node_b, node_a);
11248                 }));
11249         }
11250 }