cfa17295a53f37bd8fabd63b54ea4053a27f27eb
[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::{btree_map, 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         /// Tracks the progress of channels going through batch funding by whether funding_signed was
1205         /// received and the monitor has been persisted.
1206         ///
1207         /// This information does not need to be persisted as funding nodes can forget
1208         /// unfunded channels upon disconnection.
1209         funding_batch_states: Mutex<BTreeMap<Txid, Vec<(ChannelId, PublicKey, bool)>>>,
1210
1211         background_events_processed_since_startup: AtomicBool,
1212
1213         event_persist_notifier: Notifier,
1214         needs_persist_flag: AtomicBool,
1215
1216         entropy_source: ES,
1217         node_signer: NS,
1218         signer_provider: SP,
1219
1220         logger: L,
1221 }
1222
1223 /// Chain-related parameters used to construct a new `ChannelManager`.
1224 ///
1225 /// Typically, the block-specific parameters are derived from the best block hash for the network,
1226 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
1227 /// are not needed when deserializing a previously constructed `ChannelManager`.
1228 #[derive(Clone, Copy, PartialEq)]
1229 pub struct ChainParameters {
1230         /// The network for determining the `chain_hash` in Lightning messages.
1231         pub network: Network,
1232
1233         /// The hash and height of the latest block successfully connected.
1234         ///
1235         /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
1236         pub best_block: BestBlock,
1237 }
1238
1239 #[derive(Copy, Clone, PartialEq)]
1240 #[must_use]
1241 enum NotifyOption {
1242         DoPersist,
1243         SkipPersistHandleEvents,
1244         SkipPersistNoEvents,
1245 }
1246
1247 /// Whenever we release the `ChannelManager`'s `total_consistency_lock`, from read mode, it is
1248 /// desirable to notify any listeners on `await_persistable_update_timeout`/
1249 /// `await_persistable_update` when new updates are available for persistence. Therefore, this
1250 /// struct is responsible for locking the total consistency lock and, upon going out of scope,
1251 /// sending the aforementioned notification (since the lock being released indicates that the
1252 /// updates are ready for persistence).
1253 ///
1254 /// We allow callers to either always notify by constructing with `notify_on_drop` or choose to
1255 /// notify or not based on whether relevant changes have been made, providing a closure to
1256 /// `optionally_notify` which returns a `NotifyOption`.
1257 struct PersistenceNotifierGuard<'a, F: FnMut() -> NotifyOption> {
1258         event_persist_notifier: &'a Notifier,
1259         needs_persist_flag: &'a AtomicBool,
1260         should_persist: F,
1261         // We hold onto this result so the lock doesn't get released immediately.
1262         _read_guard: RwLockReadGuard<'a, ()>,
1263 }
1264
1265 impl<'a> PersistenceNotifierGuard<'a, fn() -> NotifyOption> { // We don't care what the concrete F is here, it's unused
1266         /// Notifies any waiters and indicates that we need to persist, in addition to possibly having
1267         /// events to handle.
1268         ///
1269         /// This must always be called if the changes included a `ChannelMonitorUpdate`, as well as in
1270         /// other cases where losing the changes on restart may result in a force-close or otherwise
1271         /// isn't ideal.
1272         fn notify_on_drop<C: AChannelManager>(cm: &'a C) -> PersistenceNotifierGuard<'a, impl FnMut() -> NotifyOption> {
1273                 Self::optionally_notify(cm, || -> NotifyOption { NotifyOption::DoPersist })
1274         }
1275
1276         fn optionally_notify<F: FnMut() -> NotifyOption, C: AChannelManager>(cm: &'a C, mut persist_check: F)
1277         -> PersistenceNotifierGuard<'a, impl FnMut() -> NotifyOption> {
1278                 let read_guard = cm.get_cm().total_consistency_lock.read().unwrap();
1279                 let force_notify = cm.get_cm().process_background_events();
1280
1281                 PersistenceNotifierGuard {
1282                         event_persist_notifier: &cm.get_cm().event_persist_notifier,
1283                         needs_persist_flag: &cm.get_cm().needs_persist_flag,
1284                         should_persist: move || {
1285                                 // Pick the "most" action between `persist_check` and the background events
1286                                 // processing and return that.
1287                                 let notify = persist_check();
1288                                 match (notify, force_notify) {
1289                                         (NotifyOption::DoPersist, _) => NotifyOption::DoPersist,
1290                                         (_, NotifyOption::DoPersist) => NotifyOption::DoPersist,
1291                                         (NotifyOption::SkipPersistHandleEvents, _) => NotifyOption::SkipPersistHandleEvents,
1292                                         (_, NotifyOption::SkipPersistHandleEvents) => NotifyOption::SkipPersistHandleEvents,
1293                                         _ => NotifyOption::SkipPersistNoEvents,
1294                                 }
1295                         },
1296                         _read_guard: read_guard,
1297                 }
1298         }
1299
1300         /// Note that if any [`ChannelMonitorUpdate`]s are possibly generated,
1301         /// [`ChannelManager::process_background_events`] MUST be called first (or
1302         /// [`Self::optionally_notify`] used).
1303         fn optionally_notify_skipping_background_events<F: Fn() -> NotifyOption, C: AChannelManager>
1304         (cm: &'a C, persist_check: F) -> PersistenceNotifierGuard<'a, F> {
1305                 let read_guard = cm.get_cm().total_consistency_lock.read().unwrap();
1306
1307                 PersistenceNotifierGuard {
1308                         event_persist_notifier: &cm.get_cm().event_persist_notifier,
1309                         needs_persist_flag: &cm.get_cm().needs_persist_flag,
1310                         should_persist: persist_check,
1311                         _read_guard: read_guard,
1312                 }
1313         }
1314 }
1315
1316 impl<'a, F: FnMut() -> NotifyOption> Drop for PersistenceNotifierGuard<'a, F> {
1317         fn drop(&mut self) {
1318                 match (self.should_persist)() {
1319                         NotifyOption::DoPersist => {
1320                                 self.needs_persist_flag.store(true, Ordering::Release);
1321                                 self.event_persist_notifier.notify()
1322                         },
1323                         NotifyOption::SkipPersistHandleEvents =>
1324                                 self.event_persist_notifier.notify(),
1325                         NotifyOption::SkipPersistNoEvents => {},
1326                 }
1327         }
1328 }
1329
1330 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
1331 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
1332 ///
1333 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
1334 ///
1335 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
1336 pub const BREAKDOWN_TIMEOUT: u16 = 6 * 24;
1337 /// The amount of time in blocks we're willing to wait to claim money back to us. This matches
1338 /// the maximum required amount in lnd as of March 2021.
1339 pub(crate) const MAX_LOCAL_BREAKDOWN_TIMEOUT: u16 = 2 * 6 * 24 * 7;
1340
1341 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
1342 /// HTLC's CLTV. The current default represents roughly seven hours of blocks at six blocks/hour.
1343 ///
1344 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
1345 ///
1346 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
1347 // This should always be a few blocks greater than channelmonitor::CLTV_CLAIM_BUFFER,
1348 // i.e. the node we forwarded the payment on to should always have enough room to reliably time out
1349 // the HTLC via a full update_fail_htlc/commitment_signed dance before we hit the
1350 // CLTV_CLAIM_BUFFER point (we static assert that it's at least 3 blocks more).
1351 pub const MIN_CLTV_EXPIRY_DELTA: u16 = 6*7;
1352 // This should be long enough to allow a payment path drawn across multiple routing hops with substantial
1353 // `cltv_expiry_delta`. Indeed, the length of those values is the reaction delay offered to a routing node
1354 // in case of HTLC on-chain settlement. While appearing less competitive, a node operator could decide to
1355 // scale them up to suit its security policy. At the network-level, we shouldn't constrain them too much,
1356 // while avoiding to introduce a DoS vector. Further, a low CTLV_FAR_FAR_AWAY could be a source of
1357 // routing failure for any HTLC sender picking up an LDK node among the first hops.
1358 pub(super) const CLTV_FAR_FAR_AWAY: u32 = 14 * 24 * 6;
1359
1360 /// Minimum CLTV difference between the current block height and received inbound payments.
1361 /// Invoices generated for payment to us must set their `min_final_cltv_expiry_delta` field to at least
1362 /// this value.
1363 // Note that we fail if exactly HTLC_FAIL_BACK_BUFFER + 1 was used, so we need to add one for
1364 // any payments to succeed. Further, we don't want payments to fail if a block was found while
1365 // a payment was being routed, so we add an extra block to be safe.
1366 pub const MIN_FINAL_CLTV_EXPIRY_DELTA: u16 = HTLC_FAIL_BACK_BUFFER as u16 + 3;
1367
1368 // Check that our CLTV_EXPIRY is at least CLTV_CLAIM_BUFFER + ANTI_REORG_DELAY + LATENCY_GRACE_PERIOD_BLOCKS,
1369 // ie that if the next-hop peer fails the HTLC within
1370 // LATENCY_GRACE_PERIOD_BLOCKS then we'll still have CLTV_CLAIM_BUFFER left to timeout it onchain,
1371 // then waiting ANTI_REORG_DELAY to be reorg-safe on the outbound HLTC and
1372 // failing the corresponding htlc backward, and us now seeing the last block of ANTI_REORG_DELAY before
1373 // LATENCY_GRACE_PERIOD_BLOCKS.
1374 #[deny(const_err)]
1375 #[allow(dead_code)]
1376 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;
1377
1378 // Check for ability of an attacker to make us fail on-chain by delaying an HTLC claim. See
1379 // ChannelMonitor::should_broadcast_holder_commitment_txn for a description of why this is needed.
1380 #[deny(const_err)]
1381 #[allow(dead_code)]
1382 const CHECK_CLTV_EXPIRY_SANITY_2: u32 = MIN_CLTV_EXPIRY_DELTA as u32 - LATENCY_GRACE_PERIOD_BLOCKS - 2*CLTV_CLAIM_BUFFER;
1383
1384 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until expiry of incomplete MPPs
1385 pub(crate) const MPP_TIMEOUT_TICKS: u8 = 3;
1386
1387 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is disconnected
1388 /// until we mark the channel disabled and gossip the update.
1389 pub(crate) const DISABLE_GOSSIP_TICKS: u8 = 10;
1390
1391 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is connected until
1392 /// we mark the channel enabled and gossip the update.
1393 pub(crate) const ENABLE_GOSSIP_TICKS: u8 = 5;
1394
1395 /// The maximum number of unfunded channels we can have per-peer before we start rejecting new
1396 /// (inbound) ones. The number of peers with unfunded channels is limited separately in
1397 /// [`MAX_UNFUNDED_CHANNEL_PEERS`].
1398 const MAX_UNFUNDED_CHANS_PER_PEER: usize = 4;
1399
1400 /// The maximum number of peers from which we will allow pending unfunded channels. Once we reach
1401 /// this many peers we reject new (inbound) channels from peers with which we don't have a channel.
1402 const MAX_UNFUNDED_CHANNEL_PEERS: usize = 50;
1403
1404 /// The maximum number of peers which we do not have a (funded) channel with. Once we reach this
1405 /// many peers we reject new (inbound) connections.
1406 const MAX_NO_CHANNEL_PEERS: usize = 250;
1407
1408 /// Information needed for constructing an invoice route hint for this channel.
1409 #[derive(Clone, Debug, PartialEq)]
1410 pub struct CounterpartyForwardingInfo {
1411         /// Base routing fee in millisatoshis.
1412         pub fee_base_msat: u32,
1413         /// Amount in millionths of a satoshi the channel will charge per transferred satoshi.
1414         pub fee_proportional_millionths: u32,
1415         /// The minimum difference in cltv_expiry between an ingoing HTLC and its outgoing counterpart,
1416         /// such that the outgoing HTLC is forwardable to this counterparty. See `msgs::ChannelUpdate`'s
1417         /// `cltv_expiry_delta` for more details.
1418         pub cltv_expiry_delta: u16,
1419 }
1420
1421 /// Channel parameters which apply to our counterparty. These are split out from [`ChannelDetails`]
1422 /// to better separate parameters.
1423 #[derive(Clone, Debug, PartialEq)]
1424 pub struct ChannelCounterparty {
1425         /// The node_id of our counterparty
1426         pub node_id: PublicKey,
1427         /// The Features the channel counterparty provided upon last connection.
1428         /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
1429         /// many routing-relevant features are present in the init context.
1430         pub features: InitFeatures,
1431         /// The value, in satoshis, that must always be held in the channel for our counterparty. This
1432         /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
1433         /// claiming at least this value on chain.
1434         ///
1435         /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
1436         ///
1437         /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
1438         pub unspendable_punishment_reserve: u64,
1439         /// Information on the fees and requirements that the counterparty requires when forwarding
1440         /// payments to us through this channel.
1441         pub forwarding_info: Option<CounterpartyForwardingInfo>,
1442         /// The smallest value HTLC (in msat) the remote peer will accept, for this channel. This field
1443         /// is only `None` before we have received either the `OpenChannel` or `AcceptChannel` message
1444         /// from the remote peer, or for `ChannelCounterparty` objects serialized prior to LDK 0.0.107.
1445         pub outbound_htlc_minimum_msat: Option<u64>,
1446         /// The largest value HTLC (in msat) the remote peer currently will accept, for this channel.
1447         pub outbound_htlc_maximum_msat: Option<u64>,
1448 }
1449
1450 /// Details of a channel, as returned by [`ChannelManager::list_channels`] and [`ChannelManager::list_usable_channels`]
1451 ///
1452 /// Balances of a channel are available through [`ChainMonitor::get_claimable_balances`] and
1453 /// [`ChannelMonitor::get_claimable_balances`], calculated with respect to the corresponding on-chain
1454 /// transactions.
1455 ///
1456 /// [`ChainMonitor::get_claimable_balances`]: crate::chain::chainmonitor::ChainMonitor::get_claimable_balances
1457 #[derive(Clone, Debug, PartialEq)]
1458 pub struct ChannelDetails {
1459         /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
1460         /// thereafter this is the txid of the funding transaction xor the funding transaction output).
1461         /// Note that this means this value is *not* persistent - it can change once during the
1462         /// lifetime of the channel.
1463         pub channel_id: ChannelId,
1464         /// Parameters which apply to our counterparty. See individual fields for more information.
1465         pub counterparty: ChannelCounterparty,
1466         /// The Channel's funding transaction output, if we've negotiated the funding transaction with
1467         /// our counterparty already.
1468         ///
1469         /// Note that, if this has been set, `channel_id` will be equivalent to
1470         /// `funding_txo.unwrap().to_channel_id()`.
1471         pub funding_txo: Option<OutPoint>,
1472         /// The features which this channel operates with. See individual features for more info.
1473         ///
1474         /// `None` until negotiation completes and the channel type is finalized.
1475         pub channel_type: Option<ChannelTypeFeatures>,
1476         /// The position of the funding transaction in the chain. None if the funding transaction has
1477         /// not yet been confirmed and the channel fully opened.
1478         ///
1479         /// Note that if [`inbound_scid_alias`] is set, it must be used for invoices and inbound
1480         /// payments instead of this. See [`get_inbound_payment_scid`].
1481         ///
1482         /// For channels with [`confirmations_required`] set to `Some(0)`, [`outbound_scid_alias`] may
1483         /// be used in place of this in outbound routes. See [`get_outbound_payment_scid`].
1484         ///
1485         /// [`inbound_scid_alias`]: Self::inbound_scid_alias
1486         /// [`outbound_scid_alias`]: Self::outbound_scid_alias
1487         /// [`get_inbound_payment_scid`]: Self::get_inbound_payment_scid
1488         /// [`get_outbound_payment_scid`]: Self::get_outbound_payment_scid
1489         /// [`confirmations_required`]: Self::confirmations_required
1490         pub short_channel_id: Option<u64>,
1491         /// An optional [`short_channel_id`] alias for this channel, randomly generated by us and
1492         /// usable in place of [`short_channel_id`] to reference the channel in outbound routes when
1493         /// the channel has not yet been confirmed (as long as [`confirmations_required`] is
1494         /// `Some(0)`).
1495         ///
1496         /// This will be `None` as long as the channel is not available for routing outbound payments.
1497         ///
1498         /// [`short_channel_id`]: Self::short_channel_id
1499         /// [`confirmations_required`]: Self::confirmations_required
1500         pub outbound_scid_alias: Option<u64>,
1501         /// An optional [`short_channel_id`] alias for this channel, randomly generated by our
1502         /// counterparty and usable in place of [`short_channel_id`] in invoice route hints. Our
1503         /// counterparty will recognize the alias provided here in place of the [`short_channel_id`]
1504         /// when they see a payment to be routed to us.
1505         ///
1506         /// Our counterparty may choose to rotate this value at any time, though will always recognize
1507         /// previous values for inbound payment forwarding.
1508         ///
1509         /// [`short_channel_id`]: Self::short_channel_id
1510         pub inbound_scid_alias: Option<u64>,
1511         /// The value, in satoshis, of this channel as appears in the funding output
1512         pub channel_value_satoshis: u64,
1513         /// The value, in satoshis, that must always be held in the channel for us. This value ensures
1514         /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
1515         /// this value on chain.
1516         ///
1517         /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
1518         ///
1519         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1520         ///
1521         /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
1522         pub unspendable_punishment_reserve: Option<u64>,
1523         /// The `user_channel_id` value passed in to [`ChannelManager::create_channel`] for outbound
1524         /// channels, or to [`ChannelManager::accept_inbound_channel`] for inbound channels if
1525         /// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true. Otherwise
1526         /// `user_channel_id` will be randomized for an inbound channel.  This may be zero for objects
1527         /// serialized with LDK versions prior to 0.0.113.
1528         ///
1529         /// [`ChannelManager::create_channel`]: crate::ln::channelmanager::ChannelManager::create_channel
1530         /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
1531         /// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
1532         pub user_channel_id: u128,
1533         /// The currently negotiated fee rate denominated in satoshi per 1000 weight units,
1534         /// which is applied to commitment and HTLC transactions.
1535         ///
1536         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.115.
1537         pub feerate_sat_per_1000_weight: Option<u32>,
1538         /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
1539         /// any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1540         /// available for inclusion in new outbound HTLCs). This further does not include any pending
1541         /// outgoing HTLCs which are awaiting some other resolution to be sent.
1542         ///
1543         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1544         /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
1545         /// should be able to spend nearly this amount.
1546         pub outbound_capacity_msat: u64,
1547         /// The available outbound capacity for sending a single HTLC to the remote peer. This is
1548         /// similar to [`ChannelDetails::outbound_capacity_msat`] but it may be further restricted by
1549         /// the current state and per-HTLC limit(s). This is intended for use when routing, allowing us
1550         /// to use a limit as close as possible to the HTLC limit we can currently send.
1551         ///
1552         /// See also [`ChannelDetails::next_outbound_htlc_minimum_msat`] and
1553         /// [`ChannelDetails::outbound_capacity_msat`].
1554         pub next_outbound_htlc_limit_msat: u64,
1555         /// The minimum value for sending a single HTLC to the remote peer. This is the equivalent of
1556         /// [`ChannelDetails::next_outbound_htlc_limit_msat`] but represents a lower-bound, rather than
1557         /// an upper-bound. This is intended for use when routing, allowing us to ensure we pick a
1558         /// route which is valid.
1559         pub next_outbound_htlc_minimum_msat: u64,
1560         /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
1561         /// include any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1562         /// available for inclusion in new inbound HTLCs).
1563         /// Note that there are some corner cases not fully handled here, so the actual available
1564         /// inbound capacity may be slightly higher than this.
1565         ///
1566         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1567         /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
1568         /// However, our counterparty should be able to spend nearly this amount.
1569         pub inbound_capacity_msat: u64,
1570         /// The number of required confirmations on the funding transaction before the funding will be
1571         /// considered "locked". This number is selected by the channel fundee (i.e. us if
1572         /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
1573         /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
1574         /// [`ChannelHandshakeLimits::max_minimum_depth`].
1575         ///
1576         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1577         ///
1578         /// [`is_outbound`]: ChannelDetails::is_outbound
1579         /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
1580         /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
1581         pub confirmations_required: Option<u32>,
1582         /// The current number of confirmations on the funding transaction.
1583         ///
1584         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.113.
1585         pub confirmations: Option<u32>,
1586         /// The number of blocks (after our commitment transaction confirms) that we will need to wait
1587         /// until we can claim our funds after we force-close the channel. During this time our
1588         /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
1589         /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
1590         /// time to claim our non-HTLC-encumbered funds.
1591         ///
1592         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1593         pub force_close_spend_delay: Option<u16>,
1594         /// True if the channel was initiated (and thus funded) by us.
1595         pub is_outbound: bool,
1596         /// True if the channel is confirmed, channel_ready messages have been exchanged, and the
1597         /// channel is not currently being shut down. `channel_ready` message exchange implies the
1598         /// required confirmation count has been reached (and we were connected to the peer at some
1599         /// point after the funding transaction received enough confirmations). The required
1600         /// confirmation count is provided in [`confirmations_required`].
1601         ///
1602         /// [`confirmations_required`]: ChannelDetails::confirmations_required
1603         pub is_channel_ready: bool,
1604         /// The stage of the channel's shutdown.
1605         /// `None` for `ChannelDetails` serialized on LDK versions prior to 0.0.116.
1606         pub channel_shutdown_state: Option<ChannelShutdownState>,
1607         /// True if the channel is (a) confirmed and channel_ready messages have been exchanged, (b)
1608         /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
1609         ///
1610         /// This is a strict superset of `is_channel_ready`.
1611         pub is_usable: bool,
1612         /// True if this channel is (or will be) publicly-announced.
1613         pub is_public: bool,
1614         /// The smallest value HTLC (in msat) we will accept, for this channel. This field
1615         /// is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.107
1616         pub inbound_htlc_minimum_msat: Option<u64>,
1617         /// The largest value HTLC (in msat) we currently will accept, for this channel.
1618         pub inbound_htlc_maximum_msat: Option<u64>,
1619         /// Set of configurable parameters that affect channel operation.
1620         ///
1621         /// This field is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.109.
1622         pub config: Option<ChannelConfig>,
1623 }
1624
1625 impl ChannelDetails {
1626         /// Gets the current SCID which should be used to identify this channel for inbound payments.
1627         /// This should be used for providing invoice hints or in any other context where our
1628         /// counterparty will forward a payment to us.
1629         ///
1630         /// This is either the [`ChannelDetails::inbound_scid_alias`], if set, or the
1631         /// [`ChannelDetails::short_channel_id`]. See those for more information.
1632         pub fn get_inbound_payment_scid(&self) -> Option<u64> {
1633                 self.inbound_scid_alias.or(self.short_channel_id)
1634         }
1635
1636         /// Gets the current SCID which should be used to identify this channel for outbound payments.
1637         /// This should be used in [`Route`]s to describe the first hop or in other contexts where
1638         /// we're sending or forwarding a payment outbound over this channel.
1639         ///
1640         /// This is either the [`ChannelDetails::short_channel_id`], if set, or the
1641         /// [`ChannelDetails::outbound_scid_alias`]. See those for more information.
1642         pub fn get_outbound_payment_scid(&self) -> Option<u64> {
1643                 self.short_channel_id.or(self.outbound_scid_alias)
1644         }
1645
1646         fn from_channel_context<SP: Deref, F: Deref>(
1647                 context: &ChannelContext<SP>, best_block_height: u32, latest_features: InitFeatures,
1648                 fee_estimator: &LowerBoundedFeeEstimator<F>
1649         ) -> Self
1650         where
1651                 SP::Target: SignerProvider,
1652                 F::Target: FeeEstimator
1653         {
1654                 let balance = context.get_available_balances(fee_estimator);
1655                 let (to_remote_reserve_satoshis, to_self_reserve_satoshis) =
1656                         context.get_holder_counterparty_selected_channel_reserve_satoshis();
1657                 ChannelDetails {
1658                         channel_id: context.channel_id(),
1659                         counterparty: ChannelCounterparty {
1660                                 node_id: context.get_counterparty_node_id(),
1661                                 features: latest_features,
1662                                 unspendable_punishment_reserve: to_remote_reserve_satoshis,
1663                                 forwarding_info: context.counterparty_forwarding_info(),
1664                                 // Ensures that we have actually received the `htlc_minimum_msat` value
1665                                 // from the counterparty through the `OpenChannel` or `AcceptChannel`
1666                                 // message (as they are always the first message from the counterparty).
1667                                 // Else `Channel::get_counterparty_htlc_minimum_msat` could return the
1668                                 // default `0` value set by `Channel::new_outbound`.
1669                                 outbound_htlc_minimum_msat: if context.have_received_message() {
1670                                         Some(context.get_counterparty_htlc_minimum_msat()) } else { None },
1671                                 outbound_htlc_maximum_msat: context.get_counterparty_htlc_maximum_msat(),
1672                         },
1673                         funding_txo: context.get_funding_txo(),
1674                         // Note that accept_channel (or open_channel) is always the first message, so
1675                         // `have_received_message` indicates that type negotiation has completed.
1676                         channel_type: if context.have_received_message() { Some(context.get_channel_type().clone()) } else { None },
1677                         short_channel_id: context.get_short_channel_id(),
1678                         outbound_scid_alias: if context.is_usable() { Some(context.outbound_scid_alias()) } else { None },
1679                         inbound_scid_alias: context.latest_inbound_scid_alias(),
1680                         channel_value_satoshis: context.get_value_satoshis(),
1681                         feerate_sat_per_1000_weight: Some(context.get_feerate_sat_per_1000_weight()),
1682                         unspendable_punishment_reserve: to_self_reserve_satoshis,
1683                         inbound_capacity_msat: balance.inbound_capacity_msat,
1684                         outbound_capacity_msat: balance.outbound_capacity_msat,
1685                         next_outbound_htlc_limit_msat: balance.next_outbound_htlc_limit_msat,
1686                         next_outbound_htlc_minimum_msat: balance.next_outbound_htlc_minimum_msat,
1687                         user_channel_id: context.get_user_id(),
1688                         confirmations_required: context.minimum_depth(),
1689                         confirmations: Some(context.get_funding_tx_confirmations(best_block_height)),
1690                         force_close_spend_delay: context.get_counterparty_selected_contest_delay(),
1691                         is_outbound: context.is_outbound(),
1692                         is_channel_ready: context.is_usable(),
1693                         is_usable: context.is_live(),
1694                         is_public: context.should_announce(),
1695                         inbound_htlc_minimum_msat: Some(context.get_holder_htlc_minimum_msat()),
1696                         inbound_htlc_maximum_msat: context.get_holder_htlc_maximum_msat(),
1697                         config: Some(context.config()),
1698                         channel_shutdown_state: Some(context.shutdown_state()),
1699                 }
1700         }
1701 }
1702
1703 #[derive(Clone, Copy, Debug, PartialEq, Eq)]
1704 /// Further information on the details of the channel shutdown.
1705 /// Upon channels being forced closed (i.e. commitment transaction confirmation detected
1706 /// by `ChainMonitor`), ChannelShutdownState will be set to `ShutdownComplete` or
1707 /// the channel will be removed shortly.
1708 /// Also note, that in normal operation, peers could disconnect at any of these states
1709 /// and require peer re-connection before making progress onto other states
1710 pub enum ChannelShutdownState {
1711         /// Channel has not sent or received a shutdown message.
1712         NotShuttingDown,
1713         /// Local node has sent a shutdown message for this channel.
1714         ShutdownInitiated,
1715         /// Shutdown message exchanges have concluded and the channels are in the midst of
1716         /// resolving all existing open HTLCs before closing can continue.
1717         ResolvingHTLCs,
1718         /// All HTLCs have been resolved, nodes are currently negotiating channel close onchain fee rates.
1719         NegotiatingClosingFee,
1720         /// We've successfully negotiated a closing_signed dance. At this point `ChannelManager` is about
1721         /// to drop the channel.
1722         ShutdownComplete,
1723 }
1724
1725 /// Used by [`ChannelManager::list_recent_payments`] to express the status of recent payments.
1726 /// These include payments that have yet to find a successful path, or have unresolved HTLCs.
1727 #[derive(Debug, PartialEq)]
1728 pub enum RecentPaymentDetails {
1729         /// When an invoice was requested and thus a payment has not yet been sent.
1730         AwaitingInvoice {
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         },
1735         /// When a payment is still being sent and awaiting successful delivery.
1736         Pending {
1737                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1738                 /// a payment and ensure idempotency in LDK.
1739                 payment_id: PaymentId,
1740                 /// Hash of the payment that is currently being sent but has yet to be fulfilled or
1741                 /// abandoned.
1742                 payment_hash: PaymentHash,
1743                 /// Total amount (in msat, excluding fees) across all paths for this payment,
1744                 /// not just the amount currently inflight.
1745                 total_msat: u64,
1746         },
1747         /// When a pending payment is fulfilled, we continue tracking it until all pending HTLCs have
1748         /// been resolved. Upon receiving [`Event::PaymentSent`], we delay for a few minutes before the
1749         /// payment is removed from tracking.
1750         Fulfilled {
1751                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1752                 /// a payment and ensure idempotency in LDK.
1753                 payment_id: PaymentId,
1754                 /// Hash of the payment that was claimed. `None` for serializations of [`ChannelManager`]
1755                 /// made before LDK version 0.0.104.
1756                 payment_hash: Option<PaymentHash>,
1757         },
1758         /// After a payment's retries are exhausted per the provided [`Retry`], or it is explicitly
1759         /// abandoned via [`ChannelManager::abandon_payment`], it is marked as abandoned until all
1760         /// pending HTLCs for this payment resolve and an [`Event::PaymentFailed`] is generated.
1761         Abandoned {
1762                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1763                 /// a payment and ensure idempotency in LDK.
1764                 payment_id: PaymentId,
1765                 /// Hash of the payment that we have given up trying to send.
1766                 payment_hash: PaymentHash,
1767         },
1768 }
1769
1770 /// Route hints used in constructing invoices for [phantom node payents].
1771 ///
1772 /// [phantom node payments]: crate::sign::PhantomKeysManager
1773 #[derive(Clone)]
1774 pub struct PhantomRouteHints {
1775         /// The list of channels to be included in the invoice route hints.
1776         pub channels: Vec<ChannelDetails>,
1777         /// A fake scid used for representing the phantom node's fake channel in generating the invoice
1778         /// route hints.
1779         pub phantom_scid: u64,
1780         /// The pubkey of the real backing node that would ultimately receive the payment.
1781         pub real_node_pubkey: PublicKey,
1782 }
1783
1784 macro_rules! handle_error {
1785         ($self: ident, $internal: expr, $counterparty_node_id: expr) => { {
1786                 // In testing, ensure there are no deadlocks where the lock is already held upon
1787                 // entering the macro.
1788                 debug_assert_ne!($self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
1789                 debug_assert_ne!($self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
1790
1791                 match $internal {
1792                         Ok(msg) => Ok(msg),
1793                         Err(MsgHandleErrInternal { err, chan_id, shutdown_finish, channel_capacity }) => {
1794                                 let mut msg_events = Vec::with_capacity(2);
1795
1796                                 if let Some((shutdown_res, update_option)) = shutdown_finish {
1797                                         $self.finish_close_channel(shutdown_res);
1798                                         if let Some(update) = update_option {
1799                                                 msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
1800                                                         msg: update
1801                                                 });
1802                                         }
1803                                         if let Some((channel_id, user_channel_id)) = chan_id {
1804                                                 $self.pending_events.lock().unwrap().push_back((events::Event::ChannelClosed {
1805                                                         channel_id, user_channel_id,
1806                                                         reason: ClosureReason::ProcessingError { err: err.err.clone() },
1807                                                         counterparty_node_id: Some($counterparty_node_id),
1808                                                         channel_capacity_sats: channel_capacity,
1809                                                 }, None));
1810                                         }
1811                                 }
1812
1813                                 log_error!($self.logger, "{}", err.err);
1814                                 if let msgs::ErrorAction::IgnoreError = err.action {
1815                                 } else {
1816                                         msg_events.push(events::MessageSendEvent::HandleError {
1817                                                 node_id: $counterparty_node_id,
1818                                                 action: err.action.clone()
1819                                         });
1820                                 }
1821
1822                                 if !msg_events.is_empty() {
1823                                         let per_peer_state = $self.per_peer_state.read().unwrap();
1824                                         if let Some(peer_state_mutex) = per_peer_state.get(&$counterparty_node_id) {
1825                                                 let mut peer_state = peer_state_mutex.lock().unwrap();
1826                                                 peer_state.pending_msg_events.append(&mut msg_events);
1827                                         }
1828                                 }
1829
1830                                 // Return error in case higher-API need one
1831                                 Err(err)
1832                         },
1833                 }
1834         } };
1835         ($self: ident, $internal: expr) => {
1836                 match $internal {
1837                         Ok(res) => Ok(res),
1838                         Err((chan, msg_handle_err)) => {
1839                                 let counterparty_node_id = chan.get_counterparty_node_id();
1840                                 handle_error!($self, Err(msg_handle_err), counterparty_node_id).map_err(|err| (chan, err))
1841                         },
1842                 }
1843         };
1844 }
1845
1846 macro_rules! update_maps_on_chan_removal {
1847         ($self: expr, $channel_context: expr) => {{
1848                 $self.id_to_peer.lock().unwrap().remove(&$channel_context.channel_id());
1849                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1850                 if let Some(short_id) = $channel_context.get_short_channel_id() {
1851                         short_to_chan_info.remove(&short_id);
1852                 } else {
1853                         // If the channel was never confirmed on-chain prior to its closure, remove the
1854                         // outbound SCID alias we used for it from the collision-prevention set. While we
1855                         // generally want to avoid ever re-using an outbound SCID alias across all channels, we
1856                         // also don't want a counterparty to be able to trivially cause a memory leak by simply
1857                         // opening a million channels with us which are closed before we ever reach the funding
1858                         // stage.
1859                         let alias_removed = $self.outbound_scid_aliases.lock().unwrap().remove(&$channel_context.outbound_scid_alias());
1860                         debug_assert!(alias_removed);
1861                 }
1862                 short_to_chan_info.remove(&$channel_context.outbound_scid_alias());
1863         }}
1864 }
1865
1866 /// Returns (boolean indicating if we should remove the Channel object from memory, a mapped error)
1867 macro_rules! convert_chan_phase_err {
1868         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, MANUAL_CHANNEL_UPDATE, $channel_update: expr) => {
1869                 match $err {
1870                         ChannelError::Warn(msg) => {
1871                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Warn(msg), *$channel_id))
1872                         },
1873                         ChannelError::Ignore(msg) => {
1874                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore(msg), *$channel_id))
1875                         },
1876                         ChannelError::Close(msg) => {
1877                                 log_error!($self.logger, "Closing channel {} due to close-required error: {}", $channel_id, msg);
1878                                 update_maps_on_chan_removal!($self, $channel.context);
1879                                 let shutdown_res = $channel.context.force_shutdown(true);
1880                                 let user_id = $channel.context.get_user_id();
1881                                 let channel_capacity_satoshis = $channel.context.get_value_satoshis();
1882
1883                                 (true, MsgHandleErrInternal::from_finish_shutdown(msg, *$channel_id, user_id,
1884                                         shutdown_res, $channel_update, channel_capacity_satoshis))
1885                         },
1886                 }
1887         };
1888         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, FUNDED_CHANNEL) => {
1889                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, { $self.get_channel_update_for_broadcast($channel).ok() })
1890         };
1891         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, UNFUNDED_CHANNEL) => {
1892                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, None)
1893         };
1894         ($self: ident, $err: expr, $channel_phase: expr, $channel_id: expr) => {
1895                 match $channel_phase {
1896                         ChannelPhase::Funded(channel) => {
1897                                 convert_chan_phase_err!($self, $err, channel, $channel_id, FUNDED_CHANNEL)
1898                         },
1899                         ChannelPhase::UnfundedOutboundV1(channel) => {
1900                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
1901                         },
1902                         ChannelPhase::UnfundedInboundV1(channel) => {
1903                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
1904                         },
1905                 }
1906         };
1907 }
1908
1909 macro_rules! break_chan_phase_entry {
1910         ($self: ident, $res: expr, $entry: expr) => {
1911                 match $res {
1912                         Ok(res) => res,
1913                         Err(e) => {
1914                                 let key = *$entry.key();
1915                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
1916                                 if drop {
1917                                         $entry.remove_entry();
1918                                 }
1919                                 break Err(res);
1920                         }
1921                 }
1922         }
1923 }
1924
1925 macro_rules! try_chan_phase_entry {
1926         ($self: ident, $res: expr, $entry: expr) => {
1927                 match $res {
1928                         Ok(res) => res,
1929                         Err(e) => {
1930                                 let key = *$entry.key();
1931                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
1932                                 if drop {
1933                                         $entry.remove_entry();
1934                                 }
1935                                 return Err(res);
1936                         }
1937                 }
1938         }
1939 }
1940
1941 macro_rules! remove_channel_phase {
1942         ($self: expr, $entry: expr) => {
1943                 {
1944                         let channel = $entry.remove_entry().1;
1945                         update_maps_on_chan_removal!($self, &channel.context());
1946                         channel
1947                 }
1948         }
1949 }
1950
1951 macro_rules! send_channel_ready {
1952         ($self: ident, $pending_msg_events: expr, $channel: expr, $channel_ready_msg: expr) => {{
1953                 $pending_msg_events.push(events::MessageSendEvent::SendChannelReady {
1954                         node_id: $channel.context.get_counterparty_node_id(),
1955                         msg: $channel_ready_msg,
1956                 });
1957                 // Note that we may send a `channel_ready` multiple times for a channel if we reconnect, so
1958                 // we allow collisions, but we shouldn't ever be updating the channel ID pointed to.
1959                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1960                 let outbound_alias_insert = short_to_chan_info.insert($channel.context.outbound_scid_alias(), ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
1961                 assert!(outbound_alias_insert.is_none() || outbound_alias_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
1962                         "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1963                 if let Some(real_scid) = $channel.context.get_short_channel_id() {
1964                         let scid_insert = short_to_chan_info.insert(real_scid, ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
1965                         assert!(scid_insert.is_none() || scid_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
1966                                 "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1967                 }
1968         }}
1969 }
1970
1971 macro_rules! emit_channel_pending_event {
1972         ($locked_events: expr, $channel: expr) => {
1973                 if $channel.context.should_emit_channel_pending_event() {
1974                         $locked_events.push_back((events::Event::ChannelPending {
1975                                 channel_id: $channel.context.channel_id(),
1976                                 former_temporary_channel_id: $channel.context.temporary_channel_id(),
1977                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
1978                                 user_channel_id: $channel.context.get_user_id(),
1979                                 funding_txo: $channel.context.get_funding_txo().unwrap().into_bitcoin_outpoint(),
1980                         }, None));
1981                         $channel.context.set_channel_pending_event_emitted();
1982                 }
1983         }
1984 }
1985
1986 macro_rules! emit_channel_ready_event {
1987         ($locked_events: expr, $channel: expr) => {
1988                 if $channel.context.should_emit_channel_ready_event() {
1989                         debug_assert!($channel.context.channel_pending_event_emitted());
1990                         $locked_events.push_back((events::Event::ChannelReady {
1991                                 channel_id: $channel.context.channel_id(),
1992                                 user_channel_id: $channel.context.get_user_id(),
1993                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
1994                                 channel_type: $channel.context.get_channel_type().clone(),
1995                         }, None));
1996                         $channel.context.set_channel_ready_event_emitted();
1997                 }
1998         }
1999 }
2000
2001 macro_rules! handle_monitor_update_completion {
2002         ($self: ident, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr) => { {
2003                 let mut updates = $chan.monitor_updating_restored(&$self.logger,
2004                         &$self.node_signer, $self.genesis_hash, &$self.default_configuration,
2005                         $self.best_block.read().unwrap().height());
2006                 let counterparty_node_id = $chan.context.get_counterparty_node_id();
2007                 let channel_update = if updates.channel_ready.is_some() && $chan.context.is_usable() {
2008                         // We only send a channel_update in the case where we are just now sending a
2009                         // channel_ready and the channel is in a usable state. We may re-send a
2010                         // channel_update later through the announcement_signatures process for public
2011                         // channels, but there's no reason not to just inform our counterparty of our fees
2012                         // now.
2013                         if let Ok(msg) = $self.get_channel_update_for_unicast($chan) {
2014                                 Some(events::MessageSendEvent::SendChannelUpdate {
2015                                         node_id: counterparty_node_id,
2016                                         msg,
2017                                 })
2018                         } else { None }
2019                 } else { None };
2020
2021                 let update_actions = $peer_state.monitor_update_blocked_actions
2022                         .remove(&$chan.context.channel_id()).unwrap_or(Vec::new());
2023
2024                 let htlc_forwards = $self.handle_channel_resumption(
2025                         &mut $peer_state.pending_msg_events, $chan, updates.raa,
2026                         updates.commitment_update, updates.order, updates.accepted_htlcs,
2027                         updates.funding_broadcastable, updates.channel_ready,
2028                         updates.announcement_sigs);
2029                 if let Some(upd) = channel_update {
2030                         $peer_state.pending_msg_events.push(upd);
2031                 }
2032
2033                 let channel_id = $chan.context.channel_id();
2034                 let unbroadcasted_batch_funding_txid = $chan.context.unbroadcasted_batch_funding_txid();
2035                 core::mem::drop($peer_state_lock);
2036                 core::mem::drop($per_peer_state_lock);
2037
2038                 // If the channel belongs to a batch funding transaction, the progress of the batch
2039                 // should be updated as we have received funding_signed and persisted the monitor.
2040                 if let Some(txid) = unbroadcasted_batch_funding_txid {
2041                         let mut funding_batch_states = $self.funding_batch_states.lock().unwrap();
2042                         let mut batch_completed = false;
2043                         if let Some(batch_state) = funding_batch_states.get_mut(&txid) {
2044                                 let channel_state = batch_state.iter_mut().find(|(chan_id, pubkey, _)| (
2045                                         *chan_id == channel_id &&
2046                                         *pubkey == counterparty_node_id
2047                                 ));
2048                                 if let Some(channel_state) = channel_state {
2049                                         channel_state.2 = true;
2050                                 } else {
2051                                         debug_assert!(false, "Missing channel batch state for channel which completed initial monitor update");
2052                                 }
2053                                 batch_completed = batch_state.iter().all(|(_, _, completed)| *completed);
2054                         } else {
2055                                 debug_assert!(false, "Missing batch state for channel which completed initial monitor update");
2056                         }
2057
2058                         // When all channels in a batched funding transaction have become ready, it is not necessary
2059                         // to track the progress of the batch anymore and the state of the channels can be updated.
2060                         if batch_completed {
2061                                 let removed_batch_state = funding_batch_states.remove(&txid).into_iter().flatten();
2062                                 let per_peer_state = $self.per_peer_state.read().unwrap();
2063                                 let mut batch_funding_tx = None;
2064                                 for (channel_id, counterparty_node_id, _) in removed_batch_state {
2065                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2066                                                 let mut peer_state = peer_state_mutex.lock().unwrap();
2067                                                 if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&channel_id) {
2068                                                         batch_funding_tx = batch_funding_tx.or_else(|| chan.context.unbroadcasted_funding());
2069                                                         chan.set_batch_ready();
2070                                                         let mut pending_events = $self.pending_events.lock().unwrap();
2071                                                         emit_channel_pending_event!(pending_events, chan);
2072                                                 }
2073                                         }
2074                                 }
2075                                 if let Some(tx) = batch_funding_tx {
2076                                         log_info!($self.logger, "Broadcasting batch funding transaction with txid {}", tx.txid());
2077                                         $self.tx_broadcaster.broadcast_transactions(&[&tx]);
2078                                 }
2079                         }
2080                 }
2081
2082                 $self.handle_monitor_update_completion_actions(update_actions);
2083
2084                 if let Some(forwards) = htlc_forwards {
2085                         $self.forward_htlcs(&mut [forwards][..]);
2086                 }
2087                 $self.finalize_claims(updates.finalized_claimed_htlcs);
2088                 for failure in updates.failed_htlcs.drain(..) {
2089                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2090                         $self.fail_htlc_backwards_internal(&failure.0, &failure.1, &failure.2, receiver);
2091                 }
2092         } }
2093 }
2094
2095 macro_rules! handle_new_monitor_update {
2096         ($self: ident, $update_res: expr, $chan: expr, _internal, $completed: expr) => { {
2097                 debug_assert!($self.background_events_processed_since_startup.load(Ordering::Acquire));
2098                 match $update_res {
2099                         ChannelMonitorUpdateStatus::UnrecoverableError => {
2100                                 let err_str = "ChannelMonitor[Update] persistence failed unrecoverably. This indicates we cannot continue normal operation and must shut down.";
2101                                 log_error!($self.logger, "{}", err_str);
2102                                 panic!("{}", err_str);
2103                         },
2104                         ChannelMonitorUpdateStatus::InProgress => {
2105                                 log_debug!($self.logger, "ChannelMonitor update for {} in flight, holding messages until the update completes.",
2106                                         &$chan.context.channel_id());
2107                                 false
2108                         },
2109                         ChannelMonitorUpdateStatus::Completed => {
2110                                 $completed;
2111                                 true
2112                         },
2113                 }
2114         } };
2115         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr, INITIAL_MONITOR) => {
2116                 handle_new_monitor_update!($self, $update_res, $chan, _internal,
2117                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan))
2118         };
2119         ($self: ident, $funding_txo: expr, $update: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr) => { {
2120                 let in_flight_updates = $peer_state.in_flight_monitor_updates.entry($funding_txo)
2121                         .or_insert_with(Vec::new);
2122                 // During startup, we push monitor updates as background events through to here in
2123                 // order to replay updates that were in-flight when we shut down. Thus, we have to
2124                 // filter for uniqueness here.
2125                 let idx = in_flight_updates.iter().position(|upd| upd == &$update)
2126                         .unwrap_or_else(|| {
2127                                 in_flight_updates.push($update);
2128                                 in_flight_updates.len() - 1
2129                         });
2130                 let update_res = $self.chain_monitor.update_channel($funding_txo, &in_flight_updates[idx]);
2131                 handle_new_monitor_update!($self, update_res, $chan, _internal,
2132                         {
2133                                 let _ = in_flight_updates.remove(idx);
2134                                 if in_flight_updates.is_empty() && $chan.blocked_monitor_updates_pending() == 0 {
2135                                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan);
2136                                 }
2137                         })
2138         } };
2139 }
2140
2141 macro_rules! process_events_body {
2142         ($self: expr, $event_to_handle: expr, $handle_event: expr) => {
2143                 let mut processed_all_events = false;
2144                 while !processed_all_events {
2145                         if $self.pending_events_processor.compare_exchange(false, true, Ordering::Acquire, Ordering::Relaxed).is_err() {
2146                                 return;
2147                         }
2148
2149                         let mut result;
2150
2151                         {
2152                                 // We'll acquire our total consistency lock so that we can be sure no other
2153                                 // persists happen while processing monitor events.
2154                                 let _read_guard = $self.total_consistency_lock.read().unwrap();
2155
2156                                 // Because `handle_post_event_actions` may send `ChannelMonitorUpdate`s to the user we must
2157                                 // ensure any startup-generated background events are handled first.
2158                                 result = $self.process_background_events();
2159
2160                                 // TODO: This behavior should be documented. It's unintuitive that we query
2161                                 // ChannelMonitors when clearing other events.
2162                                 if $self.process_pending_monitor_events() {
2163                                         result = NotifyOption::DoPersist;
2164                                 }
2165                         }
2166
2167                         let pending_events = $self.pending_events.lock().unwrap().clone();
2168                         let num_events = pending_events.len();
2169                         if !pending_events.is_empty() {
2170                                 result = NotifyOption::DoPersist;
2171                         }
2172
2173                         let mut post_event_actions = Vec::new();
2174
2175                         for (event, action_opt) in pending_events {
2176                                 $event_to_handle = event;
2177                                 $handle_event;
2178                                 if let Some(action) = action_opt {
2179                                         post_event_actions.push(action);
2180                                 }
2181                         }
2182
2183                         {
2184                                 let mut pending_events = $self.pending_events.lock().unwrap();
2185                                 pending_events.drain(..num_events);
2186                                 processed_all_events = pending_events.is_empty();
2187                                 // Note that `push_pending_forwards_ev` relies on `pending_events_processor` being
2188                                 // updated here with the `pending_events` lock acquired.
2189                                 $self.pending_events_processor.store(false, Ordering::Release);
2190                         }
2191
2192                         if !post_event_actions.is_empty() {
2193                                 $self.handle_post_event_actions(post_event_actions);
2194                                 // If we had some actions, go around again as we may have more events now
2195                                 processed_all_events = false;
2196                         }
2197
2198                         match result {
2199                                 NotifyOption::DoPersist => {
2200                                         $self.needs_persist_flag.store(true, Ordering::Release);
2201                                         $self.event_persist_notifier.notify();
2202                                 },
2203                                 NotifyOption::SkipPersistHandleEvents =>
2204                                         $self.event_persist_notifier.notify(),
2205                                 NotifyOption::SkipPersistNoEvents => {},
2206                         }
2207                 }
2208         }
2209 }
2210
2211 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>
2212 where
2213         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
2214         T::Target: BroadcasterInterface,
2215         ES::Target: EntropySource,
2216         NS::Target: NodeSigner,
2217         SP::Target: SignerProvider,
2218         F::Target: FeeEstimator,
2219         R::Target: Router,
2220         L::Target: Logger,
2221 {
2222         /// Constructs a new `ChannelManager` to hold several channels and route between them.
2223         ///
2224         /// The current time or latest block header time can be provided as the `current_timestamp`.
2225         ///
2226         /// This is the main "logic hub" for all channel-related actions, and implements
2227         /// [`ChannelMessageHandler`].
2228         ///
2229         /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
2230         ///
2231         /// Users need to notify the new `ChannelManager` when a new block is connected or
2232         /// disconnected using its [`block_connected`] and [`block_disconnected`] methods, starting
2233         /// from after [`params.best_block.block_hash`]. See [`chain::Listen`] and [`chain::Confirm`] for
2234         /// more details.
2235         ///
2236         /// [`block_connected`]: chain::Listen::block_connected
2237         /// [`block_disconnected`]: chain::Listen::block_disconnected
2238         /// [`params.best_block.block_hash`]: chain::BestBlock::block_hash
2239         pub fn new(
2240                 fee_est: F, chain_monitor: M, tx_broadcaster: T, router: R, logger: L, entropy_source: ES,
2241                 node_signer: NS, signer_provider: SP, config: UserConfig, params: ChainParameters,
2242                 current_timestamp: u32,
2243         ) -> Self {
2244                 let mut secp_ctx = Secp256k1::new();
2245                 secp_ctx.seeded_randomize(&entropy_source.get_secure_random_bytes());
2246                 let inbound_pmt_key_material = node_signer.get_inbound_payment_key_material();
2247                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
2248                 ChannelManager {
2249                         default_configuration: config.clone(),
2250                         genesis_hash: genesis_block(params.network).header.block_hash(),
2251                         fee_estimator: LowerBoundedFeeEstimator::new(fee_est),
2252                         chain_monitor,
2253                         tx_broadcaster,
2254                         router,
2255
2256                         best_block: RwLock::new(params.best_block),
2257
2258                         outbound_scid_aliases: Mutex::new(HashSet::new()),
2259                         pending_inbound_payments: Mutex::new(HashMap::new()),
2260                         pending_outbound_payments: OutboundPayments::new(),
2261                         forward_htlcs: Mutex::new(HashMap::new()),
2262                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments: HashMap::new(), pending_claiming_payments: HashMap::new() }),
2263                         pending_intercepted_htlcs: Mutex::new(HashMap::new()),
2264                         id_to_peer: Mutex::new(HashMap::new()),
2265                         short_to_chan_info: FairRwLock::new(HashMap::new()),
2266
2267                         our_network_pubkey: node_signer.get_node_id(Recipient::Node).unwrap(),
2268                         secp_ctx,
2269
2270                         inbound_payment_key: expanded_inbound_key,
2271                         fake_scid_rand_bytes: entropy_source.get_secure_random_bytes(),
2272
2273                         probing_cookie_secret: entropy_source.get_secure_random_bytes(),
2274
2275                         highest_seen_timestamp: AtomicUsize::new(current_timestamp as usize),
2276
2277                         per_peer_state: FairRwLock::new(HashMap::new()),
2278
2279                         pending_events: Mutex::new(VecDeque::new()),
2280                         pending_events_processor: AtomicBool::new(false),
2281                         pending_background_events: Mutex::new(Vec::new()),
2282                         total_consistency_lock: RwLock::new(()),
2283                         background_events_processed_since_startup: AtomicBool::new(false),
2284                         event_persist_notifier: Notifier::new(),
2285                         needs_persist_flag: AtomicBool::new(false),
2286                         funding_batch_states: Mutex::new(BTreeMap::new()),
2287
2288                         entropy_source,
2289                         node_signer,
2290                         signer_provider,
2291
2292                         logger,
2293                 }
2294         }
2295
2296         /// Gets the current configuration applied to all new channels.
2297         pub fn get_current_default_configuration(&self) -> &UserConfig {
2298                 &self.default_configuration
2299         }
2300
2301         fn create_and_insert_outbound_scid_alias(&self) -> u64 {
2302                 let height = self.best_block.read().unwrap().height();
2303                 let mut outbound_scid_alias = 0;
2304                 let mut i = 0;
2305                 loop {
2306                         if cfg!(fuzzing) { // fuzzing chacha20 doesn't use the key at all so we always get the same alias
2307                                 outbound_scid_alias += 1;
2308                         } else {
2309                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias.get_fake_scid(height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
2310                         }
2311                         if outbound_scid_alias != 0 && self.outbound_scid_aliases.lock().unwrap().insert(outbound_scid_alias) {
2312                                 break;
2313                         }
2314                         i += 1;
2315                         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"); }
2316                 }
2317                 outbound_scid_alias
2318         }
2319
2320         /// Creates a new outbound channel to the given remote node and with the given value.
2321         ///
2322         /// `user_channel_id` will be provided back as in
2323         /// [`Event::FundingGenerationReady::user_channel_id`] to allow tracking of which events
2324         /// correspond with which `create_channel` call. Note that the `user_channel_id` defaults to a
2325         /// randomized value for inbound channels. `user_channel_id` has no meaning inside of LDK, it
2326         /// is simply copied to events and otherwise ignored.
2327         ///
2328         /// Raises [`APIError::APIMisuseError`] when `channel_value_satoshis` > 2**24 or `push_msat` is
2329         /// greater than `channel_value_satoshis * 1k` or `channel_value_satoshis < 1000`.
2330         ///
2331         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be opened due to failing to
2332         /// generate a shutdown scriptpubkey or destination script set by
2333         /// [`SignerProvider::get_shutdown_scriptpubkey`] or [`SignerProvider::get_destination_script`].
2334         ///
2335         /// Note that we do not check if you are currently connected to the given peer. If no
2336         /// connection is available, the outbound `open_channel` message may fail to send, resulting in
2337         /// the channel eventually being silently forgotten (dropped on reload).
2338         ///
2339         /// Returns the new Channel's temporary `channel_id`. This ID will appear as
2340         /// [`Event::FundingGenerationReady::temporary_channel_id`] and in
2341         /// [`ChannelDetails::channel_id`] until after
2342         /// [`ChannelManager::funding_transaction_generated`] is called, swapping the Channel's ID for
2343         /// one derived from the funding transaction's TXID. If the counterparty rejects the channel
2344         /// immediately, this temporary ID will appear in [`Event::ChannelClosed::channel_id`].
2345         ///
2346         /// [`Event::FundingGenerationReady::user_channel_id`]: events::Event::FundingGenerationReady::user_channel_id
2347         /// [`Event::FundingGenerationReady::temporary_channel_id`]: events::Event::FundingGenerationReady::temporary_channel_id
2348         /// [`Event::ChannelClosed::channel_id`]: events::Event::ChannelClosed::channel_id
2349         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> {
2350                 if channel_value_satoshis < 1000 {
2351                         return Err(APIError::APIMisuseError { err: format!("Channel value must be at least 1000 satoshis. It was {}", channel_value_satoshis) });
2352                 }
2353
2354                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2355                 // We want to make sure the lock is actually acquired by PersistenceNotifierGuard.
2356                 debug_assert!(&self.total_consistency_lock.try_write().is_err());
2357
2358                 let per_peer_state = self.per_peer_state.read().unwrap();
2359
2360                 let peer_state_mutex = per_peer_state.get(&their_network_key)
2361                         .ok_or_else(|| APIError::APIMisuseError{ err: format!("Not connected to node: {}", their_network_key) })?;
2362
2363                 let mut peer_state = peer_state_mutex.lock().unwrap();
2364                 let channel = {
2365                         let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
2366                         let their_features = &peer_state.latest_features;
2367                         let config = if override_config.is_some() { override_config.as_ref().unwrap() } else { &self.default_configuration };
2368                         match OutboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider, their_network_key,
2369                                 their_features, channel_value_satoshis, push_msat, user_channel_id, config,
2370                                 self.best_block.read().unwrap().height(), outbound_scid_alias)
2371                         {
2372                                 Ok(res) => res,
2373                                 Err(e) => {
2374                                         self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
2375                                         return Err(e);
2376                                 },
2377                         }
2378                 };
2379                 let res = channel.get_open_channel(self.genesis_hash.clone());
2380
2381                 let temporary_channel_id = channel.context.channel_id();
2382                 match peer_state.channel_by_id.entry(temporary_channel_id) {
2383                         hash_map::Entry::Occupied(_) => {
2384                                 if cfg!(fuzzing) {
2385                                         return Err(APIError::APIMisuseError { err: "Fuzzy bad RNG".to_owned() });
2386                                 } else {
2387                                         panic!("RNG is bad???");
2388                                 }
2389                         },
2390                         hash_map::Entry::Vacant(entry) => { entry.insert(ChannelPhase::UnfundedOutboundV1(channel)); }
2391                 }
2392
2393                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
2394                         node_id: their_network_key,
2395                         msg: res,
2396                 });
2397                 Ok(temporary_channel_id)
2398         }
2399
2400         fn list_funded_channels_with_filter<Fn: FnMut(&(&ChannelId, &Channel<SP>)) -> bool + Copy>(&self, f: Fn) -> Vec<ChannelDetails> {
2401                 // Allocate our best estimate of the number of channels we have in the `res`
2402                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2403                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2404                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2405                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2406                 // the same channel.
2407                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2408                 {
2409                         let best_block_height = self.best_block.read().unwrap().height();
2410                         let per_peer_state = self.per_peer_state.read().unwrap();
2411                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2412                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2413                                 let peer_state = &mut *peer_state_lock;
2414                                 res.extend(peer_state.channel_by_id.iter()
2415                                         .filter_map(|(chan_id, phase)| match phase {
2416                                                 // Only `Channels` in the `ChannelPhase::Funded` phase can be considered funded.
2417                                                 ChannelPhase::Funded(chan) => Some((chan_id, chan)),
2418                                                 _ => None,
2419                                         })
2420                                         .filter(f)
2421                                         .map(|(_channel_id, channel)| {
2422                                                 ChannelDetails::from_channel_context(&channel.context, best_block_height,
2423                                                         peer_state.latest_features.clone(), &self.fee_estimator)
2424                                         })
2425                                 );
2426                         }
2427                 }
2428                 res
2429         }
2430
2431         /// Gets the list of open channels, in random order. See [`ChannelDetails`] field documentation for
2432         /// more information.
2433         pub fn list_channels(&self) -> Vec<ChannelDetails> {
2434                 // Allocate our best estimate of the number of channels we have in the `res`
2435                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2436                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2437                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2438                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2439                 // the same channel.
2440                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2441                 {
2442                         let best_block_height = self.best_block.read().unwrap().height();
2443                         let per_peer_state = self.per_peer_state.read().unwrap();
2444                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2445                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2446                                 let peer_state = &mut *peer_state_lock;
2447                                 for context in peer_state.channel_by_id.iter().map(|(_, phase)| phase.context()) {
2448                                         let details = ChannelDetails::from_channel_context(context, best_block_height,
2449                                                 peer_state.latest_features.clone(), &self.fee_estimator);
2450                                         res.push(details);
2451                                 }
2452                         }
2453                 }
2454                 res
2455         }
2456
2457         /// Gets the list of usable channels, in random order. Useful as an argument to
2458         /// [`Router::find_route`] to ensure non-announced channels are used.
2459         ///
2460         /// These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
2461         /// documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
2462         /// are.
2463         pub fn list_usable_channels(&self) -> Vec<ChannelDetails> {
2464                 // Note we use is_live here instead of usable which leads to somewhat confused
2465                 // internal/external nomenclature, but that's ok cause that's probably what the user
2466                 // really wanted anyway.
2467                 self.list_funded_channels_with_filter(|&(_, ref channel)| channel.context.is_live())
2468         }
2469
2470         /// Gets the list of channels we have with a given counterparty, in random order.
2471         pub fn list_channels_with_counterparty(&self, counterparty_node_id: &PublicKey) -> Vec<ChannelDetails> {
2472                 let best_block_height = self.best_block.read().unwrap().height();
2473                 let per_peer_state = self.per_peer_state.read().unwrap();
2474
2475                 if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
2476                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2477                         let peer_state = &mut *peer_state_lock;
2478                         let features = &peer_state.latest_features;
2479                         let context_to_details = |context| {
2480                                 ChannelDetails::from_channel_context(context, best_block_height, features.clone(), &self.fee_estimator)
2481                         };
2482                         return peer_state.channel_by_id
2483                                 .iter()
2484                                 .map(|(_, phase)| phase.context())
2485                                 .map(context_to_details)
2486                                 .collect();
2487                 }
2488                 vec![]
2489         }
2490
2491         /// Returns in an undefined order recent payments that -- if not fulfilled -- have yet to find a
2492         /// successful path, or have unresolved HTLCs.
2493         ///
2494         /// This can be useful for payments that may have been prepared, but ultimately not sent, as a
2495         /// result of a crash. If such a payment exists, is not listed here, and an
2496         /// [`Event::PaymentSent`] has not been received, you may consider resending the payment.
2497         ///
2498         /// [`Event::PaymentSent`]: events::Event::PaymentSent
2499         pub fn list_recent_payments(&self) -> Vec<RecentPaymentDetails> {
2500                 self.pending_outbound_payments.pending_outbound_payments.lock().unwrap().iter()
2501                         .filter_map(|(payment_id, pending_outbound_payment)| match pending_outbound_payment {
2502                                 PendingOutboundPayment::AwaitingInvoice { .. } => {
2503                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
2504                                 },
2505                                 // InvoiceReceived is an intermediate state and doesn't need to be exposed
2506                                 PendingOutboundPayment::InvoiceReceived { .. } => {
2507                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
2508                                 },
2509                                 PendingOutboundPayment::Retryable { payment_hash, total_msat, .. } => {
2510                                         Some(RecentPaymentDetails::Pending {
2511                                                 payment_id: *payment_id,
2512                                                 payment_hash: *payment_hash,
2513                                                 total_msat: *total_msat,
2514                                         })
2515                                 },
2516                                 PendingOutboundPayment::Abandoned { payment_hash, .. } => {
2517                                         Some(RecentPaymentDetails::Abandoned { payment_id: *payment_id, payment_hash: *payment_hash })
2518                                 },
2519                                 PendingOutboundPayment::Fulfilled { payment_hash, .. } => {
2520                                         Some(RecentPaymentDetails::Fulfilled { payment_id: *payment_id, payment_hash: *payment_hash })
2521                                 },
2522                                 PendingOutboundPayment::Legacy { .. } => None
2523                         })
2524                         .collect()
2525         }
2526
2527         /// Helper function that issues the channel close events
2528         fn issue_channel_close_events(&self, context: &ChannelContext<SP>, closure_reason: ClosureReason) {
2529                 let mut pending_events_lock = self.pending_events.lock().unwrap();
2530                 match context.unbroadcasted_funding() {
2531                         Some(transaction) => {
2532                                 pending_events_lock.push_back((events::Event::DiscardFunding {
2533                                         channel_id: context.channel_id(), transaction
2534                                 }, None));
2535                         },
2536                         None => {},
2537                 }
2538                 pending_events_lock.push_back((events::Event::ChannelClosed {
2539                         channel_id: context.channel_id(),
2540                         user_channel_id: context.get_user_id(),
2541                         reason: closure_reason,
2542                         counterparty_node_id: Some(context.get_counterparty_node_id()),
2543                         channel_capacity_sats: Some(context.get_value_satoshis()),
2544                 }, None));
2545         }
2546
2547         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> {
2548                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2549
2550                 let mut failed_htlcs: Vec<(HTLCSource, PaymentHash)>;
2551                 let mut shutdown_result = None;
2552                 loop {
2553                         let per_peer_state = self.per_peer_state.read().unwrap();
2554
2555                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
2556                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
2557
2558                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2559                         let peer_state = &mut *peer_state_lock;
2560
2561                         match peer_state.channel_by_id.entry(channel_id.clone()) {
2562                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
2563                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
2564                                                 let funding_txo_opt = chan.context.get_funding_txo();
2565                                                 let their_features = &peer_state.latest_features;
2566                                                 let unbroadcasted_batch_funding_txid = chan.context.unbroadcasted_batch_funding_txid();
2567                                                 let (shutdown_msg, mut monitor_update_opt, htlcs) =
2568                                                         chan.get_shutdown(&self.signer_provider, their_features, target_feerate_sats_per_1000_weight, override_shutdown_script)?;
2569                                                 failed_htlcs = htlcs;
2570
2571                                                 // We can send the `shutdown` message before updating the `ChannelMonitor`
2572                                                 // here as we don't need the monitor update to complete until we send a
2573                                                 // `shutdown_signed`, which we'll delay if we're pending a monitor update.
2574                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
2575                                                         node_id: *counterparty_node_id,
2576                                                         msg: shutdown_msg,
2577                                                 });
2578
2579                                                 debug_assert!(monitor_update_opt.is_none() || !chan.is_shutdown(),
2580                                                         "We can't both complete shutdown and generate a monitor update");
2581
2582                                                 // Update the monitor with the shutdown script if necessary.
2583                                                 if let Some(monitor_update) = monitor_update_opt.take() {
2584                                                         handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
2585                                                                 peer_state_lock, peer_state, per_peer_state, chan);
2586                                                         break;
2587                                                 }
2588
2589                                                 if chan.is_shutdown() {
2590                                                         if let ChannelPhase::Funded(chan) = remove_channel_phase!(self, chan_phase_entry) {
2591                                                                 if let Ok(channel_update) = self.get_channel_update_for_broadcast(&chan) {
2592                                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2593                                                                                 msg: channel_update
2594                                                                         });
2595                                                                 }
2596                                                                 self.issue_channel_close_events(&chan.context, ClosureReason::HolderForceClosed);
2597                                                                 shutdown_result = Some((None, Vec::new(), unbroadcasted_batch_funding_txid));
2598                                                         }
2599                                                 }
2600                                                 break;
2601                                         }
2602                                 },
2603                                 hash_map::Entry::Vacant(_) => {
2604                                         // If we reach this point, it means that the channel_id either refers to an unfunded channel or
2605                                         // it does not exist for this peer. Either way, we can attempt to force-close it.
2606                                         //
2607                                         // An appropriate error will be returned for non-existence of the channel if that's the case.
2608                                         return self.force_close_channel_with_peer(&channel_id, counterparty_node_id, None, false).map(|_| ())
2609                                 },
2610                         }
2611                 }
2612
2613                 for htlc_source in failed_htlcs.drain(..) {
2614                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2615                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(*counterparty_node_id), channel_id: *channel_id };
2616                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
2617                 }
2618
2619                 if let Some(shutdown_result) = shutdown_result {
2620                         self.finish_close_channel(shutdown_result);
2621                 }
2622
2623                 Ok(())
2624         }
2625
2626         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2627         /// will be accepted on the given channel, and after additional timeout/the closing of all
2628         /// pending HTLCs, the channel will be closed on chain.
2629         ///
2630         ///  * If we are the channel initiator, we will pay between our [`Background`] and
2631         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2632         ///    estimate.
2633         ///  * If our counterparty is the channel initiator, we will require a channel closing
2634         ///    transaction feerate of at least our [`Background`] feerate or the feerate which
2635         ///    would appear on a force-closure transaction, whichever is lower. We will allow our
2636         ///    counterparty to pay as much fee as they'd like, however.
2637         ///
2638         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2639         ///
2640         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2641         /// generate a shutdown scriptpubkey or destination script set by
2642         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2643         /// channel.
2644         ///
2645         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2646         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2647         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2648         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2649         pub fn close_channel(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey) -> Result<(), APIError> {
2650                 self.close_channel_internal(channel_id, counterparty_node_id, None, None)
2651         }
2652
2653         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2654         /// will be accepted on the given channel, and after additional timeout/the closing of all
2655         /// pending HTLCs, the channel will be closed on chain.
2656         ///
2657         /// `target_feerate_sat_per_1000_weight` has different meanings depending on if we initiated
2658         /// the channel being closed or not:
2659         ///  * If we are the channel initiator, we will pay at least this feerate on the closing
2660         ///    transaction. The upper-bound is set by
2661         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2662         ///    estimate (or `target_feerate_sat_per_1000_weight`, if it is greater).
2663         ///  * If our counterparty is the channel initiator, we will refuse to accept a channel closure
2664         ///    transaction feerate below `target_feerate_sat_per_1000_weight` (or the feerate which
2665         ///    will appear on a force-closure transaction, whichever is lower).
2666         ///
2667         /// The `shutdown_script` provided  will be used as the `scriptPubKey` for the closing transaction.
2668         /// Will fail if a shutdown script has already been set for this channel by
2669         /// ['ChannelHandshakeConfig::commit_upfront_shutdown_pubkey`]. The given shutdown script must
2670         /// also be compatible with our and the counterparty's features.
2671         ///
2672         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2673         ///
2674         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2675         /// generate a shutdown scriptpubkey or destination script set by
2676         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2677         /// channel.
2678         ///
2679         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2680         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2681         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2682         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2683         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> {
2684                 self.close_channel_internal(channel_id, counterparty_node_id, target_feerate_sats_per_1000_weight, shutdown_script)
2685         }
2686
2687         fn finish_close_channel(&self, shutdown_res: ShutdownResult) {
2688                 debug_assert_ne!(self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
2689                 #[cfg(debug_assertions)]
2690                 for (_, peer) in self.per_peer_state.read().unwrap().iter() {
2691                         debug_assert_ne!(peer.held_by_thread(), LockHeldState::HeldByThread);
2692                 }
2693
2694                 let (monitor_update_option, mut failed_htlcs, unbroadcasted_batch_funding_txid) = shutdown_res;
2695                 log_debug!(self.logger, "Finishing force-closure of channel with {} HTLCs to fail", failed_htlcs.len());
2696                 for htlc_source in failed_htlcs.drain(..) {
2697                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
2698                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2699                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2700                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
2701                 }
2702                 if let Some((_, funding_txo, monitor_update)) = monitor_update_option {
2703                         // There isn't anything we can do if we get an update failure - we're already
2704                         // force-closing. The monitor update on the required in-memory copy should broadcast
2705                         // the latest local state, which is the best we can do anyway. Thus, it is safe to
2706                         // ignore the result here.
2707                         let _ = self.chain_monitor.update_channel(funding_txo, &monitor_update);
2708                 }
2709                 let mut shutdown_results = Vec::new();
2710                 if let Some(txid) = unbroadcasted_batch_funding_txid {
2711                         let mut funding_batch_states = self.funding_batch_states.lock().unwrap();
2712                         let affected_channels = funding_batch_states.remove(&txid).into_iter().flatten();
2713                         let per_peer_state = self.per_peer_state.read().unwrap();
2714                         let mut has_uncompleted_channel = None;
2715                         for (channel_id, counterparty_node_id, state) in affected_channels {
2716                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2717                                         let mut peer_state = peer_state_mutex.lock().unwrap();
2718                                         if let Some(mut chan) = peer_state.channel_by_id.remove(&channel_id) {
2719                                                 update_maps_on_chan_removal!(self, &chan.context());
2720                                                 self.issue_channel_close_events(&chan.context(), ClosureReason::FundingBatchClosure);
2721                                                 shutdown_results.push(chan.context_mut().force_shutdown(false));
2722                                         }
2723                                 }
2724                                 has_uncompleted_channel = Some(has_uncompleted_channel.map_or(!state, |v| v || !state));
2725                         }
2726                         debug_assert!(
2727                                 has_uncompleted_channel.unwrap_or(true),
2728                                 "Closing a batch where all channels have completed initial monitor update",
2729                         );
2730                 }
2731                 for shutdown_result in shutdown_results.drain(..) {
2732                         self.finish_close_channel(shutdown_result);
2733                 }
2734         }
2735
2736         /// `peer_msg` should be set when we receive a message from a peer, but not set when the
2737         /// user closes, which will be re-exposed as the `ChannelClosed` reason.
2738         fn force_close_channel_with_peer(&self, channel_id: &ChannelId, peer_node_id: &PublicKey, peer_msg: Option<&String>, broadcast: bool)
2739         -> Result<PublicKey, APIError> {
2740                 let per_peer_state = self.per_peer_state.read().unwrap();
2741                 let peer_state_mutex = per_peer_state.get(peer_node_id)
2742                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", peer_node_id) })?;
2743                 let (update_opt, counterparty_node_id) = {
2744                         let mut peer_state = peer_state_mutex.lock().unwrap();
2745                         let closure_reason = if let Some(peer_msg) = peer_msg {
2746                                 ClosureReason::CounterpartyForceClosed { peer_msg: UntrustedString(peer_msg.to_string()) }
2747                         } else {
2748                                 ClosureReason::HolderForceClosed
2749                         };
2750                         if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(channel_id.clone()) {
2751                                 log_error!(self.logger, "Force-closing channel {}", channel_id);
2752                                 self.issue_channel_close_events(&chan_phase_entry.get().context(), closure_reason);
2753                                 let mut chan_phase = remove_channel_phase!(self, chan_phase_entry);
2754                                 mem::drop(peer_state);
2755                                 mem::drop(per_peer_state);
2756                                 match chan_phase {
2757                                         ChannelPhase::Funded(mut chan) => {
2758                                                 self.finish_close_channel(chan.context.force_shutdown(broadcast));
2759                                                 (self.get_channel_update_for_broadcast(&chan).ok(), chan.context.get_counterparty_node_id())
2760                                         },
2761                                         ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => {
2762                                                 self.finish_close_channel(chan_phase.context_mut().force_shutdown(false));
2763                                                 // Unfunded channel has no update
2764                                                 (None, chan_phase.context().get_counterparty_node_id())
2765                                         },
2766                                 }
2767                         } else if peer_state.inbound_channel_request_by_id.remove(channel_id).is_some() {
2768                                 log_error!(self.logger, "Force-closing channel {}", &channel_id);
2769                                 // N.B. that we don't send any channel close event here: we
2770                                 // don't have a user_channel_id, and we never sent any opening
2771                                 // events anyway.
2772                                 (None, *peer_node_id)
2773                         } else {
2774                                 return Err(APIError::ChannelUnavailable{ err: format!("Channel with id {} not found for the passed counterparty node_id {}", channel_id, peer_node_id) });
2775                         }
2776                 };
2777                 if let Some(update) = update_opt {
2778                         // Try to send the `BroadcastChannelUpdate` to the peer we just force-closed on, but if
2779                         // not try to broadcast it via whatever peer we have.
2780                         let per_peer_state = self.per_peer_state.read().unwrap();
2781                         let a_peer_state_opt = per_peer_state.get(peer_node_id)
2782                                 .ok_or(per_peer_state.values().next());
2783                         if let Ok(a_peer_state_mutex) = a_peer_state_opt {
2784                                 let mut a_peer_state = a_peer_state_mutex.lock().unwrap();
2785                                 a_peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2786                                         msg: update
2787                                 });
2788                         }
2789                 }
2790
2791                 Ok(counterparty_node_id)
2792         }
2793
2794         fn force_close_sending_error(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, broadcast: bool) -> Result<(), APIError> {
2795                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2796                 match self.force_close_channel_with_peer(channel_id, counterparty_node_id, None, broadcast) {
2797                         Ok(counterparty_node_id) => {
2798                                 let per_peer_state = self.per_peer_state.read().unwrap();
2799                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2800                                         let mut peer_state = peer_state_mutex.lock().unwrap();
2801                                         peer_state.pending_msg_events.push(
2802                                                 events::MessageSendEvent::HandleError {
2803                                                         node_id: counterparty_node_id,
2804                                                         action: msgs::ErrorAction::SendErrorMessage {
2805                                                                 msg: msgs::ErrorMessage { channel_id: *channel_id, data: "Channel force-closed".to_owned() }
2806                                                         },
2807                                                 }
2808                                         );
2809                                 }
2810                                 Ok(())
2811                         },
2812                         Err(e) => Err(e)
2813                 }
2814         }
2815
2816         /// Force closes a channel, immediately broadcasting the latest local transaction(s) and
2817         /// rejecting new HTLCs on the given channel. Fails if `channel_id` is unknown to
2818         /// the manager, or if the `counterparty_node_id` isn't the counterparty of the corresponding
2819         /// channel.
2820         pub fn force_close_broadcasting_latest_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey)
2821         -> Result<(), APIError> {
2822                 self.force_close_sending_error(channel_id, counterparty_node_id, true)
2823         }
2824
2825         /// Force closes a channel, rejecting new HTLCs on the given channel but skips broadcasting
2826         /// the latest local transaction(s). Fails if `channel_id` is unknown to the manager, or if the
2827         /// `counterparty_node_id` isn't the counterparty of the corresponding channel.
2828         ///
2829         /// You can always get the latest local transaction(s) to broadcast from
2830         /// [`ChannelMonitor::get_latest_holder_commitment_txn`].
2831         pub fn force_close_without_broadcasting_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey)
2832         -> Result<(), APIError> {
2833                 self.force_close_sending_error(channel_id, counterparty_node_id, false)
2834         }
2835
2836         /// Force close all channels, immediately broadcasting the latest local commitment transaction
2837         /// for each to the chain and rejecting new HTLCs on each.
2838         pub fn force_close_all_channels_broadcasting_latest_txn(&self) {
2839                 for chan in self.list_channels() {
2840                         let _ = self.force_close_broadcasting_latest_txn(&chan.channel_id, &chan.counterparty.node_id);
2841                 }
2842         }
2843
2844         /// Force close all channels rejecting new HTLCs on each but without broadcasting the latest
2845         /// local transaction(s).
2846         pub fn force_close_all_channels_without_broadcasting_txn(&self) {
2847                 for chan in self.list_channels() {
2848                         let _ = self.force_close_without_broadcasting_txn(&chan.channel_id, &chan.counterparty.node_id);
2849                 }
2850         }
2851
2852         fn construct_fwd_pending_htlc_info(
2853                 &self, msg: &msgs::UpdateAddHTLC, hop_data: msgs::InboundOnionPayload, hop_hmac: [u8; 32],
2854                 new_packet_bytes: [u8; onion_utils::ONION_DATA_LEN], shared_secret: [u8; 32],
2855                 next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>
2856         ) -> Result<PendingHTLCInfo, InboundOnionErr> {
2857                 debug_assert!(next_packet_pubkey_opt.is_some());
2858                 let outgoing_packet = msgs::OnionPacket {
2859                         version: 0,
2860                         public_key: next_packet_pubkey_opt.unwrap_or(Err(secp256k1::Error::InvalidPublicKey)),
2861                         hop_data: new_packet_bytes,
2862                         hmac: hop_hmac,
2863                 };
2864
2865                 let (short_channel_id, amt_to_forward, outgoing_cltv_value) = match hop_data {
2866                         msgs::InboundOnionPayload::Forward { short_channel_id, amt_to_forward, outgoing_cltv_value } =>
2867                                 (short_channel_id, amt_to_forward, outgoing_cltv_value),
2868                         msgs::InboundOnionPayload::Receive { .. } | msgs::InboundOnionPayload::BlindedReceive { .. } =>
2869                                 return Err(InboundOnionErr {
2870                                         msg: "Final Node OnionHopData provided for us as an intermediary node",
2871                                         err_code: 0x4000 | 22,
2872                                         err_data: Vec::new(),
2873                                 }),
2874                 };
2875
2876                 Ok(PendingHTLCInfo {
2877                         routing: PendingHTLCRouting::Forward {
2878                                 onion_packet: outgoing_packet,
2879                                 short_channel_id,
2880                         },
2881                         payment_hash: msg.payment_hash,
2882                         incoming_shared_secret: shared_secret,
2883                         incoming_amt_msat: Some(msg.amount_msat),
2884                         outgoing_amt_msat: amt_to_forward,
2885                         outgoing_cltv_value,
2886                         skimmed_fee_msat: None,
2887                 })
2888         }
2889
2890         fn construct_recv_pending_htlc_info(
2891                 &self, hop_data: msgs::InboundOnionPayload, shared_secret: [u8; 32], payment_hash: PaymentHash,
2892                 amt_msat: u64, cltv_expiry: u32, phantom_shared_secret: Option<[u8; 32]>, allow_underpay: bool,
2893                 counterparty_skimmed_fee_msat: Option<u64>,
2894         ) -> Result<PendingHTLCInfo, InboundOnionErr> {
2895                 let (payment_data, keysend_preimage, custom_tlvs, onion_amt_msat, outgoing_cltv_value, payment_metadata) = match hop_data {
2896                         msgs::InboundOnionPayload::Receive {
2897                                 payment_data, keysend_preimage, custom_tlvs, amt_msat, outgoing_cltv_value, payment_metadata, ..
2898                         } =>
2899                                 (payment_data, keysend_preimage, custom_tlvs, amt_msat, outgoing_cltv_value, payment_metadata),
2900                         msgs::InboundOnionPayload::BlindedReceive {
2901                                 amt_msat, total_msat, outgoing_cltv_value, payment_secret, ..
2902                         } => {
2903                                 let payment_data = msgs::FinalOnionHopData { payment_secret, total_msat };
2904                                 (Some(payment_data), None, Vec::new(), amt_msat, outgoing_cltv_value, None)
2905                         }
2906                         msgs::InboundOnionPayload::Forward { .. } => {
2907                                 return Err(InboundOnionErr {
2908                                         err_code: 0x4000|22,
2909                                         err_data: Vec::new(),
2910                                         msg: "Got non final data with an HMAC of 0",
2911                                 })
2912                         },
2913                 };
2914                 // final_incorrect_cltv_expiry
2915                 if outgoing_cltv_value > cltv_expiry {
2916                         return Err(InboundOnionErr {
2917                                 msg: "Upstream node set CLTV to less than the CLTV set by the sender",
2918                                 err_code: 18,
2919                                 err_data: cltv_expiry.to_be_bytes().to_vec()
2920                         })
2921                 }
2922                 // final_expiry_too_soon
2923                 // We have to have some headroom to broadcast on chain if we have the preimage, so make sure
2924                 // we have at least HTLC_FAIL_BACK_BUFFER blocks to go.
2925                 //
2926                 // Also, ensure that, in the case of an unknown preimage for the received payment hash, our
2927                 // payment logic has enough time to fail the HTLC backward before our onchain logic triggers a
2928                 // channel closure (see HTLC_FAIL_BACK_BUFFER rationale).
2929                 let current_height: u32 = self.best_block.read().unwrap().height();
2930                 if (outgoing_cltv_value as u64) <= current_height as u64 + HTLC_FAIL_BACK_BUFFER as u64 + 1 {
2931                         let mut err_data = Vec::with_capacity(12);
2932                         err_data.extend_from_slice(&amt_msat.to_be_bytes());
2933                         err_data.extend_from_slice(&current_height.to_be_bytes());
2934                         return Err(InboundOnionErr {
2935                                 err_code: 0x4000 | 15, err_data,
2936                                 msg: "The final CLTV expiry is too soon to handle",
2937                         });
2938                 }
2939                 if (!allow_underpay && onion_amt_msat > amt_msat) ||
2940                         (allow_underpay && onion_amt_msat >
2941                          amt_msat.saturating_add(counterparty_skimmed_fee_msat.unwrap_or(0)))
2942                 {
2943                         return Err(InboundOnionErr {
2944                                 err_code: 19,
2945                                 err_data: amt_msat.to_be_bytes().to_vec(),
2946                                 msg: "Upstream node sent less than we were supposed to receive in payment",
2947                         });
2948                 }
2949
2950                 let routing = if let Some(payment_preimage) = keysend_preimage {
2951                         // We need to check that the sender knows the keysend preimage before processing this
2952                         // payment further. Otherwise, an intermediary routing hop forwarding non-keysend-HTLC X
2953                         // could discover the final destination of X, by probing the adjacent nodes on the route
2954                         // with a keysend payment of identical payment hash to X and observing the processing
2955                         // time discrepancies due to a hash collision with X.
2956                         let hashed_preimage = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
2957                         if hashed_preimage != payment_hash {
2958                                 return Err(InboundOnionErr {
2959                                         err_code: 0x4000|22,
2960                                         err_data: Vec::new(),
2961                                         msg: "Payment preimage didn't match payment hash",
2962                                 });
2963                         }
2964                         if !self.default_configuration.accept_mpp_keysend && payment_data.is_some() {
2965                                 return Err(InboundOnionErr {
2966                                         err_code: 0x4000|22,
2967                                         err_data: Vec::new(),
2968                                         msg: "We don't support MPP keysend payments",
2969                                 });
2970                         }
2971                         PendingHTLCRouting::ReceiveKeysend {
2972                                 payment_data,
2973                                 payment_preimage,
2974                                 payment_metadata,
2975                                 incoming_cltv_expiry: outgoing_cltv_value,
2976                                 custom_tlvs,
2977                         }
2978                 } else if let Some(data) = payment_data {
2979                         PendingHTLCRouting::Receive {
2980                                 payment_data: data,
2981                                 payment_metadata,
2982                                 incoming_cltv_expiry: outgoing_cltv_value,
2983                                 phantom_shared_secret,
2984                                 custom_tlvs,
2985                         }
2986                 } else {
2987                         return Err(InboundOnionErr {
2988                                 err_code: 0x4000|0x2000|3,
2989                                 err_data: Vec::new(),
2990                                 msg: "We require payment_secrets",
2991                         });
2992                 };
2993                 Ok(PendingHTLCInfo {
2994                         routing,
2995                         payment_hash,
2996                         incoming_shared_secret: shared_secret,
2997                         incoming_amt_msat: Some(amt_msat),
2998                         outgoing_amt_msat: onion_amt_msat,
2999                         outgoing_cltv_value,
3000                         skimmed_fee_msat: counterparty_skimmed_fee_msat,
3001                 })
3002         }
3003
3004         fn decode_update_add_htlc_onion(
3005                 &self, msg: &msgs::UpdateAddHTLC
3006         ) -> Result<(onion_utils::Hop, [u8; 32], Option<Result<PublicKey, secp256k1::Error>>), HTLCFailureMsg> {
3007                 macro_rules! return_malformed_err {
3008                         ($msg: expr, $err_code: expr) => {
3009                                 {
3010                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3011                                         return Err(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
3012                                                 channel_id: msg.channel_id,
3013                                                 htlc_id: msg.htlc_id,
3014                                                 sha256_of_onion: Sha256::hash(&msg.onion_routing_packet.hop_data).into_inner(),
3015                                                 failure_code: $err_code,
3016                                         }));
3017                                 }
3018                         }
3019                 }
3020
3021                 if let Err(_) = msg.onion_routing_packet.public_key {
3022                         return_malformed_err!("invalid ephemeral pubkey", 0x8000 | 0x4000 | 6);
3023                 }
3024
3025                 let shared_secret = self.node_signer.ecdh(
3026                         Recipient::Node, &msg.onion_routing_packet.public_key.unwrap(), None
3027                 ).unwrap().secret_bytes();
3028
3029                 if msg.onion_routing_packet.version != 0 {
3030                         //TODO: Spec doesn't indicate if we should only hash hop_data here (and in other
3031                         //sha256_of_onion error data packets), or the entire onion_routing_packet. Either way,
3032                         //the hash doesn't really serve any purpose - in the case of hashing all data, the
3033                         //receiving node would have to brute force to figure out which version was put in the
3034                         //packet by the node that send us the message, in the case of hashing the hop_data, the
3035                         //node knows the HMAC matched, so they already know what is there...
3036                         return_malformed_err!("Unknown onion packet version", 0x8000 | 0x4000 | 4);
3037                 }
3038                 macro_rules! return_err {
3039                         ($msg: expr, $err_code: expr, $data: expr) => {
3040                                 {
3041                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3042                                         return Err(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
3043                                                 channel_id: msg.channel_id,
3044                                                 htlc_id: msg.htlc_id,
3045                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
3046                                                         .get_encrypted_failure_packet(&shared_secret, &None),
3047                                         }));
3048                                 }
3049                         }
3050                 }
3051
3052                 let next_hop = match onion_utils::decode_next_payment_hop(
3053                         shared_secret, &msg.onion_routing_packet.hop_data[..], msg.onion_routing_packet.hmac,
3054                         msg.payment_hash, &self.node_signer
3055                 ) {
3056                         Ok(res) => res,
3057                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
3058                                 return_malformed_err!(err_msg, err_code);
3059                         },
3060                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
3061                                 return_err!(err_msg, err_code, &[0; 0]);
3062                         },
3063                 };
3064                 let (outgoing_scid, outgoing_amt_msat, outgoing_cltv_value, next_packet_pk_opt) = match next_hop {
3065                         onion_utils::Hop::Forward {
3066                                 next_hop_data: msgs::InboundOnionPayload::Forward {
3067                                         short_channel_id, amt_to_forward, outgoing_cltv_value
3068                                 }, ..
3069                         } => {
3070                                 let next_packet_pk = onion_utils::next_hop_pubkey(&self.secp_ctx,
3071                                         msg.onion_routing_packet.public_key.unwrap(), &shared_secret);
3072                                 (short_channel_id, amt_to_forward, outgoing_cltv_value, Some(next_packet_pk))
3073                         },
3074                         // We'll do receive checks in [`Self::construct_pending_htlc_info`] so we have access to the
3075                         // inbound channel's state.
3076                         onion_utils::Hop::Receive { .. } => return Ok((next_hop, shared_secret, None)),
3077                         onion_utils::Hop::Forward { next_hop_data: msgs::InboundOnionPayload::Receive { .. }, .. } |
3078                                 onion_utils::Hop::Forward { next_hop_data: msgs::InboundOnionPayload::BlindedReceive { .. }, .. } =>
3079                         {
3080                                 return_err!("Final Node OnionHopData provided for us as an intermediary node", 0x4000 | 22, &[0; 0]);
3081                         }
3082                 };
3083
3084                 // Perform outbound checks here instead of in [`Self::construct_pending_htlc_info`] because we
3085                 // can't hold the outbound peer state lock at the same time as the inbound peer state lock.
3086                 if let Some((err, mut code, chan_update)) = loop {
3087                         let id_option = self.short_to_chan_info.read().unwrap().get(&outgoing_scid).cloned();
3088                         let forwarding_chan_info_opt = match id_option {
3089                                 None => { // unknown_next_peer
3090                                         // Note that this is likely a timing oracle for detecting whether an scid is a
3091                                         // phantom or an intercept.
3092                                         if (self.default_configuration.accept_intercept_htlcs &&
3093                                                 fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, outgoing_scid, &self.genesis_hash)) ||
3094                                                 fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, outgoing_scid, &self.genesis_hash)
3095                                         {
3096                                                 None
3097                                         } else {
3098                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
3099                                         }
3100                                 },
3101                                 Some((cp_id, id)) => Some((cp_id.clone(), id.clone())),
3102                         };
3103                         let chan_update_opt = if let Some((counterparty_node_id, forwarding_id)) = forwarding_chan_info_opt {
3104                                 let per_peer_state = self.per_peer_state.read().unwrap();
3105                                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
3106                                 if peer_state_mutex_opt.is_none() {
3107                                         break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
3108                                 }
3109                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
3110                                 let peer_state = &mut *peer_state_lock;
3111                                 let chan = match peer_state.channel_by_id.get_mut(&forwarding_id).map(
3112                                         |chan_phase| if let ChannelPhase::Funded(chan) = chan_phase { Some(chan) } else { None }
3113                                 ).flatten() {
3114                                         None => {
3115                                                 // Channel was removed. The short_to_chan_info and channel_by_id maps
3116                                                 // have no consistency guarantees.
3117                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
3118                                         },
3119                                         Some(chan) => chan
3120                                 };
3121                                 if !chan.context.should_announce() && !self.default_configuration.accept_forwards_to_priv_channels {
3122                                         // Note that the behavior here should be identical to the above block - we
3123                                         // should NOT reveal the existence or non-existence of a private channel if
3124                                         // we don't allow forwards outbound over them.
3125                                         break Some(("Refusing to forward to a private channel based on our config.", 0x4000 | 10, None));
3126                                 }
3127                                 if chan.context.get_channel_type().supports_scid_privacy() && outgoing_scid != chan.context.outbound_scid_alias() {
3128                                         // `option_scid_alias` (referred to in LDK as `scid_privacy`) means
3129                                         // "refuse to forward unless the SCID alias was used", so we pretend
3130                                         // we don't have the channel here.
3131                                         break Some(("Refusing to forward over real channel SCID as our counterparty requested.", 0x4000 | 10, None));
3132                                 }
3133                                 let chan_update_opt = self.get_channel_update_for_onion(outgoing_scid, chan).ok();
3134
3135                                 // Note that we could technically not return an error yet here and just hope
3136                                 // that the connection is reestablished or monitor updated by the time we get
3137                                 // around to doing the actual forward, but better to fail early if we can and
3138                                 // hopefully an attacker trying to path-trace payments cannot make this occur
3139                                 // on a small/per-node/per-channel scale.
3140                                 if !chan.context.is_live() { // channel_disabled
3141                                         // If the channel_update we're going to return is disabled (i.e. the
3142                                         // peer has been disabled for some time), return `channel_disabled`,
3143                                         // otherwise return `temporary_channel_failure`.
3144                                         if chan_update_opt.as_ref().map(|u| u.contents.flags & 2 == 2).unwrap_or(false) {
3145                                                 break Some(("Forwarding channel has been disconnected for some time.", 0x1000 | 20, chan_update_opt));
3146                                         } else {
3147                                                 break Some(("Forwarding channel is not in a ready state.", 0x1000 | 7, chan_update_opt));
3148                                         }
3149                                 }
3150                                 if outgoing_amt_msat < chan.context.get_counterparty_htlc_minimum_msat() { // amount_below_minimum
3151                                         break Some(("HTLC amount was below the htlc_minimum_msat", 0x1000 | 11, chan_update_opt));
3152                                 }
3153                                 if let Err((err, code)) = chan.htlc_satisfies_config(&msg, outgoing_amt_msat, outgoing_cltv_value) {
3154                                         break Some((err, code, chan_update_opt));
3155                                 }
3156                                 chan_update_opt
3157                         } else {
3158                                 if (msg.cltv_expiry as u64) < (outgoing_cltv_value) as u64 + MIN_CLTV_EXPIRY_DELTA as u64 {
3159                                         // We really should set `incorrect_cltv_expiry` here but as we're not
3160                                         // forwarding over a real channel we can't generate a channel_update
3161                                         // for it. Instead we just return a generic temporary_node_failure.
3162                                         break Some((
3163                                                         "Forwarding node has tampered with the intended HTLC values or origin node has an obsolete cltv_expiry_delta",
3164                                                         0x2000 | 2, None,
3165                                         ));
3166                                 }
3167                                 None
3168                         };
3169
3170                         let cur_height = self.best_block.read().unwrap().height() + 1;
3171                         // Theoretically, channel counterparty shouldn't send us a HTLC expiring now,
3172                         // but we want to be robust wrt to counterparty packet sanitization (see
3173                         // HTLC_FAIL_BACK_BUFFER rationale).
3174                         if msg.cltv_expiry <= cur_height + HTLC_FAIL_BACK_BUFFER as u32 { // expiry_too_soon
3175                                 break Some(("CLTV expiry is too close", 0x1000 | 14, chan_update_opt));
3176                         }
3177                         if msg.cltv_expiry > cur_height + CLTV_FAR_FAR_AWAY as u32 { // expiry_too_far
3178                                 break Some(("CLTV expiry is too far in the future", 21, None));
3179                         }
3180                         // If the HTLC expires ~now, don't bother trying to forward it to our
3181                         // counterparty. They should fail it anyway, but we don't want to bother with
3182                         // the round-trips or risk them deciding they definitely want the HTLC and
3183                         // force-closing to ensure they get it if we're offline.
3184                         // We previously had a much more aggressive check here which tried to ensure
3185                         // our counterparty receives an HTLC which has *our* risk threshold met on it,
3186                         // but there is no need to do that, and since we're a bit conservative with our
3187                         // risk threshold it just results in failing to forward payments.
3188                         if (outgoing_cltv_value) as u64 <= (cur_height + LATENCY_GRACE_PERIOD_BLOCKS) as u64 {
3189                                 break Some(("Outgoing CLTV value is too soon", 0x1000 | 14, chan_update_opt));
3190                         }
3191
3192                         break None;
3193                 }
3194                 {
3195                         let mut res = VecWriter(Vec::with_capacity(chan_update.serialized_length() + 2 + 8 + 2));
3196                         if let Some(chan_update) = chan_update {
3197                                 if code == 0x1000 | 11 || code == 0x1000 | 12 {
3198                                         msg.amount_msat.write(&mut res).expect("Writes cannot fail");
3199                                 }
3200                                 else if code == 0x1000 | 13 {
3201                                         msg.cltv_expiry.write(&mut res).expect("Writes cannot fail");
3202                                 }
3203                                 else if code == 0x1000 | 20 {
3204                                         // TODO: underspecified, follow https://github.com/lightning/bolts/issues/791
3205                                         0u16.write(&mut res).expect("Writes cannot fail");
3206                                 }
3207                                 (chan_update.serialized_length() as u16 + 2).write(&mut res).expect("Writes cannot fail");
3208                                 msgs::ChannelUpdate::TYPE.write(&mut res).expect("Writes cannot fail");
3209                                 chan_update.write(&mut res).expect("Writes cannot fail");
3210                         } else if code & 0x1000 == 0x1000 {
3211                                 // If we're trying to return an error that requires a `channel_update` but
3212                                 // we're forwarding to a phantom or intercept "channel" (i.e. cannot
3213                                 // generate an update), just use the generic "temporary_node_failure"
3214                                 // instead.
3215                                 code = 0x2000 | 2;
3216                         }
3217                         return_err!(err, code, &res.0[..]);
3218                 }
3219                 Ok((next_hop, shared_secret, next_packet_pk_opt))
3220         }
3221
3222         fn construct_pending_htlc_status<'a>(
3223                 &self, msg: &msgs::UpdateAddHTLC, shared_secret: [u8; 32], decoded_hop: onion_utils::Hop,
3224                 allow_underpay: bool, next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>
3225         ) -> PendingHTLCStatus {
3226                 macro_rules! return_err {
3227                         ($msg: expr, $err_code: expr, $data: expr) => {
3228                                 {
3229                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3230                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
3231                                                 channel_id: msg.channel_id,
3232                                                 htlc_id: msg.htlc_id,
3233                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
3234                                                         .get_encrypted_failure_packet(&shared_secret, &None),
3235                                         }));
3236                                 }
3237                         }
3238                 }
3239                 match decoded_hop {
3240                         onion_utils::Hop::Receive(next_hop_data) => {
3241                                 // OUR PAYMENT!
3242                                 match self.construct_recv_pending_htlc_info(next_hop_data, shared_secret, msg.payment_hash,
3243                                         msg.amount_msat, msg.cltv_expiry, None, allow_underpay, msg.skimmed_fee_msat)
3244                                 {
3245                                         Ok(info) => {
3246                                                 // Note that we could obviously respond immediately with an update_fulfill_htlc
3247                                                 // message, however that would leak that we are the recipient of this payment, so
3248                                                 // instead we stay symmetric with the forwarding case, only responding (after a
3249                                                 // delay) once they've send us a commitment_signed!
3250                                                 PendingHTLCStatus::Forward(info)
3251                                         },
3252                                         Err(InboundOnionErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3253                                 }
3254                         },
3255                         onion_utils::Hop::Forward { next_hop_data, next_hop_hmac, new_packet_bytes } => {
3256                                 match self.construct_fwd_pending_htlc_info(msg, next_hop_data, next_hop_hmac,
3257                                         new_packet_bytes, shared_secret, next_packet_pubkey_opt) {
3258                                         Ok(info) => PendingHTLCStatus::Forward(info),
3259                                         Err(InboundOnionErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3260                                 }
3261                         }
3262                 }
3263         }
3264
3265         /// Gets the current [`channel_update`] for the given channel. This first checks if the channel is
3266         /// public, and thus should be called whenever the result is going to be passed out in a
3267         /// [`MessageSendEvent::BroadcastChannelUpdate`] event.
3268         ///
3269         /// Note that in [`internal_closing_signed`], this function is called without the `peer_state`
3270         /// corresponding to the channel's counterparty locked, as the channel been removed from the
3271         /// storage and the `peer_state` lock has been dropped.
3272         ///
3273         /// [`channel_update`]: msgs::ChannelUpdate
3274         /// [`internal_closing_signed`]: Self::internal_closing_signed
3275         fn get_channel_update_for_broadcast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3276                 if !chan.context.should_announce() {
3277                         return Err(LightningError {
3278                                 err: "Cannot broadcast a channel_update for a private channel".to_owned(),
3279                                 action: msgs::ErrorAction::IgnoreError
3280                         });
3281                 }
3282                 if chan.context.get_short_channel_id().is_none() {
3283                         return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError});
3284                 }
3285                 log_trace!(self.logger, "Attempting to generate broadcast channel update for channel {}", &chan.context.channel_id());
3286                 self.get_channel_update_for_unicast(chan)
3287         }
3288
3289         /// Gets the current [`channel_update`] for the given channel. This does not check if the channel
3290         /// is public (only returning an `Err` if the channel does not yet have an assigned SCID),
3291         /// and thus MUST NOT be called unless the recipient of the resulting message has already
3292         /// provided evidence that they know about the existence of the channel.
3293         ///
3294         /// Note that through [`internal_closing_signed`], this function is called without the
3295         /// `peer_state`  corresponding to the channel's counterparty locked, as the channel been
3296         /// removed from the storage and the `peer_state` lock has been dropped.
3297         ///
3298         /// [`channel_update`]: msgs::ChannelUpdate
3299         /// [`internal_closing_signed`]: Self::internal_closing_signed
3300         fn get_channel_update_for_unicast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3301                 log_trace!(self.logger, "Attempting to generate channel update for channel {}", &chan.context.channel_id());
3302                 let short_channel_id = match chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias()) {
3303                         None => return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError}),
3304                         Some(id) => id,
3305                 };
3306
3307                 self.get_channel_update_for_onion(short_channel_id, chan)
3308         }
3309
3310         fn get_channel_update_for_onion(&self, short_channel_id: u64, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3311                 log_trace!(self.logger, "Generating channel update for channel {}", &chan.context.channel_id());
3312                 let were_node_one = self.our_network_pubkey.serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
3313
3314                 let enabled = chan.context.is_usable() && match chan.channel_update_status() {
3315                         ChannelUpdateStatus::Enabled => true,
3316                         ChannelUpdateStatus::DisabledStaged(_) => true,
3317                         ChannelUpdateStatus::Disabled => false,
3318                         ChannelUpdateStatus::EnabledStaged(_) => false,
3319                 };
3320
3321                 let unsigned = msgs::UnsignedChannelUpdate {
3322                         chain_hash: self.genesis_hash,
3323                         short_channel_id,
3324                         timestamp: chan.context.get_update_time_counter(),
3325                         flags: (!were_node_one) as u8 | ((!enabled as u8) << 1),
3326                         cltv_expiry_delta: chan.context.get_cltv_expiry_delta(),
3327                         htlc_minimum_msat: chan.context.get_counterparty_htlc_minimum_msat(),
3328                         htlc_maximum_msat: chan.context.get_announced_htlc_max_msat(),
3329                         fee_base_msat: chan.context.get_outbound_forwarding_fee_base_msat(),
3330                         fee_proportional_millionths: chan.context.get_fee_proportional_millionths(),
3331                         excess_data: Vec::new(),
3332                 };
3333                 // Panic on failure to signal LDK should be restarted to retry signing the `ChannelUpdate`.
3334                 // If we returned an error and the `node_signer` cannot provide a signature for whatever
3335                 // reason`, we wouldn't be able to receive inbound payments through the corresponding
3336                 // channel.
3337                 let sig = self.node_signer.sign_gossip_message(msgs::UnsignedGossipMessage::ChannelUpdate(&unsigned)).unwrap();
3338
3339                 Ok(msgs::ChannelUpdate {
3340                         signature: sig,
3341                         contents: unsigned
3342                 })
3343         }
3344
3345         #[cfg(test)]
3346         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> {
3347                 let _lck = self.total_consistency_lock.read().unwrap();
3348                 self.send_payment_along_path(SendAlongPathArgs {
3349                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
3350                         session_priv_bytes
3351                 })
3352         }
3353
3354         fn send_payment_along_path(&self, args: SendAlongPathArgs) -> Result<(), APIError> {
3355                 let SendAlongPathArgs {
3356                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
3357                         session_priv_bytes
3358                 } = args;
3359                 // The top-level caller should hold the total_consistency_lock read lock.
3360                 debug_assert!(self.total_consistency_lock.try_write().is_err());
3361
3362                 log_trace!(self.logger,
3363                         "Attempting to send payment with payment hash {} along path with next hop {}",
3364                         payment_hash, path.hops.first().unwrap().short_channel_id);
3365                 let prng_seed = self.entropy_source.get_secure_random_bytes();
3366                 let session_priv = SecretKey::from_slice(&session_priv_bytes[..]).expect("RNG is busted");
3367
3368                 let onion_keys = onion_utils::construct_onion_keys(&self.secp_ctx, &path, &session_priv)
3369                         .map_err(|_| APIError::InvalidRoute{err: "Pubkey along hop was maliciously selected".to_owned()})?;
3370                 let (onion_payloads, htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(path, total_value, recipient_onion, cur_height, keysend_preimage)?;
3371
3372                 let onion_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, prng_seed, payment_hash)
3373                         .map_err(|_| APIError::InvalidRoute { err: "Route size too large considering onion data".to_owned()})?;
3374
3375                 let err: Result<(), _> = loop {
3376                         let (counterparty_node_id, id) = match self.short_to_chan_info.read().unwrap().get(&path.hops.first().unwrap().short_channel_id) {
3377                                 None => return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()}),
3378                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
3379                         };
3380
3381                         let per_peer_state = self.per_peer_state.read().unwrap();
3382                         let peer_state_mutex = per_peer_state.get(&counterparty_node_id)
3383                                 .ok_or_else(|| APIError::ChannelUnavailable{err: "No peer matching the path's first hop found!".to_owned() })?;
3384                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3385                         let peer_state = &mut *peer_state_lock;
3386                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(id) {
3387                                 match chan_phase_entry.get_mut() {
3388                                         ChannelPhase::Funded(chan) => {
3389                                                 if !chan.context.is_live() {
3390                                                         return Err(APIError::ChannelUnavailable{err: "Peer for first hop currently disconnected".to_owned()});
3391                                                 }
3392                                                 let funding_txo = chan.context.get_funding_txo().unwrap();
3393                                                 let send_res = chan.send_htlc_and_commit(htlc_msat, payment_hash.clone(),
3394                                                         htlc_cltv, HTLCSource::OutboundRoute {
3395                                                                 path: path.clone(),
3396                                                                 session_priv: session_priv.clone(),
3397                                                                 first_hop_htlc_msat: htlc_msat,
3398                                                                 payment_id,
3399                                                         }, onion_packet, None, &self.fee_estimator, &self.logger);
3400                                                 match break_chan_phase_entry!(self, send_res, chan_phase_entry) {
3401                                                         Some(monitor_update) => {
3402                                                                 match handle_new_monitor_update!(self, funding_txo, monitor_update, peer_state_lock, peer_state, per_peer_state, chan) {
3403                                                                         false => {
3404                                                                                 // Note that MonitorUpdateInProgress here indicates (per function
3405                                                                                 // docs) that we will resend the commitment update once monitor
3406                                                                                 // updating completes. Therefore, we must return an error
3407                                                                                 // indicating that it is unsafe to retry the payment wholesale,
3408                                                                                 // which we do in the send_payment check for
3409                                                                                 // MonitorUpdateInProgress, below.
3410                                                                                 return Err(APIError::MonitorUpdateInProgress);
3411                                                                         },
3412                                                                         true => {},
3413                                                                 }
3414                                                         },
3415                                                         None => {},
3416                                                 }
3417                                         },
3418                                         _ => return Err(APIError::ChannelUnavailable{err: "Channel to first hop is unfunded".to_owned()}),
3419                                 };
3420                         } else {
3421                                 // The channel was likely removed after we fetched the id from the
3422                                 // `short_to_chan_info` map, but before we successfully locked the
3423                                 // `channel_by_id` map.
3424                                 // This can occur as no consistency guarantees exists between the two maps.
3425                                 return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()});
3426                         }
3427                         return Ok(());
3428                 };
3429
3430                 match handle_error!(self, err, path.hops.first().unwrap().pubkey) {
3431                         Ok(_) => unreachable!(),
3432                         Err(e) => {
3433                                 Err(APIError::ChannelUnavailable { err: e.err })
3434                         },
3435                 }
3436         }
3437
3438         /// Sends a payment along a given route.
3439         ///
3440         /// Value parameters are provided via the last hop in route, see documentation for [`RouteHop`]
3441         /// fields for more info.
3442         ///
3443         /// May generate [`UpdateHTLCs`] message(s) event on success, which should be relayed (e.g. via
3444         /// [`PeerManager::process_events`]).
3445         ///
3446         /// # Avoiding Duplicate Payments
3447         ///
3448         /// If a pending payment is currently in-flight with the same [`PaymentId`] provided, this
3449         /// method will error with an [`APIError::InvalidRoute`]. Note, however, that once a payment
3450         /// is no longer pending (either via [`ChannelManager::abandon_payment`], or handling of an
3451         /// [`Event::PaymentSent`] or [`Event::PaymentFailed`]) LDK will not stop you from sending a
3452         /// second payment with the same [`PaymentId`].
3453         ///
3454         /// Thus, in order to ensure duplicate payments are not sent, you should implement your own
3455         /// tracking of payments, including state to indicate once a payment has completed. Because you
3456         /// should also ensure that [`PaymentHash`]es are not re-used, for simplicity, you should
3457         /// consider using the [`PaymentHash`] as the key for tracking payments. In that case, the
3458         /// [`PaymentId`] should be a copy of the [`PaymentHash`] bytes.
3459         ///
3460         /// Additionally, in the scenario where we begin the process of sending a payment, but crash
3461         /// before `send_payment` returns (or prior to [`ChannelMonitorUpdate`] persistence if you're
3462         /// using [`ChannelMonitorUpdateStatus::InProgress`]), the payment may be lost on restart. See
3463         /// [`ChannelManager::list_recent_payments`] for more information.
3464         ///
3465         /// # Possible Error States on [`PaymentSendFailure`]
3466         ///
3467         /// Each path may have a different return value, and [`PaymentSendFailure`] may return a `Vec` with
3468         /// each entry matching the corresponding-index entry in the route paths, see
3469         /// [`PaymentSendFailure`] for more info.
3470         ///
3471         /// In general, a path may raise:
3472         ///  * [`APIError::InvalidRoute`] when an invalid route or forwarding parameter (cltv_delta, fee,
3473         ///    node public key) is specified.
3474         ///  * [`APIError::ChannelUnavailable`] if the next-hop channel is not available as it has been
3475         ///    closed, doesn't exist, or the peer is currently disconnected.
3476         ///  * [`APIError::MonitorUpdateInProgress`] if a new monitor update failure prevented sending the
3477         ///    relevant updates.
3478         ///
3479         /// Note that depending on the type of the [`PaymentSendFailure`] the HTLC may have been
3480         /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
3481         /// different route unless you intend to pay twice!
3482         ///
3483         /// [`RouteHop`]: crate::routing::router::RouteHop
3484         /// [`Event::PaymentSent`]: events::Event::PaymentSent
3485         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
3486         /// [`UpdateHTLCs`]: events::MessageSendEvent::UpdateHTLCs
3487         /// [`PeerManager::process_events`]: crate::ln::peer_handler::PeerManager::process_events
3488         /// [`ChannelMonitorUpdateStatus::InProgress`]: crate::chain::ChannelMonitorUpdateStatus::InProgress
3489         pub fn send_payment_with_route(&self, route: &Route, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<(), PaymentSendFailure> {
3490                 let best_block_height = self.best_block.read().unwrap().height();
3491                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3492                 self.pending_outbound_payments
3493                         .send_payment_with_route(route, payment_hash, recipient_onion, payment_id,
3494                                 &self.entropy_source, &self.node_signer, best_block_height,
3495                                 |args| self.send_payment_along_path(args))
3496         }
3497
3498         /// Similar to [`ChannelManager::send_payment_with_route`], but will automatically find a route based on
3499         /// `route_params` and retry failed payment paths based on `retry_strategy`.
3500         pub fn send_payment(&self, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId, route_params: RouteParameters, retry_strategy: Retry) -> Result<(), RetryableSendFailure> {
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
3504                         .send_payment(payment_hash, recipient_onion, payment_id, retry_strategy, route_params,
3505                                 &self.router, self.list_usable_channels(), || self.compute_inflight_htlcs(),
3506                                 &self.entropy_source, &self.node_signer, best_block_height, &self.logger,
3507                                 &self.pending_events, |args| self.send_payment_along_path(args))
3508         }
3509
3510         #[cfg(test)]
3511         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> {
3512                 let best_block_height = self.best_block.read().unwrap().height();
3513                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3514                 self.pending_outbound_payments.test_send_payment_internal(route, payment_hash, recipient_onion,
3515                         keysend_preimage, payment_id, recv_value_msat, onion_session_privs, &self.node_signer,
3516                         best_block_height, |args| self.send_payment_along_path(args))
3517         }
3518
3519         #[cfg(test)]
3520         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> {
3521                 let best_block_height = self.best_block.read().unwrap().height();
3522                 self.pending_outbound_payments.test_add_new_pending_payment(payment_hash, recipient_onion, payment_id, route, None, &self.entropy_source, best_block_height)
3523         }
3524
3525         #[cfg(test)]
3526         pub(crate) fn test_set_payment_metadata(&self, payment_id: PaymentId, new_payment_metadata: Option<Vec<u8>>) {
3527                 self.pending_outbound_payments.test_set_payment_metadata(payment_id, new_payment_metadata);
3528         }
3529
3530
3531         /// Signals that no further attempts for the given payment should occur. Useful if you have a
3532         /// pending outbound payment with retries remaining, but wish to stop retrying the payment before
3533         /// retries are exhausted.
3534         ///
3535         /// # Event Generation
3536         ///
3537         /// If no [`Event::PaymentFailed`] event had been generated before, one will be generated as soon
3538         /// as there are no remaining pending HTLCs for this payment.
3539         ///
3540         /// Note that calling this method does *not* prevent a payment from succeeding. You must still
3541         /// wait until you receive either a [`Event::PaymentFailed`] or [`Event::PaymentSent`] event to
3542         /// determine the ultimate status of a payment.
3543         ///
3544         /// # Requested Invoices
3545         ///
3546         /// In the case of paying a [`Bolt12Invoice`], abandoning the payment prior to receiving the
3547         /// invoice will result in an [`Event::InvoiceRequestFailed`] and prevent any attempts at paying
3548         /// it once received. The other events may only be generated once the invoice has been received.
3549         ///
3550         /// # Restart Behavior
3551         ///
3552         /// If an [`Event::PaymentFailed`] is generated and we restart without first persisting the
3553         /// [`ChannelManager`], another [`Event::PaymentFailed`] may be generated; likewise for
3554         /// [`Event::InvoiceRequestFailed`].
3555         ///
3556         /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
3557         pub fn abandon_payment(&self, payment_id: PaymentId) {
3558                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3559                 self.pending_outbound_payments.abandon_payment(payment_id, PaymentFailureReason::UserAbandoned, &self.pending_events);
3560         }
3561
3562         /// Send a spontaneous payment, which is a payment that does not require the recipient to have
3563         /// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
3564         /// the preimage, it must be a cryptographically secure random value that no intermediate node
3565         /// would be able to guess -- otherwise, an intermediate node may claim the payment and it will
3566         /// never reach the recipient.
3567         ///
3568         /// See [`send_payment`] documentation for more details on the return value of this function
3569         /// and idempotency guarantees provided by the [`PaymentId`] key.
3570         ///
3571         /// Similar to regular payments, you MUST NOT reuse a `payment_preimage` value. See
3572         /// [`send_payment`] for more information about the risks of duplicate preimage usage.
3573         ///
3574         /// [`send_payment`]: Self::send_payment
3575         pub fn send_spontaneous_payment(&self, route: &Route, payment_preimage: Option<PaymentPreimage>, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<PaymentHash, PaymentSendFailure> {
3576                 let best_block_height = self.best_block.read().unwrap().height();
3577                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3578                 self.pending_outbound_payments.send_spontaneous_payment_with_route(
3579                         route, payment_preimage, recipient_onion, payment_id, &self.entropy_source,
3580                         &self.node_signer, best_block_height, |args| self.send_payment_along_path(args))
3581         }
3582
3583         /// Similar to [`ChannelManager::send_spontaneous_payment`], but will automatically find a route
3584         /// based on `route_params` and retry failed payment paths based on `retry_strategy`.
3585         ///
3586         /// See [`PaymentParameters::for_keysend`] for help in constructing `route_params` for spontaneous
3587         /// payments.
3588         ///
3589         /// [`PaymentParameters::for_keysend`]: crate::routing::router::PaymentParameters::for_keysend
3590         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> {
3591                 let best_block_height = self.best_block.read().unwrap().height();
3592                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3593                 self.pending_outbound_payments.send_spontaneous_payment(payment_preimage, recipient_onion,
3594                         payment_id, retry_strategy, route_params, &self.router, self.list_usable_channels(),
3595                         || self.compute_inflight_htlcs(),  &self.entropy_source, &self.node_signer, best_block_height,
3596                         &self.logger, &self.pending_events, |args| self.send_payment_along_path(args))
3597         }
3598
3599         /// Send a payment that is probing the given route for liquidity. We calculate the
3600         /// [`PaymentHash`] of probes based on a static secret and a random [`PaymentId`], which allows
3601         /// us to easily discern them from real payments.
3602         pub fn send_probe(&self, path: Path) -> Result<(PaymentHash, PaymentId), PaymentSendFailure> {
3603                 let best_block_height = self.best_block.read().unwrap().height();
3604                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3605                 self.pending_outbound_payments.send_probe(path, self.probing_cookie_secret,
3606                         &self.entropy_source, &self.node_signer, best_block_height,
3607                         |args| self.send_payment_along_path(args))
3608         }
3609
3610         /// Returns whether a payment with the given [`PaymentHash`] and [`PaymentId`] is, in fact, a
3611         /// payment probe.
3612         #[cfg(test)]
3613         pub(crate) fn payment_is_probe(&self, payment_hash: &PaymentHash, payment_id: &PaymentId) -> bool {
3614                 outbound_payment::payment_is_probe(payment_hash, payment_id, self.probing_cookie_secret)
3615         }
3616
3617         /// Sends payment probes over all paths of a route that would be used to pay the given
3618         /// amount to the given `node_id`.
3619         ///
3620         /// See [`ChannelManager::send_preflight_probes`] for more information.
3621         pub fn send_spontaneous_preflight_probes(
3622                 &self, node_id: PublicKey, amount_msat: u64, final_cltv_expiry_delta: u32,
3623                 liquidity_limit_multiplier: Option<u64>,
3624         ) -> Result<Vec<(PaymentHash, PaymentId)>, ProbeSendFailure> {
3625                 let payment_params =
3626                         PaymentParameters::from_node_id(node_id, final_cltv_expiry_delta);
3627
3628                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, amount_msat);
3629
3630                 self.send_preflight_probes(route_params, liquidity_limit_multiplier)
3631         }
3632
3633         /// Sends payment probes over all paths of a route that would be used to pay a route found
3634         /// according to the given [`RouteParameters`].
3635         ///
3636         /// This may be used to send "pre-flight" probes, i.e., to train our scorer before conducting
3637         /// the actual payment. Note this is only useful if there likely is sufficient time for the
3638         /// probe to settle before sending out the actual payment, e.g., when waiting for user
3639         /// confirmation in a wallet UI.
3640         ///
3641         /// Otherwise, there is a chance the probe could take up some liquidity needed to complete the
3642         /// actual payment. Users should therefore be cautious and might avoid sending probes if
3643         /// liquidity is scarce and/or they don't expect the probe to return before they send the
3644         /// payment. To mitigate this issue, channels with available liquidity less than the required
3645         /// amount times the given `liquidity_limit_multiplier` won't be used to send pre-flight
3646         /// probes. If `None` is given as `liquidity_limit_multiplier`, it defaults to `3`.
3647         pub fn send_preflight_probes(
3648                 &self, route_params: RouteParameters, liquidity_limit_multiplier: Option<u64>,
3649         ) -> Result<Vec<(PaymentHash, PaymentId)>, ProbeSendFailure> {
3650                 let liquidity_limit_multiplier = liquidity_limit_multiplier.unwrap_or(3);
3651
3652                 let payer = self.get_our_node_id();
3653                 let usable_channels = self.list_usable_channels();
3654                 let first_hops = usable_channels.iter().collect::<Vec<_>>();
3655                 let inflight_htlcs = self.compute_inflight_htlcs();
3656
3657                 let route = self
3658                         .router
3659                         .find_route(&payer, &route_params, Some(&first_hops), inflight_htlcs)
3660                         .map_err(|e| {
3661                                 log_error!(self.logger, "Failed to find path for payment probe: {:?}", e);
3662                                 ProbeSendFailure::RouteNotFound
3663                         })?;
3664
3665                 let mut used_liquidity_map = HashMap::with_capacity(first_hops.len());
3666
3667                 let mut res = Vec::new();
3668
3669                 for mut path in route.paths {
3670                         // If the last hop is probably an unannounced channel we refrain from probing all the
3671                         // way through to the end and instead probe up to the second-to-last channel.
3672                         while let Some(last_path_hop) = path.hops.last() {
3673                                 if last_path_hop.maybe_announced_channel {
3674                                         // We found a potentially announced last hop.
3675                                         break;
3676                                 } else {
3677                                         // Drop the last hop, as it's likely unannounced.
3678                                         log_debug!(
3679                                                 self.logger,
3680                                                 "Avoided sending payment probe all the way to last hop {} as it is likely unannounced.",
3681                                                 last_path_hop.short_channel_id
3682                                         );
3683                                         let final_value_msat = path.final_value_msat();
3684                                         path.hops.pop();
3685                                         if let Some(new_last) = path.hops.last_mut() {
3686                                                 new_last.fee_msat += final_value_msat;
3687                                         }
3688                                 }
3689                         }
3690
3691                         if path.hops.len() < 2 {
3692                                 log_debug!(
3693                                         self.logger,
3694                                         "Skipped sending payment probe over path with less than two hops."
3695                                 );
3696                                 continue;
3697                         }
3698
3699                         if let Some(first_path_hop) = path.hops.first() {
3700                                 if let Some(first_hop) = first_hops.iter().find(|h| {
3701                                         h.get_outbound_payment_scid() == Some(first_path_hop.short_channel_id)
3702                                 }) {
3703                                         let path_value = path.final_value_msat() + path.fee_msat();
3704                                         let used_liquidity =
3705                                                 used_liquidity_map.entry(first_path_hop.short_channel_id).or_insert(0);
3706
3707                                         if first_hop.next_outbound_htlc_limit_msat
3708                                                 < (*used_liquidity + path_value) * liquidity_limit_multiplier
3709                                         {
3710                                                 log_debug!(self.logger, "Skipped sending payment probe to avoid putting channel {} under the liquidity limit.", first_path_hop.short_channel_id);
3711                                                 continue;
3712                                         } else {
3713                                                 *used_liquidity += path_value;
3714                                         }
3715                                 }
3716                         }
3717
3718                         res.push(self.send_probe(path).map_err(|e| {
3719                                 log_error!(self.logger, "Failed to send pre-flight probe: {:?}", e);
3720                                 ProbeSendFailure::SendingFailed(e)
3721                         })?);
3722                 }
3723
3724                 Ok(res)
3725         }
3726
3727         /// Handles the generation of a funding transaction, optionally (for tests) with a function
3728         /// which checks the correctness of the funding transaction given the associated channel.
3729         fn funding_transaction_generated_intern<FundingOutput: FnMut(&OutboundV1Channel<SP>, &Transaction) -> Result<OutPoint, APIError>>(
3730                 &self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, is_batch_funding: bool,
3731                 mut find_funding_output: FundingOutput,
3732         ) -> Result<(), APIError> {
3733                 let per_peer_state = self.per_peer_state.read().unwrap();
3734                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3735                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3736
3737                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3738                 let peer_state = &mut *peer_state_lock;
3739                 let (chan, msg) = match peer_state.channel_by_id.remove(temporary_channel_id) {
3740                         Some(ChannelPhase::UnfundedOutboundV1(chan)) => {
3741                                 let funding_txo = find_funding_output(&chan, &funding_transaction)?;
3742
3743                                 let funding_res = chan.get_funding_created(funding_transaction, funding_txo, is_batch_funding, &self.logger)
3744                                         .map_err(|(mut chan, e)| if let ChannelError::Close(msg) = e {
3745                                                 let channel_id = chan.context.channel_id();
3746                                                 let user_id = chan.context.get_user_id();
3747                                                 let shutdown_res = chan.context.force_shutdown(false);
3748                                                 let channel_capacity = chan.context.get_value_satoshis();
3749                                                 (chan, MsgHandleErrInternal::from_finish_shutdown(msg, channel_id, user_id, shutdown_res, None, channel_capacity))
3750                                         } else { unreachable!(); });
3751                                 match funding_res {
3752                                         Ok((chan, funding_msg)) => (chan, funding_msg),
3753                                         Err((chan, err)) => {
3754                                                 mem::drop(peer_state_lock);
3755                                                 mem::drop(per_peer_state);
3756
3757                                                 let _: Result<(), _> = handle_error!(self, Err(err), chan.context.get_counterparty_node_id());
3758                                                 return Err(APIError::ChannelUnavailable {
3759                                                         err: "Signer refused to sign the initial commitment transaction".to_owned()
3760                                                 });
3761                                         },
3762                                 }
3763                         },
3764                         Some(phase) => {
3765                                 peer_state.channel_by_id.insert(*temporary_channel_id, phase);
3766                                 return Err(APIError::APIMisuseError {
3767                                         err: format!(
3768                                                 "Channel with id {} for the passed counterparty node_id {} is not an unfunded, outbound V1 channel",
3769                                                 temporary_channel_id, counterparty_node_id),
3770                                 })
3771                         },
3772                         None => return Err(APIError::ChannelUnavailable {err: format!(
3773                                 "Channel with id {} not found for the passed counterparty node_id {}",
3774                                 temporary_channel_id, counterparty_node_id),
3775                                 }),
3776                 };
3777
3778                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
3779                         node_id: chan.context.get_counterparty_node_id(),
3780                         msg,
3781                 });
3782                 match peer_state.channel_by_id.entry(chan.context.channel_id()) {
3783                         hash_map::Entry::Occupied(_) => {
3784                                 panic!("Generated duplicate funding txid?");
3785                         },
3786                         hash_map::Entry::Vacant(e) => {
3787                                 let mut id_to_peer = self.id_to_peer.lock().unwrap();
3788                                 if id_to_peer.insert(chan.context.channel_id(), chan.context.get_counterparty_node_id()).is_some() {
3789                                         panic!("id_to_peer map already contained funding txid, which shouldn't be possible");
3790                                 }
3791                                 e.insert(ChannelPhase::Funded(chan));
3792                         }
3793                 }
3794                 Ok(())
3795         }
3796
3797         #[cfg(test)]
3798         pub(crate) fn funding_transaction_generated_unchecked(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, output_index: u16) -> Result<(), APIError> {
3799                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, false, |_, tx| {
3800                         Ok(OutPoint { txid: tx.txid(), index: output_index })
3801                 })
3802         }
3803
3804         /// Call this upon creation of a funding transaction for the given channel.
3805         ///
3806         /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
3807         /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
3808         ///
3809         /// Returns [`APIError::APIMisuseError`] if the funding transaction is not final for propagation
3810         /// across the p2p network.
3811         ///
3812         /// Returns [`APIError::ChannelUnavailable`] if a funding transaction has already been provided
3813         /// for the channel or if the channel has been closed as indicated by [`Event::ChannelClosed`].
3814         ///
3815         /// May panic if the output found in the funding transaction is duplicative with some other
3816         /// channel (note that this should be trivially prevented by using unique funding transaction
3817         /// keys per-channel).
3818         ///
3819         /// Do NOT broadcast the funding transaction yourself. When we have safely received our
3820         /// counterparty's signature the funding transaction will automatically be broadcast via the
3821         /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
3822         ///
3823         /// Note that this includes RBF or similar transaction replacement strategies - lightning does
3824         /// not currently support replacing a funding transaction on an existing channel. Instead,
3825         /// create a new channel with a conflicting funding transaction.
3826         ///
3827         /// Note to keep the miner incentives aligned in moving the blockchain forward, we recommend
3828         /// the wallet software generating the funding transaction to apply anti-fee sniping as
3829         /// implemented by Bitcoin Core wallet. See <https://bitcoinops.org/en/topics/fee-sniping/>
3830         /// for more details.
3831         ///
3832         /// [`Event::FundingGenerationReady`]: crate::events::Event::FundingGenerationReady
3833         /// [`Event::ChannelClosed`]: crate::events::Event::ChannelClosed
3834         pub fn funding_transaction_generated(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction) -> Result<(), APIError> {
3835                 self.batch_funding_transaction_generated(&[(temporary_channel_id, counterparty_node_id)], funding_transaction)
3836         }
3837
3838         /// Call this upon creation of a batch funding transaction for the given channels.
3839         ///
3840         /// Return values are identical to [`Self::funding_transaction_generated`], respective to
3841         /// each individual channel and transaction output.
3842         ///
3843         /// Do NOT broadcast the funding transaction yourself. This batch funding transcaction
3844         /// will only be broadcast when we have safely received and persisted the counterparty's
3845         /// signature for each channel.
3846         ///
3847         /// If there is an error, all channels in the batch are to be considered closed.
3848         pub fn batch_funding_transaction_generated(&self, temporary_channels: &[(&ChannelId, &PublicKey)], funding_transaction: Transaction) -> Result<(), APIError> {
3849                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3850                 let mut result = Ok(());
3851
3852                 if !funding_transaction.is_coin_base() {
3853                         for inp in funding_transaction.input.iter() {
3854                                 if inp.witness.is_empty() {
3855                                         result = result.and(Err(APIError::APIMisuseError {
3856                                                 err: "Funding transaction must be fully signed and spend Segwit outputs".to_owned()
3857                                         }));
3858                                 }
3859                         }
3860                 }
3861                 if funding_transaction.output.len() > u16::max_value() as usize {
3862                         result = result.and(Err(APIError::APIMisuseError {
3863                                 err: "Transaction had more than 2^16 outputs, which is not supported".to_owned()
3864                         }));
3865                 }
3866                 {
3867                         let height = self.best_block.read().unwrap().height();
3868                         // Transactions are evaluated as final by network mempools if their locktime is strictly
3869                         // lower than the next block height. However, the modules constituting our Lightning
3870                         // node might not have perfect sync about their blockchain views. Thus, if the wallet
3871                         // module is ahead of LDK, only allow one more block of headroom.
3872                         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 {
3873                                 result = result.and(Err(APIError::APIMisuseError {
3874                                         err: "Funding transaction absolute timelock is non-final".to_owned()
3875                                 }));
3876                         }
3877                 }
3878
3879                 let txid = funding_transaction.txid();
3880                 let is_batch_funding = temporary_channels.len() > 1;
3881                 let mut funding_batch_states = if is_batch_funding {
3882                         Some(self.funding_batch_states.lock().unwrap())
3883                 } else {
3884                         None
3885                 };
3886                 let mut funding_batch_state = funding_batch_states.as_mut().and_then(|states| {
3887                         match states.entry(txid) {
3888                                 btree_map::Entry::Occupied(_) => {
3889                                         result = result.clone().and(Err(APIError::APIMisuseError {
3890                                                 err: "Batch funding transaction with the same txid already exists".to_owned()
3891                                         }));
3892                                         None
3893                                 },
3894                                 btree_map::Entry::Vacant(vacant) => Some(vacant.insert(Vec::new())),
3895                         }
3896                 });
3897                 for (channel_idx, &(temporary_channel_id, counterparty_node_id)) in temporary_channels.iter().enumerate() {
3898                         result = result.and_then(|_| self.funding_transaction_generated_intern(
3899                                 temporary_channel_id,
3900                                 counterparty_node_id,
3901                                 funding_transaction.clone(),
3902                                 is_batch_funding,
3903                                 |chan, tx| {
3904                                         let mut output_index = None;
3905                                         let expected_spk = chan.context.get_funding_redeemscript().to_v0_p2wsh();
3906                                         for (idx, outp) in tx.output.iter().enumerate() {
3907                                                 if outp.script_pubkey == expected_spk && outp.value == chan.context.get_value_satoshis() {
3908                                                         if output_index.is_some() {
3909                                                                 return Err(APIError::APIMisuseError {
3910                                                                         err: "Multiple outputs matched the expected script and value".to_owned()
3911                                                                 });
3912                                                         }
3913                                                         output_index = Some(idx as u16);
3914                                                 }
3915                                         }
3916                                         if output_index.is_none() {
3917                                                 return Err(APIError::APIMisuseError {
3918                                                         err: "No output matched the script_pubkey and value in the FundingGenerationReady event".to_owned()
3919                                                 });
3920                                         }
3921                                         let outpoint = OutPoint { txid: tx.txid(), index: output_index.unwrap() };
3922                                         if let Some(funding_batch_state) = funding_batch_state.as_mut() {
3923                                                 funding_batch_state.push((outpoint.to_channel_id(), *counterparty_node_id, false));
3924                                         }
3925                                         Ok(outpoint)
3926                                 })
3927                         );
3928                 }
3929                 if let Err(ref e) = result {
3930                         // Remaining channels need to be removed on any error.
3931                         let e = format!("Error in transaction funding: {:?}", e);
3932                         let mut channels_to_remove = Vec::new();
3933                         channels_to_remove.extend(funding_batch_states.as_mut()
3934                                 .and_then(|states| states.remove(&txid))
3935                                 .into_iter().flatten()
3936                                 .map(|(chan_id, node_id, _state)| (chan_id, node_id))
3937                         );
3938                         channels_to_remove.extend(temporary_channels.iter()
3939                                 .map(|(&chan_id, &node_id)| (chan_id, node_id))
3940                         );
3941                         let mut shutdown_results = Vec::new();
3942                         {
3943                                 let per_peer_state = self.per_peer_state.read().unwrap();
3944                                 for (channel_id, counterparty_node_id) in channels_to_remove {
3945                                         per_peer_state.get(&counterparty_node_id)
3946                                                 .map(|peer_state_mutex| peer_state_mutex.lock().unwrap())
3947                                                 .and_then(|mut peer_state| peer_state.channel_by_id.remove(&channel_id))
3948                                                 .map(|mut chan| {
3949                                                         update_maps_on_chan_removal!(self, &chan.context());
3950                                                         self.issue_channel_close_events(&chan.context(), ClosureReason::ProcessingError { err: e.clone() });
3951                                                         shutdown_results.push(chan.context_mut().force_shutdown(false));
3952                                                 });
3953                                 }
3954                         }
3955                         for shutdown_result in shutdown_results.drain(..) {
3956                                 self.finish_close_channel(shutdown_result);
3957                         }
3958                 }
3959                 result
3960         }
3961
3962         /// Atomically applies partial updates to the [`ChannelConfig`] of the given channels.
3963         ///
3964         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3965         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3966         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3967         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3968         ///
3969         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3970         /// `counterparty_node_id` is provided.
3971         ///
3972         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3973         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3974         ///
3975         /// If an error is returned, none of the updates should be considered applied.
3976         ///
3977         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3978         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3979         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3980         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3981         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3982         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3983         /// [`APIMisuseError`]: APIError::APIMisuseError
3984         pub fn update_partial_channel_config(
3985                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config_update: &ChannelConfigUpdate,
3986         ) -> Result<(), APIError> {
3987                 if config_update.cltv_expiry_delta.map(|delta| delta < MIN_CLTV_EXPIRY_DELTA).unwrap_or(false) {
3988                         return Err(APIError::APIMisuseError {
3989                                 err: format!("The chosen CLTV expiry delta is below the minimum of {}", MIN_CLTV_EXPIRY_DELTA),
3990                         });
3991                 }
3992
3993                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3994                 let per_peer_state = self.per_peer_state.read().unwrap();
3995                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3996                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3997                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3998                 let peer_state = &mut *peer_state_lock;
3999                 for channel_id in channel_ids {
4000                         if !peer_state.has_channel(channel_id) {
4001                                 return Err(APIError::ChannelUnavailable {
4002                                         err: format!("Channel with ID {} was not found for the passed counterparty_node_id {}", channel_id, counterparty_node_id),
4003                                 });
4004                         };
4005                 }
4006                 for channel_id in channel_ids {
4007                         if let Some(channel_phase) = peer_state.channel_by_id.get_mut(channel_id) {
4008                                 let mut config = channel_phase.context().config();
4009                                 config.apply(config_update);
4010                                 if !channel_phase.context_mut().update_config(&config) {
4011                                         continue;
4012                                 }
4013                                 if let ChannelPhase::Funded(channel) = channel_phase {
4014                                         if let Ok(msg) = self.get_channel_update_for_broadcast(channel) {
4015                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate { msg });
4016                                         } else if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
4017                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
4018                                                         node_id: channel.context.get_counterparty_node_id(),
4019                                                         msg,
4020                                                 });
4021                                         }
4022                                 }
4023                                 continue;
4024                         } else {
4025                                 // This should not be reachable as we've already checked for non-existence in the previous channel_id loop.
4026                                 debug_assert!(false);
4027                                 return Err(APIError::ChannelUnavailable {
4028                                         err: format!(
4029                                                 "Channel with ID {} for passed counterparty_node_id {} disappeared after we confirmed its existence - this should not be reachable!",
4030                                                 channel_id, counterparty_node_id),
4031                                 });
4032                         };
4033                 }
4034                 Ok(())
4035         }
4036
4037         /// Atomically updates the [`ChannelConfig`] for the given channels.
4038         ///
4039         /// Once the updates are applied, each eligible channel (advertised with a known short channel
4040         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
4041         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
4042         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
4043         ///
4044         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
4045         /// `counterparty_node_id` is provided.
4046         ///
4047         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
4048         /// below [`MIN_CLTV_EXPIRY_DELTA`].
4049         ///
4050         /// If an error is returned, none of the updates should be considered applied.
4051         ///
4052         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
4053         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
4054         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
4055         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
4056         /// [`ChannelUpdate`]: msgs::ChannelUpdate
4057         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
4058         /// [`APIMisuseError`]: APIError::APIMisuseError
4059         pub fn update_channel_config(
4060                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config: &ChannelConfig,
4061         ) -> Result<(), APIError> {
4062                 return self.update_partial_channel_config(counterparty_node_id, channel_ids, &(*config).into());
4063         }
4064
4065         /// Attempts to forward an intercepted HTLC over the provided channel id and with the provided
4066         /// amount to forward. Should only be called in response to an [`HTLCIntercepted`] event.
4067         ///
4068         /// Intercepted HTLCs can be useful for Lightning Service Providers (LSPs) to open a just-in-time
4069         /// channel to a receiving node if the node lacks sufficient inbound liquidity.
4070         ///
4071         /// To make use of intercepted HTLCs, set [`UserConfig::accept_intercept_htlcs`] and use
4072         /// [`ChannelManager::get_intercept_scid`] to generate short channel id(s) to put in the
4073         /// receiver's invoice route hints. These route hints will signal to LDK to generate an
4074         /// [`HTLCIntercepted`] event when it receives the forwarded HTLC, and this method or
4075         /// [`ChannelManager::fail_intercepted_htlc`] MUST be called in response to the event.
4076         ///
4077         /// Note that LDK does not enforce fee requirements in `amt_to_forward_msat`, and will not stop
4078         /// you from forwarding more than you received. See
4079         /// [`HTLCIntercepted::expected_outbound_amount_msat`] for more on forwarding a different amount
4080         /// than expected.
4081         ///
4082         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
4083         /// backwards.
4084         ///
4085         /// [`UserConfig::accept_intercept_htlcs`]: crate::util::config::UserConfig::accept_intercept_htlcs
4086         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
4087         /// [`HTLCIntercepted::expected_outbound_amount_msat`]: events::Event::HTLCIntercepted::expected_outbound_amount_msat
4088         // TODO: when we move to deciding the best outbound channel at forward time, only take
4089         // `next_node_id` and not `next_hop_channel_id`
4090         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> {
4091                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4092
4093                 let next_hop_scid = {
4094                         let peer_state_lock = self.per_peer_state.read().unwrap();
4095                         let peer_state_mutex = peer_state_lock.get(&next_node_id)
4096                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", next_node_id) })?;
4097                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4098                         let peer_state = &mut *peer_state_lock;
4099                         match peer_state.channel_by_id.get(next_hop_channel_id) {
4100                                 Some(ChannelPhase::Funded(chan)) => {
4101                                         if !chan.context.is_usable() {
4102                                                 return Err(APIError::ChannelUnavailable {
4103                                                         err: format!("Channel with id {} not fully established", next_hop_channel_id)
4104                                                 })
4105                                         }
4106                                         chan.context.get_short_channel_id().unwrap_or(chan.context.outbound_scid_alias())
4107                                 },
4108                                 Some(_) => return Err(APIError::ChannelUnavailable {
4109                                         err: format!("Channel with id {} for the passed counterparty node_id {} is still opening.",
4110                                                 next_hop_channel_id, next_node_id)
4111                                 }),
4112                                 None => return Err(APIError::ChannelUnavailable {
4113                                         err: format!("Channel with id {} not found for the passed counterparty node_id {}.",
4114                                                 next_hop_channel_id, next_node_id)
4115                                 })
4116                         }
4117                 };
4118
4119                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
4120                         .ok_or_else(|| APIError::APIMisuseError {
4121                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
4122                         })?;
4123
4124                 let routing = match payment.forward_info.routing {
4125                         PendingHTLCRouting::Forward { onion_packet, .. } => {
4126                                 PendingHTLCRouting::Forward { onion_packet, short_channel_id: next_hop_scid }
4127                         },
4128                         _ => unreachable!() // Only `PendingHTLCRouting::Forward`s are intercepted
4129                 };
4130                 let skimmed_fee_msat =
4131                         payment.forward_info.outgoing_amt_msat.saturating_sub(amt_to_forward_msat);
4132                 let pending_htlc_info = PendingHTLCInfo {
4133                         skimmed_fee_msat: if skimmed_fee_msat == 0 { None } else { Some(skimmed_fee_msat) },
4134                         outgoing_amt_msat: amt_to_forward_msat, routing, ..payment.forward_info
4135                 };
4136
4137                 let mut per_source_pending_forward = [(
4138                         payment.prev_short_channel_id,
4139                         payment.prev_funding_outpoint,
4140                         payment.prev_user_channel_id,
4141                         vec![(pending_htlc_info, payment.prev_htlc_id)]
4142                 )];
4143                 self.forward_htlcs(&mut per_source_pending_forward);
4144                 Ok(())
4145         }
4146
4147         /// Fails the intercepted HTLC indicated by intercept_id. Should only be called in response to
4148         /// an [`HTLCIntercepted`] event. See [`ChannelManager::forward_intercepted_htlc`].
4149         ///
4150         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
4151         /// backwards.
4152         ///
4153         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
4154         pub fn fail_intercepted_htlc(&self, intercept_id: InterceptId) -> Result<(), APIError> {
4155                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4156
4157                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
4158                         .ok_or_else(|| APIError::APIMisuseError {
4159                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
4160                         })?;
4161
4162                 if let PendingHTLCRouting::Forward { short_channel_id, .. } = payment.forward_info.routing {
4163                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4164                                 short_channel_id: payment.prev_short_channel_id,
4165                                 user_channel_id: Some(payment.prev_user_channel_id),
4166                                 outpoint: payment.prev_funding_outpoint,
4167                                 htlc_id: payment.prev_htlc_id,
4168                                 incoming_packet_shared_secret: payment.forward_info.incoming_shared_secret,
4169                                 phantom_shared_secret: None,
4170                         });
4171
4172                         let failure_reason = HTLCFailReason::from_failure_code(0x4000 | 10);
4173                         let destination = HTLCDestination::UnknownNextHop { requested_forward_scid: short_channel_id };
4174                         self.fail_htlc_backwards_internal(&htlc_source, &payment.forward_info.payment_hash, &failure_reason, destination);
4175                 } else { unreachable!() } // Only `PendingHTLCRouting::Forward`s are intercepted
4176
4177                 Ok(())
4178         }
4179
4180         /// Processes HTLCs which are pending waiting on random forward delay.
4181         ///
4182         /// Should only really ever be called in response to a PendingHTLCsForwardable event.
4183         /// Will likely generate further events.
4184         pub fn process_pending_htlc_forwards(&self) {
4185                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4186
4187                 let mut new_events = VecDeque::new();
4188                 let mut failed_forwards = Vec::new();
4189                 let mut phantom_receives: Vec<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> = Vec::new();
4190                 {
4191                         let mut forward_htlcs = HashMap::new();
4192                         mem::swap(&mut forward_htlcs, &mut self.forward_htlcs.lock().unwrap());
4193
4194                         for (short_chan_id, mut pending_forwards) in forward_htlcs {
4195                                 if short_chan_id != 0 {
4196                                         macro_rules! forwarding_channel_not_found {
4197                                                 () => {
4198                                                         for forward_info in pending_forwards.drain(..) {
4199                                                                 match forward_info {
4200                                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4201                                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4202                                                                                 forward_info: PendingHTLCInfo {
4203                                                                                         routing, incoming_shared_secret, payment_hash, outgoing_amt_msat,
4204                                                                                         outgoing_cltv_value, ..
4205                                                                                 }
4206                                                                         }) => {
4207                                                                                 macro_rules! failure_handler {
4208                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr, $next_hop_unknown: expr) => {
4209                                                                                                 log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
4210
4211                                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4212                                                                                                         short_channel_id: prev_short_channel_id,
4213                                                                                                         user_channel_id: Some(prev_user_channel_id),
4214                                                                                                         outpoint: prev_funding_outpoint,
4215                                                                                                         htlc_id: prev_htlc_id,
4216                                                                                                         incoming_packet_shared_secret: incoming_shared_secret,
4217                                                                                                         phantom_shared_secret: $phantom_ss,
4218                                                                                                 });
4219
4220                                                                                                 let reason = if $next_hop_unknown {
4221                                                                                                         HTLCDestination::UnknownNextHop { requested_forward_scid: short_chan_id }
4222                                                                                                 } else {
4223                                                                                                         HTLCDestination::FailedPayment{ payment_hash }
4224                                                                                                 };
4225
4226                                                                                                 failed_forwards.push((htlc_source, payment_hash,
4227                                                                                                         HTLCFailReason::reason($err_code, $err_data),
4228                                                                                                         reason
4229                                                                                                 ));
4230                                                                                                 continue;
4231                                                                                         }
4232                                                                                 }
4233                                                                                 macro_rules! fail_forward {
4234                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
4235                                                                                                 {
4236                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, true);
4237                                                                                                 }
4238                                                                                         }
4239                                                                                 }
4240                                                                                 macro_rules! failed_payment {
4241                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
4242                                                                                                 {
4243                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, false);
4244                                                                                                 }
4245                                                                                         }
4246                                                                                 }
4247                                                                                 if let PendingHTLCRouting::Forward { onion_packet, .. } = routing {
4248                                                                                         let phantom_pubkey_res = self.node_signer.get_node_id(Recipient::PhantomNode);
4249                                                                                         if phantom_pubkey_res.is_ok() && fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, short_chan_id, &self.genesis_hash) {
4250                                                                                                 let phantom_shared_secret = self.node_signer.ecdh(Recipient::PhantomNode, &onion_packet.public_key.unwrap(), None).unwrap().secret_bytes();
4251                                                                                                 let next_hop = match onion_utils::decode_next_payment_hop(
4252                                                                                                         phantom_shared_secret, &onion_packet.hop_data, onion_packet.hmac,
4253                                                                                                         payment_hash, &self.node_signer
4254                                                                                                 ) {
4255                                                                                                         Ok(res) => res,
4256                                                                                                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
4257                                                                                                                 let sha256_of_onion = Sha256::hash(&onion_packet.hop_data).into_inner();
4258                                                                                                                 // In this scenario, the phantom would have sent us an
4259                                                                                                                 // `update_fail_malformed_htlc`, meaning here we encrypt the error as
4260                                                                                                                 // if it came from us (the second-to-last hop) but contains the sha256
4261                                                                                                                 // of the onion.
4262                                                                                                                 failed_payment!(err_msg, err_code, sha256_of_onion.to_vec(), None);
4263                                                                                                         },
4264                                                                                                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
4265                                                                                                                 failed_payment!(err_msg, err_code, Vec::new(), Some(phantom_shared_secret));
4266                                                                                                         },
4267                                                                                                 };
4268                                                                                                 match next_hop {
4269                                                                                                         onion_utils::Hop::Receive(hop_data) => {
4270                                                                                                                 match self.construct_recv_pending_htlc_info(hop_data,
4271                                                                                                                         incoming_shared_secret, payment_hash, outgoing_amt_msat,
4272                                                                                                                         outgoing_cltv_value, Some(phantom_shared_secret), false, None)
4273                                                                                                                 {
4274                                                                                                                         Ok(info) => phantom_receives.push((prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, vec![(info, prev_htlc_id)])),
4275                                                                                                                         Err(InboundOnionErr { err_code, err_data, msg }) => failed_payment!(msg, err_code, err_data, Some(phantom_shared_secret))
4276                                                                                                                 }
4277                                                                                                         },
4278                                                                                                         _ => panic!(),
4279                                                                                                 }
4280                                                                                         } else {
4281                                                                                                 fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
4282                                                                                         }
4283                                                                                 } else {
4284                                                                                         fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
4285                                                                                 }
4286                                                                         },
4287                                                                         HTLCForwardInfo::FailHTLC { .. } => {
4288                                                                                 // Channel went away before we could fail it. This implies
4289                                                                                 // the channel is now on chain and our counterparty is
4290                                                                                 // trying to broadcast the HTLC-Timeout, but that's their
4291                                                                                 // problem, not ours.
4292                                                                         }
4293                                                                 }
4294                                                         }
4295                                                 }
4296                                         }
4297                                         let (counterparty_node_id, forward_chan_id) = match self.short_to_chan_info.read().unwrap().get(&short_chan_id) {
4298                                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
4299                                                 None => {
4300                                                         forwarding_channel_not_found!();
4301                                                         continue;
4302                                                 }
4303                                         };
4304                                         let per_peer_state = self.per_peer_state.read().unwrap();
4305                                         let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
4306                                         if peer_state_mutex_opt.is_none() {
4307                                                 forwarding_channel_not_found!();
4308                                                 continue;
4309                                         }
4310                                         let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
4311                                         let peer_state = &mut *peer_state_lock;
4312                                         if let Some(ChannelPhase::Funded(ref mut chan)) = peer_state.channel_by_id.get_mut(&forward_chan_id) {
4313                                                 for forward_info in pending_forwards.drain(..) {
4314                                                         match forward_info {
4315                                                                 HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4316                                                                         prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4317                                                                         forward_info: PendingHTLCInfo {
4318                                                                                 incoming_shared_secret, payment_hash, outgoing_amt_msat, outgoing_cltv_value,
4319                                                                                 routing: PendingHTLCRouting::Forward { onion_packet, .. }, skimmed_fee_msat, ..
4320                                                                         },
4321                                                                 }) => {
4322                                                                         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);
4323                                                                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4324                                                                                 short_channel_id: prev_short_channel_id,
4325                                                                                 user_channel_id: Some(prev_user_channel_id),
4326                                                                                 outpoint: prev_funding_outpoint,
4327                                                                                 htlc_id: prev_htlc_id,
4328                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
4329                                                                                 // Phantom payments are only PendingHTLCRouting::Receive.
4330                                                                                 phantom_shared_secret: None,
4331                                                                         });
4332                                                                         if let Err(e) = chan.queue_add_htlc(outgoing_amt_msat,
4333                                                                                 payment_hash, outgoing_cltv_value, htlc_source.clone(),
4334                                                                                 onion_packet, skimmed_fee_msat, &self.fee_estimator,
4335                                                                                 &self.logger)
4336                                                                         {
4337                                                                                 if let ChannelError::Ignore(msg) = e {
4338                                                                                         log_trace!(self.logger, "Failed to forward HTLC with payment_hash {}: {}", &payment_hash, msg);
4339                                                                                 } else {
4340                                                                                         panic!("Stated return value requirements in send_htlc() were not met");
4341                                                                                 }
4342                                                                                 let (failure_code, data) = self.get_htlc_temp_fail_err_and_data(0x1000|7, short_chan_id, chan);
4343                                                                                 failed_forwards.push((htlc_source, payment_hash,
4344                                                                                         HTLCFailReason::reason(failure_code, data),
4345                                                                                         HTLCDestination::NextHopChannel { node_id: Some(chan.context.get_counterparty_node_id()), channel_id: forward_chan_id }
4346                                                                                 ));
4347                                                                                 continue;
4348                                                                         }
4349                                                                 },
4350                                                                 HTLCForwardInfo::AddHTLC { .. } => {
4351                                                                         panic!("short_channel_id != 0 should imply any pending_forward entries are of type Forward");
4352                                                                 },
4353                                                                 HTLCForwardInfo::FailHTLC { htlc_id, err_packet } => {
4354                                                                         log_trace!(self.logger, "Failing HTLC back to channel with short id {} (backward HTLC ID {}) after delay", short_chan_id, htlc_id);
4355                                                                         if let Err(e) = chan.queue_fail_htlc(
4356                                                                                 htlc_id, err_packet, &self.logger
4357                                                                         ) {
4358                                                                                 if let ChannelError::Ignore(msg) = e {
4359                                                                                         log_trace!(self.logger, "Failed to fail HTLC with ID {} backwards to short_id {}: {}", htlc_id, short_chan_id, msg);
4360                                                                                 } else {
4361                                                                                         panic!("Stated return value requirements in queue_fail_htlc() were not met");
4362                                                                                 }
4363                                                                                 // fail-backs are best-effort, we probably already have one
4364                                                                                 // pending, and if not that's OK, if not, the channel is on
4365                                                                                 // the chain and sending the HTLC-Timeout is their problem.
4366                                                                                 continue;
4367                                                                         }
4368                                                                 },
4369                                                         }
4370                                                 }
4371                                         } else {
4372                                                 forwarding_channel_not_found!();
4373                                                 continue;
4374                                         }
4375                                 } else {
4376                                         'next_forwardable_htlc: for forward_info in pending_forwards.drain(..) {
4377                                                 match forward_info {
4378                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4379                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4380                                                                 forward_info: PendingHTLCInfo {
4381                                                                         routing, incoming_shared_secret, payment_hash, incoming_amt_msat, outgoing_amt_msat,
4382                                                                         skimmed_fee_msat, ..
4383                                                                 }
4384                                                         }) => {
4385                                                                 let (cltv_expiry, onion_payload, payment_data, phantom_shared_secret, mut onion_fields) = match routing {
4386                                                                         PendingHTLCRouting::Receive { payment_data, payment_metadata, incoming_cltv_expiry, phantom_shared_secret, custom_tlvs } => {
4387                                                                                 let _legacy_hop_data = Some(payment_data.clone());
4388                                                                                 let onion_fields = RecipientOnionFields { payment_secret: Some(payment_data.payment_secret),
4389                                                                                                 payment_metadata, custom_tlvs };
4390                                                                                 (incoming_cltv_expiry, OnionPayload::Invoice { _legacy_hop_data },
4391                                                                                         Some(payment_data), phantom_shared_secret, onion_fields)
4392                                                                         },
4393                                                                         PendingHTLCRouting::ReceiveKeysend { payment_data, payment_preimage, payment_metadata, incoming_cltv_expiry, custom_tlvs } => {
4394                                                                                 let onion_fields = RecipientOnionFields {
4395                                                                                         payment_secret: payment_data.as_ref().map(|data| data.payment_secret),
4396                                                                                         payment_metadata,
4397                                                                                         custom_tlvs,
4398                                                                                 };
4399                                                                                 (incoming_cltv_expiry, OnionPayload::Spontaneous(payment_preimage),
4400                                                                                         payment_data, None, onion_fields)
4401                                                                         },
4402                                                                         _ => {
4403                                                                                 panic!("short_channel_id == 0 should imply any pending_forward entries are of type Receive");
4404                                                                         }
4405                                                                 };
4406                                                                 let claimable_htlc = ClaimableHTLC {
4407                                                                         prev_hop: HTLCPreviousHopData {
4408                                                                                 short_channel_id: prev_short_channel_id,
4409                                                                                 user_channel_id: Some(prev_user_channel_id),
4410                                                                                 outpoint: prev_funding_outpoint,
4411                                                                                 htlc_id: prev_htlc_id,
4412                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
4413                                                                                 phantom_shared_secret,
4414                                                                         },
4415                                                                         // We differentiate the received value from the sender intended value
4416                                                                         // if possible so that we don't prematurely mark MPP payments complete
4417                                                                         // if routing nodes overpay
4418                                                                         value: incoming_amt_msat.unwrap_or(outgoing_amt_msat),
4419                                                                         sender_intended_value: outgoing_amt_msat,
4420                                                                         timer_ticks: 0,
4421                                                                         total_value_received: None,
4422                                                                         total_msat: if let Some(data) = &payment_data { data.total_msat } else { outgoing_amt_msat },
4423                                                                         cltv_expiry,
4424                                                                         onion_payload,
4425                                                                         counterparty_skimmed_fee_msat: skimmed_fee_msat,
4426                                                                 };
4427
4428                                                                 let mut committed_to_claimable = false;
4429
4430                                                                 macro_rules! fail_htlc {
4431                                                                         ($htlc: expr, $payment_hash: expr) => {
4432                                                                                 debug_assert!(!committed_to_claimable);
4433                                                                                 let mut htlc_msat_height_data = $htlc.value.to_be_bytes().to_vec();
4434                                                                                 htlc_msat_height_data.extend_from_slice(
4435                                                                                         &self.best_block.read().unwrap().height().to_be_bytes(),
4436                                                                                 );
4437                                                                                 failed_forwards.push((HTLCSource::PreviousHopData(HTLCPreviousHopData {
4438                                                                                                 short_channel_id: $htlc.prev_hop.short_channel_id,
4439                                                                                                 user_channel_id: $htlc.prev_hop.user_channel_id,
4440                                                                                                 outpoint: prev_funding_outpoint,
4441                                                                                                 htlc_id: $htlc.prev_hop.htlc_id,
4442                                                                                                 incoming_packet_shared_secret: $htlc.prev_hop.incoming_packet_shared_secret,
4443                                                                                                 phantom_shared_secret,
4444                                                                                         }), payment_hash,
4445                                                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
4446                                                                                         HTLCDestination::FailedPayment { payment_hash: $payment_hash },
4447                                                                                 ));
4448                                                                                 continue 'next_forwardable_htlc;
4449                                                                         }
4450                                                                 }
4451                                                                 let phantom_shared_secret = claimable_htlc.prev_hop.phantom_shared_secret;
4452                                                                 let mut receiver_node_id = self.our_network_pubkey;
4453                                                                 if phantom_shared_secret.is_some() {
4454                                                                         receiver_node_id = self.node_signer.get_node_id(Recipient::PhantomNode)
4455                                                                                 .expect("Failed to get node_id for phantom node recipient");
4456                                                                 }
4457
4458                                                                 macro_rules! check_total_value {
4459                                                                         ($purpose: expr) => {{
4460                                                                                 let mut payment_claimable_generated = false;
4461                                                                                 let is_keysend = match $purpose {
4462                                                                                         events::PaymentPurpose::SpontaneousPayment(_) => true,
4463                                                                                         events::PaymentPurpose::InvoicePayment { .. } => false,
4464                                                                                 };
4465                                                                                 let mut claimable_payments = self.claimable_payments.lock().unwrap();
4466                                                                                 if claimable_payments.pending_claiming_payments.contains_key(&payment_hash) {
4467                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4468                                                                                 }
4469                                                                                 let ref mut claimable_payment = claimable_payments.claimable_payments
4470                                                                                         .entry(payment_hash)
4471                                                                                         // Note that if we insert here we MUST NOT fail_htlc!()
4472                                                                                         .or_insert_with(|| {
4473                                                                                                 committed_to_claimable = true;
4474                                                                                                 ClaimablePayment {
4475                                                                                                         purpose: $purpose.clone(), htlcs: Vec::new(), onion_fields: None,
4476                                                                                                 }
4477                                                                                         });
4478                                                                                 if $purpose != claimable_payment.purpose {
4479                                                                                         let log_keysend = |keysend| if keysend { "keysend" } else { "non-keysend" };
4480                                                                                         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));
4481                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4482                                                                                 }
4483                                                                                 if !self.default_configuration.accept_mpp_keysend && is_keysend && !claimable_payment.htlcs.is_empty() {
4484                                                                                         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);
4485                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4486                                                                                 }
4487                                                                                 if let Some(earlier_fields) = &mut claimable_payment.onion_fields {
4488                                                                                         if earlier_fields.check_merge(&mut onion_fields).is_err() {
4489                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4490                                                                                         }
4491                                                                                 } else {
4492                                                                                         claimable_payment.onion_fields = Some(onion_fields);
4493                                                                                 }
4494                                                                                 let ref mut htlcs = &mut claimable_payment.htlcs;
4495                                                                                 let mut total_value = claimable_htlc.sender_intended_value;
4496                                                                                 let mut earliest_expiry = claimable_htlc.cltv_expiry;
4497                                                                                 for htlc in htlcs.iter() {
4498                                                                                         total_value += htlc.sender_intended_value;
4499                                                                                         earliest_expiry = cmp::min(earliest_expiry, htlc.cltv_expiry);
4500                                                                                         if htlc.total_msat != claimable_htlc.total_msat {
4501                                                                                                 log_trace!(self.logger, "Failing HTLCs with payment_hash {} as the HTLCs had inconsistent total values (eg {} and {})",
4502                                                                                                         &payment_hash, claimable_htlc.total_msat, htlc.total_msat);
4503                                                                                                 total_value = msgs::MAX_VALUE_MSAT;
4504                                                                                         }
4505                                                                                         if total_value >= msgs::MAX_VALUE_MSAT { break; }
4506                                                                                 }
4507                                                                                 // The condition determining whether an MPP is complete must
4508                                                                                 // match exactly the condition used in `timer_tick_occurred`
4509                                                                                 if total_value >= msgs::MAX_VALUE_MSAT {
4510                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4511                                                                                 } else if total_value - claimable_htlc.sender_intended_value >= claimable_htlc.total_msat {
4512                                                                                         log_trace!(self.logger, "Failing HTLC with payment_hash {} as payment is already claimable",
4513                                                                                                 &payment_hash);
4514                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4515                                                                                 } else if total_value >= claimable_htlc.total_msat {
4516                                                                                         #[allow(unused_assignments)] {
4517                                                                                                 committed_to_claimable = true;
4518                                                                                         }
4519                                                                                         let prev_channel_id = prev_funding_outpoint.to_channel_id();
4520                                                                                         htlcs.push(claimable_htlc);
4521                                                                                         let amount_msat = htlcs.iter().map(|htlc| htlc.value).sum();
4522                                                                                         htlcs.iter_mut().for_each(|htlc| htlc.total_value_received = Some(amount_msat));
4523                                                                                         let counterparty_skimmed_fee_msat = htlcs.iter()
4524                                                                                                 .map(|htlc| htlc.counterparty_skimmed_fee_msat.unwrap_or(0)).sum();
4525                                                                                         debug_assert!(total_value.saturating_sub(amount_msat) <=
4526                                                                                                 counterparty_skimmed_fee_msat);
4527                                                                                         new_events.push_back((events::Event::PaymentClaimable {
4528                                                                                                 receiver_node_id: Some(receiver_node_id),
4529                                                                                                 payment_hash,
4530                                                                                                 purpose: $purpose,
4531                                                                                                 amount_msat,
4532                                                                                                 counterparty_skimmed_fee_msat,
4533                                                                                                 via_channel_id: Some(prev_channel_id),
4534                                                                                                 via_user_channel_id: Some(prev_user_channel_id),
4535                                                                                                 claim_deadline: Some(earliest_expiry - HTLC_FAIL_BACK_BUFFER),
4536                                                                                                 onion_fields: claimable_payment.onion_fields.clone(),
4537                                                                                         }, None));
4538                                                                                         payment_claimable_generated = true;
4539                                                                                 } else {
4540                                                                                         // Nothing to do - we haven't reached the total
4541                                                                                         // payment value yet, wait until we receive more
4542                                                                                         // MPP parts.
4543                                                                                         htlcs.push(claimable_htlc);
4544                                                                                         #[allow(unused_assignments)] {
4545                                                                                                 committed_to_claimable = true;
4546                                                                                         }
4547                                                                                 }
4548                                                                                 payment_claimable_generated
4549                                                                         }}
4550                                                                 }
4551
4552                                                                 // Check that the payment hash and secret are known. Note that we
4553                                                                 // MUST take care to handle the "unknown payment hash" and
4554                                                                 // "incorrect payment secret" cases here identically or we'd expose
4555                                                                 // that we are the ultimate recipient of the given payment hash.
4556                                                                 // Further, we must not expose whether we have any other HTLCs
4557                                                                 // associated with the same payment_hash pending or not.
4558                                                                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
4559                                                                 match payment_secrets.entry(payment_hash) {
4560                                                                         hash_map::Entry::Vacant(_) => {
4561                                                                                 match claimable_htlc.onion_payload {
4562                                                                                         OnionPayload::Invoice { .. } => {
4563                                                                                                 let payment_data = payment_data.unwrap();
4564                                                                                                 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) {
4565                                                                                                         Ok(result) => result,
4566                                                                                                         Err(()) => {
4567                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as payment verification failed", &payment_hash);
4568                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4569                                                                                                         }
4570                                                                                                 };
4571                                                                                                 if let Some(min_final_cltv_expiry_delta) = min_final_cltv_expiry_delta {
4572                                                                                                         let expected_min_expiry_height = (self.current_best_block().height() + min_final_cltv_expiry_delta as u32) as u64;
4573                                                                                                         if (cltv_expiry as u64) < expected_min_expiry_height {
4574                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as its CLTV expiry was too soon (had {}, earliest expected {})",
4575                                                                                                                         &payment_hash, cltv_expiry, expected_min_expiry_height);
4576                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4577                                                                                                         }
4578                                                                                                 }
4579                                                                                                 let purpose = events::PaymentPurpose::InvoicePayment {
4580                                                                                                         payment_preimage: payment_preimage.clone(),
4581                                                                                                         payment_secret: payment_data.payment_secret,
4582                                                                                                 };
4583                                                                                                 check_total_value!(purpose);
4584                                                                                         },
4585                                                                                         OnionPayload::Spontaneous(preimage) => {
4586                                                                                                 let purpose = events::PaymentPurpose::SpontaneousPayment(preimage);
4587                                                                                                 check_total_value!(purpose);
4588                                                                                         }
4589                                                                                 }
4590                                                                         },
4591                                                                         hash_map::Entry::Occupied(inbound_payment) => {
4592                                                                                 if let OnionPayload::Spontaneous(_) = claimable_htlc.onion_payload {
4593                                                                                         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);
4594                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4595                                                                                 }
4596                                                                                 let payment_data = payment_data.unwrap();
4597                                                                                 if inbound_payment.get().payment_secret != payment_data.payment_secret {
4598                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our expected payment secret.", &payment_hash);
4599                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4600                                                                                 } else if inbound_payment.get().min_value_msat.is_some() && payment_data.total_msat < inbound_payment.get().min_value_msat.unwrap() {
4601                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our minimum value (had {}, needed {}).",
4602                                                                                                 &payment_hash, payment_data.total_msat, inbound_payment.get().min_value_msat.unwrap());
4603                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4604                                                                                 } else {
4605                                                                                         let purpose = events::PaymentPurpose::InvoicePayment {
4606                                                                                                 payment_preimage: inbound_payment.get().payment_preimage,
4607                                                                                                 payment_secret: payment_data.payment_secret,
4608                                                                                         };
4609                                                                                         let payment_claimable_generated = check_total_value!(purpose);
4610                                                                                         if payment_claimable_generated {
4611                                                                                                 inbound_payment.remove_entry();
4612                                                                                         }
4613                                                                                 }
4614                                                                         },
4615                                                                 };
4616                                                         },
4617                                                         HTLCForwardInfo::FailHTLC { .. } => {
4618                                                                 panic!("Got pending fail of our own HTLC");
4619                                                         }
4620                                                 }
4621                                         }
4622                                 }
4623                         }
4624                 }
4625
4626                 let best_block_height = self.best_block.read().unwrap().height();
4627                 self.pending_outbound_payments.check_retry_payments(&self.router, || self.list_usable_channels(),
4628                         || self.compute_inflight_htlcs(), &self.entropy_source, &self.node_signer, best_block_height,
4629                         &self.pending_events, &self.logger, |args| self.send_payment_along_path(args));
4630
4631                 for (htlc_source, payment_hash, failure_reason, destination) in failed_forwards.drain(..) {
4632                         self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
4633                 }
4634                 self.forward_htlcs(&mut phantom_receives);
4635
4636                 // Freeing the holding cell here is relatively redundant - in practice we'll do it when we
4637                 // next get a `get_and_clear_pending_msg_events` call, but some tests rely on it, and it's
4638                 // nice to do the work now if we can rather than while we're trying to get messages in the
4639                 // network stack.
4640                 self.check_free_holding_cells();
4641
4642                 if new_events.is_empty() { return }
4643                 let mut events = self.pending_events.lock().unwrap();
4644                 events.append(&mut new_events);
4645         }
4646
4647         /// Free the background events, generally called from [`PersistenceNotifierGuard`] constructors.
4648         ///
4649         /// Expects the caller to have a total_consistency_lock read lock.
4650         fn process_background_events(&self) -> NotifyOption {
4651                 debug_assert_ne!(self.total_consistency_lock.held_by_thread(), LockHeldState::NotHeldByThread);
4652
4653                 self.background_events_processed_since_startup.store(true, Ordering::Release);
4654
4655                 let mut background_events = Vec::new();
4656                 mem::swap(&mut *self.pending_background_events.lock().unwrap(), &mut background_events);
4657                 if background_events.is_empty() {
4658                         return NotifyOption::SkipPersistNoEvents;
4659                 }
4660
4661                 for event in background_events.drain(..) {
4662                         match event {
4663                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((funding_txo, update)) => {
4664                                         // The channel has already been closed, so no use bothering to care about the
4665                                         // monitor updating completing.
4666                                         let _ = self.chain_monitor.update_channel(funding_txo, &update);
4667                                 },
4668                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup { counterparty_node_id, funding_txo, update } => {
4669                                         let mut updated_chan = false;
4670                                         {
4671                                                 let per_peer_state = self.per_peer_state.read().unwrap();
4672                                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
4673                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4674                                                         let peer_state = &mut *peer_state_lock;
4675                                                         match peer_state.channel_by_id.entry(funding_txo.to_channel_id()) {
4676                                                                 hash_map::Entry::Occupied(mut chan_phase) => {
4677                                                                         if let ChannelPhase::Funded(chan) = chan_phase.get_mut() {
4678                                                                                 updated_chan = true;
4679                                                                                 handle_new_monitor_update!(self, funding_txo, update.clone(),
4680                                                                                         peer_state_lock, peer_state, per_peer_state, chan);
4681                                                                         } else {
4682                                                                                 debug_assert!(false, "We shouldn't have an update for a non-funded channel");
4683                                                                         }
4684                                                                 },
4685                                                                 hash_map::Entry::Vacant(_) => {},
4686                                                         }
4687                                                 }
4688                                         }
4689                                         if !updated_chan {
4690                                                 // TODO: Track this as in-flight even though the channel is closed.
4691                                                 let _ = self.chain_monitor.update_channel(funding_txo, &update);
4692                                         }
4693                                 },
4694                                 BackgroundEvent::MonitorUpdatesComplete { counterparty_node_id, channel_id } => {
4695                                         let per_peer_state = self.per_peer_state.read().unwrap();
4696                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
4697                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4698                                                 let peer_state = &mut *peer_state_lock;
4699                                                 if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&channel_id) {
4700                                                         handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, chan);
4701                                                 } else {
4702                                                         let update_actions = peer_state.monitor_update_blocked_actions
4703                                                                 .remove(&channel_id).unwrap_or(Vec::new());
4704                                                         mem::drop(peer_state_lock);
4705                                                         mem::drop(per_peer_state);
4706                                                         self.handle_monitor_update_completion_actions(update_actions);
4707                                                 }
4708                                         }
4709                                 },
4710                         }
4711                 }
4712                 NotifyOption::DoPersist
4713         }
4714
4715         #[cfg(any(test, feature = "_test_utils"))]
4716         /// Process background events, for functional testing
4717         pub fn test_process_background_events(&self) {
4718                 let _lck = self.total_consistency_lock.read().unwrap();
4719                 let _ = self.process_background_events();
4720         }
4721
4722         fn update_channel_fee(&self, chan_id: &ChannelId, chan: &mut Channel<SP>, new_feerate: u32) -> NotifyOption {
4723                 if !chan.context.is_outbound() { return NotifyOption::SkipPersistNoEvents; }
4724                 // If the feerate has decreased by less than half, don't bother
4725                 if new_feerate <= chan.context.get_feerate_sat_per_1000_weight() && new_feerate * 2 > chan.context.get_feerate_sat_per_1000_weight() {
4726                         log_trace!(self.logger, "Channel {} does not qualify for a feerate change from {} to {}.",
4727                                 chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4728                         return NotifyOption::SkipPersistNoEvents;
4729                 }
4730                 if !chan.context.is_live() {
4731                         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).",
4732                                 chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4733                         return NotifyOption::SkipPersistNoEvents;
4734                 }
4735                 log_trace!(self.logger, "Channel {} qualifies for a feerate change from {} to {}.",
4736                         &chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4737
4738                 chan.queue_update_fee(new_feerate, &self.fee_estimator, &self.logger);
4739                 NotifyOption::DoPersist
4740         }
4741
4742         #[cfg(fuzzing)]
4743         /// In chanmon_consistency we want to sometimes do the channel fee updates done in
4744         /// timer_tick_occurred, but we can't generate the disabled channel updates as it considers
4745         /// these a fuzz failure (as they usually indicate a channel force-close, which is exactly what
4746         /// it wants to detect). Thus, we have a variant exposed here for its benefit.
4747         pub fn maybe_update_chan_fees(&self) {
4748                 PersistenceNotifierGuard::optionally_notify(self, || {
4749                         let mut should_persist = NotifyOption::SkipPersistNoEvents;
4750
4751                         let normal_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
4752                         let min_mempool_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::MempoolMinimum);
4753
4754                         let per_peer_state = self.per_peer_state.read().unwrap();
4755                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
4756                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4757                                 let peer_state = &mut *peer_state_lock;
4758                                 for (chan_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
4759                                         |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
4760                                 ) {
4761                                         let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
4762                                                 min_mempool_feerate
4763                                         } else {
4764                                                 normal_feerate
4765                                         };
4766                                         let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4767                                         if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4768                                 }
4769                         }
4770
4771                         should_persist
4772                 });
4773         }
4774
4775         /// Performs actions which should happen on startup and roughly once per minute thereafter.
4776         ///
4777         /// This currently includes:
4778         ///  * Increasing or decreasing the on-chain feerate estimates for our outbound channels,
4779         ///  * Broadcasting [`ChannelUpdate`] messages if we've been disconnected from our peer for more
4780         ///    than a minute, informing the network that they should no longer attempt to route over
4781         ///    the channel.
4782         ///  * Expiring a channel's previous [`ChannelConfig`] if necessary to only allow forwarding HTLCs
4783         ///    with the current [`ChannelConfig`].
4784         ///  * Removing peers which have disconnected but and no longer have any channels.
4785         ///  * Force-closing and removing channels which have not completed establishment in a timely manner.
4786         ///
4787         /// Note that this may cause reentrancy through [`chain::Watch::update_channel`] calls or feerate
4788         /// estimate fetches.
4789         ///
4790         /// [`ChannelUpdate`]: msgs::ChannelUpdate
4791         /// [`ChannelConfig`]: crate::util::config::ChannelConfig
4792         pub fn timer_tick_occurred(&self) {
4793                 PersistenceNotifierGuard::optionally_notify(self, || {
4794                         let mut should_persist = NotifyOption::SkipPersistNoEvents;
4795
4796                         let normal_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
4797                         let min_mempool_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::MempoolMinimum);
4798
4799                         let mut handle_errors: Vec<(Result<(), _>, _)> = Vec::new();
4800                         let mut timed_out_mpp_htlcs = Vec::new();
4801                         let mut pending_peers_awaiting_removal = Vec::new();
4802                         let mut shutdown_channels = Vec::new();
4803
4804                         let mut process_unfunded_channel_tick = |
4805                                 chan_id: &ChannelId,
4806                                 context: &mut ChannelContext<SP>,
4807                                 unfunded_context: &mut UnfundedChannelContext,
4808                                 pending_msg_events: &mut Vec<MessageSendEvent>,
4809                                 counterparty_node_id: PublicKey,
4810                         | {
4811                                 context.maybe_expire_prev_config();
4812                                 if unfunded_context.should_expire_unfunded_channel() {
4813                                         log_error!(self.logger,
4814                                                 "Force-closing pending channel with ID {} for not establishing in a timely manner", chan_id);
4815                                         update_maps_on_chan_removal!(self, &context);
4816                                         self.issue_channel_close_events(&context, ClosureReason::HolderForceClosed);
4817                                         shutdown_channels.push(context.force_shutdown(false));
4818                                         pending_msg_events.push(MessageSendEvent::HandleError {
4819                                                 node_id: counterparty_node_id,
4820                                                 action: msgs::ErrorAction::SendErrorMessage {
4821                                                         msg: msgs::ErrorMessage {
4822                                                                 channel_id: *chan_id,
4823                                                                 data: "Force-closing pending channel due to timeout awaiting establishment handshake".to_owned(),
4824                                                         },
4825                                                 },
4826                                         });
4827                                         false
4828                                 } else {
4829                                         true
4830                                 }
4831                         };
4832
4833                         {
4834                                 let per_peer_state = self.per_peer_state.read().unwrap();
4835                                 for (counterparty_node_id, peer_state_mutex) in per_peer_state.iter() {
4836                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4837                                         let peer_state = &mut *peer_state_lock;
4838                                         let pending_msg_events = &mut peer_state.pending_msg_events;
4839                                         let counterparty_node_id = *counterparty_node_id;
4840                                         peer_state.channel_by_id.retain(|chan_id, phase| {
4841                                                 match phase {
4842                                                         ChannelPhase::Funded(chan) => {
4843                                                                 let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
4844                                                                         min_mempool_feerate
4845                                                                 } else {
4846                                                                         normal_feerate
4847                                                                 };
4848                                                                 let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4849                                                                 if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4850
4851                                                                 if let Err(e) = chan.timer_check_closing_negotiation_progress() {
4852                                                                         let (needs_close, err) = convert_chan_phase_err!(self, e, chan, chan_id, FUNDED_CHANNEL);
4853                                                                         handle_errors.push((Err(err), counterparty_node_id));
4854                                                                         if needs_close { return false; }
4855                                                                 }
4856
4857                                                                 match chan.channel_update_status() {
4858                                                                         ChannelUpdateStatus::Enabled if !chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(0)),
4859                                                                         ChannelUpdateStatus::Disabled if chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(0)),
4860                                                                         ChannelUpdateStatus::DisabledStaged(_) if chan.context.is_live()
4861                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Enabled),
4862                                                                         ChannelUpdateStatus::EnabledStaged(_) if !chan.context.is_live()
4863                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Disabled),
4864                                                                         ChannelUpdateStatus::DisabledStaged(mut n) if !chan.context.is_live() => {
4865                                                                                 n += 1;
4866                                                                                 if n >= DISABLE_GOSSIP_TICKS {
4867                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Disabled);
4868                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4869                                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4870                                                                                                         msg: update
4871                                                                                                 });
4872                                                                                         }
4873                                                                                         should_persist = NotifyOption::DoPersist;
4874                                                                                 } else {
4875                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(n));
4876                                                                                 }
4877                                                                         },
4878                                                                         ChannelUpdateStatus::EnabledStaged(mut n) if chan.context.is_live() => {
4879                                                                                 n += 1;
4880                                                                                 if n >= ENABLE_GOSSIP_TICKS {
4881                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Enabled);
4882                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4883                                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4884                                                                                                         msg: update
4885                                                                                                 });
4886                                                                                         }
4887                                                                                         should_persist = NotifyOption::DoPersist;
4888                                                                                 } else {
4889                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(n));
4890                                                                                 }
4891                                                                         },
4892                                                                         _ => {},
4893                                                                 }
4894
4895                                                                 chan.context.maybe_expire_prev_config();
4896
4897                                                                 if chan.should_disconnect_peer_awaiting_response() {
4898                                                                         log_debug!(self.logger, "Disconnecting peer {} due to not making any progress on channel {}",
4899                                                                                         counterparty_node_id, chan_id);
4900                                                                         pending_msg_events.push(MessageSendEvent::HandleError {
4901                                                                                 node_id: counterparty_node_id,
4902                                                                                 action: msgs::ErrorAction::DisconnectPeerWithWarning {
4903                                                                                         msg: msgs::WarningMessage {
4904                                                                                                 channel_id: *chan_id,
4905                                                                                                 data: "Disconnecting due to timeout awaiting response".to_owned(),
4906                                                                                         },
4907                                                                                 },
4908                                                                         });
4909                                                                 }
4910
4911                                                                 true
4912                                                         },
4913                                                         ChannelPhase::UnfundedInboundV1(chan) => {
4914                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
4915                                                                         pending_msg_events, counterparty_node_id)
4916                                                         },
4917                                                         ChannelPhase::UnfundedOutboundV1(chan) => {
4918                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
4919                                                                         pending_msg_events, counterparty_node_id)
4920                                                         },
4921                                                 }
4922                                         });
4923
4924                                         for (chan_id, req) in peer_state.inbound_channel_request_by_id.iter_mut() {
4925                                                 if { req.ticks_remaining -= 1 ; req.ticks_remaining } <= 0 {
4926                                                         log_error!(self.logger, "Force-closing unaccepted inbound channel {} for not accepting in a timely manner", &chan_id);
4927                                                         peer_state.pending_msg_events.push(
4928                                                                 events::MessageSendEvent::HandleError {
4929                                                                         node_id: counterparty_node_id,
4930                                                                         action: msgs::ErrorAction::SendErrorMessage {
4931                                                                                 msg: msgs::ErrorMessage { channel_id: chan_id.clone(), data: "Channel force-closed".to_owned() }
4932                                                                         },
4933                                                                 }
4934                                                         );
4935                                                 }
4936                                         }
4937                                         peer_state.inbound_channel_request_by_id.retain(|_, req| req.ticks_remaining > 0);
4938
4939                                         if peer_state.ok_to_remove(true) {
4940                                                 pending_peers_awaiting_removal.push(counterparty_node_id);
4941                                         }
4942                                 }
4943                         }
4944
4945                         // When a peer disconnects but still has channels, the peer's `peer_state` entry in the
4946                         // `per_peer_state` is not removed by the `peer_disconnected` function. If the channels
4947                         // of to that peer is later closed while still being disconnected (i.e. force closed),
4948                         // we therefore need to remove the peer from `peer_state` separately.
4949                         // To avoid having to take the `per_peer_state` `write` lock once the channels are
4950                         // closed, we instead remove such peers awaiting removal here on a timer, to limit the
4951                         // negative effects on parallelism as much as possible.
4952                         if pending_peers_awaiting_removal.len() > 0 {
4953                                 let mut per_peer_state = self.per_peer_state.write().unwrap();
4954                                 for counterparty_node_id in pending_peers_awaiting_removal {
4955                                         match per_peer_state.entry(counterparty_node_id) {
4956                                                 hash_map::Entry::Occupied(entry) => {
4957                                                         // Remove the entry if the peer is still disconnected and we still
4958                                                         // have no channels to the peer.
4959                                                         let remove_entry = {
4960                                                                 let peer_state = entry.get().lock().unwrap();
4961                                                                 peer_state.ok_to_remove(true)
4962                                                         };
4963                                                         if remove_entry {
4964                                                                 entry.remove_entry();
4965                                                         }
4966                                                 },
4967                                                 hash_map::Entry::Vacant(_) => { /* The PeerState has already been removed */ }
4968                                         }
4969                                 }
4970                         }
4971
4972                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
4973                                 if payment.htlcs.is_empty() {
4974                                         // This should be unreachable
4975                                         debug_assert!(false);
4976                                         return false;
4977                                 }
4978                                 if let OnionPayload::Invoice { .. } = payment.htlcs[0].onion_payload {
4979                                         // Check if we've received all the parts we need for an MPP (the value of the parts adds to total_msat).
4980                                         // In this case we're not going to handle any timeouts of the parts here.
4981                                         // This condition determining whether the MPP is complete here must match
4982                                         // exactly the condition used in `process_pending_htlc_forwards`.
4983                                         if payment.htlcs[0].total_msat <= payment.htlcs.iter()
4984                                                 .fold(0, |total, htlc| total + htlc.sender_intended_value)
4985                                         {
4986                                                 return true;
4987                                         } else if payment.htlcs.iter_mut().any(|htlc| {
4988                                                 htlc.timer_ticks += 1;
4989                                                 return htlc.timer_ticks >= MPP_TIMEOUT_TICKS
4990                                         }) {
4991                                                 timed_out_mpp_htlcs.extend(payment.htlcs.drain(..)
4992                                                         .map(|htlc: ClaimableHTLC| (htlc.prev_hop, *payment_hash)));
4993                                                 return false;
4994                                         }
4995                                 }
4996                                 true
4997                         });
4998
4999                         for htlc_source in timed_out_mpp_htlcs.drain(..) {
5000                                 let source = HTLCSource::PreviousHopData(htlc_source.0.clone());
5001                                 let reason = HTLCFailReason::from_failure_code(23);
5002                                 let receiver = HTLCDestination::FailedPayment { payment_hash: htlc_source.1 };
5003                                 self.fail_htlc_backwards_internal(&source, &htlc_source.1, &reason, receiver);
5004                         }
5005
5006                         for (err, counterparty_node_id) in handle_errors.drain(..) {
5007                                 let _ = handle_error!(self, err, counterparty_node_id);
5008                         }
5009
5010                         for shutdown_res in shutdown_channels {
5011                                 self.finish_close_channel(shutdown_res);
5012                         }
5013
5014                         self.pending_outbound_payments.remove_stale_payments(&self.pending_events);
5015
5016                         // Technically we don't need to do this here, but if we have holding cell entries in a
5017                         // channel that need freeing, it's better to do that here and block a background task
5018                         // than block the message queueing pipeline.
5019                         if self.check_free_holding_cells() {
5020                                 should_persist = NotifyOption::DoPersist;
5021                         }
5022
5023                         should_persist
5024                 });
5025         }
5026
5027         /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
5028         /// after a PaymentClaimable event, failing the HTLC back to its origin and freeing resources
5029         /// along the path (including in our own channel on which we received it).
5030         ///
5031         /// Note that in some cases around unclean shutdown, it is possible the payment may have
5032         /// already been claimed by you via [`ChannelManager::claim_funds`] prior to you seeing (a
5033         /// second copy of) the [`events::Event::PaymentClaimable`] event. Alternatively, the payment
5034         /// may have already been failed automatically by LDK if it was nearing its expiration time.
5035         ///
5036         /// While LDK will never claim a payment automatically on your behalf (i.e. without you calling
5037         /// [`ChannelManager::claim_funds`]), you should still monitor for
5038         /// [`events::Event::PaymentClaimed`] events even for payments you intend to fail, especially on
5039         /// startup during which time claims that were in-progress at shutdown may be replayed.
5040         pub fn fail_htlc_backwards(&self, payment_hash: &PaymentHash) {
5041                 self.fail_htlc_backwards_with_reason(payment_hash, FailureCode::IncorrectOrUnknownPaymentDetails);
5042         }
5043
5044         /// This is a variant of [`ChannelManager::fail_htlc_backwards`] that allows you to specify the
5045         /// reason for the failure.
5046         ///
5047         /// See [`FailureCode`] for valid failure codes.
5048         pub fn fail_htlc_backwards_with_reason(&self, payment_hash: &PaymentHash, failure_code: FailureCode) {
5049                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5050
5051                 let removed_source = self.claimable_payments.lock().unwrap().claimable_payments.remove(payment_hash);
5052                 if let Some(payment) = removed_source {
5053                         for htlc in payment.htlcs {
5054                                 let reason = self.get_htlc_fail_reason_from_failure_code(failure_code, &htlc);
5055                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
5056                                 let receiver = HTLCDestination::FailedPayment { payment_hash: *payment_hash };
5057                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
5058                         }
5059                 }
5060         }
5061
5062         /// Gets error data to form an [`HTLCFailReason`] given a [`FailureCode`] and [`ClaimableHTLC`].
5063         fn get_htlc_fail_reason_from_failure_code(&self, failure_code: FailureCode, htlc: &ClaimableHTLC) -> HTLCFailReason {
5064                 match failure_code {
5065                         FailureCode::TemporaryNodeFailure => HTLCFailReason::from_failure_code(failure_code.into()),
5066                         FailureCode::RequiredNodeFeatureMissing => HTLCFailReason::from_failure_code(failure_code.into()),
5067                         FailureCode::IncorrectOrUnknownPaymentDetails => {
5068                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
5069                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
5070                                 HTLCFailReason::reason(failure_code.into(), htlc_msat_height_data)
5071                         },
5072                         FailureCode::InvalidOnionPayload(data) => {
5073                                 let fail_data = match data {
5074                                         Some((typ, offset)) => [BigSize(typ).encode(), offset.encode()].concat(),
5075                                         None => Vec::new(),
5076                                 };
5077                                 HTLCFailReason::reason(failure_code.into(), fail_data)
5078                         }
5079                 }
5080         }
5081
5082         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
5083         /// that we want to return and a channel.
5084         ///
5085         /// This is for failures on the channel on which the HTLC was *received*, not failures
5086         /// forwarding
5087         fn get_htlc_inbound_temp_fail_err_and_data(&self, desired_err_code: u16, chan: &Channel<SP>) -> (u16, Vec<u8>) {
5088                 // We can't be sure what SCID was used when relaying inbound towards us, so we have to
5089                 // guess somewhat. If its a public channel, we figure best to just use the real SCID (as
5090                 // we're not leaking that we have a channel with the counterparty), otherwise we try to use
5091                 // an inbound SCID alias before the real SCID.
5092                 let scid_pref = if chan.context.should_announce() {
5093                         chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias())
5094                 } else {
5095                         chan.context.latest_inbound_scid_alias().or(chan.context.get_short_channel_id())
5096                 };
5097                 if let Some(scid) = scid_pref {
5098                         self.get_htlc_temp_fail_err_and_data(desired_err_code, scid, chan)
5099                 } else {
5100                         (0x4000|10, Vec::new())
5101                 }
5102         }
5103
5104
5105         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
5106         /// that we want to return and a channel.
5107         fn get_htlc_temp_fail_err_and_data(&self, desired_err_code: u16, scid: u64, chan: &Channel<SP>) -> (u16, Vec<u8>) {
5108                 debug_assert_eq!(desired_err_code & 0x1000, 0x1000);
5109                 if let Ok(upd) = self.get_channel_update_for_onion(scid, chan) {
5110                         let mut enc = VecWriter(Vec::with_capacity(upd.serialized_length() + 6));
5111                         if desired_err_code == 0x1000 | 20 {
5112                                 // No flags for `disabled_flags` are currently defined so they're always two zero bytes.
5113                                 // See https://github.com/lightning/bolts/blob/341ec84/04-onion-routing.md?plain=1#L1008
5114                                 0u16.write(&mut enc).expect("Writes cannot fail");
5115                         }
5116                         (upd.serialized_length() as u16 + 2).write(&mut enc).expect("Writes cannot fail");
5117                         msgs::ChannelUpdate::TYPE.write(&mut enc).expect("Writes cannot fail");
5118                         upd.write(&mut enc).expect("Writes cannot fail");
5119                         (desired_err_code, enc.0)
5120                 } else {
5121                         // If we fail to get a unicast channel_update, it implies we don't yet have an SCID,
5122                         // which means we really shouldn't have gotten a payment to be forwarded over this
5123                         // channel yet, or if we did it's from a route hint. Either way, returning an error of
5124                         // PERM|no_such_channel should be fine.
5125                         (0x4000|10, Vec::new())
5126                 }
5127         }
5128
5129         // Fail a list of HTLCs that were just freed from the holding cell. The HTLCs need to be
5130         // failed backwards or, if they were one of our outgoing HTLCs, then their failure needs to
5131         // be surfaced to the user.
5132         fn fail_holding_cell_htlcs(
5133                 &self, mut htlcs_to_fail: Vec<(HTLCSource, PaymentHash)>, channel_id: ChannelId,
5134                 counterparty_node_id: &PublicKey
5135         ) {
5136                 let (failure_code, onion_failure_data) = {
5137                         let per_peer_state = self.per_peer_state.read().unwrap();
5138                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
5139                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5140                                 let peer_state = &mut *peer_state_lock;
5141                                 match peer_state.channel_by_id.entry(channel_id) {
5142                                         hash_map::Entry::Occupied(chan_phase_entry) => {
5143                                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get() {
5144                                                         self.get_htlc_inbound_temp_fail_err_and_data(0x1000|7, &chan)
5145                                                 } else {
5146                                                         // We shouldn't be trying to fail holding cell HTLCs on an unfunded channel.
5147                                                         debug_assert!(false);
5148                                                         (0x4000|10, Vec::new())
5149                                                 }
5150                                         },
5151                                         hash_map::Entry::Vacant(_) => (0x4000|10, Vec::new())
5152                                 }
5153                         } else { (0x4000|10, Vec::new()) }
5154                 };
5155
5156                 for (htlc_src, payment_hash) in htlcs_to_fail.drain(..) {
5157                         let reason = HTLCFailReason::reason(failure_code, onion_failure_data.clone());
5158                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id };
5159                         self.fail_htlc_backwards_internal(&htlc_src, &payment_hash, &reason, receiver);
5160                 }
5161         }
5162
5163         /// Fails an HTLC backwards to the sender of it to us.
5164         /// Note that we do not assume that channels corresponding to failed HTLCs are still available.
5165         fn fail_htlc_backwards_internal(&self, source: &HTLCSource, payment_hash: &PaymentHash, onion_error: &HTLCFailReason, destination: HTLCDestination) {
5166                 // Ensure that no peer state channel storage lock is held when calling this function.
5167                 // This ensures that future code doesn't introduce a lock-order requirement for
5168                 // `forward_htlcs` to be locked after the `per_peer_state` peer locks, which calling
5169                 // this function with any `per_peer_state` peer lock acquired would.
5170                 #[cfg(debug_assertions)]
5171                 for (_, peer) in self.per_peer_state.read().unwrap().iter() {
5172                         debug_assert_ne!(peer.held_by_thread(), LockHeldState::HeldByThread);
5173                 }
5174
5175                 //TODO: There is a timing attack here where if a node fails an HTLC back to us they can
5176                 //identify whether we sent it or not based on the (I presume) very different runtime
5177                 //between the branches here. We should make this async and move it into the forward HTLCs
5178                 //timer handling.
5179
5180                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
5181                 // from block_connected which may run during initialization prior to the chain_monitor
5182                 // being fully configured. See the docs for `ChannelManagerReadArgs` for more.
5183                 match source {
5184                         HTLCSource::OutboundRoute { ref path, ref session_priv, ref payment_id, .. } => {
5185                                 if self.pending_outbound_payments.fail_htlc(source, payment_hash, onion_error, path,
5186                                         session_priv, payment_id, self.probing_cookie_secret, &self.secp_ctx,
5187                                         &self.pending_events, &self.logger)
5188                                 { self.push_pending_forwards_ev(); }
5189                         },
5190                         HTLCSource::PreviousHopData(HTLCPreviousHopData { ref short_channel_id, ref htlc_id, ref incoming_packet_shared_secret, ref phantom_shared_secret, ref outpoint, .. }) => {
5191                                 log_trace!(self.logger, "Failing HTLC with payment_hash {} backwards from us with {:?}", &payment_hash, onion_error);
5192                                 let err_packet = onion_error.get_encrypted_failure_packet(incoming_packet_shared_secret, phantom_shared_secret);
5193
5194                                 let mut push_forward_ev = false;
5195                                 let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
5196                                 if forward_htlcs.is_empty() {
5197                                         push_forward_ev = true;
5198                                 }
5199                                 match forward_htlcs.entry(*short_channel_id) {
5200                                         hash_map::Entry::Occupied(mut entry) => {
5201                                                 entry.get_mut().push(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet });
5202                                         },
5203                                         hash_map::Entry::Vacant(entry) => {
5204                                                 entry.insert(vec!(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet }));
5205                                         }
5206                                 }
5207                                 mem::drop(forward_htlcs);
5208                                 if push_forward_ev { self.push_pending_forwards_ev(); }
5209                                 let mut pending_events = self.pending_events.lock().unwrap();
5210                                 pending_events.push_back((events::Event::HTLCHandlingFailed {
5211                                         prev_channel_id: outpoint.to_channel_id(),
5212                                         failed_next_destination: destination,
5213                                 }, None));
5214                         },
5215                 }
5216         }
5217
5218         /// Provides a payment preimage in response to [`Event::PaymentClaimable`], generating any
5219         /// [`MessageSendEvent`]s needed to claim the payment.
5220         ///
5221         /// This method is guaranteed to ensure the payment has been claimed but only if the current
5222         /// height is strictly below [`Event::PaymentClaimable::claim_deadline`]. To avoid race
5223         /// conditions, you should wait for an [`Event::PaymentClaimed`] before considering the payment
5224         /// successful. It will generally be available in the next [`process_pending_events`] call.
5225         ///
5226         /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
5227         /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentClaimable`
5228         /// event matches your expectation. If you fail to do so and call this method, you may provide
5229         /// the sender "proof-of-payment" when they did not fulfill the full expected payment.
5230         ///
5231         /// This function will fail the payment if it has custom TLVs with even type numbers, as we
5232         /// will assume they are unknown. If you intend to accept even custom TLVs, you should use
5233         /// [`claim_funds_with_known_custom_tlvs`].
5234         ///
5235         /// [`Event::PaymentClaimable`]: crate::events::Event::PaymentClaimable
5236         /// [`Event::PaymentClaimable::claim_deadline`]: crate::events::Event::PaymentClaimable::claim_deadline
5237         /// [`Event::PaymentClaimed`]: crate::events::Event::PaymentClaimed
5238         /// [`process_pending_events`]: EventsProvider::process_pending_events
5239         /// [`create_inbound_payment`]: Self::create_inbound_payment
5240         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
5241         /// [`claim_funds_with_known_custom_tlvs`]: Self::claim_funds_with_known_custom_tlvs
5242         pub fn claim_funds(&self, payment_preimage: PaymentPreimage) {
5243                 self.claim_payment_internal(payment_preimage, false);
5244         }
5245
5246         /// This is a variant of [`claim_funds`] that allows accepting a payment with custom TLVs with
5247         /// even type numbers.
5248         ///
5249         /// # Note
5250         ///
5251         /// You MUST check you've understood all even TLVs before using this to
5252         /// claim, otherwise you may unintentionally agree to some protocol you do not understand.
5253         ///
5254         /// [`claim_funds`]: Self::claim_funds
5255         pub fn claim_funds_with_known_custom_tlvs(&self, payment_preimage: PaymentPreimage) {
5256                 self.claim_payment_internal(payment_preimage, true);
5257         }
5258
5259         fn claim_payment_internal(&self, payment_preimage: PaymentPreimage, custom_tlvs_known: bool) {
5260                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
5261
5262                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5263
5264                 let mut sources = {
5265                         let mut claimable_payments = self.claimable_payments.lock().unwrap();
5266                         if let Some(payment) = claimable_payments.claimable_payments.remove(&payment_hash) {
5267                                 let mut receiver_node_id = self.our_network_pubkey;
5268                                 for htlc in payment.htlcs.iter() {
5269                                         if htlc.prev_hop.phantom_shared_secret.is_some() {
5270                                                 let phantom_pubkey = self.node_signer.get_node_id(Recipient::PhantomNode)
5271                                                         .expect("Failed to get node_id for phantom node recipient");
5272                                                 receiver_node_id = phantom_pubkey;
5273                                                 break;
5274                                         }
5275                                 }
5276
5277                                 let htlcs = payment.htlcs.iter().map(events::ClaimedHTLC::from).collect();
5278                                 let sender_intended_value = payment.htlcs.first().map(|htlc| htlc.total_msat);
5279                                 let dup_purpose = claimable_payments.pending_claiming_payments.insert(payment_hash,
5280                                         ClaimingPayment { amount_msat: payment.htlcs.iter().map(|source| source.value).sum(),
5281                                         payment_purpose: payment.purpose, receiver_node_id, htlcs, sender_intended_value
5282                                 });
5283                                 if dup_purpose.is_some() {
5284                                         debug_assert!(false, "Shouldn't get a duplicate pending claim event ever");
5285                                         log_error!(self.logger, "Got a duplicate pending claimable event on payment hash {}! Please report this bug",
5286                                                 &payment_hash);
5287                                 }
5288
5289                                 if let Some(RecipientOnionFields { ref custom_tlvs, .. }) = payment.onion_fields {
5290                                         if !custom_tlvs_known && custom_tlvs.iter().any(|(typ, _)| typ % 2 == 0) {
5291                                                 log_info!(self.logger, "Rejecting payment with payment hash {} as we cannot accept payment with unknown even TLVs: {}",
5292                                                         &payment_hash, log_iter!(custom_tlvs.iter().map(|(typ, _)| typ).filter(|typ| *typ % 2 == 0)));
5293                                                 claimable_payments.pending_claiming_payments.remove(&payment_hash);
5294                                                 mem::drop(claimable_payments);
5295                                                 for htlc in payment.htlcs {
5296                                                         let reason = self.get_htlc_fail_reason_from_failure_code(FailureCode::InvalidOnionPayload(None), &htlc);
5297                                                         let source = HTLCSource::PreviousHopData(htlc.prev_hop);
5298                                                         let receiver = HTLCDestination::FailedPayment { payment_hash };
5299                                                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
5300                                                 }
5301                                                 return;
5302                                         }
5303                                 }
5304
5305                                 payment.htlcs
5306                         } else { return; }
5307                 };
5308                 debug_assert!(!sources.is_empty());
5309
5310                 // Just in case one HTLC has been failed between when we generated the `PaymentClaimable`
5311                 // and when we got here we need to check that the amount we're about to claim matches the
5312                 // amount we told the user in the last `PaymentClaimable`. We also do a sanity-check that
5313                 // the MPP parts all have the same `total_msat`.
5314                 let mut claimable_amt_msat = 0;
5315                 let mut prev_total_msat = None;
5316                 let mut expected_amt_msat = None;
5317                 let mut valid_mpp = true;
5318                 let mut errs = Vec::new();
5319                 let per_peer_state = self.per_peer_state.read().unwrap();
5320                 for htlc in sources.iter() {
5321                         if prev_total_msat.is_some() && prev_total_msat != Some(htlc.total_msat) {
5322                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different expected total amounts - this should not be reachable!");
5323                                 debug_assert!(false);
5324                                 valid_mpp = false;
5325                                 break;
5326                         }
5327                         prev_total_msat = Some(htlc.total_msat);
5328
5329                         if expected_amt_msat.is_some() && expected_amt_msat != htlc.total_value_received {
5330                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different received total amounts - this should not be reachable!");
5331                                 debug_assert!(false);
5332                                 valid_mpp = false;
5333                                 break;
5334                         }
5335                         expected_amt_msat = htlc.total_value_received;
5336                         claimable_amt_msat += htlc.value;
5337                 }
5338                 mem::drop(per_peer_state);
5339                 if sources.is_empty() || expected_amt_msat.is_none() {
5340                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5341                         log_info!(self.logger, "Attempted to claim an incomplete payment which no longer had any available HTLCs!");
5342                         return;
5343                 }
5344                 if claimable_amt_msat != expected_amt_msat.unwrap() {
5345                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5346                         log_info!(self.logger, "Attempted to claim an incomplete payment, expected {} msat, had {} available to claim.",
5347                                 expected_amt_msat.unwrap(), claimable_amt_msat);
5348                         return;
5349                 }
5350                 if valid_mpp {
5351                         for htlc in sources.drain(..) {
5352                                 if let Err((pk, err)) = self.claim_funds_from_hop(
5353                                         htlc.prev_hop, payment_preimage,
5354                                         |_| Some(MonitorUpdateCompletionAction::PaymentClaimed { payment_hash }))
5355                                 {
5356                                         if let msgs::ErrorAction::IgnoreError = err.err.action {
5357                                                 // We got a temporary failure updating monitor, but will claim the
5358                                                 // HTLC when the monitor updating is restored (or on chain).
5359                                                 log_error!(self.logger, "Temporary failure claiming HTLC, treating as success: {}", err.err.err);
5360                                         } else { errs.push((pk, err)); }
5361                                 }
5362                         }
5363                 }
5364                 if !valid_mpp {
5365                         for htlc in sources.drain(..) {
5366                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
5367                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
5368                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
5369                                 let reason = HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data);
5370                                 let receiver = HTLCDestination::FailedPayment { payment_hash };
5371                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
5372                         }
5373                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5374                 }
5375
5376                 // Now we can handle any errors which were generated.
5377                 for (counterparty_node_id, err) in errs.drain(..) {
5378                         let res: Result<(), _> = Err(err);
5379                         let _ = handle_error!(self, res, counterparty_node_id);
5380                 }
5381         }
5382
5383         fn claim_funds_from_hop<ComplFunc: FnOnce(Option<u64>) -> Option<MonitorUpdateCompletionAction>>(&self,
5384                 prev_hop: HTLCPreviousHopData, payment_preimage: PaymentPreimage, completion_action: ComplFunc)
5385         -> Result<(), (PublicKey, MsgHandleErrInternal)> {
5386                 //TODO: Delay the claimed_funds relaying just like we do outbound relay!
5387
5388                 // If we haven't yet run background events assume we're still deserializing and shouldn't
5389                 // actually pass `ChannelMonitorUpdate`s to users yet. Instead, queue them up as
5390                 // `BackgroundEvent`s.
5391                 let during_init = !self.background_events_processed_since_startup.load(Ordering::Acquire);
5392
5393                 {
5394                         let per_peer_state = self.per_peer_state.read().unwrap();
5395                         let chan_id = prev_hop.outpoint.to_channel_id();
5396                         let counterparty_node_id_opt = match self.short_to_chan_info.read().unwrap().get(&prev_hop.short_channel_id) {
5397                                 Some((cp_id, _dup_chan_id)) => Some(cp_id.clone()),
5398                                 None => None
5399                         };
5400
5401                         let peer_state_opt = counterparty_node_id_opt.as_ref().map(
5402                                 |counterparty_node_id| per_peer_state.get(counterparty_node_id)
5403                                         .map(|peer_mutex| peer_mutex.lock().unwrap())
5404                         ).unwrap_or(None);
5405
5406                         if peer_state_opt.is_some() {
5407                                 let mut peer_state_lock = peer_state_opt.unwrap();
5408                                 let peer_state = &mut *peer_state_lock;
5409                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(chan_id) {
5410                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
5411                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
5412                                                 let fulfill_res = chan.get_update_fulfill_htlc_and_commit(prev_hop.htlc_id, payment_preimage, &self.logger);
5413
5414                                                 if let UpdateFulfillCommitFetch::NewClaim { htlc_value_msat, monitor_update } = fulfill_res {
5415                                                         if let Some(action) = completion_action(Some(htlc_value_msat)) {
5416                                                                 log_trace!(self.logger, "Tracking monitor update completion action for channel {}: {:?}",
5417                                                                         chan_id, action);
5418                                                                 peer_state.monitor_update_blocked_actions.entry(chan_id).or_insert(Vec::new()).push(action);
5419                                                         }
5420                                                         if !during_init {
5421                                                                 handle_new_monitor_update!(self, prev_hop.outpoint, monitor_update, peer_state_lock,
5422                                                                         peer_state, per_peer_state, chan);
5423                                                         } else {
5424                                                                 // If we're running during init we cannot update a monitor directly -
5425                                                                 // they probably haven't actually been loaded yet. Instead, push the
5426                                                                 // monitor update as a background event.
5427                                                                 self.pending_background_events.lock().unwrap().push(
5428                                                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
5429                                                                                 counterparty_node_id,
5430                                                                                 funding_txo: prev_hop.outpoint,
5431                                                                                 update: monitor_update.clone(),
5432                                                                         });
5433                                                         }
5434                                                 }
5435                                         }
5436                                         return Ok(());
5437                                 }
5438                         }
5439                 }
5440                 let preimage_update = ChannelMonitorUpdate {
5441                         update_id: CLOSED_CHANNEL_UPDATE_ID,
5442                         updates: vec![ChannelMonitorUpdateStep::PaymentPreimage {
5443                                 payment_preimage,
5444                         }],
5445                 };
5446
5447                 if !during_init {
5448                         // We update the ChannelMonitor on the backward link, after
5449                         // receiving an `update_fulfill_htlc` from the forward link.
5450                         let update_res = self.chain_monitor.update_channel(prev_hop.outpoint, &preimage_update);
5451                         if update_res != ChannelMonitorUpdateStatus::Completed {
5452                                 // TODO: This needs to be handled somehow - if we receive a monitor update
5453                                 // with a preimage we *must* somehow manage to propagate it to the upstream
5454                                 // channel, or we must have an ability to receive the same event and try
5455                                 // again on restart.
5456                                 log_error!(self.logger, "Critical error: failed to update channel monitor with preimage {:?}: {:?}",
5457                                         payment_preimage, update_res);
5458                         }
5459                 } else {
5460                         // If we're running during init we cannot update a monitor directly - they probably
5461                         // haven't actually been loaded yet. Instead, push the monitor update as a background
5462                         // event.
5463                         // Note that while it's safe to use `ClosedMonitorUpdateRegeneratedOnStartup` here (the
5464                         // channel is already closed) we need to ultimately handle the monitor update
5465                         // completion action only after we've completed the monitor update. This is the only
5466                         // way to guarantee this update *will* be regenerated on startup (otherwise if this was
5467                         // from a forwarded HTLC the downstream preimage may be deleted before we claim
5468                         // upstream). Thus, we need to transition to some new `BackgroundEvent` type which will
5469                         // complete the monitor update completion action from `completion_action`.
5470                         self.pending_background_events.lock().unwrap().push(
5471                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((
5472                                         prev_hop.outpoint, preimage_update,
5473                                 )));
5474                 }
5475                 // Note that we do process the completion action here. This totally could be a
5476                 // duplicate claim, but we have no way of knowing without interrogating the
5477                 // `ChannelMonitor` we've provided the above update to. Instead, note that `Event`s are
5478                 // generally always allowed to be duplicative (and it's specifically noted in
5479                 // `PaymentForwarded`).
5480                 self.handle_monitor_update_completion_actions(completion_action(None));
5481                 Ok(())
5482         }
5483
5484         fn finalize_claims(&self, sources: Vec<HTLCSource>) {
5485                 self.pending_outbound_payments.finalize_claims(sources, &self.pending_events);
5486         }
5487
5488         fn claim_funds_internal(&self, source: HTLCSource, payment_preimage: PaymentPreimage,
5489                 forwarded_htlc_value_msat: Option<u64>, from_onchain: bool,
5490                 next_channel_counterparty_node_id: Option<PublicKey>, next_channel_outpoint: OutPoint
5491         ) {
5492                 match source {
5493                         HTLCSource::OutboundRoute { session_priv, payment_id, path, .. } => {
5494                                 debug_assert!(self.background_events_processed_since_startup.load(Ordering::Acquire),
5495                                         "We don't support claim_htlc claims during startup - monitors may not be available yet");
5496                                 if let Some(pubkey) = next_channel_counterparty_node_id {
5497                                         debug_assert_eq!(pubkey, path.hops[0].pubkey);
5498                                 }
5499                                 let ev_completion_action = EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
5500                                         channel_funding_outpoint: next_channel_outpoint,
5501                                         counterparty_node_id: path.hops[0].pubkey,
5502                                 };
5503                                 self.pending_outbound_payments.claim_htlc(payment_id, payment_preimage,
5504                                         session_priv, path, from_onchain, ev_completion_action, &self.pending_events,
5505                                         &self.logger);
5506                         },
5507                         HTLCSource::PreviousHopData(hop_data) => {
5508                                 let prev_outpoint = hop_data.outpoint;
5509                                 let completed_blocker = RAAMonitorUpdateBlockingAction::from_prev_hop_data(&hop_data);
5510                                 let res = self.claim_funds_from_hop(hop_data, payment_preimage,
5511                                         |htlc_claim_value_msat| {
5512                                                 if let Some(forwarded_htlc_value) = forwarded_htlc_value_msat {
5513                                                         let fee_earned_msat = if let Some(claimed_htlc_value) = htlc_claim_value_msat {
5514                                                                 Some(claimed_htlc_value - forwarded_htlc_value)
5515                                                         } else { None };
5516
5517                                                         Some(MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
5518                                                                 event: events::Event::PaymentForwarded {
5519                                                                         fee_earned_msat,
5520                                                                         claim_from_onchain_tx: from_onchain,
5521                                                                         prev_channel_id: Some(prev_outpoint.to_channel_id()),
5522                                                                         next_channel_id: Some(next_channel_outpoint.to_channel_id()),
5523                                                                         outbound_amount_forwarded_msat: forwarded_htlc_value_msat,
5524                                                                 },
5525                                                                 downstream_counterparty_and_funding_outpoint:
5526                                                                         if let Some(node_id) = next_channel_counterparty_node_id {
5527                                                                                 Some((node_id, next_channel_outpoint, completed_blocker))
5528                                                                         } else {
5529                                                                                 // We can only get `None` here if we are processing a
5530                                                                                 // `ChannelMonitor`-originated event, in which case we
5531                                                                                 // don't care about ensuring we wake the downstream
5532                                                                                 // channel's monitor updating - the channel is already
5533                                                                                 // closed.
5534                                                                                 None
5535                                                                         },
5536                                                         })
5537                                                 } else { None }
5538                                         });
5539                                 if let Err((pk, err)) = res {
5540                                         let result: Result<(), _> = Err(err);
5541                                         let _ = handle_error!(self, result, pk);
5542                                 }
5543                         },
5544                 }
5545         }
5546
5547         /// Gets the node_id held by this ChannelManager
5548         pub fn get_our_node_id(&self) -> PublicKey {
5549                 self.our_network_pubkey.clone()
5550         }
5551
5552         fn handle_monitor_update_completion_actions<I: IntoIterator<Item=MonitorUpdateCompletionAction>>(&self, actions: I) {
5553                 for action in actions.into_iter() {
5554                         match action {
5555                                 MonitorUpdateCompletionAction::PaymentClaimed { payment_hash } => {
5556                                         let payment = self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5557                                         if let Some(ClaimingPayment {
5558                                                 amount_msat,
5559                                                 payment_purpose: purpose,
5560                                                 receiver_node_id,
5561                                                 htlcs,
5562                                                 sender_intended_value: sender_intended_total_msat,
5563                                         }) = payment {
5564                                                 self.pending_events.lock().unwrap().push_back((events::Event::PaymentClaimed {
5565                                                         payment_hash,
5566                                                         purpose,
5567                                                         amount_msat,
5568                                                         receiver_node_id: Some(receiver_node_id),
5569                                                         htlcs,
5570                                                         sender_intended_total_msat,
5571                                                 }, None));
5572                                         }
5573                                 },
5574                                 MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
5575                                         event, downstream_counterparty_and_funding_outpoint
5576                                 } => {
5577                                         self.pending_events.lock().unwrap().push_back((event, None));
5578                                         if let Some((node_id, funding_outpoint, blocker)) = downstream_counterparty_and_funding_outpoint {
5579                                                 self.handle_monitor_update_release(node_id, funding_outpoint, Some(blocker));
5580                                         }
5581                                 },
5582                         }
5583                 }
5584         }
5585
5586         /// Handles a channel reentering a functional state, either due to reconnect or a monitor
5587         /// update completion.
5588         fn handle_channel_resumption(&self, pending_msg_events: &mut Vec<MessageSendEvent>,
5589                 channel: &mut Channel<SP>, raa: Option<msgs::RevokeAndACK>,
5590                 commitment_update: Option<msgs::CommitmentUpdate>, order: RAACommitmentOrder,
5591                 pending_forwards: Vec<(PendingHTLCInfo, u64)>, funding_broadcastable: Option<Transaction>,
5592                 channel_ready: Option<msgs::ChannelReady>, announcement_sigs: Option<msgs::AnnouncementSignatures>)
5593         -> Option<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> {
5594                 log_trace!(self.logger, "Handling channel resumption for channel {} with {} RAA, {} commitment update, {} pending forwards, {}broadcasting funding, {} channel ready, {} announcement",
5595                         &channel.context.channel_id(),
5596                         if raa.is_some() { "an" } else { "no" },
5597                         if commitment_update.is_some() { "a" } else { "no" }, pending_forwards.len(),
5598                         if funding_broadcastable.is_some() { "" } else { "not " },
5599                         if channel_ready.is_some() { "sending" } else { "without" },
5600                         if announcement_sigs.is_some() { "sending" } else { "without" });
5601
5602                 let mut htlc_forwards = None;
5603
5604                 let counterparty_node_id = channel.context.get_counterparty_node_id();
5605                 if !pending_forwards.is_empty() {
5606                         htlc_forwards = Some((channel.context.get_short_channel_id().unwrap_or(channel.context.outbound_scid_alias()),
5607                                 channel.context.get_funding_txo().unwrap(), channel.context.get_user_id(), pending_forwards));
5608                 }
5609
5610                 if let Some(msg) = channel_ready {
5611                         send_channel_ready!(self, pending_msg_events, channel, msg);
5612                 }
5613                 if let Some(msg) = announcement_sigs {
5614                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
5615                                 node_id: counterparty_node_id,
5616                                 msg,
5617                         });
5618                 }
5619
5620                 macro_rules! handle_cs { () => {
5621                         if let Some(update) = commitment_update {
5622                                 pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
5623                                         node_id: counterparty_node_id,
5624                                         updates: update,
5625                                 });
5626                         }
5627                 } }
5628                 macro_rules! handle_raa { () => {
5629                         if let Some(revoke_and_ack) = raa {
5630                                 pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
5631                                         node_id: counterparty_node_id,
5632                                         msg: revoke_and_ack,
5633                                 });
5634                         }
5635                 } }
5636                 match order {
5637                         RAACommitmentOrder::CommitmentFirst => {
5638                                 handle_cs!();
5639                                 handle_raa!();
5640                         },
5641                         RAACommitmentOrder::RevokeAndACKFirst => {
5642                                 handle_raa!();
5643                                 handle_cs!();
5644                         },
5645                 }
5646
5647                 if let Some(tx) = funding_broadcastable {
5648                         log_info!(self.logger, "Broadcasting funding transaction with txid {}", tx.txid());
5649                         self.tx_broadcaster.broadcast_transactions(&[&tx]);
5650                 }
5651
5652                 {
5653                         let mut pending_events = self.pending_events.lock().unwrap();
5654                         emit_channel_pending_event!(pending_events, channel);
5655                         emit_channel_ready_event!(pending_events, channel);
5656                 }
5657
5658                 htlc_forwards
5659         }
5660
5661         fn channel_monitor_updated(&self, funding_txo: &OutPoint, highest_applied_update_id: u64, counterparty_node_id: Option<&PublicKey>) {
5662                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
5663
5664                 let counterparty_node_id = match counterparty_node_id {
5665                         Some(cp_id) => cp_id.clone(),
5666                         None => {
5667                                 // TODO: Once we can rely on the counterparty_node_id from the
5668                                 // monitor event, this and the id_to_peer map should be removed.
5669                                 let id_to_peer = self.id_to_peer.lock().unwrap();
5670                                 match id_to_peer.get(&funding_txo.to_channel_id()) {
5671                                         Some(cp_id) => cp_id.clone(),
5672                                         None => return,
5673                                 }
5674                         }
5675                 };
5676                 let per_peer_state = self.per_peer_state.read().unwrap();
5677                 let mut peer_state_lock;
5678                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
5679                 if peer_state_mutex_opt.is_none() { return }
5680                 peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
5681                 let peer_state = &mut *peer_state_lock;
5682                 let channel =
5683                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&funding_txo.to_channel_id()) {
5684                                 chan
5685                         } else {
5686                                 let update_actions = peer_state.monitor_update_blocked_actions
5687                                         .remove(&funding_txo.to_channel_id()).unwrap_or(Vec::new());
5688                                 mem::drop(peer_state_lock);
5689                                 mem::drop(per_peer_state);
5690                                 self.handle_monitor_update_completion_actions(update_actions);
5691                                 return;
5692                         };
5693                 let remaining_in_flight =
5694                         if let Some(pending) = peer_state.in_flight_monitor_updates.get_mut(funding_txo) {
5695                                 pending.retain(|upd| upd.update_id > highest_applied_update_id);
5696                                 pending.len()
5697                         } else { 0 };
5698                 log_trace!(self.logger, "ChannelMonitor updated to {}. Current highest is {}. {} pending in-flight updates.",
5699                         highest_applied_update_id, channel.context.get_latest_monitor_update_id(),
5700                         remaining_in_flight);
5701                 if !channel.is_awaiting_monitor_update() || channel.context.get_latest_monitor_update_id() != highest_applied_update_id {
5702                         return;
5703                 }
5704                 handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, channel);
5705         }
5706
5707         /// Accepts a request to open a channel after a [`Event::OpenChannelRequest`].
5708         ///
5709         /// The `temporary_channel_id` parameter indicates which inbound channel should be accepted,
5710         /// and the `counterparty_node_id` parameter is the id of the peer which has requested to open
5711         /// the channel.
5712         ///
5713         /// The `user_channel_id` parameter will be provided back in
5714         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
5715         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
5716         ///
5717         /// Note that this method will return an error and reject the channel, if it requires support
5718         /// for zero confirmations. Instead, `accept_inbound_channel_from_trusted_peer_0conf` must be
5719         /// used to accept such channels.
5720         ///
5721         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
5722         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
5723         pub fn accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
5724                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, false, user_channel_id)
5725         }
5726
5727         /// Accepts a request to open a channel after a [`events::Event::OpenChannelRequest`], treating
5728         /// it as confirmed immediately.
5729         ///
5730         /// The `user_channel_id` parameter will be provided back in
5731         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
5732         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
5733         ///
5734         /// Unlike [`ChannelManager::accept_inbound_channel`], this method accepts the incoming channel
5735         /// and (if the counterparty agrees), enables forwarding of payments immediately.
5736         ///
5737         /// This fully trusts that the counterparty has honestly and correctly constructed the funding
5738         /// transaction and blindly assumes that it will eventually confirm.
5739         ///
5740         /// If it does not confirm before we decide to close the channel, or if the funding transaction
5741         /// does not pay to the correct script the correct amount, *you will lose funds*.
5742         ///
5743         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
5744         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
5745         pub fn accept_inbound_channel_from_trusted_peer_0conf(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
5746                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, true, user_channel_id)
5747         }
5748
5749         fn do_accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, accept_0conf: bool, user_channel_id: u128) -> Result<(), APIError> {
5750                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5751
5752                 let peers_without_funded_channels =
5753                         self.peers_without_funded_channels(|peer| { peer.total_channel_count() > 0 });
5754                 let per_peer_state = self.per_peer_state.read().unwrap();
5755                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5756                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
5757                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5758                 let peer_state = &mut *peer_state_lock;
5759                 let is_only_peer_channel = peer_state.total_channel_count() == 1;
5760
5761                 // Find (and remove) the channel in the unaccepted table. If it's not there, something weird is
5762                 // happening and return an error. N.B. that we create channel with an outbound SCID of zero so
5763                 // that we can delay allocating the SCID until after we're sure that the checks below will
5764                 // succeed.
5765                 let mut channel = match peer_state.inbound_channel_request_by_id.remove(temporary_channel_id) {
5766                         Some(unaccepted_channel) => {
5767                                 let best_block_height = self.best_block.read().unwrap().height();
5768                                 InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
5769                                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features,
5770                                         &unaccepted_channel.open_channel_msg, user_channel_id, &self.default_configuration, best_block_height,
5771                                         &self.logger, accept_0conf).map_err(|e| APIError::ChannelUnavailable { err: e.to_string() })
5772                         }
5773                         _ => Err(APIError::APIMisuseError { err: "No such channel awaiting to be accepted.".to_owned() })
5774                 }?;
5775
5776                 if accept_0conf {
5777                         // This should have been correctly configured by the call to InboundV1Channel::new.
5778                         debug_assert!(channel.context.minimum_depth().unwrap() == 0);
5779                 } else if channel.context.get_channel_type().requires_zero_conf() {
5780                         let send_msg_err_event = events::MessageSendEvent::HandleError {
5781                                 node_id: channel.context.get_counterparty_node_id(),
5782                                 action: msgs::ErrorAction::SendErrorMessage{
5783                                         msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "No zero confirmation channels accepted".to_owned(), }
5784                                 }
5785                         };
5786                         peer_state.pending_msg_events.push(send_msg_err_event);
5787                         return Err(APIError::APIMisuseError { err: "Please use accept_inbound_channel_from_trusted_peer_0conf to accept channels with zero confirmations.".to_owned() });
5788                 } else {
5789                         // If this peer already has some channels, a new channel won't increase our number of peers
5790                         // with unfunded channels, so as long as we aren't over the maximum number of unfunded
5791                         // channels per-peer we can accept channels from a peer with existing ones.
5792                         if is_only_peer_channel && peers_without_funded_channels >= MAX_UNFUNDED_CHANNEL_PEERS {
5793                                 let send_msg_err_event = events::MessageSendEvent::HandleError {
5794                                         node_id: channel.context.get_counterparty_node_id(),
5795                                         action: msgs::ErrorAction::SendErrorMessage{
5796                                                 msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "Have too many peers with unfunded channels, not accepting new ones".to_owned(), }
5797                                         }
5798                                 };
5799                                 peer_state.pending_msg_events.push(send_msg_err_event);
5800                                 return Err(APIError::APIMisuseError { err: "Too many peers with unfunded channels, refusing to accept new ones".to_owned() });
5801                         }
5802                 }
5803
5804                 // Now that we know we have a channel, assign an outbound SCID alias.
5805                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
5806                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
5807
5808                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
5809                         node_id: channel.context.get_counterparty_node_id(),
5810                         msg: channel.accept_inbound_channel(),
5811                 });
5812
5813                 peer_state.channel_by_id.insert(temporary_channel_id.clone(), ChannelPhase::UnfundedInboundV1(channel));
5814
5815                 Ok(())
5816         }
5817
5818         /// Gets the number of peers which match the given filter and do not have any funded, outbound,
5819         /// or 0-conf channels.
5820         ///
5821         /// The filter is called for each peer and provided with the number of unfunded, inbound, and
5822         /// non-0-conf channels we have with the peer.
5823         fn peers_without_funded_channels<Filter>(&self, maybe_count_peer: Filter) -> usize
5824         where Filter: Fn(&PeerState<SP>) -> bool {
5825                 let mut peers_without_funded_channels = 0;
5826                 let best_block_height = self.best_block.read().unwrap().height();
5827                 {
5828                         let peer_state_lock = self.per_peer_state.read().unwrap();
5829                         for (_, peer_mtx) in peer_state_lock.iter() {
5830                                 let peer = peer_mtx.lock().unwrap();
5831                                 if !maybe_count_peer(&*peer) { continue; }
5832                                 let num_unfunded_channels = Self::unfunded_channel_count(&peer, best_block_height);
5833                                 if num_unfunded_channels == peer.total_channel_count() {
5834                                         peers_without_funded_channels += 1;
5835                                 }
5836                         }
5837                 }
5838                 return peers_without_funded_channels;
5839         }
5840
5841         fn unfunded_channel_count(
5842                 peer: &PeerState<SP>, best_block_height: u32
5843         ) -> usize {
5844                 let mut num_unfunded_channels = 0;
5845                 for (_, phase) in peer.channel_by_id.iter() {
5846                         match phase {
5847                                 ChannelPhase::Funded(chan) => {
5848                                         // This covers non-zero-conf inbound `Channel`s that we are currently monitoring, but those
5849                                         // which have not yet had any confirmations on-chain.
5850                                         if !chan.context.is_outbound() && chan.context.minimum_depth().unwrap_or(1) != 0 &&
5851                                                 chan.context.get_funding_tx_confirmations(best_block_height) == 0
5852                                         {
5853                                                 num_unfunded_channels += 1;
5854                                         }
5855                                 },
5856                                 ChannelPhase::UnfundedInboundV1(chan) => {
5857                                         if chan.context.minimum_depth().unwrap_or(1) != 0 {
5858                                                 num_unfunded_channels += 1;
5859                                         }
5860                                 },
5861                                 ChannelPhase::UnfundedOutboundV1(_) => {
5862                                         // Outbound channels don't contribute to the unfunded count in the DoS context.
5863                                         continue;
5864                                 }
5865                         }
5866                 }
5867                 num_unfunded_channels + peer.inbound_channel_request_by_id.len()
5868         }
5869
5870         fn internal_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) -> Result<(), MsgHandleErrInternal> {
5871                 // Note that the ChannelManager is NOT re-persisted on disk after this, so any changes are
5872                 // likely to be lost on restart!
5873                 if msg.chain_hash != self.genesis_hash {
5874                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Unknown genesis block hash".to_owned(), msg.temporary_channel_id.clone()));
5875                 }
5876
5877                 if !self.default_configuration.accept_inbound_channels {
5878                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No inbound channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5879                 }
5880
5881                 // Get the number of peers with channels, but without funded ones. We don't care too much
5882                 // about peers that never open a channel, so we filter by peers that have at least one
5883                 // channel, and then limit the number of those with unfunded channels.
5884                 let channeled_peers_without_funding =
5885                         self.peers_without_funded_channels(|node| node.total_channel_count() > 0);
5886
5887                 let per_peer_state = self.per_peer_state.read().unwrap();
5888                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5889                     .ok_or_else(|| {
5890                                 debug_assert!(false);
5891                                 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())
5892                         })?;
5893                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5894                 let peer_state = &mut *peer_state_lock;
5895
5896                 // If this peer already has some channels, a new channel won't increase our number of peers
5897                 // with unfunded channels, so as long as we aren't over the maximum number of unfunded
5898                 // channels per-peer we can accept channels from a peer with existing ones.
5899                 if peer_state.total_channel_count() == 0 &&
5900                         channeled_peers_without_funding >= MAX_UNFUNDED_CHANNEL_PEERS &&
5901                         !self.default_configuration.manually_accept_inbound_channels
5902                 {
5903                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5904                                 "Have too many peers with unfunded channels, not accepting new ones".to_owned(),
5905                                 msg.temporary_channel_id.clone()));
5906                 }
5907
5908                 let best_block_height = self.best_block.read().unwrap().height();
5909                 if Self::unfunded_channel_count(peer_state, best_block_height) >= MAX_UNFUNDED_CHANS_PER_PEER {
5910                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5911                                 format!("Refusing more than {} unfunded channels.", MAX_UNFUNDED_CHANS_PER_PEER),
5912                                 msg.temporary_channel_id.clone()));
5913                 }
5914
5915                 let channel_id = msg.temporary_channel_id;
5916                 let channel_exists = peer_state.has_channel(&channel_id);
5917                 if channel_exists {
5918                         return Err(MsgHandleErrInternal::send_err_msg_no_close("temporary_channel_id collision for the same peer!".to_owned(), msg.temporary_channel_id.clone()));
5919                 }
5920
5921                 // If we're doing manual acceptance checks on the channel, then defer creation until we're sure we want to accept.
5922                 if self.default_configuration.manually_accept_inbound_channels {
5923                         let mut pending_events = self.pending_events.lock().unwrap();
5924                         pending_events.push_back((events::Event::OpenChannelRequest {
5925                                 temporary_channel_id: msg.temporary_channel_id.clone(),
5926                                 counterparty_node_id: counterparty_node_id.clone(),
5927                                 funding_satoshis: msg.funding_satoshis,
5928                                 push_msat: msg.push_msat,
5929                                 channel_type: msg.channel_type.clone().unwrap(),
5930                         }, None));
5931                         peer_state.inbound_channel_request_by_id.insert(channel_id, InboundChannelRequest {
5932                                 open_channel_msg: msg.clone(),
5933                                 ticks_remaining: UNACCEPTED_INBOUND_CHANNEL_AGE_LIMIT_TICKS,
5934                         });
5935                         return Ok(());
5936                 }
5937
5938                 // Otherwise create the channel right now.
5939                 let mut random_bytes = [0u8; 16];
5940                 random_bytes.copy_from_slice(&self.entropy_source.get_secure_random_bytes()[..16]);
5941                 let user_channel_id = u128::from_be_bytes(random_bytes);
5942                 let mut channel = match InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
5943                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features, msg, user_channel_id,
5944                         &self.default_configuration, best_block_height, &self.logger, /*is_0conf=*/false)
5945                 {
5946                         Err(e) => {
5947                                 return Err(MsgHandleErrInternal::from_chan_no_close(e, msg.temporary_channel_id));
5948                         },
5949                         Ok(res) => res
5950                 };
5951
5952                 let channel_type = channel.context.get_channel_type();
5953                 if channel_type.requires_zero_conf() {
5954                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No zero confirmation channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5955                 }
5956                 if channel_type.requires_anchors_zero_fee_htlc_tx() {
5957                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No channels with anchor outputs accepted".to_owned(), msg.temporary_channel_id.clone()));
5958                 }
5959
5960                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
5961                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
5962
5963                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
5964                         node_id: counterparty_node_id.clone(),
5965                         msg: channel.accept_inbound_channel(),
5966                 });
5967                 peer_state.channel_by_id.insert(channel_id, ChannelPhase::UnfundedInboundV1(channel));
5968                 Ok(())
5969         }
5970
5971         fn internal_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) -> Result<(), MsgHandleErrInternal> {
5972                 // Note that the ChannelManager is NOT re-persisted on disk after this, so any changes are
5973                 // likely to be lost on restart!
5974                 let (value, output_script, user_id) = {
5975                         let per_peer_state = self.per_peer_state.read().unwrap();
5976                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5977                                 .ok_or_else(|| {
5978                                         debug_assert!(false);
5979                                         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)
5980                                 })?;
5981                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5982                         let peer_state = &mut *peer_state_lock;
5983                         match peer_state.channel_by_id.entry(msg.temporary_channel_id) {
5984                                 hash_map::Entry::Occupied(mut phase) => {
5985                                         match phase.get_mut() {
5986                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
5987                                                         try_chan_phase_entry!(self, chan.accept_channel(&msg, &self.default_configuration.channel_handshake_limits, &peer_state.latest_features), phase);
5988                                                         (chan.context.get_value_satoshis(), chan.context.get_funding_redeemscript().to_v0_p2wsh(), chan.context.get_user_id())
5989                                                 },
5990                                                 _ => {
5991                                                         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));
5992                                                 }
5993                                         }
5994                                 },
5995                                 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))
5996                         }
5997                 };
5998                 let mut pending_events = self.pending_events.lock().unwrap();
5999                 pending_events.push_back((events::Event::FundingGenerationReady {
6000                         temporary_channel_id: msg.temporary_channel_id,
6001                         counterparty_node_id: *counterparty_node_id,
6002                         channel_value_satoshis: value,
6003                         output_script,
6004                         user_channel_id: user_id,
6005                 }, None));
6006                 Ok(())
6007         }
6008
6009         fn internal_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) -> Result<(), MsgHandleErrInternal> {
6010                 let best_block = *self.best_block.read().unwrap();
6011
6012                 let per_peer_state = self.per_peer_state.read().unwrap();
6013                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6014                         .ok_or_else(|| {
6015                                 debug_assert!(false);
6016                                 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)
6017                         })?;
6018
6019                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6020                 let peer_state = &mut *peer_state_lock;
6021                 let (chan, funding_msg, monitor) =
6022                         match peer_state.channel_by_id.remove(&msg.temporary_channel_id) {
6023                                 Some(ChannelPhase::UnfundedInboundV1(inbound_chan)) => {
6024                                         match inbound_chan.funding_created(msg, best_block, &self.signer_provider, &self.logger) {
6025                                                 Ok(res) => res,
6026                                                 Err((mut inbound_chan, err)) => {
6027                                                         // We've already removed this inbound channel from the map in `PeerState`
6028                                                         // above so at this point we just need to clean up any lingering entries
6029                                                         // concerning this channel as it is safe to do so.
6030                                                         update_maps_on_chan_removal!(self, &inbound_chan.context);
6031                                                         let user_id = inbound_chan.context.get_user_id();
6032                                                         let shutdown_res = inbound_chan.context.force_shutdown(false);
6033                                                         return Err(MsgHandleErrInternal::from_finish_shutdown(format!("{}", err),
6034                                                                 msg.temporary_channel_id, user_id, shutdown_res, None, inbound_chan.context.get_value_satoshis()));
6035                                                 },
6036                                         }
6037                                 },
6038                                 Some(ChannelPhase::Funded(_)) | Some(ChannelPhase::UnfundedOutboundV1(_)) => {
6039                                         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));
6040                                 },
6041                                 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))
6042                         };
6043
6044                 match peer_state.channel_by_id.entry(funding_msg.channel_id) {
6045                         hash_map::Entry::Occupied(_) => {
6046                                 Err(MsgHandleErrInternal::send_err_msg_no_close("Already had channel with the new channel_id".to_owned(), funding_msg.channel_id))
6047                         },
6048                         hash_map::Entry::Vacant(e) => {
6049                                 let mut id_to_peer_lock = self.id_to_peer.lock().unwrap();
6050                                 match id_to_peer_lock.entry(chan.context.channel_id()) {
6051                                         hash_map::Entry::Occupied(_) => {
6052                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close(
6053                                                         "The funding_created message had the same funding_txid as an existing channel - funding is not possible".to_owned(),
6054                                                         funding_msg.channel_id))
6055                                         },
6056                                         hash_map::Entry::Vacant(i_e) => {
6057                                                 let monitor_res = self.chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor);
6058                                                 if let Ok(persist_state) = monitor_res {
6059                                                         i_e.insert(chan.context.get_counterparty_node_id());
6060                                                         mem::drop(id_to_peer_lock);
6061
6062                                                         // There's no problem signing a counterparty's funding transaction if our monitor
6063                                                         // hasn't persisted to disk yet - we can't lose money on a transaction that we haven't
6064                                                         // accepted payment from yet. We do, however, need to wait to send our channel_ready
6065                                                         // until we have persisted our monitor.
6066                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
6067                                                                 node_id: counterparty_node_id.clone(),
6068                                                                 msg: funding_msg,
6069                                                         });
6070
6071                                                         if let ChannelPhase::Funded(chan) = e.insert(ChannelPhase::Funded(chan)) {
6072                                                                 handle_new_monitor_update!(self, persist_state, peer_state_lock, peer_state,
6073                                                                         per_peer_state, chan, INITIAL_MONITOR);
6074                                                         } else {
6075                                                                 unreachable!("This must be a funded channel as we just inserted it.");
6076                                                         }
6077                                                         Ok(())
6078                                                 } else {
6079                                                         log_error!(self.logger, "Persisting initial ChannelMonitor failed, implying the funding outpoint was duplicated");
6080                                                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
6081                                                                 "The funding_created message had the same funding_txid as an existing channel - funding is not possible".to_owned(),
6082                                                                 funding_msg.channel_id));
6083                                                 }
6084                                         }
6085                                 }
6086                         }
6087                 }
6088         }
6089
6090         fn internal_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) -> Result<(), MsgHandleErrInternal> {
6091                 let best_block = *self.best_block.read().unwrap();
6092                 let per_peer_state = self.per_peer_state.read().unwrap();
6093                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6094                         .ok_or_else(|| {
6095                                 debug_assert!(false);
6096                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6097                         })?;
6098
6099                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6100                 let peer_state = &mut *peer_state_lock;
6101                 match peer_state.channel_by_id.entry(msg.channel_id) {
6102                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6103                                 match chan_phase_entry.get_mut() {
6104                                         ChannelPhase::Funded(ref mut chan) => {
6105                                                 let monitor = try_chan_phase_entry!(self,
6106                                                         chan.funding_signed(&msg, best_block, &self.signer_provider, &self.logger), chan_phase_entry);
6107                                                 if let Ok(persist_status) = self.chain_monitor.watch_channel(chan.context.get_funding_txo().unwrap(), monitor) {
6108                                                         handle_new_monitor_update!(self, persist_status, peer_state_lock, peer_state, per_peer_state, chan, INITIAL_MONITOR);
6109                                                         Ok(())
6110                                                 } else {
6111                                                         try_chan_phase_entry!(self, Err(ChannelError::Close("Channel funding outpoint was a duplicate".to_owned())), chan_phase_entry)
6112                                                 }
6113                                         },
6114                                         _ => {
6115                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id));
6116                                         },
6117                                 }
6118                         },
6119                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
6120                 }
6121         }
6122
6123         fn internal_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) -> Result<(), MsgHandleErrInternal> {
6124                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
6125                 // closing a channel), so any changes are likely to be lost on restart!
6126                 let per_peer_state = self.per_peer_state.read().unwrap();
6127                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6128                         .ok_or_else(|| {
6129                                 debug_assert!(false);
6130                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6131                         })?;
6132                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6133                 let peer_state = &mut *peer_state_lock;
6134                 match peer_state.channel_by_id.entry(msg.channel_id) {
6135                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6136                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6137                                         let announcement_sigs_opt = try_chan_phase_entry!(self, chan.channel_ready(&msg, &self.node_signer,
6138                                                 self.genesis_hash.clone(), &self.default_configuration, &self.best_block.read().unwrap(), &self.logger), chan_phase_entry);
6139                                         if let Some(announcement_sigs) = announcement_sigs_opt {
6140                                                 log_trace!(self.logger, "Sending announcement_signatures for channel {}", chan.context.channel_id());
6141                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
6142                                                         node_id: counterparty_node_id.clone(),
6143                                                         msg: announcement_sigs,
6144                                                 });
6145                                         } else if chan.context.is_usable() {
6146                                                 // If we're sending an announcement_signatures, we'll send the (public)
6147                                                 // channel_update after sending a channel_announcement when we receive our
6148                                                 // counterparty's announcement_signatures. Thus, we only bother to send a
6149                                                 // channel_update here if the channel is not public, i.e. we're not sending an
6150                                                 // announcement_signatures.
6151                                                 log_trace!(self.logger, "Sending private initial channel_update for our counterparty on channel {}", chan.context.channel_id());
6152                                                 if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
6153                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
6154                                                                 node_id: counterparty_node_id.clone(),
6155                                                                 msg,
6156                                                         });
6157                                                 }
6158                                         }
6159
6160                                         {
6161                                                 let mut pending_events = self.pending_events.lock().unwrap();
6162                                                 emit_channel_ready_event!(pending_events, chan);
6163                                         }
6164
6165                                         Ok(())
6166                                 } else {
6167                                         try_chan_phase_entry!(self, Err(ChannelError::Close(
6168                                                 "Got a channel_ready message for an unfunded channel!".into())), chan_phase_entry)
6169                                 }
6170                         },
6171                         hash_map::Entry::Vacant(_) => {
6172                                 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))
6173                         }
6174                 }
6175         }
6176
6177         fn internal_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) -> Result<(), MsgHandleErrInternal> {
6178                 let mut dropped_htlcs: Vec<(HTLCSource, PaymentHash)> = Vec::new();
6179                 let mut finish_shutdown = None;
6180                 {
6181                         let per_peer_state = self.per_peer_state.read().unwrap();
6182                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6183                                 .ok_or_else(|| {
6184                                         debug_assert!(false);
6185                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6186                                 })?;
6187                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6188                         let peer_state = &mut *peer_state_lock;
6189                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(msg.channel_id.clone()) {
6190                                 let phase = chan_phase_entry.get_mut();
6191                                 match phase {
6192                                         ChannelPhase::Funded(chan) => {
6193                                                 if !chan.received_shutdown() {
6194                                                         log_info!(self.logger, "Received a shutdown message from our counterparty for channel {}{}.",
6195                                                                 msg.channel_id,
6196                                                                 if chan.sent_shutdown() { " after we initiated shutdown" } else { "" });
6197                                                 }
6198
6199                                                 let funding_txo_opt = chan.context.get_funding_txo();
6200                                                 let (shutdown, monitor_update_opt, htlcs) = try_chan_phase_entry!(self,
6201                                                         chan.shutdown(&self.signer_provider, &peer_state.latest_features, &msg), chan_phase_entry);
6202                                                 dropped_htlcs = htlcs;
6203
6204                                                 if let Some(msg) = shutdown {
6205                                                         // We can send the `shutdown` message before updating the `ChannelMonitor`
6206                                                         // here as we don't need the monitor update to complete until we send a
6207                                                         // `shutdown_signed`, which we'll delay if we're pending a monitor update.
6208                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
6209                                                                 node_id: *counterparty_node_id,
6210                                                                 msg,
6211                                                         });
6212                                                 }
6213                                                 // Update the monitor with the shutdown script if necessary.
6214                                                 if let Some(monitor_update) = monitor_update_opt {
6215                                                         handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
6216                                                                 peer_state_lock, peer_state, per_peer_state, chan);
6217                                                 }
6218                                         },
6219                                         ChannelPhase::UnfundedInboundV1(_) | ChannelPhase::UnfundedOutboundV1(_) => {
6220                                                 let context = phase.context_mut();
6221                                                 log_error!(self.logger, "Immediately closing unfunded channel {} as peer asked to cooperatively shut it down (which is unnecessary)", &msg.channel_id);
6222                                                 self.issue_channel_close_events(&context, ClosureReason::CounterpartyCoopClosedUnfundedChannel);
6223                                                 let mut chan = remove_channel_phase!(self, chan_phase_entry);
6224                                                 finish_shutdown = Some(chan.context_mut().force_shutdown(false));
6225                                         },
6226                                 }
6227                         } else {
6228                                 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))
6229                         }
6230                 }
6231                 for htlc_source in dropped_htlcs.drain(..) {
6232                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id: msg.channel_id };
6233                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
6234                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
6235                 }
6236                 if let Some(shutdown_res) = finish_shutdown {
6237                         self.finish_close_channel(shutdown_res);
6238                 }
6239
6240                 Ok(())
6241         }
6242
6243         fn internal_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) -> Result<(), MsgHandleErrInternal> {
6244                 let mut shutdown_result = None;
6245                 let unbroadcasted_batch_funding_txid;
6246                 let per_peer_state = self.per_peer_state.read().unwrap();
6247                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6248                         .ok_or_else(|| {
6249                                 debug_assert!(false);
6250                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6251                         })?;
6252                 let (tx, chan_option) = {
6253                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6254                         let peer_state = &mut *peer_state_lock;
6255                         match peer_state.channel_by_id.entry(msg.channel_id.clone()) {
6256                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6257                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6258                                                 unbroadcasted_batch_funding_txid = chan.context.unbroadcasted_batch_funding_txid();
6259                                                 let (closing_signed, tx) = try_chan_phase_entry!(self, chan.closing_signed(&self.fee_estimator, &msg), chan_phase_entry);
6260                                                 if let Some(msg) = closing_signed {
6261                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
6262                                                                 node_id: counterparty_node_id.clone(),
6263                                                                 msg,
6264                                                         });
6265                                                 }
6266                                                 if tx.is_some() {
6267                                                         // We're done with this channel, we've got a signed closing transaction and
6268                                                         // will send the closing_signed back to the remote peer upon return. This
6269                                                         // also implies there are no pending HTLCs left on the channel, so we can
6270                                                         // fully delete it from tracking (the channel monitor is still around to
6271                                                         // watch for old state broadcasts)!
6272                                                         (tx, Some(remove_channel_phase!(self, chan_phase_entry)))
6273                                                 } else { (tx, None) }
6274                                         } else {
6275                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6276                                                         "Got a closing_signed message for an unfunded channel!".into())), chan_phase_entry);
6277                                         }
6278                                 },
6279                                 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))
6280                         }
6281                 };
6282                 if let Some(broadcast_tx) = tx {
6283                         log_info!(self.logger, "Broadcasting {}", log_tx!(broadcast_tx));
6284                         self.tx_broadcaster.broadcast_transactions(&[&broadcast_tx]);
6285                 }
6286                 if let Some(ChannelPhase::Funded(chan)) = chan_option {
6287                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6288                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6289                                 let peer_state = &mut *peer_state_lock;
6290                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6291                                         msg: update
6292                                 });
6293                         }
6294                         self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
6295                         shutdown_result = Some((None, Vec::new(), unbroadcasted_batch_funding_txid));
6296                 }
6297                 mem::drop(per_peer_state);
6298                 if let Some(shutdown_result) = shutdown_result {
6299                         self.finish_close_channel(shutdown_result);
6300                 }
6301                 Ok(())
6302         }
6303
6304         fn internal_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) -> Result<(), MsgHandleErrInternal> {
6305                 //TODO: BOLT 4 points out a specific attack where a peer may re-send an onion packet and
6306                 //determine the state of the payment based on our response/if we forward anything/the time
6307                 //we take to respond. We should take care to avoid allowing such an attack.
6308                 //
6309                 //TODO: There exists a further attack where a node may garble the onion data, forward it to
6310                 //us repeatedly garbled in different ways, and compare our error messages, which are
6311                 //encrypted with the same key. It's not immediately obvious how to usefully exploit that,
6312                 //but we should prevent it anyway.
6313
6314                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
6315                 // closing a channel), so any changes are likely to be lost on restart!
6316
6317                 let decoded_hop_res = self.decode_update_add_htlc_onion(msg);
6318                 let per_peer_state = self.per_peer_state.read().unwrap();
6319                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6320                         .ok_or_else(|| {
6321                                 debug_assert!(false);
6322                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6323                         })?;
6324                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6325                 let peer_state = &mut *peer_state_lock;
6326                 match peer_state.channel_by_id.entry(msg.channel_id) {
6327                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6328                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6329                                         let pending_forward_info = match decoded_hop_res {
6330                                                 Ok((next_hop, shared_secret, next_packet_pk_opt)) =>
6331                                                         self.construct_pending_htlc_status(msg, shared_secret, next_hop,
6332                                                                 chan.context.config().accept_underpaying_htlcs, next_packet_pk_opt),
6333                                                 Err(e) => PendingHTLCStatus::Fail(e)
6334                                         };
6335                                         let create_pending_htlc_status = |chan: &Channel<SP>, pending_forward_info: PendingHTLCStatus, error_code: u16| {
6336                                                 // If the update_add is completely bogus, the call will Err and we will close,
6337                                                 // but if we've sent a shutdown and they haven't acknowledged it yet, we just
6338                                                 // want to reject the new HTLC and fail it backwards instead of forwarding.
6339                                                 match pending_forward_info {
6340                                                         PendingHTLCStatus::Forward(PendingHTLCInfo { ref incoming_shared_secret, .. }) => {
6341                                                                 let reason = if (error_code & 0x1000) != 0 {
6342                                                                         let (real_code, error_data) = self.get_htlc_inbound_temp_fail_err_and_data(error_code, chan);
6343                                                                         HTLCFailReason::reason(real_code, error_data)
6344                                                                 } else {
6345                                                                         HTLCFailReason::from_failure_code(error_code)
6346                                                                 }.get_encrypted_failure_packet(incoming_shared_secret, &None);
6347                                                                 let msg = msgs::UpdateFailHTLC {
6348                                                                         channel_id: msg.channel_id,
6349                                                                         htlc_id: msg.htlc_id,
6350                                                                         reason
6351                                                                 };
6352                                                                 PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msg))
6353                                                         },
6354                                                         _ => pending_forward_info
6355                                                 }
6356                                         };
6357                                         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);
6358                                 } else {
6359                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6360                                                 "Got an update_add_htlc message for an unfunded channel!".into())), chan_phase_entry);
6361                                 }
6362                         },
6363                         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))
6364                 }
6365                 Ok(())
6366         }
6367
6368         fn internal_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) -> Result<(), MsgHandleErrInternal> {
6369                 let funding_txo;
6370                 let (htlc_source, forwarded_htlc_value) = {
6371                         let per_peer_state = self.per_peer_state.read().unwrap();
6372                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6373                                 .ok_or_else(|| {
6374                                         debug_assert!(false);
6375                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6376                                 })?;
6377                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6378                         let peer_state = &mut *peer_state_lock;
6379                         match peer_state.channel_by_id.entry(msg.channel_id) {
6380                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6381                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6382                                                 let res = try_chan_phase_entry!(self, chan.update_fulfill_htlc(&msg), chan_phase_entry);
6383                                                 if let HTLCSource::PreviousHopData(prev_hop) = &res.0 {
6384                                                         peer_state.actions_blocking_raa_monitor_updates.entry(msg.channel_id)
6385                                                                 .or_insert_with(Vec::new)
6386                                                                 .push(RAAMonitorUpdateBlockingAction::from_prev_hop_data(&prev_hop));
6387                                                 }
6388                                                 // Note that we do not need to push an `actions_blocking_raa_monitor_updates`
6389                                                 // entry here, even though we *do* need to block the next RAA monitor update.
6390                                                 // We do this instead in the `claim_funds_internal` by attaching a
6391                                                 // `ReleaseRAAChannelMonitorUpdate` action to the event generated when the
6392                                                 // outbound HTLC is claimed. This is guaranteed to all complete before we
6393                                                 // process the RAA as messages are processed from single peers serially.
6394                                                 funding_txo = chan.context.get_funding_txo().expect("We won't accept a fulfill until funded");
6395                                                 res
6396                                         } else {
6397                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6398                                                         "Got an update_fulfill_htlc message for an unfunded channel!".into())), chan_phase_entry);
6399                                         }
6400                                 },
6401                                 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))
6402                         }
6403                 };
6404                 self.claim_funds_internal(htlc_source, msg.payment_preimage.clone(), Some(forwarded_htlc_value), false, Some(*counterparty_node_id), funding_txo);
6405                 Ok(())
6406         }
6407
6408         fn internal_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) -> Result<(), MsgHandleErrInternal> {
6409                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
6410                 // closing a channel), so any changes are likely to be lost on restart!
6411                 let per_peer_state = self.per_peer_state.read().unwrap();
6412                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6413                         .ok_or_else(|| {
6414                                 debug_assert!(false);
6415                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6416                         })?;
6417                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6418                 let peer_state = &mut *peer_state_lock;
6419                 match peer_state.channel_by_id.entry(msg.channel_id) {
6420                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6421                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6422                                         try_chan_phase_entry!(self, chan.update_fail_htlc(&msg, HTLCFailReason::from_msg(msg)), chan_phase_entry);
6423                                 } else {
6424                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6425                                                 "Got an update_fail_htlc message for an unfunded channel!".into())), chan_phase_entry);
6426                                 }
6427                         },
6428                         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))
6429                 }
6430                 Ok(())
6431         }
6432
6433         fn internal_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) -> Result<(), MsgHandleErrInternal> {
6434                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
6435                 // closing a channel), so any changes are likely to be lost on restart!
6436                 let per_peer_state = self.per_peer_state.read().unwrap();
6437                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6438                         .ok_or_else(|| {
6439                                 debug_assert!(false);
6440                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6441                         })?;
6442                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6443                 let peer_state = &mut *peer_state_lock;
6444                 match peer_state.channel_by_id.entry(msg.channel_id) {
6445                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6446                                 if (msg.failure_code & 0x8000) == 0 {
6447                                         let chan_err: ChannelError = ChannelError::Close("Got update_fail_malformed_htlc with BADONION not set".to_owned());
6448                                         try_chan_phase_entry!(self, Err(chan_err), chan_phase_entry);
6449                                 }
6450                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6451                                         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);
6452                                 } else {
6453                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6454                                                 "Got an update_fail_malformed_htlc message for an unfunded channel!".into())), chan_phase_entry);
6455                                 }
6456                                 Ok(())
6457                         },
6458                         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))
6459                 }
6460         }
6461
6462         fn internal_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) -> Result<(), MsgHandleErrInternal> {
6463                 let per_peer_state = self.per_peer_state.read().unwrap();
6464                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6465                         .ok_or_else(|| {
6466                                 debug_assert!(false);
6467                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6468                         })?;
6469                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6470                 let peer_state = &mut *peer_state_lock;
6471                 match peer_state.channel_by_id.entry(msg.channel_id) {
6472                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6473                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6474                                         let funding_txo = chan.context.get_funding_txo();
6475                                         let monitor_update_opt = try_chan_phase_entry!(self, chan.commitment_signed(&msg, &self.logger), chan_phase_entry);
6476                                         if let Some(monitor_update) = monitor_update_opt {
6477                                                 handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update, peer_state_lock,
6478                                                         peer_state, per_peer_state, chan);
6479                                         }
6480                                         Ok(())
6481                                 } else {
6482                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6483                                                 "Got a commitment_signed message for an unfunded channel!".into())), chan_phase_entry);
6484                                 }
6485                         },
6486                         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))
6487                 }
6488         }
6489
6490         #[inline]
6491         fn forward_htlcs(&self, per_source_pending_forwards: &mut [(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)]) {
6492                 for &mut (prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, ref mut pending_forwards) in per_source_pending_forwards {
6493                         let mut push_forward_event = false;
6494                         let mut new_intercept_events = VecDeque::new();
6495                         let mut failed_intercept_forwards = Vec::new();
6496                         if !pending_forwards.is_empty() {
6497                                 for (forward_info, prev_htlc_id) in pending_forwards.drain(..) {
6498                                         let scid = match forward_info.routing {
6499                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
6500                                                 PendingHTLCRouting::Receive { .. } => 0,
6501                                                 PendingHTLCRouting::ReceiveKeysend { .. } => 0,
6502                                         };
6503                                         // Pull this now to avoid introducing a lock order with `forward_htlcs`.
6504                                         let is_our_scid = self.short_to_chan_info.read().unwrap().contains_key(&scid);
6505
6506                                         let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
6507                                         let forward_htlcs_empty = forward_htlcs.is_empty();
6508                                         match forward_htlcs.entry(scid) {
6509                                                 hash_map::Entry::Occupied(mut entry) => {
6510                                                         entry.get_mut().push(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
6511                                                                 prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info }));
6512                                                 },
6513                                                 hash_map::Entry::Vacant(entry) => {
6514                                                         if !is_our_scid && forward_info.incoming_amt_msat.is_some() &&
6515                                                            fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, scid, &self.genesis_hash)
6516                                                         {
6517                                                                 let intercept_id = InterceptId(Sha256::hash(&forward_info.incoming_shared_secret).into_inner());
6518                                                                 let mut pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
6519                                                                 match pending_intercepts.entry(intercept_id) {
6520                                                                         hash_map::Entry::Vacant(entry) => {
6521                                                                                 new_intercept_events.push_back((events::Event::HTLCIntercepted {
6522                                                                                         requested_next_hop_scid: scid,
6523                                                                                         payment_hash: forward_info.payment_hash,
6524                                                                                         inbound_amount_msat: forward_info.incoming_amt_msat.unwrap(),
6525                                                                                         expected_outbound_amount_msat: forward_info.outgoing_amt_msat,
6526                                                                                         intercept_id
6527                                                                                 }, None));
6528                                                                                 entry.insert(PendingAddHTLCInfo {
6529                                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info });
6530                                                                         },
6531                                                                         hash_map::Entry::Occupied(_) => {
6532                                                                                 log_info!(self.logger, "Failed to forward incoming HTLC: detected duplicate intercepted payment over short channel id {}", scid);
6533                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
6534                                                                                         short_channel_id: prev_short_channel_id,
6535                                                                                         user_channel_id: Some(prev_user_channel_id),
6536                                                                                         outpoint: prev_funding_outpoint,
6537                                                                                         htlc_id: prev_htlc_id,
6538                                                                                         incoming_packet_shared_secret: forward_info.incoming_shared_secret,
6539                                                                                         phantom_shared_secret: None,
6540                                                                                 });
6541
6542                                                                                 failed_intercept_forwards.push((htlc_source, forward_info.payment_hash,
6543                                                                                                 HTLCFailReason::from_failure_code(0x4000 | 10),
6544                                                                                                 HTLCDestination::InvalidForward { requested_forward_scid: scid },
6545                                                                                 ));
6546                                                                         }
6547                                                                 }
6548                                                         } else {
6549                                                                 // We don't want to generate a PendingHTLCsForwardable event if only intercepted
6550                                                                 // payments are being processed.
6551                                                                 if forward_htlcs_empty {
6552                                                                         push_forward_event = true;
6553                                                                 }
6554                                                                 entry.insert(vec!(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
6555                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info })));
6556                                                         }
6557                                                 }
6558                                         }
6559                                 }
6560                         }
6561
6562                         for (htlc_source, payment_hash, failure_reason, destination) in failed_intercept_forwards.drain(..) {
6563                                 self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
6564                         }
6565
6566                         if !new_intercept_events.is_empty() {
6567                                 let mut events = self.pending_events.lock().unwrap();
6568                                 events.append(&mut new_intercept_events);
6569                         }
6570                         if push_forward_event { self.push_pending_forwards_ev() }
6571                 }
6572         }
6573
6574         fn push_pending_forwards_ev(&self) {
6575                 let mut pending_events = self.pending_events.lock().unwrap();
6576                 let is_processing_events = self.pending_events_processor.load(Ordering::Acquire);
6577                 let num_forward_events = pending_events.iter().filter(|(ev, _)|
6578                         if let events::Event::PendingHTLCsForwardable { .. } = ev { true } else { false }
6579                 ).count();
6580                 // We only want to push a PendingHTLCsForwardable event if no others are queued. Processing
6581                 // events is done in batches and they are not removed until we're done processing each
6582                 // batch. Since handling a `PendingHTLCsForwardable` event will call back into the
6583                 // `ChannelManager`, we'll still see the original forwarding event not removed. Phantom
6584                 // payments will need an additional forwarding event before being claimed to make them look
6585                 // real by taking more time.
6586                 if (is_processing_events && num_forward_events <= 1) || num_forward_events < 1 {
6587                         pending_events.push_back((Event::PendingHTLCsForwardable {
6588                                 time_forwardable: Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS),
6589                         }, None));
6590                 }
6591         }
6592
6593         /// Checks whether [`ChannelMonitorUpdate`]s generated by the receipt of a remote
6594         /// [`msgs::RevokeAndACK`] should be held for the given channel until some other action
6595         /// completes. Note that this needs to happen in the same [`PeerState`] mutex as any release of
6596         /// the [`ChannelMonitorUpdate`] in question.
6597         fn raa_monitor_updates_held(&self,
6598                 actions_blocking_raa_monitor_updates: &BTreeMap<ChannelId, Vec<RAAMonitorUpdateBlockingAction>>,
6599                 channel_funding_outpoint: OutPoint, counterparty_node_id: PublicKey
6600         ) -> bool {
6601                 actions_blocking_raa_monitor_updates
6602                         .get(&channel_funding_outpoint.to_channel_id()).map(|v| !v.is_empty()).unwrap_or(false)
6603                 || self.pending_events.lock().unwrap().iter().any(|(_, action)| {
6604                         action == &Some(EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
6605                                 channel_funding_outpoint,
6606                                 counterparty_node_id,
6607                         })
6608                 })
6609         }
6610
6611         #[cfg(any(test, feature = "_test_utils"))]
6612         pub(crate) fn test_raa_monitor_updates_held(&self,
6613                 counterparty_node_id: PublicKey, channel_id: ChannelId
6614         ) -> bool {
6615                 let per_peer_state = self.per_peer_state.read().unwrap();
6616                 if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
6617                         let mut peer_state_lck = peer_state_mtx.lock().unwrap();
6618                         let peer_state = &mut *peer_state_lck;
6619
6620                         if let Some(chan) = peer_state.channel_by_id.get(&channel_id) {
6621                                 return self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
6622                                         chan.context().get_funding_txo().unwrap(), counterparty_node_id);
6623                         }
6624                 }
6625                 false
6626         }
6627
6628         fn internal_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) -> Result<(), MsgHandleErrInternal> {
6629                 let htlcs_to_fail = {
6630                         let per_peer_state = self.per_peer_state.read().unwrap();
6631                         let mut peer_state_lock = per_peer_state.get(counterparty_node_id)
6632                                 .ok_or_else(|| {
6633                                         debug_assert!(false);
6634                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6635                                 }).map(|mtx| mtx.lock().unwrap())?;
6636                         let peer_state = &mut *peer_state_lock;
6637                         match peer_state.channel_by_id.entry(msg.channel_id) {
6638                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6639                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6640                                                 let funding_txo_opt = chan.context.get_funding_txo();
6641                                                 let mon_update_blocked = if let Some(funding_txo) = funding_txo_opt {
6642                                                         self.raa_monitor_updates_held(
6643                                                                 &peer_state.actions_blocking_raa_monitor_updates, funding_txo,
6644                                                                 *counterparty_node_id)
6645                                                 } else { false };
6646                                                 let (htlcs_to_fail, monitor_update_opt) = try_chan_phase_entry!(self,
6647                                                         chan.revoke_and_ack(&msg, &self.fee_estimator, &self.logger, mon_update_blocked), chan_phase_entry);
6648                                                 if let Some(monitor_update) = monitor_update_opt {
6649                                                         let funding_txo = funding_txo_opt
6650                                                                 .expect("Funding outpoint must have been set for RAA handling to succeed");
6651                                                         handle_new_monitor_update!(self, funding_txo, monitor_update,
6652                                                                 peer_state_lock, peer_state, per_peer_state, chan);
6653                                                 }
6654                                                 htlcs_to_fail
6655                                         } else {
6656                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6657                                                         "Got a revoke_and_ack message for an unfunded channel!".into())), chan_phase_entry);
6658                                         }
6659                                 },
6660                                 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))
6661                         }
6662                 };
6663                 self.fail_holding_cell_htlcs(htlcs_to_fail, msg.channel_id, counterparty_node_id);
6664                 Ok(())
6665         }
6666
6667         fn internal_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) -> Result<(), MsgHandleErrInternal> {
6668                 let per_peer_state = self.per_peer_state.read().unwrap();
6669                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6670                         .ok_or_else(|| {
6671                                 debug_assert!(false);
6672                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6673                         })?;
6674                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6675                 let peer_state = &mut *peer_state_lock;
6676                 match peer_state.channel_by_id.entry(msg.channel_id) {
6677                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6678                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6679                                         try_chan_phase_entry!(self, chan.update_fee(&self.fee_estimator, &msg, &self.logger), chan_phase_entry);
6680                                 } else {
6681                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6682                                                 "Got an update_fee message for an unfunded channel!".into())), chan_phase_entry);
6683                                 }
6684                         },
6685                         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))
6686                 }
6687                 Ok(())
6688         }
6689
6690         fn internal_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) -> Result<(), MsgHandleErrInternal> {
6691                 let per_peer_state = self.per_peer_state.read().unwrap();
6692                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6693                         .ok_or_else(|| {
6694                                 debug_assert!(false);
6695                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6696                         })?;
6697                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6698                 let peer_state = &mut *peer_state_lock;
6699                 match peer_state.channel_by_id.entry(msg.channel_id) {
6700                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6701                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6702                                         if !chan.context.is_usable() {
6703                                                 return Err(MsgHandleErrInternal::from_no_close(LightningError{err: "Got an announcement_signatures before we were ready for it".to_owned(), action: msgs::ErrorAction::IgnoreError}));
6704                                         }
6705
6706                                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
6707                                                 msg: try_chan_phase_entry!(self, chan.announcement_signatures(
6708                                                         &self.node_signer, self.genesis_hash.clone(), self.best_block.read().unwrap().height(),
6709                                                         msg, &self.default_configuration
6710                                                 ), chan_phase_entry),
6711                                                 // Note that announcement_signatures fails if the channel cannot be announced,
6712                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
6713                                                 update_msg: Some(self.get_channel_update_for_broadcast(chan).unwrap()),
6714                                         });
6715                                 } else {
6716                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6717                                                 "Got an announcement_signatures message for an unfunded channel!".into())), chan_phase_entry);
6718                                 }
6719                         },
6720                         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))
6721                 }
6722                 Ok(())
6723         }
6724
6725         /// Returns DoPersist if anything changed, otherwise either SkipPersistNoEvents or an Err.
6726         fn internal_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) -> Result<NotifyOption, MsgHandleErrInternal> {
6727                 let (chan_counterparty_node_id, chan_id) = match self.short_to_chan_info.read().unwrap().get(&msg.contents.short_channel_id) {
6728                         Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
6729                         None => {
6730                                 // It's not a local channel
6731                                 return Ok(NotifyOption::SkipPersistNoEvents)
6732                         }
6733                 };
6734                 let per_peer_state = self.per_peer_state.read().unwrap();
6735                 let peer_state_mutex_opt = per_peer_state.get(&chan_counterparty_node_id);
6736                 if peer_state_mutex_opt.is_none() {
6737                         return Ok(NotifyOption::SkipPersistNoEvents)
6738                 }
6739                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
6740                 let peer_state = &mut *peer_state_lock;
6741                 match peer_state.channel_by_id.entry(chan_id) {
6742                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6743                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6744                                         if chan.context.get_counterparty_node_id() != *counterparty_node_id {
6745                                                 if chan.context.should_announce() {
6746                                                         // If the announcement is about a channel of ours which is public, some
6747                                                         // other peer may simply be forwarding all its gossip to us. Don't provide
6748                                                         // a scary-looking error message and return Ok instead.
6749                                                         return Ok(NotifyOption::SkipPersistNoEvents);
6750                                                 }
6751                                                 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));
6752                                         }
6753                                         let were_node_one = self.get_our_node_id().serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
6754                                         let msg_from_node_one = msg.contents.flags & 1 == 0;
6755                                         if were_node_one == msg_from_node_one {
6756                                                 return Ok(NotifyOption::SkipPersistNoEvents);
6757                                         } else {
6758                                                 log_debug!(self.logger, "Received channel_update {:?} for channel {}.", msg, chan_id);
6759                                                 let did_change = try_chan_phase_entry!(self, chan.channel_update(&msg), chan_phase_entry);
6760                                                 // If nothing changed after applying their update, we don't need to bother
6761                                                 // persisting.
6762                                                 if !did_change {
6763                                                         return Ok(NotifyOption::SkipPersistNoEvents);
6764                                                 }
6765                                         }
6766                                 } else {
6767                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6768                                                 "Got a channel_update for an unfunded channel!".into())), chan_phase_entry);
6769                                 }
6770                         },
6771                         hash_map::Entry::Vacant(_) => return Ok(NotifyOption::SkipPersistNoEvents)
6772                 }
6773                 Ok(NotifyOption::DoPersist)
6774         }
6775
6776         fn internal_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) -> Result<NotifyOption, MsgHandleErrInternal> {
6777                 let htlc_forwards;
6778                 let need_lnd_workaround = {
6779                         let per_peer_state = self.per_peer_state.read().unwrap();
6780
6781                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6782                                 .ok_or_else(|| {
6783                                         debug_assert!(false);
6784                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6785                                 })?;
6786                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6787                         let peer_state = &mut *peer_state_lock;
6788                         match peer_state.channel_by_id.entry(msg.channel_id) {
6789                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6790                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6791                                                 // Currently, we expect all holding cell update_adds to be dropped on peer
6792                                                 // disconnect, so Channel's reestablish will never hand us any holding cell
6793                                                 // freed HTLCs to fail backwards. If in the future we no longer drop pending
6794                                                 // add-HTLCs on disconnect, we may be handed HTLCs to fail backwards here.
6795                                                 let responses = try_chan_phase_entry!(self, chan.channel_reestablish(
6796                                                         msg, &self.logger, &self.node_signer, self.genesis_hash,
6797                                                         &self.default_configuration, &*self.best_block.read().unwrap()), chan_phase_entry);
6798                                                 let mut channel_update = None;
6799                                                 if let Some(msg) = responses.shutdown_msg {
6800                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
6801                                                                 node_id: counterparty_node_id.clone(),
6802                                                                 msg,
6803                                                         });
6804                                                 } else if chan.context.is_usable() {
6805                                                         // If the channel is in a usable state (ie the channel is not being shut
6806                                                         // down), send a unicast channel_update to our counterparty to make sure
6807                                                         // they have the latest channel parameters.
6808                                                         if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
6809                                                                 channel_update = Some(events::MessageSendEvent::SendChannelUpdate {
6810                                                                         node_id: chan.context.get_counterparty_node_id(),
6811                                                                         msg,
6812                                                                 });
6813                                                         }
6814                                                 }
6815                                                 let need_lnd_workaround = chan.context.workaround_lnd_bug_4006.take();
6816                                                 htlc_forwards = self.handle_channel_resumption(
6817                                                         &mut peer_state.pending_msg_events, chan, responses.raa, responses.commitment_update, responses.order,
6818                                                         Vec::new(), None, responses.channel_ready, responses.announcement_sigs);
6819                                                 if let Some(upd) = channel_update {
6820                                                         peer_state.pending_msg_events.push(upd);
6821                                                 }
6822                                                 need_lnd_workaround
6823                                         } else {
6824                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6825                                                         "Got a channel_reestablish message for an unfunded channel!".into())), chan_phase_entry);
6826                                         }
6827                                 },
6828                                 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))
6829                         }
6830                 };
6831
6832                 let mut persist = NotifyOption::SkipPersistHandleEvents;
6833                 if let Some(forwards) = htlc_forwards {
6834                         self.forward_htlcs(&mut [forwards][..]);
6835                         persist = NotifyOption::DoPersist;
6836                 }
6837
6838                 if let Some(channel_ready_msg) = need_lnd_workaround {
6839                         self.internal_channel_ready(counterparty_node_id, &channel_ready_msg)?;
6840                 }
6841                 Ok(persist)
6842         }
6843
6844         /// Process pending events from the [`chain::Watch`], returning whether any events were processed.
6845         fn process_pending_monitor_events(&self) -> bool {
6846                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
6847
6848                 let mut failed_channels = Vec::new();
6849                 let mut pending_monitor_events = self.chain_monitor.release_pending_monitor_events();
6850                 let has_pending_monitor_events = !pending_monitor_events.is_empty();
6851                 for (funding_outpoint, mut monitor_events, counterparty_node_id) in pending_monitor_events.drain(..) {
6852                         for monitor_event in monitor_events.drain(..) {
6853                                 match monitor_event {
6854                                         MonitorEvent::HTLCEvent(htlc_update) => {
6855                                                 if let Some(preimage) = htlc_update.payment_preimage {
6856                                                         log_trace!(self.logger, "Claiming HTLC with preimage {} from our monitor", preimage);
6857                                                         self.claim_funds_internal(htlc_update.source, preimage, htlc_update.htlc_value_satoshis.map(|v| v * 1000), true, counterparty_node_id, funding_outpoint);
6858                                                 } else {
6859                                                         log_trace!(self.logger, "Failing HTLC with hash {} from our monitor", &htlc_update.payment_hash);
6860                                                         let receiver = HTLCDestination::NextHopChannel { node_id: counterparty_node_id, channel_id: funding_outpoint.to_channel_id() };
6861                                                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
6862                                                         self.fail_htlc_backwards_internal(&htlc_update.source, &htlc_update.payment_hash, &reason, receiver);
6863                                                 }
6864                                         },
6865                                         MonitorEvent::HolderForceClosed(funding_outpoint) => {
6866                                                 let counterparty_node_id_opt = match counterparty_node_id {
6867                                                         Some(cp_id) => Some(cp_id),
6868                                                         None => {
6869                                                                 // TODO: Once we can rely on the counterparty_node_id from the
6870                                                                 // monitor event, this and the id_to_peer map should be removed.
6871                                                                 let id_to_peer = self.id_to_peer.lock().unwrap();
6872                                                                 id_to_peer.get(&funding_outpoint.to_channel_id()).cloned()
6873                                                         }
6874                                                 };
6875                                                 if let Some(counterparty_node_id) = counterparty_node_id_opt {
6876                                                         let per_peer_state = self.per_peer_state.read().unwrap();
6877                                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
6878                                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6879                                                                 let peer_state = &mut *peer_state_lock;
6880                                                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6881                                                                 if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(funding_outpoint.to_channel_id()) {
6882                                                                         if let ChannelPhase::Funded(mut chan) = remove_channel_phase!(self, chan_phase_entry) {
6883                                                                                 failed_channels.push(chan.context.force_shutdown(false));
6884                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6885                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6886                                                                                                 msg: update
6887                                                                                         });
6888                                                                                 }
6889                                                                                 self.issue_channel_close_events(&chan.context, ClosureReason::HolderForceClosed);
6890                                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
6891                                                                                         node_id: chan.context.get_counterparty_node_id(),
6892                                                                                         action: msgs::ErrorAction::SendErrorMessage {
6893                                                                                                 msg: msgs::ErrorMessage { channel_id: chan.context.channel_id(), data: "Channel force-closed".to_owned() }
6894                                                                                         },
6895                                                                                 });
6896                                                                         }
6897                                                                 }
6898                                                         }
6899                                                 }
6900                                         },
6901                                         MonitorEvent::Completed { funding_txo, monitor_update_id } => {
6902                                                 self.channel_monitor_updated(&funding_txo, monitor_update_id, counterparty_node_id.as_ref());
6903                                         },
6904                                 }
6905                         }
6906                 }
6907
6908                 for failure in failed_channels.drain(..) {
6909                         self.finish_close_channel(failure);
6910                 }
6911
6912                 has_pending_monitor_events
6913         }
6914
6915         /// In chanmon_consistency_target, we'd like to be able to restore monitor updating without
6916         /// handling all pending events (i.e. not PendingHTLCsForwardable). Thus, we expose monitor
6917         /// update events as a separate process method here.
6918         #[cfg(fuzzing)]
6919         pub fn process_monitor_events(&self) {
6920                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6921                 self.process_pending_monitor_events();
6922         }
6923
6924         /// Check the holding cell in each channel and free any pending HTLCs in them if possible.
6925         /// Returns whether there were any updates such as if pending HTLCs were freed or a monitor
6926         /// update was applied.
6927         fn check_free_holding_cells(&self) -> bool {
6928                 let mut has_monitor_update = false;
6929                 let mut failed_htlcs = Vec::new();
6930
6931                 // Walk our list of channels and find any that need to update. Note that when we do find an
6932                 // update, if it includes actions that must be taken afterwards, we have to drop the
6933                 // per-peer state lock as well as the top level per_peer_state lock. Thus, we loop until we
6934                 // manage to go through all our peers without finding a single channel to update.
6935                 'peer_loop: loop {
6936                         let per_peer_state = self.per_peer_state.read().unwrap();
6937                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6938                                 'chan_loop: loop {
6939                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6940                                         let peer_state: &mut PeerState<_> = &mut *peer_state_lock;
6941                                         for (channel_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
6942                                                 |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
6943                                         ) {
6944                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
6945                                                 let funding_txo = chan.context.get_funding_txo();
6946                                                 let (monitor_opt, holding_cell_failed_htlcs) =
6947                                                         chan.maybe_free_holding_cell_htlcs(&self.fee_estimator, &self.logger);
6948                                                 if !holding_cell_failed_htlcs.is_empty() {
6949                                                         failed_htlcs.push((holding_cell_failed_htlcs, *channel_id, counterparty_node_id));
6950                                                 }
6951                                                 if let Some(monitor_update) = monitor_opt {
6952                                                         has_monitor_update = true;
6953
6954                                                         handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update,
6955                                                                 peer_state_lock, peer_state, per_peer_state, chan);
6956                                                         continue 'peer_loop;
6957                                                 }
6958                                         }
6959                                         break 'chan_loop;
6960                                 }
6961                         }
6962                         break 'peer_loop;
6963                 }
6964
6965                 let has_update = has_monitor_update || !failed_htlcs.is_empty();
6966                 for (failures, channel_id, counterparty_node_id) in failed_htlcs.drain(..) {
6967                         self.fail_holding_cell_htlcs(failures, channel_id, &counterparty_node_id);
6968                 }
6969
6970                 has_update
6971         }
6972
6973         /// Check whether any channels have finished removing all pending updates after a shutdown
6974         /// exchange and can now send a closing_signed.
6975         /// Returns whether any closing_signed messages were generated.
6976         fn maybe_generate_initial_closing_signed(&self) -> bool {
6977                 let mut handle_errors: Vec<(PublicKey, Result<(), _>)> = Vec::new();
6978                 let mut has_update = false;
6979                 let mut shutdown_result = None;
6980                 let mut unbroadcasted_batch_funding_txid = None;
6981                 {
6982                         let per_peer_state = self.per_peer_state.read().unwrap();
6983
6984                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6985                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6986                                 let peer_state = &mut *peer_state_lock;
6987                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6988                                 peer_state.channel_by_id.retain(|channel_id, phase| {
6989                                         match phase {
6990                                                 ChannelPhase::Funded(chan) => {
6991                                                         unbroadcasted_batch_funding_txid = chan.context.unbroadcasted_batch_funding_txid();
6992                                                         match chan.maybe_propose_closing_signed(&self.fee_estimator, &self.logger) {
6993                                                                 Ok((msg_opt, tx_opt)) => {
6994                                                                         if let Some(msg) = msg_opt {
6995                                                                                 has_update = true;
6996                                                                                 pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
6997                                                                                         node_id: chan.context.get_counterparty_node_id(), msg,
6998                                                                                 });
6999                                                                         }
7000                                                                         if let Some(tx) = tx_opt {
7001                                                                                 // We're done with this channel. We got a closing_signed and sent back
7002                                                                                 // a closing_signed with a closing transaction to broadcast.
7003                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
7004                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
7005                                                                                                 msg: update
7006                                                                                         });
7007                                                                                 }
7008
7009                                                                                 self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
7010
7011                                                                                 log_info!(self.logger, "Broadcasting {}", log_tx!(tx));
7012                                                                                 self.tx_broadcaster.broadcast_transactions(&[&tx]);
7013                                                                                 update_maps_on_chan_removal!(self, &chan.context);
7014                                                                                 shutdown_result = Some((None, Vec::new(), unbroadcasted_batch_funding_txid));
7015                                                                                 false
7016                                                                         } else { true }
7017                                                                 },
7018                                                                 Err(e) => {
7019                                                                         has_update = true;
7020                                                                         let (close_channel, res) = convert_chan_phase_err!(self, e, chan, channel_id, FUNDED_CHANNEL);
7021                                                                         handle_errors.push((chan.context.get_counterparty_node_id(), Err(res)));
7022                                                                         !close_channel
7023                                                                 }
7024                                                         }
7025                                                 },
7026                                                 _ => true, // Retain unfunded channels if present.
7027                                         }
7028                                 });
7029                         }
7030                 }
7031
7032                 for (counterparty_node_id, err) in handle_errors.drain(..) {
7033                         let _ = handle_error!(self, err, counterparty_node_id);
7034                 }
7035
7036                 if let Some(shutdown_result) = shutdown_result {
7037                         self.finish_close_channel(shutdown_result);
7038                 }
7039
7040                 has_update
7041         }
7042
7043         /// Handle a list of channel failures during a block_connected or block_disconnected call,
7044         /// pushing the channel monitor update (if any) to the background events queue and removing the
7045         /// Channel object.
7046         fn handle_init_event_channel_failures(&self, mut failed_channels: Vec<ShutdownResult>) {
7047                 for mut failure in failed_channels.drain(..) {
7048                         // Either a commitment transactions has been confirmed on-chain or
7049                         // Channel::block_disconnected detected that the funding transaction has been
7050                         // reorganized out of the main chain.
7051                         // We cannot broadcast our latest local state via monitor update (as
7052                         // Channel::force_shutdown tries to make us do) as we may still be in initialization,
7053                         // so we track the update internally and handle it when the user next calls
7054                         // timer_tick_occurred, guaranteeing we're running normally.
7055                         if let Some((counterparty_node_id, funding_txo, update)) = failure.0.take() {
7056                                 assert_eq!(update.updates.len(), 1);
7057                                 if let ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } = update.updates[0] {
7058                                         assert!(should_broadcast);
7059                                 } else { unreachable!(); }
7060                                 self.pending_background_events.lock().unwrap().push(
7061                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
7062                                                 counterparty_node_id, funding_txo, update
7063                                         });
7064                         }
7065                         self.finish_close_channel(failure);
7066                 }
7067         }
7068
7069         /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
7070         /// to pay us.
7071         ///
7072         /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
7073         /// [`PaymentHash`] and [`PaymentPreimage`] for you.
7074         ///
7075         /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentClaimable`], which
7076         /// will have the [`PaymentClaimable::purpose`] be [`PaymentPurpose::InvoicePayment`] with
7077         /// its [`PaymentPurpose::InvoicePayment::payment_preimage`] field filled in. That should then be
7078         /// passed directly to [`claim_funds`].
7079         ///
7080         /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
7081         ///
7082         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
7083         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
7084         ///
7085         /// # Note
7086         ///
7087         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
7088         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
7089         ///
7090         /// Errors if `min_value_msat` is greater than total bitcoin supply.
7091         ///
7092         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
7093         /// on versions of LDK prior to 0.0.114.
7094         ///
7095         /// [`claim_funds`]: Self::claim_funds
7096         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
7097         /// [`PaymentClaimable::purpose`]: events::Event::PaymentClaimable::purpose
7098         /// [`PaymentPurpose::InvoicePayment`]: events::PaymentPurpose::InvoicePayment
7099         /// [`PaymentPurpose::InvoicePayment::payment_preimage`]: events::PaymentPurpose::InvoicePayment::payment_preimage
7100         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
7101         pub fn create_inbound_payment(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32,
7102                 min_final_cltv_expiry_delta: Option<u16>) -> Result<(PaymentHash, PaymentSecret), ()> {
7103                 inbound_payment::create(&self.inbound_payment_key, min_value_msat, invoice_expiry_delta_secs,
7104                         &self.entropy_source, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
7105                         min_final_cltv_expiry_delta)
7106         }
7107
7108         /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
7109         /// stored external to LDK.
7110         ///
7111         /// A [`PaymentClaimable`] event will only be generated if the [`PaymentSecret`] matches a
7112         /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
7113         /// the `min_value_msat` provided here, if one is provided.
7114         ///
7115         /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) should be globally unique, though
7116         /// note that LDK will not stop you from registering duplicate payment hashes for inbound
7117         /// payments.
7118         ///
7119         /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
7120         /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
7121         /// before a [`PaymentClaimable`] event will be generated, ensuring that we do not provide the
7122         /// sender "proof-of-payment" unless they have paid the required amount.
7123         ///
7124         /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
7125         /// in excess of the current time. This should roughly match the expiry time set in the invoice.
7126         /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
7127         /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
7128         /// invoices when no timeout is set.
7129         ///
7130         /// Note that we use block header time to time-out pending inbound payments (with some margin
7131         /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
7132         /// accept a payment and generate a [`PaymentClaimable`] event for some time after the expiry.
7133         /// If you need exact expiry semantics, you should enforce them upon receipt of
7134         /// [`PaymentClaimable`].
7135         ///
7136         /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry_delta`
7137         /// set to at least [`MIN_FINAL_CLTV_EXPIRY_DELTA`].
7138         ///
7139         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
7140         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
7141         ///
7142         /// # Note
7143         ///
7144         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
7145         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
7146         ///
7147         /// Errors if `min_value_msat` is greater than total bitcoin supply.
7148         ///
7149         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
7150         /// on versions of LDK prior to 0.0.114.
7151         ///
7152         /// [`create_inbound_payment`]: Self::create_inbound_payment
7153         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
7154         pub fn create_inbound_payment_for_hash(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>,
7155                 invoice_expiry_delta_secs: u32, min_final_cltv_expiry: Option<u16>) -> Result<PaymentSecret, ()> {
7156                 inbound_payment::create_from_hash(&self.inbound_payment_key, min_value_msat, payment_hash,
7157                         invoice_expiry_delta_secs, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
7158                         min_final_cltv_expiry)
7159         }
7160
7161         /// Gets an LDK-generated payment preimage from a payment hash and payment secret that were
7162         /// previously returned from [`create_inbound_payment`].
7163         ///
7164         /// [`create_inbound_payment`]: Self::create_inbound_payment
7165         pub fn get_payment_preimage(&self, payment_hash: PaymentHash, payment_secret: PaymentSecret) -> Result<PaymentPreimage, APIError> {
7166                 inbound_payment::get_payment_preimage(payment_hash, payment_secret, &self.inbound_payment_key)
7167         }
7168
7169         /// Gets a fake short channel id for use in receiving [phantom node payments]. These fake scids
7170         /// are used when constructing the phantom invoice's route hints.
7171         ///
7172         /// [phantom node payments]: crate::sign::PhantomKeysManager
7173         pub fn get_phantom_scid(&self) -> u64 {
7174                 let best_block_height = self.best_block.read().unwrap().height();
7175                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
7176                 loop {
7177                         let scid_candidate = fake_scid::Namespace::Phantom.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
7178                         // Ensure the generated scid doesn't conflict with a real channel.
7179                         match short_to_chan_info.get(&scid_candidate) {
7180                                 Some(_) => continue,
7181                                 None => return scid_candidate
7182                         }
7183                 }
7184         }
7185
7186         /// Gets route hints for use in receiving [phantom node payments].
7187         ///
7188         /// [phantom node payments]: crate::sign::PhantomKeysManager
7189         pub fn get_phantom_route_hints(&self) -> PhantomRouteHints {
7190                 PhantomRouteHints {
7191                         channels: self.list_usable_channels(),
7192                         phantom_scid: self.get_phantom_scid(),
7193                         real_node_pubkey: self.get_our_node_id(),
7194                 }
7195         }
7196
7197         /// Gets a fake short channel id for use in receiving intercepted payments. These fake scids are
7198         /// used when constructing the route hints for HTLCs intended to be intercepted. See
7199         /// [`ChannelManager::forward_intercepted_htlc`].
7200         ///
7201         /// Note that this method is not guaranteed to return unique values, you may need to call it a few
7202         /// times to get a unique scid.
7203         pub fn get_intercept_scid(&self) -> u64 {
7204                 let best_block_height = self.best_block.read().unwrap().height();
7205                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
7206                 loop {
7207                         let scid_candidate = fake_scid::Namespace::Intercept.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
7208                         // Ensure the generated scid doesn't conflict with a real channel.
7209                         if short_to_chan_info.contains_key(&scid_candidate) { continue }
7210                         return scid_candidate
7211                 }
7212         }
7213
7214         /// Gets inflight HTLC information by processing pending outbound payments that are in
7215         /// our channels. May be used during pathfinding to account for in-use channel liquidity.
7216         pub fn compute_inflight_htlcs(&self) -> InFlightHtlcs {
7217                 let mut inflight_htlcs = InFlightHtlcs::new();
7218
7219                 let per_peer_state = self.per_peer_state.read().unwrap();
7220                 for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7221                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7222                         let peer_state = &mut *peer_state_lock;
7223                         for chan in peer_state.channel_by_id.values().filter_map(
7224                                 |phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }
7225                         ) {
7226                                 for (htlc_source, _) in chan.inflight_htlc_sources() {
7227                                         if let HTLCSource::OutboundRoute { path, .. } = htlc_source {
7228                                                 inflight_htlcs.process_path(path, self.get_our_node_id());
7229                                         }
7230                                 }
7231                         }
7232                 }
7233
7234                 inflight_htlcs
7235         }
7236
7237         #[cfg(any(test, feature = "_test_utils"))]
7238         pub fn get_and_clear_pending_events(&self) -> Vec<events::Event> {
7239                 let events = core::cell::RefCell::new(Vec::new());
7240                 let event_handler = |event: events::Event| events.borrow_mut().push(event);
7241                 self.process_pending_events(&event_handler);
7242                 events.into_inner()
7243         }
7244
7245         #[cfg(feature = "_test_utils")]
7246         pub fn push_pending_event(&self, event: events::Event) {
7247                 let mut events = self.pending_events.lock().unwrap();
7248                 events.push_back((event, None));
7249         }
7250
7251         #[cfg(test)]
7252         pub fn pop_pending_event(&self) -> Option<events::Event> {
7253                 let mut events = self.pending_events.lock().unwrap();
7254                 events.pop_front().map(|(e, _)| e)
7255         }
7256
7257         #[cfg(test)]
7258         pub fn has_pending_payments(&self) -> bool {
7259                 self.pending_outbound_payments.has_pending_payments()
7260         }
7261
7262         #[cfg(test)]
7263         pub fn clear_pending_payments(&self) {
7264                 self.pending_outbound_payments.clear_pending_payments()
7265         }
7266
7267         /// When something which was blocking a channel from updating its [`ChannelMonitor`] (e.g. an
7268         /// [`Event`] being handled) completes, this should be called to restore the channel to normal
7269         /// operation. It will double-check that nothing *else* is also blocking the same channel from
7270         /// making progress and then let any blocked [`ChannelMonitorUpdate`]s fly.
7271         fn handle_monitor_update_release(&self, counterparty_node_id: PublicKey, channel_funding_outpoint: OutPoint, mut completed_blocker: Option<RAAMonitorUpdateBlockingAction>) {
7272                 loop {
7273                         let per_peer_state = self.per_peer_state.read().unwrap();
7274                         if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
7275                                 let mut peer_state_lck = peer_state_mtx.lock().unwrap();
7276                                 let peer_state = &mut *peer_state_lck;
7277
7278                                 if let Some(blocker) = completed_blocker.take() {
7279                                         // Only do this on the first iteration of the loop.
7280                                         if let Some(blockers) = peer_state.actions_blocking_raa_monitor_updates
7281                                                 .get_mut(&channel_funding_outpoint.to_channel_id())
7282                                         {
7283                                                 blockers.retain(|iter| iter != &blocker);
7284                                         }
7285                                 }
7286
7287                                 if self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
7288                                         channel_funding_outpoint, counterparty_node_id) {
7289                                         // Check that, while holding the peer lock, we don't have anything else
7290                                         // blocking monitor updates for this channel. If we do, release the monitor
7291                                         // update(s) when those blockers complete.
7292                                         log_trace!(self.logger, "Delaying monitor unlock for channel {} as another channel's mon update needs to complete first",
7293                                                 &channel_funding_outpoint.to_channel_id());
7294                                         break;
7295                                 }
7296
7297                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(channel_funding_outpoint.to_channel_id()) {
7298                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7299                                                 debug_assert_eq!(chan.context.get_funding_txo().unwrap(), channel_funding_outpoint);
7300                                                 if let Some((monitor_update, further_update_exists)) = chan.unblock_next_blocked_monitor_update() {
7301                                                         log_debug!(self.logger, "Unlocking monitor updating for channel {} and updating monitor",
7302                                                                 channel_funding_outpoint.to_channel_id());
7303                                                         handle_new_monitor_update!(self, channel_funding_outpoint, monitor_update,
7304                                                                 peer_state_lck, peer_state, per_peer_state, chan);
7305                                                         if further_update_exists {
7306                                                                 // If there are more `ChannelMonitorUpdate`s to process, restart at the
7307                                                                 // top of the loop.
7308                                                                 continue;
7309                                                         }
7310                                                 } else {
7311                                                         log_trace!(self.logger, "Unlocked monitor updating for channel {} without monitors to update",
7312                                                                 channel_funding_outpoint.to_channel_id());
7313                                                 }
7314                                         }
7315                                 }
7316                         } else {
7317                                 log_debug!(self.logger,
7318                                         "Got a release post-RAA monitor update for peer {} but the channel is gone",
7319                                         log_pubkey!(counterparty_node_id));
7320                         }
7321                         break;
7322                 }
7323         }
7324
7325         fn handle_post_event_actions(&self, actions: Vec<EventCompletionAction>) {
7326                 for action in actions {
7327                         match action {
7328                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
7329                                         channel_funding_outpoint, counterparty_node_id
7330                                 } => {
7331                                         self.handle_monitor_update_release(counterparty_node_id, channel_funding_outpoint, None);
7332                                 }
7333                         }
7334                 }
7335         }
7336
7337         /// Processes any events asynchronously in the order they were generated since the last call
7338         /// using the given event handler.
7339         ///
7340         /// See the trait-level documentation of [`EventsProvider`] for requirements.
7341         pub async fn process_pending_events_async<Future: core::future::Future, H: Fn(Event) -> Future>(
7342                 &self, handler: H
7343         ) {
7344                 let mut ev;
7345                 process_events_body!(self, ev, { handler(ev).await });
7346         }
7347 }
7348
7349 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>
7350 where
7351         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7352         T::Target: BroadcasterInterface,
7353         ES::Target: EntropySource,
7354         NS::Target: NodeSigner,
7355         SP::Target: SignerProvider,
7356         F::Target: FeeEstimator,
7357         R::Target: Router,
7358         L::Target: Logger,
7359 {
7360         /// Returns `MessageSendEvent`s strictly ordered per-peer, in the order they were generated.
7361         /// The returned array will contain `MessageSendEvent`s for different peers if
7362         /// `MessageSendEvent`s to more than one peer exists, but `MessageSendEvent`s to the same peer
7363         /// is always placed next to each other.
7364         ///
7365         /// Note that that while `MessageSendEvent`s are strictly ordered per-peer, the peer order for
7366         /// the chunks of `MessageSendEvent`s for different peers is random. I.e. if the array contains
7367         /// `MessageSendEvent`s  for both `node_a` and `node_b`, the `MessageSendEvent`s for `node_a`
7368         /// will randomly be placed first or last in the returned array.
7369         ///
7370         /// Note that even though `BroadcastChannelAnnouncement` and `BroadcastChannelUpdate`
7371         /// `MessageSendEvent`s are intended to be broadcasted to all peers, they will be pleaced among
7372         /// the `MessageSendEvent`s to the specific peer they were generated under.
7373         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent> {
7374                 let events = RefCell::new(Vec::new());
7375                 PersistenceNotifierGuard::optionally_notify(self, || {
7376                         let mut result = NotifyOption::SkipPersistNoEvents;
7377
7378                         // TODO: This behavior should be documented. It's unintuitive that we query
7379                         // ChannelMonitors when clearing other events.
7380                         if self.process_pending_monitor_events() {
7381                                 result = NotifyOption::DoPersist;
7382                         }
7383
7384                         if self.check_free_holding_cells() {
7385                                 result = NotifyOption::DoPersist;
7386                         }
7387                         if self.maybe_generate_initial_closing_signed() {
7388                                 result = NotifyOption::DoPersist;
7389                         }
7390
7391                         let mut pending_events = Vec::new();
7392                         let per_peer_state = self.per_peer_state.read().unwrap();
7393                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7394                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7395                                 let peer_state = &mut *peer_state_lock;
7396                                 if peer_state.pending_msg_events.len() > 0 {
7397                                         pending_events.append(&mut peer_state.pending_msg_events);
7398                                 }
7399                         }
7400
7401                         if !pending_events.is_empty() {
7402                                 events.replace(pending_events);
7403                         }
7404
7405                         result
7406                 });
7407                 events.into_inner()
7408         }
7409 }
7410
7411 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>
7412 where
7413         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7414         T::Target: BroadcasterInterface,
7415         ES::Target: EntropySource,
7416         NS::Target: NodeSigner,
7417         SP::Target: SignerProvider,
7418         F::Target: FeeEstimator,
7419         R::Target: Router,
7420         L::Target: Logger,
7421 {
7422         /// Processes events that must be periodically handled.
7423         ///
7424         /// An [`EventHandler`] may safely call back to the provider in order to handle an event.
7425         /// However, it must not call [`Writeable::write`] as doing so would result in a deadlock.
7426         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler {
7427                 let mut ev;
7428                 process_events_body!(self, ev, handler.handle_event(ev));
7429         }
7430 }
7431
7432 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>
7433 where
7434         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7435         T::Target: BroadcasterInterface,
7436         ES::Target: EntropySource,
7437         NS::Target: NodeSigner,
7438         SP::Target: SignerProvider,
7439         F::Target: FeeEstimator,
7440         R::Target: Router,
7441         L::Target: Logger,
7442 {
7443         fn filtered_block_connected(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
7444                 {
7445                         let best_block = self.best_block.read().unwrap();
7446                         assert_eq!(best_block.block_hash(), header.prev_blockhash,
7447                                 "Blocks must be connected in chain-order - the connected header must build on the last connected header");
7448                         assert_eq!(best_block.height(), height - 1,
7449                                 "Blocks must be connected in chain-order - the connected block height must be one greater than the previous height");
7450                 }
7451
7452                 self.transactions_confirmed(header, txdata, height);
7453                 self.best_block_updated(header, height);
7454         }
7455
7456         fn block_disconnected(&self, header: &BlockHeader, height: u32) {
7457                 let _persistence_guard =
7458                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7459                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7460                 let new_height = height - 1;
7461                 {
7462                         let mut best_block = self.best_block.write().unwrap();
7463                         assert_eq!(best_block.block_hash(), header.block_hash(),
7464                                 "Blocks must be disconnected in chain-order - the disconnected header must be the last connected header");
7465                         assert_eq!(best_block.height(), height,
7466                                 "Blocks must be disconnected in chain-order - the disconnected block must have the correct height");
7467                         *best_block = BestBlock::new(header.prev_blockhash, new_height)
7468                 }
7469
7470                 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));
7471         }
7472 }
7473
7474 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>
7475 where
7476         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7477         T::Target: BroadcasterInterface,
7478         ES::Target: EntropySource,
7479         NS::Target: NodeSigner,
7480         SP::Target: SignerProvider,
7481         F::Target: FeeEstimator,
7482         R::Target: Router,
7483         L::Target: Logger,
7484 {
7485         fn transactions_confirmed(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
7486                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7487                 // during initialization prior to the chain_monitor being fully configured in some cases.
7488                 // See the docs for `ChannelManagerReadArgs` for more.
7489
7490                 let block_hash = header.block_hash();
7491                 log_trace!(self.logger, "{} transactions included in block {} at height {} provided", txdata.len(), block_hash, height);
7492
7493                 let _persistence_guard =
7494                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7495                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7496                 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)
7497                         .map(|(a, b)| (a, Vec::new(), b)));
7498
7499                 let last_best_block_height = self.best_block.read().unwrap().height();
7500                 if height < last_best_block_height {
7501                         let timestamp = self.highest_seen_timestamp.load(Ordering::Acquire);
7502                         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));
7503                 }
7504         }
7505
7506         fn best_block_updated(&self, header: &BlockHeader, height: u32) {
7507                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7508                 // during initialization prior to the chain_monitor being fully configured in some cases.
7509                 // See the docs for `ChannelManagerReadArgs` for more.
7510
7511                 let block_hash = header.block_hash();
7512                 log_trace!(self.logger, "New best block: {} at height {}", block_hash, height);
7513
7514                 let _persistence_guard =
7515                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7516                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7517                 *self.best_block.write().unwrap() = BestBlock::new(block_hash, height);
7518
7519                 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));
7520
7521                 macro_rules! max_time {
7522                         ($timestamp: expr) => {
7523                                 loop {
7524                                         // Update $timestamp to be the max of its current value and the block
7525                                         // timestamp. This should keep us close to the current time without relying on
7526                                         // having an explicit local time source.
7527                                         // Just in case we end up in a race, we loop until we either successfully
7528                                         // update $timestamp or decide we don't need to.
7529                                         let old_serial = $timestamp.load(Ordering::Acquire);
7530                                         if old_serial >= header.time as usize { break; }
7531                                         if $timestamp.compare_exchange(old_serial, header.time as usize, Ordering::AcqRel, Ordering::Relaxed).is_ok() {
7532                                                 break;
7533                                         }
7534                                 }
7535                         }
7536                 }
7537                 max_time!(self.highest_seen_timestamp);
7538                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
7539                 payment_secrets.retain(|_, inbound_payment| {
7540                         inbound_payment.expiry_time > header.time as u64
7541                 });
7542         }
7543
7544         fn get_relevant_txids(&self) -> Vec<(Txid, Option<BlockHash>)> {
7545                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
7546                 for (_cp_id, peer_state_mutex) in self.per_peer_state.read().unwrap().iter() {
7547                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7548                         let peer_state = &mut *peer_state_lock;
7549                         for chan in peer_state.channel_by_id.values().filter_map(|phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }) {
7550                                 if let (Some(funding_txo), Some(block_hash)) = (chan.context.get_funding_txo(), chan.context.get_funding_tx_confirmed_in()) {
7551                                         res.push((funding_txo.txid, Some(block_hash)));
7552                                 }
7553                         }
7554                 }
7555                 res
7556         }
7557
7558         fn transaction_unconfirmed(&self, txid: &Txid) {
7559                 let _persistence_guard =
7560                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7561                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7562                 self.do_chain_event(None, |channel| {
7563                         if let Some(funding_txo) = channel.context.get_funding_txo() {
7564                                 if funding_txo.txid == *txid {
7565                                         channel.funding_transaction_unconfirmed(&self.logger).map(|()| (None, Vec::new(), None))
7566                                 } else { Ok((None, Vec::new(), None)) }
7567                         } else { Ok((None, Vec::new(), None)) }
7568                 });
7569         }
7570 }
7571
7572 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>
7573 where
7574         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7575         T::Target: BroadcasterInterface,
7576         ES::Target: EntropySource,
7577         NS::Target: NodeSigner,
7578         SP::Target: SignerProvider,
7579         F::Target: FeeEstimator,
7580         R::Target: Router,
7581         L::Target: Logger,
7582 {
7583         /// Calls a function which handles an on-chain event (blocks dis/connected, transactions
7584         /// un/confirmed, etc) on each channel, handling any resulting errors or messages generated by
7585         /// the function.
7586         fn do_chain_event<FN: Fn(&mut Channel<SP>) -> Result<(Option<msgs::ChannelReady>, Vec<(HTLCSource, PaymentHash)>, Option<msgs::AnnouncementSignatures>), ClosureReason>>
7587                         (&self, height_opt: Option<u32>, f: FN) {
7588                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7589                 // during initialization prior to the chain_monitor being fully configured in some cases.
7590                 // See the docs for `ChannelManagerReadArgs` for more.
7591
7592                 let mut failed_channels = Vec::new();
7593                 let mut timed_out_htlcs = Vec::new();
7594                 {
7595                         let per_peer_state = self.per_peer_state.read().unwrap();
7596                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7597                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7598                                 let peer_state = &mut *peer_state_lock;
7599                                 let pending_msg_events = &mut peer_state.pending_msg_events;
7600                                 peer_state.channel_by_id.retain(|_, phase| {
7601                                         match phase {
7602                                                 // Retain unfunded channels.
7603                                                 ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => true,
7604                                                 ChannelPhase::Funded(channel) => {
7605                                                         let res = f(channel);
7606                                                         if let Ok((channel_ready_opt, mut timed_out_pending_htlcs, announcement_sigs)) = res {
7607                                                                 for (source, payment_hash) in timed_out_pending_htlcs.drain(..) {
7608                                                                         let (failure_code, data) = self.get_htlc_inbound_temp_fail_err_and_data(0x1000|14 /* expiry_too_soon */, &channel);
7609                                                                         timed_out_htlcs.push((source, payment_hash, HTLCFailReason::reason(failure_code, data),
7610                                                                                 HTLCDestination::NextHopChannel { node_id: Some(channel.context.get_counterparty_node_id()), channel_id: channel.context.channel_id() }));
7611                                                                 }
7612                                                                 if let Some(channel_ready) = channel_ready_opt {
7613                                                                         send_channel_ready!(self, pending_msg_events, channel, channel_ready);
7614                                                                         if channel.context.is_usable() {
7615                                                                                 log_trace!(self.logger, "Sending channel_ready with private initial channel_update for our counterparty on channel {}", channel.context.channel_id());
7616                                                                                 if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
7617                                                                                         pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
7618                                                                                                 node_id: channel.context.get_counterparty_node_id(),
7619                                                                                                 msg,
7620                                                                                         });
7621                                                                                 }
7622                                                                         } else {
7623                                                                                 log_trace!(self.logger, "Sending channel_ready WITHOUT channel_update for {}", channel.context.channel_id());
7624                                                                         }
7625                                                                 }
7626
7627                                                                 {
7628                                                                         let mut pending_events = self.pending_events.lock().unwrap();
7629                                                                         emit_channel_ready_event!(pending_events, channel);
7630                                                                 }
7631
7632                                                                 if let Some(announcement_sigs) = announcement_sigs {
7633                                                                         log_trace!(self.logger, "Sending announcement_signatures for channel {}", channel.context.channel_id());
7634                                                                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
7635                                                                                 node_id: channel.context.get_counterparty_node_id(),
7636                                                                                 msg: announcement_sigs,
7637                                                                         });
7638                                                                         if let Some(height) = height_opt {
7639                                                                                 if let Some(announcement) = channel.get_signed_channel_announcement(&self.node_signer, self.genesis_hash, height, &self.default_configuration) {
7640                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
7641                                                                                                 msg: announcement,
7642                                                                                                 // Note that announcement_signatures fails if the channel cannot be announced,
7643                                                                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
7644                                                                                                 update_msg: Some(self.get_channel_update_for_broadcast(channel).unwrap()),
7645                                                                                         });
7646                                                                                 }
7647                                                                         }
7648                                                                 }
7649                                                                 if channel.is_our_channel_ready() {
7650                                                                         if let Some(real_scid) = channel.context.get_short_channel_id() {
7651                                                                                 // If we sent a 0conf channel_ready, and now have an SCID, we add it
7652                                                                                 // to the short_to_chan_info map here. Note that we check whether we
7653                                                                                 // can relay using the real SCID at relay-time (i.e.
7654                                                                                 // enforce option_scid_alias then), and if the funding tx is ever
7655                                                                                 // un-confirmed we force-close the channel, ensuring short_to_chan_info
7656                                                                                 // is always consistent.
7657                                                                                 let mut short_to_chan_info = self.short_to_chan_info.write().unwrap();
7658                                                                                 let scid_insert = short_to_chan_info.insert(real_scid, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
7659                                                                                 assert!(scid_insert.is_none() || scid_insert.unwrap() == (channel.context.get_counterparty_node_id(), channel.context.channel_id()),
7660                                                                                         "SCIDs should never collide - ensure you weren't behind by a full {} blocks when creating channels",
7661                                                                                         fake_scid::MAX_SCID_BLOCKS_FROM_NOW);
7662                                                                         }
7663                                                                 }
7664                                                         } else if let Err(reason) = res {
7665                                                                 update_maps_on_chan_removal!(self, &channel.context);
7666                                                                 // It looks like our counterparty went on-chain or funding transaction was
7667                                                                 // reorged out of the main chain. Close the channel.
7668                                                                 failed_channels.push(channel.context.force_shutdown(true));
7669                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&channel) {
7670                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
7671                                                                                 msg: update
7672                                                                         });
7673                                                                 }
7674                                                                 let reason_message = format!("{}", reason);
7675                                                                 self.issue_channel_close_events(&channel.context, reason);
7676                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
7677                                                                         node_id: channel.context.get_counterparty_node_id(),
7678                                                                         action: msgs::ErrorAction::SendErrorMessage { msg: msgs::ErrorMessage {
7679                                                                                 channel_id: channel.context.channel_id(),
7680                                                                                 data: reason_message,
7681                                                                         } },
7682                                                                 });
7683                                                                 return false;
7684                                                         }
7685                                                         true
7686                                                 }
7687                                         }
7688                                 });
7689                         }
7690                 }
7691
7692                 if let Some(height) = height_opt {
7693                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
7694                                 payment.htlcs.retain(|htlc| {
7695                                         // If height is approaching the number of blocks we think it takes us to get
7696                                         // our commitment transaction confirmed before the HTLC expires, plus the
7697                                         // number of blocks we generally consider it to take to do a commitment update,
7698                                         // just give up on it and fail the HTLC.
7699                                         if height >= htlc.cltv_expiry - HTLC_FAIL_BACK_BUFFER {
7700                                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
7701                                                 htlc_msat_height_data.extend_from_slice(&height.to_be_bytes());
7702
7703                                                 timed_out_htlcs.push((HTLCSource::PreviousHopData(htlc.prev_hop.clone()), payment_hash.clone(),
7704                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
7705                                                         HTLCDestination::FailedPayment { payment_hash: payment_hash.clone() }));
7706                                                 false
7707                                         } else { true }
7708                                 });
7709                                 !payment.htlcs.is_empty() // Only retain this entry if htlcs has at least one entry.
7710                         });
7711
7712                         let mut intercepted_htlcs = self.pending_intercepted_htlcs.lock().unwrap();
7713                         intercepted_htlcs.retain(|_, htlc| {
7714                                 if height >= htlc.forward_info.outgoing_cltv_value - HTLC_FAIL_BACK_BUFFER {
7715                                         let prev_hop_data = HTLCSource::PreviousHopData(HTLCPreviousHopData {
7716                                                 short_channel_id: htlc.prev_short_channel_id,
7717                                                 user_channel_id: Some(htlc.prev_user_channel_id),
7718                                                 htlc_id: htlc.prev_htlc_id,
7719                                                 incoming_packet_shared_secret: htlc.forward_info.incoming_shared_secret,
7720                                                 phantom_shared_secret: None,
7721                                                 outpoint: htlc.prev_funding_outpoint,
7722                                         });
7723
7724                                         let requested_forward_scid /* intercept scid */ = match htlc.forward_info.routing {
7725                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
7726                                                 _ => unreachable!(),
7727                                         };
7728                                         timed_out_htlcs.push((prev_hop_data, htlc.forward_info.payment_hash,
7729                                                         HTLCFailReason::from_failure_code(0x2000 | 2),
7730                                                         HTLCDestination::InvalidForward { requested_forward_scid }));
7731                                         log_trace!(self.logger, "Timing out intercepted HTLC with requested forward scid {}", requested_forward_scid);
7732                                         false
7733                                 } else { true }
7734                         });
7735                 }
7736
7737                 self.handle_init_event_channel_failures(failed_channels);
7738
7739                 for (source, payment_hash, reason, destination) in timed_out_htlcs.drain(..) {
7740                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, destination);
7741                 }
7742         }
7743
7744         /// Gets a [`Future`] that completes when this [`ChannelManager`] may need to be persisted or
7745         /// may have events that need processing.
7746         ///
7747         /// In order to check if this [`ChannelManager`] needs persisting, call
7748         /// [`Self::get_and_clear_needs_persistence`].
7749         ///
7750         /// Note that callbacks registered on the [`Future`] MUST NOT call back into this
7751         /// [`ChannelManager`] and should instead register actions to be taken later.
7752         pub fn get_event_or_persistence_needed_future(&self) -> Future {
7753                 self.event_persist_notifier.get_future()
7754         }
7755
7756         /// Returns true if this [`ChannelManager`] needs to be persisted.
7757         pub fn get_and_clear_needs_persistence(&self) -> bool {
7758                 self.needs_persist_flag.swap(false, Ordering::AcqRel)
7759         }
7760
7761         #[cfg(any(test, feature = "_test_utils"))]
7762         pub fn get_event_or_persist_condvar_value(&self) -> bool {
7763                 self.event_persist_notifier.notify_pending()
7764         }
7765
7766         /// Gets the latest best block which was connected either via the [`chain::Listen`] or
7767         /// [`chain::Confirm`] interfaces.
7768         pub fn current_best_block(&self) -> BestBlock {
7769                 self.best_block.read().unwrap().clone()
7770         }
7771
7772         /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
7773         /// [`ChannelManager`].
7774         pub fn node_features(&self) -> NodeFeatures {
7775                 provided_node_features(&self.default_configuration)
7776         }
7777
7778         /// Fetches the set of [`Bolt11InvoiceFeatures`] flags which are provided by or required by
7779         /// [`ChannelManager`].
7780         ///
7781         /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
7782         /// or not. Thus, this method is not public.
7783         #[cfg(any(feature = "_test_utils", test))]
7784         pub fn invoice_features(&self) -> Bolt11InvoiceFeatures {
7785                 provided_invoice_features(&self.default_configuration)
7786         }
7787
7788         /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
7789         /// [`ChannelManager`].
7790         pub fn channel_features(&self) -> ChannelFeatures {
7791                 provided_channel_features(&self.default_configuration)
7792         }
7793
7794         /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
7795         /// [`ChannelManager`].
7796         pub fn channel_type_features(&self) -> ChannelTypeFeatures {
7797                 provided_channel_type_features(&self.default_configuration)
7798         }
7799
7800         /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
7801         /// [`ChannelManager`].
7802         pub fn init_features(&self) -> InitFeatures {
7803                 provided_init_features(&self.default_configuration)
7804         }
7805 }
7806
7807 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
7808         ChannelMessageHandler for ChannelManager<M, T, ES, NS, SP, F, R, L>
7809 where
7810         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7811         T::Target: BroadcasterInterface,
7812         ES::Target: EntropySource,
7813         NS::Target: NodeSigner,
7814         SP::Target: SignerProvider,
7815         F::Target: FeeEstimator,
7816         R::Target: Router,
7817         L::Target: Logger,
7818 {
7819         fn handle_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) {
7820                 // Note that we never need to persist the updated ChannelManager for an inbound
7821                 // open_channel message - pre-funded channels are never written so there should be no
7822                 // change to the contents.
7823                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7824                         let res = self.internal_open_channel(counterparty_node_id, msg);
7825                         let persist = match &res {
7826                                 Err(e) if e.closes_channel() => {
7827                                         debug_assert!(false, "We shouldn't close a new channel");
7828                                         NotifyOption::DoPersist
7829                                 },
7830                                 _ => NotifyOption::SkipPersistHandleEvents,
7831                         };
7832                         let _ = handle_error!(self, res, *counterparty_node_id);
7833                         persist
7834                 });
7835         }
7836
7837         fn handle_open_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannelV2) {
7838                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7839                         "Dual-funded channels not supported".to_owned(),
7840                          msg.temporary_channel_id.clone())), *counterparty_node_id);
7841         }
7842
7843         fn handle_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) {
7844                 // Note that we never need to persist the updated ChannelManager for an inbound
7845                 // accept_channel message - pre-funded channels are never written so there should be no
7846                 // change to the contents.
7847                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7848                         let _ = handle_error!(self, self.internal_accept_channel(counterparty_node_id, msg), *counterparty_node_id);
7849                         NotifyOption::SkipPersistHandleEvents
7850                 });
7851         }
7852
7853         fn handle_accept_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannelV2) {
7854                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7855                         "Dual-funded channels not supported".to_owned(),
7856                          msg.temporary_channel_id.clone())), *counterparty_node_id);
7857         }
7858
7859         fn handle_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) {
7860                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7861                 let _ = handle_error!(self, self.internal_funding_created(counterparty_node_id, msg), *counterparty_node_id);
7862         }
7863
7864         fn handle_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) {
7865                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7866                 let _ = handle_error!(self, self.internal_funding_signed(counterparty_node_id, msg), *counterparty_node_id);
7867         }
7868
7869         fn handle_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) {
7870                 // Note that we never need to persist the updated ChannelManager for an inbound
7871                 // channel_ready message - while the channel's state will change, any channel_ready message
7872                 // will ultimately be re-sent on startup and the `ChannelMonitor` won't be updated so we
7873                 // will not force-close the channel on startup.
7874                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7875                         let res = self.internal_channel_ready(counterparty_node_id, msg);
7876                         let persist = match &res {
7877                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7878                                 _ => NotifyOption::SkipPersistHandleEvents,
7879                         };
7880                         let _ = handle_error!(self, res, *counterparty_node_id);
7881                         persist
7882                 });
7883         }
7884
7885         fn handle_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) {
7886                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7887                 let _ = handle_error!(self, self.internal_shutdown(counterparty_node_id, msg), *counterparty_node_id);
7888         }
7889
7890         fn handle_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) {
7891                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7892                 let _ = handle_error!(self, self.internal_closing_signed(counterparty_node_id, msg), *counterparty_node_id);
7893         }
7894
7895         fn handle_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) {
7896                 // Note that we never need to persist the updated ChannelManager for an inbound
7897                 // update_add_htlc message - the message itself doesn't change our channel state only the
7898                 // `commitment_signed` message afterwards will.
7899                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7900                         let res = self.internal_update_add_htlc(counterparty_node_id, msg);
7901                         let persist = match &res {
7902                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7903                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7904                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
7905                         };
7906                         let _ = handle_error!(self, res, *counterparty_node_id);
7907                         persist
7908                 });
7909         }
7910
7911         fn handle_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) {
7912                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7913                 let _ = handle_error!(self, self.internal_update_fulfill_htlc(counterparty_node_id, msg), *counterparty_node_id);
7914         }
7915
7916         fn handle_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) {
7917                 // Note that we never need to persist the updated ChannelManager for an inbound
7918                 // update_fail_htlc message - the message itself doesn't change our channel state only the
7919                 // `commitment_signed` message afterwards will.
7920                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7921                         let res = self.internal_update_fail_htlc(counterparty_node_id, msg);
7922                         let persist = match &res {
7923                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7924                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7925                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
7926                         };
7927                         let _ = handle_error!(self, res, *counterparty_node_id);
7928                         persist
7929                 });
7930         }
7931
7932         fn handle_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) {
7933                 // Note that we never need to persist the updated ChannelManager for an inbound
7934                 // update_fail_malformed_htlc message - the message itself doesn't change our channel state
7935                 // only the `commitment_signed` message afterwards will.
7936                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7937                         let res = self.internal_update_fail_malformed_htlc(counterparty_node_id, msg);
7938                         let persist = match &res {
7939                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7940                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7941                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
7942                         };
7943                         let _ = handle_error!(self, res, *counterparty_node_id);
7944                         persist
7945                 });
7946         }
7947
7948         fn handle_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) {
7949                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7950                 let _ = handle_error!(self, self.internal_commitment_signed(counterparty_node_id, msg), *counterparty_node_id);
7951         }
7952
7953         fn handle_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) {
7954                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7955                 let _ = handle_error!(self, self.internal_revoke_and_ack(counterparty_node_id, msg), *counterparty_node_id);
7956         }
7957
7958         fn handle_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) {
7959                 // Note that we never need to persist the updated ChannelManager for an inbound
7960                 // update_fee message - the message itself doesn't change our channel state only the
7961                 // `commitment_signed` message afterwards will.
7962                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7963                         let res = self.internal_update_fee(counterparty_node_id, msg);
7964                         let persist = match &res {
7965                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7966                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7967                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
7968                         };
7969                         let _ = handle_error!(self, res, *counterparty_node_id);
7970                         persist
7971                 });
7972         }
7973
7974         fn handle_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) {
7975                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7976                 let _ = handle_error!(self, self.internal_announcement_signatures(counterparty_node_id, msg), *counterparty_node_id);
7977         }
7978
7979         fn handle_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) {
7980                 PersistenceNotifierGuard::optionally_notify(self, || {
7981                         if let Ok(persist) = handle_error!(self, self.internal_channel_update(counterparty_node_id, msg), *counterparty_node_id) {
7982                                 persist
7983                         } else {
7984                                 NotifyOption::DoPersist
7985                         }
7986                 });
7987         }
7988
7989         fn handle_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) {
7990                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7991                         let res = self.internal_channel_reestablish(counterparty_node_id, msg);
7992                         let persist = match &res {
7993                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7994                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7995                                 Ok(persist) => *persist,
7996                         };
7997                         let _ = handle_error!(self, res, *counterparty_node_id);
7998                         persist
7999                 });
8000         }
8001
8002         fn peer_disconnected(&self, counterparty_node_id: &PublicKey) {
8003                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(
8004                         self, || NotifyOption::SkipPersistHandleEvents);
8005                 let mut failed_channels = Vec::new();
8006                 let mut per_peer_state = self.per_peer_state.write().unwrap();
8007                 let remove_peer = {
8008                         log_debug!(self.logger, "Marking channels with {} disconnected and generating channel_updates.",
8009                                 log_pubkey!(counterparty_node_id));
8010                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
8011                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8012                                 let peer_state = &mut *peer_state_lock;
8013                                 let pending_msg_events = &mut peer_state.pending_msg_events;
8014                                 peer_state.channel_by_id.retain(|_, phase| {
8015                                         let context = match phase {
8016                                                 ChannelPhase::Funded(chan) => {
8017                                                         if chan.remove_uncommitted_htlcs_and_mark_paused(&self.logger).is_ok() {
8018                                                                 // We only retain funded channels that are not shutdown.
8019                                                                 return true;
8020                                                         }
8021                                                         &mut chan.context
8022                                                 },
8023                                                 // Unfunded channels will always be removed.
8024                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
8025                                                         &mut chan.context
8026                                                 },
8027                                                 ChannelPhase::UnfundedInboundV1(chan) => {
8028                                                         &mut chan.context
8029                                                 },
8030                                         };
8031                                         // Clean up for removal.
8032                                         update_maps_on_chan_removal!(self, &context);
8033                                         self.issue_channel_close_events(&context, ClosureReason::DisconnectedPeer);
8034                                         failed_channels.push(context.force_shutdown(false));
8035                                         false
8036                                 });
8037                                 // Note that we don't bother generating any events for pre-accept channels -
8038                                 // they're not considered "channels" yet from the PoV of our events interface.
8039                                 peer_state.inbound_channel_request_by_id.clear();
8040                                 pending_msg_events.retain(|msg| {
8041                                         match msg {
8042                                                 // V1 Channel Establishment
8043                                                 &events::MessageSendEvent::SendAcceptChannel { .. } => false,
8044                                                 &events::MessageSendEvent::SendOpenChannel { .. } => false,
8045                                                 &events::MessageSendEvent::SendFundingCreated { .. } => false,
8046                                                 &events::MessageSendEvent::SendFundingSigned { .. } => false,
8047                                                 // V2 Channel Establishment
8048                                                 &events::MessageSendEvent::SendAcceptChannelV2 { .. } => false,
8049                                                 &events::MessageSendEvent::SendOpenChannelV2 { .. } => false,
8050                                                 // Common Channel Establishment
8051                                                 &events::MessageSendEvent::SendChannelReady { .. } => false,
8052                                                 &events::MessageSendEvent::SendAnnouncementSignatures { .. } => false,
8053                                                 // Interactive Transaction Construction
8054                                                 &events::MessageSendEvent::SendTxAddInput { .. } => false,
8055                                                 &events::MessageSendEvent::SendTxAddOutput { .. } => false,
8056                                                 &events::MessageSendEvent::SendTxRemoveInput { .. } => false,
8057                                                 &events::MessageSendEvent::SendTxRemoveOutput { .. } => false,
8058                                                 &events::MessageSendEvent::SendTxComplete { .. } => false,
8059                                                 &events::MessageSendEvent::SendTxSignatures { .. } => false,
8060                                                 &events::MessageSendEvent::SendTxInitRbf { .. } => false,
8061                                                 &events::MessageSendEvent::SendTxAckRbf { .. } => false,
8062                                                 &events::MessageSendEvent::SendTxAbort { .. } => false,
8063                                                 // Channel Operations
8064                                                 &events::MessageSendEvent::UpdateHTLCs { .. } => false,
8065                                                 &events::MessageSendEvent::SendRevokeAndACK { .. } => false,
8066                                                 &events::MessageSendEvent::SendClosingSigned { .. } => false,
8067                                                 &events::MessageSendEvent::SendShutdown { .. } => false,
8068                                                 &events::MessageSendEvent::SendChannelReestablish { .. } => false,
8069                                                 &events::MessageSendEvent::HandleError { .. } => false,
8070                                                 // Gossip
8071                                                 &events::MessageSendEvent::SendChannelAnnouncement { .. } => false,
8072                                                 &events::MessageSendEvent::BroadcastChannelAnnouncement { .. } => true,
8073                                                 &events::MessageSendEvent::BroadcastChannelUpdate { .. } => true,
8074                                                 &events::MessageSendEvent::BroadcastNodeAnnouncement { .. } => true,
8075                                                 &events::MessageSendEvent::SendChannelUpdate { .. } => false,
8076                                                 &events::MessageSendEvent::SendChannelRangeQuery { .. } => false,
8077                                                 &events::MessageSendEvent::SendShortIdsQuery { .. } => false,
8078                                                 &events::MessageSendEvent::SendReplyChannelRange { .. } => false,
8079                                                 &events::MessageSendEvent::SendGossipTimestampFilter { .. } => false,
8080                                         }
8081                                 });
8082                                 debug_assert!(peer_state.is_connected, "A disconnected peer cannot disconnect");
8083                                 peer_state.is_connected = false;
8084                                 peer_state.ok_to_remove(true)
8085                         } else { debug_assert!(false, "Unconnected peer disconnected"); true }
8086                 };
8087                 if remove_peer {
8088                         per_peer_state.remove(counterparty_node_id);
8089                 }
8090                 mem::drop(per_peer_state);
8091
8092                 for failure in failed_channels.drain(..) {
8093                         self.finish_close_channel(failure);
8094                 }
8095         }
8096
8097         fn peer_connected(&self, counterparty_node_id: &PublicKey, init_msg: &msgs::Init, inbound: bool) -> Result<(), ()> {
8098                 if !init_msg.features.supports_static_remote_key() {
8099                         log_debug!(self.logger, "Peer {} does not support static remote key, disconnecting", log_pubkey!(counterparty_node_id));
8100                         return Err(());
8101                 }
8102
8103                 let mut res = Ok(());
8104
8105                 PersistenceNotifierGuard::optionally_notify(self, || {
8106                         // If we have too many peers connected which don't have funded channels, disconnect the
8107                         // peer immediately (as long as it doesn't have funded channels). If we have a bunch of
8108                         // unfunded channels taking up space in memory for disconnected peers, we still let new
8109                         // peers connect, but we'll reject new channels from them.
8110                         let connected_peers_without_funded_channels = self.peers_without_funded_channels(|node| node.is_connected);
8111                         let inbound_peer_limited = inbound && connected_peers_without_funded_channels >= MAX_NO_CHANNEL_PEERS;
8112
8113                         {
8114                                 let mut peer_state_lock = self.per_peer_state.write().unwrap();
8115                                 match peer_state_lock.entry(counterparty_node_id.clone()) {
8116                                         hash_map::Entry::Vacant(e) => {
8117                                                 if inbound_peer_limited {
8118                                                         res = Err(());
8119                                                         return NotifyOption::SkipPersistNoEvents;
8120                                                 }
8121                                                 e.insert(Mutex::new(PeerState {
8122                                                         channel_by_id: HashMap::new(),
8123                                                         inbound_channel_request_by_id: HashMap::new(),
8124                                                         latest_features: init_msg.features.clone(),
8125                                                         pending_msg_events: Vec::new(),
8126                                                         in_flight_monitor_updates: BTreeMap::new(),
8127                                                         monitor_update_blocked_actions: BTreeMap::new(),
8128                                                         actions_blocking_raa_monitor_updates: BTreeMap::new(),
8129                                                         is_connected: true,
8130                                                 }));
8131                                         },
8132                                         hash_map::Entry::Occupied(e) => {
8133                                                 let mut peer_state = e.get().lock().unwrap();
8134                                                 peer_state.latest_features = init_msg.features.clone();
8135
8136                                                 let best_block_height = self.best_block.read().unwrap().height();
8137                                                 if inbound_peer_limited &&
8138                                                         Self::unfunded_channel_count(&*peer_state, best_block_height) ==
8139                                                         peer_state.channel_by_id.len()
8140                                                 {
8141                                                         res = Err(());
8142                                                         return NotifyOption::SkipPersistNoEvents;
8143                                                 }
8144
8145                                                 debug_assert!(!peer_state.is_connected, "A peer shouldn't be connected twice");
8146                                                 peer_state.is_connected = true;
8147                                         },
8148                                 }
8149                         }
8150
8151                         log_debug!(self.logger, "Generating channel_reestablish events for {}", log_pubkey!(counterparty_node_id));
8152
8153                         let per_peer_state = self.per_peer_state.read().unwrap();
8154                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
8155                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8156                                 let peer_state = &mut *peer_state_lock;
8157                                 let pending_msg_events = &mut peer_state.pending_msg_events;
8158
8159                                 peer_state.channel_by_id.iter_mut().filter_map(|(_, phase)|
8160                                         if let ChannelPhase::Funded(chan) = phase { Some(chan) } else {
8161                                                 // Since unfunded channel maps are cleared upon disconnecting a peer, and they're not persisted
8162                                                 // (so won't be recovered after a crash), they shouldn't exist here and we would never need to
8163                                                 // worry about closing and removing them.
8164                                                 debug_assert!(false);
8165                                                 None
8166                                         }
8167                                 ).for_each(|chan| {
8168                                         pending_msg_events.push(events::MessageSendEvent::SendChannelReestablish {
8169                                                 node_id: chan.context.get_counterparty_node_id(),
8170                                                 msg: chan.get_channel_reestablish(&self.logger),
8171                                         });
8172                                 });
8173                         }
8174
8175                         return NotifyOption::SkipPersistHandleEvents;
8176                         //TODO: Also re-broadcast announcement_signatures
8177                 });
8178                 res
8179         }
8180
8181         fn handle_error(&self, counterparty_node_id: &PublicKey, msg: &msgs::ErrorMessage) {
8182                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8183
8184                 match &msg.data as &str {
8185                         "cannot co-op close channel w/ active htlcs"|
8186                         "link failed to shutdown" =>
8187                         {
8188                                 // LND hasn't properly handled shutdown messages ever, and force-closes any time we
8189                                 // send one while HTLCs are still present. The issue is tracked at
8190                                 // https://github.com/lightningnetwork/lnd/issues/6039 and has had multiple patches
8191                                 // to fix it but none so far have managed to land upstream. The issue appears to be
8192                                 // very low priority for the LND team despite being marked "P1".
8193                                 // We're not going to bother handling this in a sensible way, instead simply
8194                                 // repeating the Shutdown message on repeat until morale improves.
8195                                 if !msg.channel_id.is_zero() {
8196                                         let per_peer_state = self.per_peer_state.read().unwrap();
8197                                         let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
8198                                         if peer_state_mutex_opt.is_none() { return; }
8199                                         let mut peer_state = peer_state_mutex_opt.unwrap().lock().unwrap();
8200                                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get(&msg.channel_id) {
8201                                                 if let Some(msg) = chan.get_outbound_shutdown() {
8202                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
8203                                                                 node_id: *counterparty_node_id,
8204                                                                 msg,
8205                                                         });
8206                                                 }
8207                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::HandleError {
8208                                                         node_id: *counterparty_node_id,
8209                                                         action: msgs::ErrorAction::SendWarningMessage {
8210                                                                 msg: msgs::WarningMessage {
8211                                                                         channel_id: msg.channel_id,
8212                                                                         data: "You appear to be exhibiting LND bug 6039, we'll keep sending you shutdown messages until you handle them correctly".to_owned()
8213                                                                 },
8214                                                                 log_level: Level::Trace,
8215                                                         }
8216                                                 });
8217                                         }
8218                                 }
8219                                 return;
8220                         }
8221                         _ => {}
8222                 }
8223
8224                 if msg.channel_id.is_zero() {
8225                         let channel_ids: Vec<ChannelId> = {
8226                                 let per_peer_state = self.per_peer_state.read().unwrap();
8227                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
8228                                 if peer_state_mutex_opt.is_none() { return; }
8229                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
8230                                 let peer_state = &mut *peer_state_lock;
8231                                 // Note that we don't bother generating any events for pre-accept channels -
8232                                 // they're not considered "channels" yet from the PoV of our events interface.
8233                                 peer_state.inbound_channel_request_by_id.clear();
8234                                 peer_state.channel_by_id.keys().cloned().collect()
8235                         };
8236                         for channel_id in channel_ids {
8237                                 // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
8238                                 let _ = self.force_close_channel_with_peer(&channel_id, counterparty_node_id, Some(&msg.data), true);
8239                         }
8240                 } else {
8241                         {
8242                                 // First check if we can advance the channel type and try again.
8243                                 let per_peer_state = self.per_peer_state.read().unwrap();
8244                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
8245                                 if peer_state_mutex_opt.is_none() { return; }
8246                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
8247                                 let peer_state = &mut *peer_state_lock;
8248                                 if let Some(ChannelPhase::UnfundedOutboundV1(chan)) = peer_state.channel_by_id.get_mut(&msg.channel_id) {
8249                                         if let Ok(msg) = chan.maybe_handle_error_without_close(self.genesis_hash, &self.fee_estimator) {
8250                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
8251                                                         node_id: *counterparty_node_id,
8252                                                         msg,
8253                                                 });
8254                                                 return;
8255                                         }
8256                                 }
8257                         }
8258
8259                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
8260                         let _ = self.force_close_channel_with_peer(&msg.channel_id, counterparty_node_id, Some(&msg.data), true);
8261                 }
8262         }
8263
8264         fn provided_node_features(&self) -> NodeFeatures {
8265                 provided_node_features(&self.default_configuration)
8266         }
8267
8268         fn provided_init_features(&self, _their_init_features: &PublicKey) -> InitFeatures {
8269                 provided_init_features(&self.default_configuration)
8270         }
8271
8272         fn get_genesis_hashes(&self) -> Option<Vec<ChainHash>> {
8273                 Some(vec![ChainHash::from(&self.genesis_hash[..])])
8274         }
8275
8276         fn handle_tx_add_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddInput) {
8277                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8278                         "Dual-funded channels not supported".to_owned(),
8279                          msg.channel_id.clone())), *counterparty_node_id);
8280         }
8281
8282         fn handle_tx_add_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddOutput) {
8283                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8284                         "Dual-funded channels not supported".to_owned(),
8285                          msg.channel_id.clone())), *counterparty_node_id);
8286         }
8287
8288         fn handle_tx_remove_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveInput) {
8289                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8290                         "Dual-funded channels not supported".to_owned(),
8291                          msg.channel_id.clone())), *counterparty_node_id);
8292         }
8293
8294         fn handle_tx_remove_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveOutput) {
8295                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8296                         "Dual-funded channels not supported".to_owned(),
8297                          msg.channel_id.clone())), *counterparty_node_id);
8298         }
8299
8300         fn handle_tx_complete(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxComplete) {
8301                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8302                         "Dual-funded channels not supported".to_owned(),
8303                          msg.channel_id.clone())), *counterparty_node_id);
8304         }
8305
8306         fn handle_tx_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxSignatures) {
8307                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8308                         "Dual-funded channels not supported".to_owned(),
8309                          msg.channel_id.clone())), *counterparty_node_id);
8310         }
8311
8312         fn handle_tx_init_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxInitRbf) {
8313                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8314                         "Dual-funded channels not supported".to_owned(),
8315                          msg.channel_id.clone())), *counterparty_node_id);
8316         }
8317
8318         fn handle_tx_ack_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAckRbf) {
8319                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8320                         "Dual-funded channels not supported".to_owned(),
8321                          msg.channel_id.clone())), *counterparty_node_id);
8322         }
8323
8324         fn handle_tx_abort(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAbort) {
8325                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8326                         "Dual-funded channels not supported".to_owned(),
8327                          msg.channel_id.clone())), *counterparty_node_id);
8328         }
8329 }
8330
8331 /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
8332 /// [`ChannelManager`].
8333 pub(crate) fn provided_node_features(config: &UserConfig) -> NodeFeatures {
8334         let mut node_features = provided_init_features(config).to_context();
8335         node_features.set_keysend_optional();
8336         node_features
8337 }
8338
8339 /// Fetches the set of [`Bolt11InvoiceFeatures`] flags which are provided by or required by
8340 /// [`ChannelManager`].
8341 ///
8342 /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
8343 /// or not. Thus, this method is not public.
8344 #[cfg(any(feature = "_test_utils", test))]
8345 pub(crate) fn provided_invoice_features(config: &UserConfig) -> Bolt11InvoiceFeatures {
8346         provided_init_features(config).to_context()
8347 }
8348
8349 /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
8350 /// [`ChannelManager`].
8351 pub(crate) fn provided_channel_features(config: &UserConfig) -> ChannelFeatures {
8352         provided_init_features(config).to_context()
8353 }
8354
8355 /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
8356 /// [`ChannelManager`].
8357 pub(crate) fn provided_channel_type_features(config: &UserConfig) -> ChannelTypeFeatures {
8358         ChannelTypeFeatures::from_init(&provided_init_features(config))
8359 }
8360
8361 /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
8362 /// [`ChannelManager`].
8363 pub fn provided_init_features(config: &UserConfig) -> InitFeatures {
8364         // Note that if new features are added here which other peers may (eventually) require, we
8365         // should also add the corresponding (optional) bit to the [`ChannelMessageHandler`] impl for
8366         // [`ErroringMessageHandler`].
8367         let mut features = InitFeatures::empty();
8368         features.set_data_loss_protect_required();
8369         features.set_upfront_shutdown_script_optional();
8370         features.set_variable_length_onion_required();
8371         features.set_static_remote_key_required();
8372         features.set_payment_secret_required();
8373         features.set_basic_mpp_optional();
8374         features.set_wumbo_optional();
8375         features.set_shutdown_any_segwit_optional();
8376         features.set_channel_type_optional();
8377         features.set_scid_privacy_optional();
8378         features.set_zero_conf_optional();
8379         if config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx {
8380                 features.set_anchors_zero_fee_htlc_tx_optional();
8381         }
8382         features
8383 }
8384
8385 const SERIALIZATION_VERSION: u8 = 1;
8386 const MIN_SERIALIZATION_VERSION: u8 = 1;
8387
8388 impl_writeable_tlv_based!(CounterpartyForwardingInfo, {
8389         (2, fee_base_msat, required),
8390         (4, fee_proportional_millionths, required),
8391         (6, cltv_expiry_delta, required),
8392 });
8393
8394 impl_writeable_tlv_based!(ChannelCounterparty, {
8395         (2, node_id, required),
8396         (4, features, required),
8397         (6, unspendable_punishment_reserve, required),
8398         (8, forwarding_info, option),
8399         (9, outbound_htlc_minimum_msat, option),
8400         (11, outbound_htlc_maximum_msat, option),
8401 });
8402
8403 impl Writeable for ChannelDetails {
8404         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8405                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
8406                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
8407                 let user_channel_id_low = self.user_channel_id as u64;
8408                 let user_channel_id_high_opt = Some((self.user_channel_id >> 64) as u64);
8409                 write_tlv_fields!(writer, {
8410                         (1, self.inbound_scid_alias, option),
8411                         (2, self.channel_id, required),
8412                         (3, self.channel_type, option),
8413                         (4, self.counterparty, required),
8414                         (5, self.outbound_scid_alias, option),
8415                         (6, self.funding_txo, option),
8416                         (7, self.config, option),
8417                         (8, self.short_channel_id, option),
8418                         (9, self.confirmations, option),
8419                         (10, self.channel_value_satoshis, required),
8420                         (12, self.unspendable_punishment_reserve, option),
8421                         (14, user_channel_id_low, required),
8422                         (16, self.next_outbound_htlc_limit_msat, required),  // Forwards compatibility for removed balance_msat field.
8423                         (18, self.outbound_capacity_msat, required),
8424                         (19, self.next_outbound_htlc_limit_msat, required),
8425                         (20, self.inbound_capacity_msat, required),
8426                         (21, self.next_outbound_htlc_minimum_msat, required),
8427                         (22, self.confirmations_required, option),
8428                         (24, self.force_close_spend_delay, option),
8429                         (26, self.is_outbound, required),
8430                         (28, self.is_channel_ready, required),
8431                         (30, self.is_usable, required),
8432                         (32, self.is_public, required),
8433                         (33, self.inbound_htlc_minimum_msat, option),
8434                         (35, self.inbound_htlc_maximum_msat, option),
8435                         (37, user_channel_id_high_opt, option),
8436                         (39, self.feerate_sat_per_1000_weight, option),
8437                         (41, self.channel_shutdown_state, option),
8438                 });
8439                 Ok(())
8440         }
8441 }
8442
8443 impl Readable for ChannelDetails {
8444         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8445                 _init_and_read_len_prefixed_tlv_fields!(reader, {
8446                         (1, inbound_scid_alias, option),
8447                         (2, channel_id, required),
8448                         (3, channel_type, option),
8449                         (4, counterparty, required),
8450                         (5, outbound_scid_alias, option),
8451                         (6, funding_txo, option),
8452                         (7, config, option),
8453                         (8, short_channel_id, option),
8454                         (9, confirmations, option),
8455                         (10, channel_value_satoshis, required),
8456                         (12, unspendable_punishment_reserve, option),
8457                         (14, user_channel_id_low, required),
8458                         (16, _balance_msat, option),  // Backwards compatibility for removed balance_msat field.
8459                         (18, outbound_capacity_msat, required),
8460                         // Note that by the time we get past the required read above, outbound_capacity_msat will be
8461                         // filled in, so we can safely unwrap it here.
8462                         (19, next_outbound_htlc_limit_msat, (default_value, outbound_capacity_msat.0.unwrap() as u64)),
8463                         (20, inbound_capacity_msat, required),
8464                         (21, next_outbound_htlc_minimum_msat, (default_value, 0)),
8465                         (22, confirmations_required, option),
8466                         (24, force_close_spend_delay, option),
8467                         (26, is_outbound, required),
8468                         (28, is_channel_ready, required),
8469                         (30, is_usable, required),
8470                         (32, is_public, required),
8471                         (33, inbound_htlc_minimum_msat, option),
8472                         (35, inbound_htlc_maximum_msat, option),
8473                         (37, user_channel_id_high_opt, option),
8474                         (39, feerate_sat_per_1000_weight, option),
8475                         (41, channel_shutdown_state, option),
8476                 });
8477
8478                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
8479                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
8480                 let user_channel_id_low: u64 = user_channel_id_low.0.unwrap();
8481                 let user_channel_id = user_channel_id_low as u128 +
8482                         ((user_channel_id_high_opt.unwrap_or(0 as u64) as u128) << 64);
8483
8484                 let _balance_msat: Option<u64> = _balance_msat;
8485
8486                 Ok(Self {
8487                         inbound_scid_alias,
8488                         channel_id: channel_id.0.unwrap(),
8489                         channel_type,
8490                         counterparty: counterparty.0.unwrap(),
8491                         outbound_scid_alias,
8492                         funding_txo,
8493                         config,
8494                         short_channel_id,
8495                         channel_value_satoshis: channel_value_satoshis.0.unwrap(),
8496                         unspendable_punishment_reserve,
8497                         user_channel_id,
8498                         outbound_capacity_msat: outbound_capacity_msat.0.unwrap(),
8499                         next_outbound_htlc_limit_msat: next_outbound_htlc_limit_msat.0.unwrap(),
8500                         next_outbound_htlc_minimum_msat: next_outbound_htlc_minimum_msat.0.unwrap(),
8501                         inbound_capacity_msat: inbound_capacity_msat.0.unwrap(),
8502                         confirmations_required,
8503                         confirmations,
8504                         force_close_spend_delay,
8505                         is_outbound: is_outbound.0.unwrap(),
8506                         is_channel_ready: is_channel_ready.0.unwrap(),
8507                         is_usable: is_usable.0.unwrap(),
8508                         is_public: is_public.0.unwrap(),
8509                         inbound_htlc_minimum_msat,
8510                         inbound_htlc_maximum_msat,
8511                         feerate_sat_per_1000_weight,
8512                         channel_shutdown_state,
8513                 })
8514         }
8515 }
8516
8517 impl_writeable_tlv_based!(PhantomRouteHints, {
8518         (2, channels, required_vec),
8519         (4, phantom_scid, required),
8520         (6, real_node_pubkey, required),
8521 });
8522
8523 impl_writeable_tlv_based_enum!(PendingHTLCRouting,
8524         (0, Forward) => {
8525                 (0, onion_packet, required),
8526                 (2, short_channel_id, required),
8527         },
8528         (1, Receive) => {
8529                 (0, payment_data, required),
8530                 (1, phantom_shared_secret, option),
8531                 (2, incoming_cltv_expiry, required),
8532                 (3, payment_metadata, option),
8533                 (5, custom_tlvs, optional_vec),
8534         },
8535         (2, ReceiveKeysend) => {
8536                 (0, payment_preimage, required),
8537                 (2, incoming_cltv_expiry, required),
8538                 (3, payment_metadata, option),
8539                 (4, payment_data, option), // Added in 0.0.116
8540                 (5, custom_tlvs, optional_vec),
8541         },
8542 ;);
8543
8544 impl_writeable_tlv_based!(PendingHTLCInfo, {
8545         (0, routing, required),
8546         (2, incoming_shared_secret, required),
8547         (4, payment_hash, required),
8548         (6, outgoing_amt_msat, required),
8549         (8, outgoing_cltv_value, required),
8550         (9, incoming_amt_msat, option),
8551         (10, skimmed_fee_msat, option),
8552 });
8553
8554
8555 impl Writeable for HTLCFailureMsg {
8556         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8557                 match self {
8558                         HTLCFailureMsg::Relay(msgs::UpdateFailHTLC { channel_id, htlc_id, reason }) => {
8559                                 0u8.write(writer)?;
8560                                 channel_id.write(writer)?;
8561                                 htlc_id.write(writer)?;
8562                                 reason.write(writer)?;
8563                         },
8564                         HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
8565                                 channel_id, htlc_id, sha256_of_onion, failure_code
8566                         }) => {
8567                                 1u8.write(writer)?;
8568                                 channel_id.write(writer)?;
8569                                 htlc_id.write(writer)?;
8570                                 sha256_of_onion.write(writer)?;
8571                                 failure_code.write(writer)?;
8572                         },
8573                 }
8574                 Ok(())
8575         }
8576 }
8577
8578 impl Readable for HTLCFailureMsg {
8579         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8580                 let id: u8 = Readable::read(reader)?;
8581                 match id {
8582                         0 => {
8583                                 Ok(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
8584                                         channel_id: Readable::read(reader)?,
8585                                         htlc_id: Readable::read(reader)?,
8586                                         reason: Readable::read(reader)?,
8587                                 }))
8588                         },
8589                         1 => {
8590                                 Ok(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
8591                                         channel_id: Readable::read(reader)?,
8592                                         htlc_id: Readable::read(reader)?,
8593                                         sha256_of_onion: Readable::read(reader)?,
8594                                         failure_code: Readable::read(reader)?,
8595                                 }))
8596                         },
8597                         // In versions prior to 0.0.101, HTLCFailureMsg objects were written with type 0 or 1 but
8598                         // weren't length-prefixed and thus didn't support reading the TLV stream suffix of the network
8599                         // messages contained in the variants.
8600                         // In version 0.0.101, support for reading the variants with these types was added, and
8601                         // we should migrate to writing these variants when UpdateFailHTLC or
8602                         // UpdateFailMalformedHTLC get TLV fields.
8603                         2 => {
8604                                 let length: BigSize = Readable::read(reader)?;
8605                                 let mut s = FixedLengthReader::new(reader, length.0);
8606                                 let res = Readable::read(&mut s)?;
8607                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
8608                                 Ok(HTLCFailureMsg::Relay(res))
8609                         },
8610                         3 => {
8611                                 let length: BigSize = Readable::read(reader)?;
8612                                 let mut s = FixedLengthReader::new(reader, length.0);
8613                                 let res = Readable::read(&mut s)?;
8614                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
8615                                 Ok(HTLCFailureMsg::Malformed(res))
8616                         },
8617                         _ => Err(DecodeError::UnknownRequiredFeature),
8618                 }
8619         }
8620 }
8621
8622 impl_writeable_tlv_based_enum!(PendingHTLCStatus, ;
8623         (0, Forward),
8624         (1, Fail),
8625 );
8626
8627 impl_writeable_tlv_based!(HTLCPreviousHopData, {
8628         (0, short_channel_id, required),
8629         (1, phantom_shared_secret, option),
8630         (2, outpoint, required),
8631         (4, htlc_id, required),
8632         (6, incoming_packet_shared_secret, required),
8633         (7, user_channel_id, option),
8634 });
8635
8636 impl Writeable for ClaimableHTLC {
8637         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8638                 let (payment_data, keysend_preimage) = match &self.onion_payload {
8639                         OnionPayload::Invoice { _legacy_hop_data } => (_legacy_hop_data.as_ref(), None),
8640                         OnionPayload::Spontaneous(preimage) => (None, Some(preimage)),
8641                 };
8642                 write_tlv_fields!(writer, {
8643                         (0, self.prev_hop, required),
8644                         (1, self.total_msat, required),
8645                         (2, self.value, required),
8646                         (3, self.sender_intended_value, required),
8647                         (4, payment_data, option),
8648                         (5, self.total_value_received, option),
8649                         (6, self.cltv_expiry, required),
8650                         (8, keysend_preimage, option),
8651                         (10, self.counterparty_skimmed_fee_msat, option),
8652                 });
8653                 Ok(())
8654         }
8655 }
8656
8657 impl Readable for ClaimableHTLC {
8658         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8659                 _init_and_read_len_prefixed_tlv_fields!(reader, {
8660                         (0, prev_hop, required),
8661                         (1, total_msat, option),
8662                         (2, value_ser, required),
8663                         (3, sender_intended_value, option),
8664                         (4, payment_data_opt, option),
8665                         (5, total_value_received, option),
8666                         (6, cltv_expiry, required),
8667                         (8, keysend_preimage, option),
8668                         (10, counterparty_skimmed_fee_msat, option),
8669                 });
8670                 let payment_data: Option<msgs::FinalOnionHopData> = payment_data_opt;
8671                 let value = value_ser.0.unwrap();
8672                 let onion_payload = match keysend_preimage {
8673                         Some(p) => {
8674                                 if payment_data.is_some() {
8675                                         return Err(DecodeError::InvalidValue)
8676                                 }
8677                                 if total_msat.is_none() {
8678                                         total_msat = Some(value);
8679                                 }
8680                                 OnionPayload::Spontaneous(p)
8681                         },
8682                         None => {
8683                                 if total_msat.is_none() {
8684                                         if payment_data.is_none() {
8685                                                 return Err(DecodeError::InvalidValue)
8686                                         }
8687                                         total_msat = Some(payment_data.as_ref().unwrap().total_msat);
8688                                 }
8689                                 OnionPayload::Invoice { _legacy_hop_data: payment_data }
8690                         },
8691                 };
8692                 Ok(Self {
8693                         prev_hop: prev_hop.0.unwrap(),
8694                         timer_ticks: 0,
8695                         value,
8696                         sender_intended_value: sender_intended_value.unwrap_or(value),
8697                         total_value_received,
8698                         total_msat: total_msat.unwrap(),
8699                         onion_payload,
8700                         cltv_expiry: cltv_expiry.0.unwrap(),
8701                         counterparty_skimmed_fee_msat,
8702                 })
8703         }
8704 }
8705
8706 impl Readable for HTLCSource {
8707         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8708                 let id: u8 = Readable::read(reader)?;
8709                 match id {
8710                         0 => {
8711                                 let mut session_priv: crate::util::ser::RequiredWrapper<SecretKey> = crate::util::ser::RequiredWrapper(None);
8712                                 let mut first_hop_htlc_msat: u64 = 0;
8713                                 let mut path_hops = Vec::new();
8714                                 let mut payment_id = None;
8715                                 let mut payment_params: Option<PaymentParameters> = None;
8716                                 let mut blinded_tail: Option<BlindedTail> = None;
8717                                 read_tlv_fields!(reader, {
8718                                         (0, session_priv, required),
8719                                         (1, payment_id, option),
8720                                         (2, first_hop_htlc_msat, required),
8721                                         (4, path_hops, required_vec),
8722                                         (5, payment_params, (option: ReadableArgs, 0)),
8723                                         (6, blinded_tail, option),
8724                                 });
8725                                 if payment_id.is_none() {
8726                                         // For backwards compat, if there was no payment_id written, use the session_priv bytes
8727                                         // instead.
8728                                         payment_id = Some(PaymentId(*session_priv.0.unwrap().as_ref()));
8729                                 }
8730                                 let path = Path { hops: path_hops, blinded_tail };
8731                                 if path.hops.len() == 0 {
8732                                         return Err(DecodeError::InvalidValue);
8733                                 }
8734                                 if let Some(params) = payment_params.as_mut() {
8735                                         if let Payee::Clear { ref mut final_cltv_expiry_delta, .. } = params.payee {
8736                                                 if final_cltv_expiry_delta == &0 {
8737                                                         *final_cltv_expiry_delta = path.final_cltv_expiry_delta().ok_or(DecodeError::InvalidValue)?;
8738                                                 }
8739                                         }
8740                                 }
8741                                 Ok(HTLCSource::OutboundRoute {
8742                                         session_priv: session_priv.0.unwrap(),
8743                                         first_hop_htlc_msat,
8744                                         path,
8745                                         payment_id: payment_id.unwrap(),
8746                                 })
8747                         }
8748                         1 => Ok(HTLCSource::PreviousHopData(Readable::read(reader)?)),
8749                         _ => Err(DecodeError::UnknownRequiredFeature),
8750                 }
8751         }
8752 }
8753
8754 impl Writeable for HTLCSource {
8755         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), crate::io::Error> {
8756                 match self {
8757                         HTLCSource::OutboundRoute { ref session_priv, ref first_hop_htlc_msat, ref path, payment_id } => {
8758                                 0u8.write(writer)?;
8759                                 let payment_id_opt = Some(payment_id);
8760                                 write_tlv_fields!(writer, {
8761                                         (0, session_priv, required),
8762                                         (1, payment_id_opt, option),
8763                                         (2, first_hop_htlc_msat, required),
8764                                         // 3 was previously used to write a PaymentSecret for the payment.
8765                                         (4, path.hops, required_vec),
8766                                         (5, None::<PaymentParameters>, option), // payment_params in LDK versions prior to 0.0.115
8767                                         (6, path.blinded_tail, option),
8768                                  });
8769                         }
8770                         HTLCSource::PreviousHopData(ref field) => {
8771                                 1u8.write(writer)?;
8772                                 field.write(writer)?;
8773                         }
8774                 }
8775                 Ok(())
8776         }
8777 }
8778
8779 impl_writeable_tlv_based!(PendingAddHTLCInfo, {
8780         (0, forward_info, required),
8781         (1, prev_user_channel_id, (default_value, 0)),
8782         (2, prev_short_channel_id, required),
8783         (4, prev_htlc_id, required),
8784         (6, prev_funding_outpoint, required),
8785 });
8786
8787 impl_writeable_tlv_based_enum!(HTLCForwardInfo,
8788         (1, FailHTLC) => {
8789                 (0, htlc_id, required),
8790                 (2, err_packet, required),
8791         };
8792         (0, AddHTLC)
8793 );
8794
8795 impl_writeable_tlv_based!(PendingInboundPayment, {
8796         (0, payment_secret, required),
8797         (2, expiry_time, required),
8798         (4, user_payment_id, required),
8799         (6, payment_preimage, required),
8800         (8, min_value_msat, required),
8801 });
8802
8803 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>
8804 where
8805         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8806         T::Target: BroadcasterInterface,
8807         ES::Target: EntropySource,
8808         NS::Target: NodeSigner,
8809         SP::Target: SignerProvider,
8810         F::Target: FeeEstimator,
8811         R::Target: Router,
8812         L::Target: Logger,
8813 {
8814         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8815                 let _consistency_lock = self.total_consistency_lock.write().unwrap();
8816
8817                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
8818
8819                 self.genesis_hash.write(writer)?;
8820                 {
8821                         let best_block = self.best_block.read().unwrap();
8822                         best_block.height().write(writer)?;
8823                         best_block.block_hash().write(writer)?;
8824                 }
8825
8826                 let mut serializable_peer_count: u64 = 0;
8827                 {
8828                         let per_peer_state = self.per_peer_state.read().unwrap();
8829                         let mut number_of_funded_channels = 0;
8830                         for (_, peer_state_mutex) in per_peer_state.iter() {
8831                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8832                                 let peer_state = &mut *peer_state_lock;
8833                                 if !peer_state.ok_to_remove(false) {
8834                                         serializable_peer_count += 1;
8835                                 }
8836
8837                                 number_of_funded_channels += peer_state.channel_by_id.iter().filter(
8838                                         |(_, phase)| if let ChannelPhase::Funded(chan) = phase { chan.context.is_funding_broadcast() } else { false }
8839                                 ).count();
8840                         }
8841
8842                         (number_of_funded_channels as u64).write(writer)?;
8843
8844                         for (_, peer_state_mutex) in per_peer_state.iter() {
8845                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8846                                 let peer_state = &mut *peer_state_lock;
8847                                 for channel in peer_state.channel_by_id.iter().filter_map(
8848                                         |(_, phase)| if let ChannelPhase::Funded(channel) = phase {
8849                                                 if channel.context.is_funding_broadcast() { Some(channel) } else { None }
8850                                         } else { None }
8851                                 ) {
8852                                         channel.write(writer)?;
8853                                 }
8854                         }
8855                 }
8856
8857                 {
8858                         let forward_htlcs = self.forward_htlcs.lock().unwrap();
8859                         (forward_htlcs.len() as u64).write(writer)?;
8860                         for (short_channel_id, pending_forwards) in forward_htlcs.iter() {
8861                                 short_channel_id.write(writer)?;
8862                                 (pending_forwards.len() as u64).write(writer)?;
8863                                 for forward in pending_forwards {
8864                                         forward.write(writer)?;
8865                                 }
8866                         }
8867                 }
8868
8869                 let per_peer_state = self.per_peer_state.write().unwrap();
8870
8871                 let pending_inbound_payments = self.pending_inbound_payments.lock().unwrap();
8872                 let claimable_payments = self.claimable_payments.lock().unwrap();
8873                 let pending_outbound_payments = self.pending_outbound_payments.pending_outbound_payments.lock().unwrap();
8874
8875                 let mut htlc_purposes: Vec<&events::PaymentPurpose> = Vec::new();
8876                 let mut htlc_onion_fields: Vec<&_> = Vec::new();
8877                 (claimable_payments.claimable_payments.len() as u64).write(writer)?;
8878                 for (payment_hash, payment) in claimable_payments.claimable_payments.iter() {
8879                         payment_hash.write(writer)?;
8880                         (payment.htlcs.len() as u64).write(writer)?;
8881                         for htlc in payment.htlcs.iter() {
8882                                 htlc.write(writer)?;
8883                         }
8884                         htlc_purposes.push(&payment.purpose);
8885                         htlc_onion_fields.push(&payment.onion_fields);
8886                 }
8887
8888                 let mut monitor_update_blocked_actions_per_peer = None;
8889                 let mut peer_states = Vec::new();
8890                 for (_, peer_state_mutex) in per_peer_state.iter() {
8891                         // Because we're holding the owning `per_peer_state` write lock here there's no chance
8892                         // of a lockorder violation deadlock - no other thread can be holding any
8893                         // per_peer_state lock at all.
8894                         peer_states.push(peer_state_mutex.unsafe_well_ordered_double_lock_self());
8895                 }
8896
8897                 (serializable_peer_count).write(writer)?;
8898                 for ((peer_pubkey, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
8899                         // Peers which we have no channels to should be dropped once disconnected. As we
8900                         // disconnect all peers when shutting down and serializing the ChannelManager, we
8901                         // consider all peers as disconnected here. There's therefore no need write peers with
8902                         // no channels.
8903                         if !peer_state.ok_to_remove(false) {
8904                                 peer_pubkey.write(writer)?;
8905                                 peer_state.latest_features.write(writer)?;
8906                                 if !peer_state.monitor_update_blocked_actions.is_empty() {
8907                                         monitor_update_blocked_actions_per_peer
8908                                                 .get_or_insert_with(Vec::new)
8909                                                 .push((*peer_pubkey, &peer_state.monitor_update_blocked_actions));
8910                                 }
8911                         }
8912                 }
8913
8914                 let events = self.pending_events.lock().unwrap();
8915                 // LDK versions prior to 0.0.115 don't support post-event actions, thus if there's no
8916                 // actions at all, skip writing the required TLV. Otherwise, pre-0.0.115 versions will
8917                 // refuse to read the new ChannelManager.
8918                 let events_not_backwards_compatible = events.iter().any(|(_, action)| action.is_some());
8919                 if events_not_backwards_compatible {
8920                         // If we're gonna write a even TLV that will overwrite our events anyway we might as
8921                         // well save the space and not write any events here.
8922                         0u64.write(writer)?;
8923                 } else {
8924                         (events.len() as u64).write(writer)?;
8925                         for (event, _) in events.iter() {
8926                                 event.write(writer)?;
8927                         }
8928                 }
8929
8930                 // LDK versions prior to 0.0.116 wrote the `pending_background_events`
8931                 // `MonitorUpdateRegeneratedOnStartup`s here, however there was never a reason to do so -
8932                 // the closing monitor updates were always effectively replayed on startup (either directly
8933                 // by calling `broadcast_latest_holder_commitment_txn` on a `ChannelMonitor` during
8934                 // deserialization or, in 0.0.115, by regenerating the monitor update itself).
8935                 0u64.write(writer)?;
8936
8937                 // Prior to 0.0.111 we tracked node_announcement serials here, however that now happens in
8938                 // `PeerManager`, and thus we simply write the `highest_seen_timestamp` twice, which is
8939                 // likely to be identical.
8940                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
8941                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
8942
8943                 (pending_inbound_payments.len() as u64).write(writer)?;
8944                 for (hash, pending_payment) in pending_inbound_payments.iter() {
8945                         hash.write(writer)?;
8946                         pending_payment.write(writer)?;
8947                 }
8948
8949                 // For backwards compat, write the session privs and their total length.
8950                 let mut num_pending_outbounds_compat: u64 = 0;
8951                 for (_, outbound) in pending_outbound_payments.iter() {
8952                         if !outbound.is_fulfilled() && !outbound.abandoned() {
8953                                 num_pending_outbounds_compat += outbound.remaining_parts() as u64;
8954                         }
8955                 }
8956                 num_pending_outbounds_compat.write(writer)?;
8957                 for (_, outbound) in pending_outbound_payments.iter() {
8958                         match outbound {
8959                                 PendingOutboundPayment::Legacy { session_privs } |
8960                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
8961                                         for session_priv in session_privs.iter() {
8962                                                 session_priv.write(writer)?;
8963                                         }
8964                                 }
8965                                 PendingOutboundPayment::AwaitingInvoice { .. } => {},
8966                                 PendingOutboundPayment::InvoiceReceived { .. } => {},
8967                                 PendingOutboundPayment::Fulfilled { .. } => {},
8968                                 PendingOutboundPayment::Abandoned { .. } => {},
8969                         }
8970                 }
8971
8972                 // Encode without retry info for 0.0.101 compatibility.
8973                 let mut pending_outbound_payments_no_retry: HashMap<PaymentId, HashSet<[u8; 32]>> = HashMap::new();
8974                 for (id, outbound) in pending_outbound_payments.iter() {
8975                         match outbound {
8976                                 PendingOutboundPayment::Legacy { session_privs } |
8977                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
8978                                         pending_outbound_payments_no_retry.insert(*id, session_privs.clone());
8979                                 },
8980                                 _ => {},
8981                         }
8982                 }
8983
8984                 let mut pending_intercepted_htlcs = None;
8985                 let our_pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
8986                 if our_pending_intercepts.len() != 0 {
8987                         pending_intercepted_htlcs = Some(our_pending_intercepts);
8988                 }
8989
8990                 let mut pending_claiming_payments = Some(&claimable_payments.pending_claiming_payments);
8991                 if pending_claiming_payments.as_ref().unwrap().is_empty() {
8992                         // LDK versions prior to 0.0.113 do not know how to read the pending claimed payments
8993                         // map. Thus, if there are no entries we skip writing a TLV for it.
8994                         pending_claiming_payments = None;
8995                 }
8996
8997                 let mut in_flight_monitor_updates: Option<HashMap<(&PublicKey, &OutPoint), &Vec<ChannelMonitorUpdate>>> = None;
8998                 for ((counterparty_id, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
8999                         for (funding_outpoint, updates) in peer_state.in_flight_monitor_updates.iter() {
9000                                 if !updates.is_empty() {
9001                                         if in_flight_monitor_updates.is_none() { in_flight_monitor_updates = Some(HashMap::new()); }
9002                                         in_flight_monitor_updates.as_mut().unwrap().insert((counterparty_id, funding_outpoint), updates);
9003                                 }
9004                         }
9005                 }
9006
9007                 write_tlv_fields!(writer, {
9008                         (1, pending_outbound_payments_no_retry, required),
9009                         (2, pending_intercepted_htlcs, option),
9010                         (3, pending_outbound_payments, required),
9011                         (4, pending_claiming_payments, option),
9012                         (5, self.our_network_pubkey, required),
9013                         (6, monitor_update_blocked_actions_per_peer, option),
9014                         (7, self.fake_scid_rand_bytes, required),
9015                         (8, if events_not_backwards_compatible { Some(&*events) } else { None }, option),
9016                         (9, htlc_purposes, required_vec),
9017                         (10, in_flight_monitor_updates, option),
9018                         (11, self.probing_cookie_secret, required),
9019                         (13, htlc_onion_fields, optional_vec),
9020                 });
9021
9022                 Ok(())
9023         }
9024 }
9025
9026 impl Writeable for VecDeque<(Event, Option<EventCompletionAction>)> {
9027         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
9028                 (self.len() as u64).write(w)?;
9029                 for (event, action) in self.iter() {
9030                         event.write(w)?;
9031                         action.write(w)?;
9032                         #[cfg(debug_assertions)] {
9033                                 // Events are MaybeReadable, in some cases indicating that they shouldn't actually
9034                                 // be persisted and are regenerated on restart. However, if such an event has a
9035                                 // post-event-handling action we'll write nothing for the event and would have to
9036                                 // either forget the action or fail on deserialization (which we do below). Thus,
9037                                 // check that the event is sane here.
9038                                 let event_encoded = event.encode();
9039                                 let event_read: Option<Event> =
9040                                         MaybeReadable::read(&mut &event_encoded[..]).unwrap();
9041                                 if action.is_some() { assert!(event_read.is_some()); }
9042                         }
9043                 }
9044                 Ok(())
9045         }
9046 }
9047 impl Readable for VecDeque<(Event, Option<EventCompletionAction>)> {
9048         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
9049                 let len: u64 = Readable::read(reader)?;
9050                 const MAX_ALLOC_SIZE: u64 = 1024 * 16;
9051                 let mut events: Self = VecDeque::with_capacity(cmp::min(
9052                         MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>() as u64,
9053                         len) as usize);
9054                 for _ in 0..len {
9055                         let ev_opt = MaybeReadable::read(reader)?;
9056                         let action = Readable::read(reader)?;
9057                         if let Some(ev) = ev_opt {
9058                                 events.push_back((ev, action));
9059                         } else if action.is_some() {
9060                                 return Err(DecodeError::InvalidValue);
9061                         }
9062                 }
9063                 Ok(events)
9064         }
9065 }
9066
9067 impl_writeable_tlv_based_enum!(ChannelShutdownState,
9068         (0, NotShuttingDown) => {},
9069         (2, ShutdownInitiated) => {},
9070         (4, ResolvingHTLCs) => {},
9071         (6, NegotiatingClosingFee) => {},
9072         (8, ShutdownComplete) => {}, ;
9073 );
9074
9075 /// Arguments for the creation of a ChannelManager that are not deserialized.
9076 ///
9077 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
9078 /// is:
9079 /// 1) Deserialize all stored [`ChannelMonitor`]s.
9080 /// 2) Deserialize the [`ChannelManager`] by filling in this struct and calling:
9081 ///    `<(BlockHash, ChannelManager)>::read(reader, args)`
9082 ///    This may result in closing some channels if the [`ChannelMonitor`] is newer than the stored
9083 ///    [`ChannelManager`] state to ensure no loss of funds. Thus, transactions may be broadcasted.
9084 /// 3) If you are not fetching full blocks, register all relevant [`ChannelMonitor`] outpoints the
9085 ///    same way you would handle a [`chain::Filter`] call using
9086 ///    [`ChannelMonitor::get_outputs_to_watch`] and [`ChannelMonitor::get_funding_txo`].
9087 /// 4) Reconnect blocks on your [`ChannelMonitor`]s.
9088 /// 5) Disconnect/connect blocks on the [`ChannelManager`].
9089 /// 6) Re-persist the [`ChannelMonitor`]s to ensure the latest state is on disk.
9090 ///    Note that if you're using a [`ChainMonitor`] for your [`chain::Watch`] implementation, you
9091 ///    will likely accomplish this as a side-effect of calling [`chain::Watch::watch_channel`] in
9092 ///    the next step.
9093 /// 7) Move the [`ChannelMonitor`]s into your local [`chain::Watch`]. If you're using a
9094 ///    [`ChainMonitor`], this is done by calling [`chain::Watch::watch_channel`].
9095 ///
9096 /// Note that the ordering of #4-7 is not of importance, however all four must occur before you
9097 /// call any other methods on the newly-deserialized [`ChannelManager`].
9098 ///
9099 /// Note that because some channels may be closed during deserialization, it is critical that you
9100 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
9101 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
9102 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
9103 /// not force-close the same channels but consider them live), you may end up revoking a state for
9104 /// which you've already broadcasted the transaction.
9105 ///
9106 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
9107 pub struct ChannelManagerReadArgs<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
9108 where
9109         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
9110         T::Target: BroadcasterInterface,
9111         ES::Target: EntropySource,
9112         NS::Target: NodeSigner,
9113         SP::Target: SignerProvider,
9114         F::Target: FeeEstimator,
9115         R::Target: Router,
9116         L::Target: Logger,
9117 {
9118         /// A cryptographically secure source of entropy.
9119         pub entropy_source: ES,
9120
9121         /// A signer that is able to perform node-scoped cryptographic operations.
9122         pub node_signer: NS,
9123
9124         /// The keys provider which will give us relevant keys. Some keys will be loaded during
9125         /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
9126         /// signing data.
9127         pub signer_provider: SP,
9128
9129         /// The fee_estimator for use in the ChannelManager in the future.
9130         ///
9131         /// No calls to the FeeEstimator will be made during deserialization.
9132         pub fee_estimator: F,
9133         /// The chain::Watch for use in the ChannelManager in the future.
9134         ///
9135         /// No calls to the chain::Watch will be made during deserialization. It is assumed that
9136         /// you have deserialized ChannelMonitors separately and will add them to your
9137         /// chain::Watch after deserializing this ChannelManager.
9138         pub chain_monitor: M,
9139
9140         /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
9141         /// used to broadcast the latest local commitment transactions of channels which must be
9142         /// force-closed during deserialization.
9143         pub tx_broadcaster: T,
9144         /// The router which will be used in the ChannelManager in the future for finding routes
9145         /// on-the-fly for trampoline payments. Absent in private nodes that don't support forwarding.
9146         ///
9147         /// No calls to the router will be made during deserialization.
9148         pub router: R,
9149         /// The Logger for use in the ChannelManager and which may be used to log information during
9150         /// deserialization.
9151         pub logger: L,
9152         /// Default settings used for new channels. Any existing channels will continue to use the
9153         /// runtime settings which were stored when the ChannelManager was serialized.
9154         pub default_config: UserConfig,
9155
9156         /// A map from channel funding outpoints to ChannelMonitors for those channels (ie
9157         /// value.context.get_funding_txo() should be the key).
9158         ///
9159         /// If a monitor is inconsistent with the channel state during deserialization the channel will
9160         /// be force-closed using the data in the ChannelMonitor and the channel will be dropped. This
9161         /// is true for missing channels as well. If there is a monitor missing for which we find
9162         /// channel data Err(DecodeError::InvalidValue) will be returned.
9163         ///
9164         /// In such cases the latest local transactions will be sent to the tx_broadcaster included in
9165         /// this struct.
9166         ///
9167         /// This is not exported to bindings users because we have no HashMap bindings
9168         pub channel_monitors: HashMap<OutPoint, &'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>,
9169 }
9170
9171 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
9172                 ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>
9173 where
9174         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
9175         T::Target: BroadcasterInterface,
9176         ES::Target: EntropySource,
9177         NS::Target: NodeSigner,
9178         SP::Target: SignerProvider,
9179         F::Target: FeeEstimator,
9180         R::Target: Router,
9181         L::Target: Logger,
9182 {
9183         /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
9184         /// HashMap for you. This is primarily useful for C bindings where it is not practical to
9185         /// populate a HashMap directly from C.
9186         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,
9187                         mut channel_monitors: Vec<&'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>) -> Self {
9188                 Self {
9189                         entropy_source, node_signer, signer_provider, fee_estimator, chain_monitor, tx_broadcaster, router, logger, default_config,
9190                         channel_monitors: channel_monitors.drain(..).map(|monitor| { (monitor.get_funding_txo().0, monitor) }).collect()
9191                 }
9192         }
9193 }
9194
9195 // Implement ReadableArgs for an Arc'd ChannelManager to make it a bit easier to work with the
9196 // SipmleArcChannelManager type:
9197 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
9198         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, Arc<ChannelManager<M, T, ES, NS, SP, F, R, L>>)
9199 where
9200         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
9201         T::Target: BroadcasterInterface,
9202         ES::Target: EntropySource,
9203         NS::Target: NodeSigner,
9204         SP::Target: SignerProvider,
9205         F::Target: FeeEstimator,
9206         R::Target: Router,
9207         L::Target: Logger,
9208 {
9209         fn read<Reader: io::Read>(reader: &mut Reader, args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
9210                 let (blockhash, chan_manager) = <(BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)>::read(reader, args)?;
9211                 Ok((blockhash, Arc::new(chan_manager)))
9212         }
9213 }
9214
9215 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
9216         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)
9217 where
9218         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
9219         T::Target: BroadcasterInterface,
9220         ES::Target: EntropySource,
9221         NS::Target: NodeSigner,
9222         SP::Target: SignerProvider,
9223         F::Target: FeeEstimator,
9224         R::Target: Router,
9225         L::Target: Logger,
9226 {
9227         fn read<Reader: io::Read>(reader: &mut Reader, mut args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
9228                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
9229
9230                 let genesis_hash: BlockHash = Readable::read(reader)?;
9231                 let best_block_height: u32 = Readable::read(reader)?;
9232                 let best_block_hash: BlockHash = Readable::read(reader)?;
9233
9234                 let mut failed_htlcs = Vec::new();
9235
9236                 let channel_count: u64 = Readable::read(reader)?;
9237                 let mut funding_txo_set = HashSet::with_capacity(cmp::min(channel_count as usize, 128));
9238                 let mut funded_peer_channels: HashMap<PublicKey, HashMap<ChannelId, ChannelPhase<SP>>> = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
9239                 let mut id_to_peer = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
9240                 let mut short_to_chan_info = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
9241                 let mut channel_closures = VecDeque::new();
9242                 let mut close_background_events = Vec::new();
9243                 for _ in 0..channel_count {
9244                         let mut channel: Channel<SP> = Channel::read(reader, (
9245                                 &args.entropy_source, &args.signer_provider, best_block_height, &provided_channel_type_features(&args.default_config)
9246                         ))?;
9247                         let funding_txo = channel.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
9248                         funding_txo_set.insert(funding_txo.clone());
9249                         if let Some(ref mut monitor) = args.channel_monitors.get_mut(&funding_txo) {
9250                                 if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() ||
9251                                                 channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() ||
9252                                                 channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() ||
9253                                                 channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
9254                                         // But if the channel is behind of the monitor, close the channel:
9255                                         log_error!(args.logger, "A ChannelManager is stale compared to the current ChannelMonitor!");
9256                                         log_error!(args.logger, " The channel will be force-closed and the latest commitment transaction from the ChannelMonitor broadcast.");
9257                                         if channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
9258                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
9259                                                         &channel.context.channel_id(), monitor.get_latest_update_id(), channel.context.get_latest_monitor_update_id());
9260                                         }
9261                                         if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() {
9262                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at holder commitment number {} but the ChannelManager is at holder commitment number {}.",
9263                                                         &channel.context.channel_id(), monitor.get_cur_holder_commitment_number(), channel.get_cur_holder_commitment_transaction_number());
9264                                         }
9265                                         if channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() {
9266                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at revoked counterparty transaction number {} but the ChannelManager is at revoked counterparty transaction number {}.",
9267                                                         &channel.context.channel_id(), monitor.get_min_seen_secret(), channel.get_revoked_counterparty_commitment_transaction_number());
9268                                         }
9269                                         if channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() {
9270                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at counterparty commitment transaction number {} but the ChannelManager is at counterparty commitment transaction number {}.",
9271                                                         &channel.context.channel_id(), monitor.get_cur_counterparty_commitment_number(), channel.get_cur_counterparty_commitment_transaction_number());
9272                                         }
9273                                         let (monitor_update, mut new_failed_htlcs, batch_funding_txid) = channel.context.force_shutdown(true);
9274                                         if batch_funding_txid.is_some() {
9275                                                 return Err(DecodeError::InvalidValue);
9276                                         }
9277                                         if let Some((counterparty_node_id, funding_txo, update)) = monitor_update {
9278                                                 close_background_events.push(BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
9279                                                         counterparty_node_id, funding_txo, update
9280                                                 });
9281                                         }
9282                                         failed_htlcs.append(&mut new_failed_htlcs);
9283                                         channel_closures.push_back((events::Event::ChannelClosed {
9284                                                 channel_id: channel.context.channel_id(),
9285                                                 user_channel_id: channel.context.get_user_id(),
9286                                                 reason: ClosureReason::OutdatedChannelManager,
9287                                                 counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
9288                                                 channel_capacity_sats: Some(channel.context.get_value_satoshis()),
9289                                         }, None));
9290                                         for (channel_htlc_source, payment_hash) in channel.inflight_htlc_sources() {
9291                                                 let mut found_htlc = false;
9292                                                 for (monitor_htlc_source, _) in monitor.get_all_current_outbound_htlcs() {
9293                                                         if *channel_htlc_source == monitor_htlc_source { found_htlc = true; break; }
9294                                                 }
9295                                                 if !found_htlc {
9296                                                         // If we have some HTLCs in the channel which are not present in the newer
9297                                                         // ChannelMonitor, they have been removed and should be failed back to
9298                                                         // ensure we don't forget them entirely. Note that if the missing HTLC(s)
9299                                                         // were actually claimed we'd have generated and ensured the previous-hop
9300                                                         // claim update ChannelMonitor updates were persisted prior to persising
9301                                                         // the ChannelMonitor update for the forward leg, so attempting to fail the
9302                                                         // backwards leg of the HTLC will simply be rejected.
9303                                                         log_info!(args.logger,
9304                                                                 "Failing HTLC with hash {} as it is missing in the ChannelMonitor for channel {} but was present in the (stale) ChannelManager",
9305                                                                 &channel.context.channel_id(), &payment_hash);
9306                                                         failed_htlcs.push((channel_htlc_source.clone(), *payment_hash, channel.context.get_counterparty_node_id(), channel.context.channel_id()));
9307                                                 }
9308                                         }
9309                                 } else {
9310                                         log_info!(args.logger, "Successfully loaded channel {} at update_id {} against monitor at update id {}",
9311                                                 &channel.context.channel_id(), channel.context.get_latest_monitor_update_id(),
9312                                                 monitor.get_latest_update_id());
9313                                         if let Some(short_channel_id) = channel.context.get_short_channel_id() {
9314                                                 short_to_chan_info.insert(short_channel_id, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
9315                                         }
9316                                         if channel.context.is_funding_broadcast() {
9317                                                 id_to_peer.insert(channel.context.channel_id(), channel.context.get_counterparty_node_id());
9318                                         }
9319                                         match funded_peer_channels.entry(channel.context.get_counterparty_node_id()) {
9320                                                 hash_map::Entry::Occupied(mut entry) => {
9321                                                         let by_id_map = entry.get_mut();
9322                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
9323                                                 },
9324                                                 hash_map::Entry::Vacant(entry) => {
9325                                                         let mut by_id_map = HashMap::new();
9326                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
9327                                                         entry.insert(by_id_map);
9328                                                 }
9329                                         }
9330                                 }
9331                         } else if channel.is_awaiting_initial_mon_persist() {
9332                                 // If we were persisted and shut down while the initial ChannelMonitor persistence
9333                                 // was in-progress, we never broadcasted the funding transaction and can still
9334                                 // safely discard the channel.
9335                                 let _ = channel.context.force_shutdown(false);
9336                                 channel_closures.push_back((events::Event::ChannelClosed {
9337                                         channel_id: channel.context.channel_id(),
9338                                         user_channel_id: channel.context.get_user_id(),
9339                                         reason: ClosureReason::DisconnectedPeer,
9340                                         counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
9341                                         channel_capacity_sats: Some(channel.context.get_value_satoshis()),
9342                                 }, None));
9343                         } else {
9344                                 log_error!(args.logger, "Missing ChannelMonitor for channel {} needed by ChannelManager.", &channel.context.channel_id());
9345                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
9346                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
9347                                 log_error!(args.logger, " Without the ChannelMonitor we cannot continue without risking funds.");
9348                                 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");
9349                                 return Err(DecodeError::InvalidValue);
9350                         }
9351                 }
9352
9353                 for (funding_txo, _) in args.channel_monitors.iter() {
9354                         if !funding_txo_set.contains(funding_txo) {
9355                                 log_info!(args.logger, "Queueing monitor update to ensure missing channel {} is force closed",
9356                                         &funding_txo.to_channel_id());
9357                                 let monitor_update = ChannelMonitorUpdate {
9358                                         update_id: CLOSED_CHANNEL_UPDATE_ID,
9359                                         updates: vec![ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast: true }],
9360                                 };
9361                                 close_background_events.push(BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((*funding_txo, monitor_update)));
9362                         }
9363                 }
9364
9365                 const MAX_ALLOC_SIZE: usize = 1024 * 64;
9366                 let forward_htlcs_count: u64 = Readable::read(reader)?;
9367                 let mut forward_htlcs = HashMap::with_capacity(cmp::min(forward_htlcs_count as usize, 128));
9368                 for _ in 0..forward_htlcs_count {
9369                         let short_channel_id = Readable::read(reader)?;
9370                         let pending_forwards_count: u64 = Readable::read(reader)?;
9371                         let mut pending_forwards = Vec::with_capacity(cmp::min(pending_forwards_count as usize, MAX_ALLOC_SIZE/mem::size_of::<HTLCForwardInfo>()));
9372                         for _ in 0..pending_forwards_count {
9373                                 pending_forwards.push(Readable::read(reader)?);
9374                         }
9375                         forward_htlcs.insert(short_channel_id, pending_forwards);
9376                 }
9377
9378                 let claimable_htlcs_count: u64 = Readable::read(reader)?;
9379                 let mut claimable_htlcs_list = Vec::with_capacity(cmp::min(claimable_htlcs_count as usize, 128));
9380                 for _ in 0..claimable_htlcs_count {
9381                         let payment_hash = Readable::read(reader)?;
9382                         let previous_hops_len: u64 = Readable::read(reader)?;
9383                         let mut previous_hops = Vec::with_capacity(cmp::min(previous_hops_len as usize, MAX_ALLOC_SIZE/mem::size_of::<ClaimableHTLC>()));
9384                         for _ in 0..previous_hops_len {
9385                                 previous_hops.push(<ClaimableHTLC as Readable>::read(reader)?);
9386                         }
9387                         claimable_htlcs_list.push((payment_hash, previous_hops));
9388                 }
9389
9390                 let peer_state_from_chans = |channel_by_id| {
9391                         PeerState {
9392                                 channel_by_id,
9393                                 inbound_channel_request_by_id: HashMap::new(),
9394                                 latest_features: InitFeatures::empty(),
9395                                 pending_msg_events: Vec::new(),
9396                                 in_flight_monitor_updates: BTreeMap::new(),
9397                                 monitor_update_blocked_actions: BTreeMap::new(),
9398                                 actions_blocking_raa_monitor_updates: BTreeMap::new(),
9399                                 is_connected: false,
9400                         }
9401                 };
9402
9403                 let peer_count: u64 = Readable::read(reader)?;
9404                 let mut per_peer_state = HashMap::with_capacity(cmp::min(peer_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(PublicKey, Mutex<PeerState<SP>>)>()));
9405                 for _ in 0..peer_count {
9406                         let peer_pubkey = Readable::read(reader)?;
9407                         let peer_chans = funded_peer_channels.remove(&peer_pubkey).unwrap_or(HashMap::new());
9408                         let mut peer_state = peer_state_from_chans(peer_chans);
9409                         peer_state.latest_features = Readable::read(reader)?;
9410                         per_peer_state.insert(peer_pubkey, Mutex::new(peer_state));
9411                 }
9412
9413                 let event_count: u64 = Readable::read(reader)?;
9414                 let mut pending_events_read: VecDeque<(events::Event, Option<EventCompletionAction>)> =
9415                         VecDeque::with_capacity(cmp::min(event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>()));
9416                 for _ in 0..event_count {
9417                         match MaybeReadable::read(reader)? {
9418                                 Some(event) => pending_events_read.push_back((event, None)),
9419                                 None => continue,
9420                         }
9421                 }
9422
9423                 let background_event_count: u64 = Readable::read(reader)?;
9424                 for _ in 0..background_event_count {
9425                         match <u8 as Readable>::read(reader)? {
9426                                 0 => {
9427                                         // LDK versions prior to 0.0.116 wrote pending `MonitorUpdateRegeneratedOnStartup`s here,
9428                                         // however we really don't (and never did) need them - we regenerate all
9429                                         // on-startup monitor updates.
9430                                         let _: OutPoint = Readable::read(reader)?;
9431                                         let _: ChannelMonitorUpdate = Readable::read(reader)?;
9432                                 }
9433                                 _ => return Err(DecodeError::InvalidValue),
9434                         }
9435                 }
9436
9437                 let _last_node_announcement_serial: u32 = Readable::read(reader)?; // Only used < 0.0.111
9438                 let highest_seen_timestamp: u32 = Readable::read(reader)?;
9439
9440                 let pending_inbound_payment_count: u64 = Readable::read(reader)?;
9441                 let mut pending_inbound_payments: HashMap<PaymentHash, PendingInboundPayment> = HashMap::with_capacity(cmp::min(pending_inbound_payment_count as usize, MAX_ALLOC_SIZE/(3*32)));
9442                 for _ in 0..pending_inbound_payment_count {
9443                         if pending_inbound_payments.insert(Readable::read(reader)?, Readable::read(reader)?).is_some() {
9444                                 return Err(DecodeError::InvalidValue);
9445                         }
9446                 }
9447
9448                 let pending_outbound_payments_count_compat: u64 = Readable::read(reader)?;
9449                 let mut pending_outbound_payments_compat: HashMap<PaymentId, PendingOutboundPayment> =
9450                         HashMap::with_capacity(cmp::min(pending_outbound_payments_count_compat as usize, MAX_ALLOC_SIZE/32));
9451                 for _ in 0..pending_outbound_payments_count_compat {
9452                         let session_priv = Readable::read(reader)?;
9453                         let payment = PendingOutboundPayment::Legacy {
9454                                 session_privs: [session_priv].iter().cloned().collect()
9455                         };
9456                         if pending_outbound_payments_compat.insert(PaymentId(session_priv), payment).is_some() {
9457                                 return Err(DecodeError::InvalidValue)
9458                         };
9459                 }
9460
9461                 // pending_outbound_payments_no_retry is for compatibility with 0.0.101 clients.
9462                 let mut pending_outbound_payments_no_retry: Option<HashMap<PaymentId, HashSet<[u8; 32]>>> = None;
9463                 let mut pending_outbound_payments = None;
9464                 let mut pending_intercepted_htlcs: Option<HashMap<InterceptId, PendingAddHTLCInfo>> = Some(HashMap::new());
9465                 let mut received_network_pubkey: Option<PublicKey> = None;
9466                 let mut fake_scid_rand_bytes: Option<[u8; 32]> = None;
9467                 let mut probing_cookie_secret: Option<[u8; 32]> = None;
9468                 let mut claimable_htlc_purposes = None;
9469                 let mut claimable_htlc_onion_fields = None;
9470                 let mut pending_claiming_payments = Some(HashMap::new());
9471                 let mut monitor_update_blocked_actions_per_peer: Option<Vec<(_, BTreeMap<_, Vec<_>>)>> = Some(Vec::new());
9472                 let mut events_override = None;
9473                 let mut in_flight_monitor_updates: Option<HashMap<(PublicKey, OutPoint), Vec<ChannelMonitorUpdate>>> = None;
9474                 read_tlv_fields!(reader, {
9475                         (1, pending_outbound_payments_no_retry, option),
9476                         (2, pending_intercepted_htlcs, option),
9477                         (3, pending_outbound_payments, option),
9478                         (4, pending_claiming_payments, option),
9479                         (5, received_network_pubkey, option),
9480                         (6, monitor_update_blocked_actions_per_peer, option),
9481                         (7, fake_scid_rand_bytes, option),
9482                         (8, events_override, option),
9483                         (9, claimable_htlc_purposes, optional_vec),
9484                         (10, in_flight_monitor_updates, option),
9485                         (11, probing_cookie_secret, option),
9486                         (13, claimable_htlc_onion_fields, optional_vec),
9487                 });
9488                 if fake_scid_rand_bytes.is_none() {
9489                         fake_scid_rand_bytes = Some(args.entropy_source.get_secure_random_bytes());
9490                 }
9491
9492                 if probing_cookie_secret.is_none() {
9493                         probing_cookie_secret = Some(args.entropy_source.get_secure_random_bytes());
9494                 }
9495
9496                 if let Some(events) = events_override {
9497                         pending_events_read = events;
9498                 }
9499
9500                 if !channel_closures.is_empty() {
9501                         pending_events_read.append(&mut channel_closures);
9502                 }
9503
9504                 if pending_outbound_payments.is_none() && pending_outbound_payments_no_retry.is_none() {
9505                         pending_outbound_payments = Some(pending_outbound_payments_compat);
9506                 } else if pending_outbound_payments.is_none() {
9507                         let mut outbounds = HashMap::new();
9508                         for (id, session_privs) in pending_outbound_payments_no_retry.unwrap().drain() {
9509                                 outbounds.insert(id, PendingOutboundPayment::Legacy { session_privs });
9510                         }
9511                         pending_outbound_payments = Some(outbounds);
9512                 }
9513                 let pending_outbounds = OutboundPayments {
9514                         pending_outbound_payments: Mutex::new(pending_outbound_payments.unwrap()),
9515                         retry_lock: Mutex::new(())
9516                 };
9517
9518                 // We have to replay (or skip, if they were completed after we wrote the `ChannelManager`)
9519                 // each `ChannelMonitorUpdate` in `in_flight_monitor_updates`. After doing so, we have to
9520                 // check that each channel we have isn't newer than the latest `ChannelMonitorUpdate`(s) we
9521                 // replayed, and for each monitor update we have to replay we have to ensure there's a
9522                 // `ChannelMonitor` for it.
9523                 //
9524                 // In order to do so we first walk all of our live channels (so that we can check their
9525                 // state immediately after doing the update replays, when we have the `update_id`s
9526                 // available) and then walk any remaining in-flight updates.
9527                 //
9528                 // Because the actual handling of the in-flight updates is the same, it's macro'ized here:
9529                 let mut pending_background_events = Vec::new();
9530                 macro_rules! handle_in_flight_updates {
9531                         ($counterparty_node_id: expr, $chan_in_flight_upds: expr, $funding_txo: expr,
9532                          $monitor: expr, $peer_state: expr, $channel_info_log: expr
9533                         ) => { {
9534                                 let mut max_in_flight_update_id = 0;
9535                                 $chan_in_flight_upds.retain(|upd| upd.update_id > $monitor.get_latest_update_id());
9536                                 for update in $chan_in_flight_upds.iter() {
9537                                         log_trace!(args.logger, "Replaying ChannelMonitorUpdate {} for {}channel {}",
9538                                                 update.update_id, $channel_info_log, &$funding_txo.to_channel_id());
9539                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id, update.update_id);
9540                                         pending_background_events.push(
9541                                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
9542                                                         counterparty_node_id: $counterparty_node_id,
9543                                                         funding_txo: $funding_txo,
9544                                                         update: update.clone(),
9545                                                 });
9546                                 }
9547                                 if $chan_in_flight_upds.is_empty() {
9548                                         // We had some updates to apply, but it turns out they had completed before we
9549                                         // were serialized, we just weren't notified of that. Thus, we may have to run
9550                                         // the completion actions for any monitor updates, but otherwise are done.
9551                                         pending_background_events.push(
9552                                                 BackgroundEvent::MonitorUpdatesComplete {
9553                                                         counterparty_node_id: $counterparty_node_id,
9554                                                         channel_id: $funding_txo.to_channel_id(),
9555                                                 });
9556                                 }
9557                                 if $peer_state.in_flight_monitor_updates.insert($funding_txo, $chan_in_flight_upds).is_some() {
9558                                         log_error!(args.logger, "Duplicate in-flight monitor update set for the same channel!");
9559                                         return Err(DecodeError::InvalidValue);
9560                                 }
9561                                 max_in_flight_update_id
9562                         } }
9563                 }
9564
9565                 for (counterparty_id, peer_state_mtx) in per_peer_state.iter_mut() {
9566                         let mut peer_state_lock = peer_state_mtx.lock().unwrap();
9567                         let peer_state = &mut *peer_state_lock;
9568                         for phase in peer_state.channel_by_id.values() {
9569                                 if let ChannelPhase::Funded(chan) = phase {
9570                                         // Channels that were persisted have to be funded, otherwise they should have been
9571                                         // discarded.
9572                                         let funding_txo = chan.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
9573                                         let monitor = args.channel_monitors.get(&funding_txo)
9574                                                 .expect("We already checked for monitor presence when loading channels");
9575                                         let mut max_in_flight_update_id = monitor.get_latest_update_id();
9576                                         if let Some(in_flight_upds) = &mut in_flight_monitor_updates {
9577                                                 if let Some(mut chan_in_flight_upds) = in_flight_upds.remove(&(*counterparty_id, funding_txo)) {
9578                                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id,
9579                                                                 handle_in_flight_updates!(*counterparty_id, chan_in_flight_upds,
9580                                                                         funding_txo, monitor, peer_state, ""));
9581                                                 }
9582                                         }
9583                                         if chan.get_latest_unblocked_monitor_update_id() > max_in_flight_update_id {
9584                                                 // If the channel is ahead of the monitor, return InvalidValue:
9585                                                 log_error!(args.logger, "A ChannelMonitor is stale compared to the current ChannelManager! This indicates a potentially-critical violation of the chain::Watch API!");
9586                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} with update_id through {} in-flight",
9587                                                         chan.context.channel_id(), monitor.get_latest_update_id(), max_in_flight_update_id);
9588                                                 log_error!(args.logger, " but the ChannelManager is at update_id {}.", chan.get_latest_unblocked_monitor_update_id());
9589                                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
9590                                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
9591                                                 log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
9592                                                 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");
9593                                                 return Err(DecodeError::InvalidValue);
9594                                         }
9595                                 } else {
9596                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
9597                                         // created in this `channel_by_id` map.
9598                                         debug_assert!(false);
9599                                         return Err(DecodeError::InvalidValue);
9600                                 }
9601                         }
9602                 }
9603
9604                 if let Some(in_flight_upds) = in_flight_monitor_updates {
9605                         for ((counterparty_id, funding_txo), mut chan_in_flight_updates) in in_flight_upds {
9606                                 if let Some(monitor) = args.channel_monitors.get(&funding_txo) {
9607                                         // Now that we've removed all the in-flight monitor updates for channels that are
9608                                         // still open, we need to replay any monitor updates that are for closed channels,
9609                                         // creating the neccessary peer_state entries as we go.
9610                                         let peer_state_mutex = per_peer_state.entry(counterparty_id).or_insert_with(|| {
9611                                                 Mutex::new(peer_state_from_chans(HashMap::new()))
9612                                         });
9613                                         let mut peer_state = peer_state_mutex.lock().unwrap();
9614                                         handle_in_flight_updates!(counterparty_id, chan_in_flight_updates,
9615                                                 funding_txo, monitor, peer_state, "closed ");
9616                                 } else {
9617                                         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!");
9618                                         log_error!(args.logger, " The ChannelMonitor for channel {} is missing.",
9619                                                 &funding_txo.to_channel_id());
9620                                         log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
9621                                         log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
9622                                         log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
9623                                         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");
9624                                         return Err(DecodeError::InvalidValue);
9625                                 }
9626                         }
9627                 }
9628
9629                 // Note that we have to do the above replays before we push new monitor updates.
9630                 pending_background_events.append(&mut close_background_events);
9631
9632                 // If there's any preimages for forwarded HTLCs hanging around in ChannelMonitors we
9633                 // should ensure we try them again on the inbound edge. We put them here and do so after we
9634                 // have a fully-constructed `ChannelManager` at the end.
9635                 let mut pending_claims_to_replay = Vec::new();
9636
9637                 {
9638                         // If we're tracking pending payments, ensure we haven't lost any by looking at the
9639                         // ChannelMonitor data for any channels for which we do not have authorative state
9640                         // (i.e. those for which we just force-closed above or we otherwise don't have a
9641                         // corresponding `Channel` at all).
9642                         // This avoids several edge-cases where we would otherwise "forget" about pending
9643                         // payments which are still in-flight via their on-chain state.
9644                         // We only rebuild the pending payments map if we were most recently serialized by
9645                         // 0.0.102+
9646                         for (_, monitor) in args.channel_monitors.iter() {
9647                                 let counterparty_opt = id_to_peer.get(&monitor.get_funding_txo().0.to_channel_id());
9648                                 if counterparty_opt.is_none() {
9649                                         for (htlc_source, (htlc, _)) in monitor.get_pending_or_resolved_outbound_htlcs() {
9650                                                 if let HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } = htlc_source {
9651                                                         if path.hops.is_empty() {
9652                                                                 log_error!(args.logger, "Got an empty path for a pending payment");
9653                                                                 return Err(DecodeError::InvalidValue);
9654                                                         }
9655
9656                                                         let path_amt = path.final_value_msat();
9657                                                         let mut session_priv_bytes = [0; 32];
9658                                                         session_priv_bytes[..].copy_from_slice(&session_priv[..]);
9659                                                         match pending_outbounds.pending_outbound_payments.lock().unwrap().entry(payment_id) {
9660                                                                 hash_map::Entry::Occupied(mut entry) => {
9661                                                                         let newly_added = entry.get_mut().insert(session_priv_bytes, &path);
9662                                                                         log_info!(args.logger, "{} a pending payment path for {} msat for session priv {} on an existing pending payment with payment hash {}",
9663                                                                                 if newly_added { "Added" } else { "Had" }, path_amt, log_bytes!(session_priv_bytes), &htlc.payment_hash);
9664                                                                 },
9665                                                                 hash_map::Entry::Vacant(entry) => {
9666                                                                         let path_fee = path.fee_msat();
9667                                                                         entry.insert(PendingOutboundPayment::Retryable {
9668                                                                                 retry_strategy: None,
9669                                                                                 attempts: PaymentAttempts::new(),
9670                                                                                 payment_params: None,
9671                                                                                 session_privs: [session_priv_bytes].iter().map(|a| *a).collect(),
9672                                                                                 payment_hash: htlc.payment_hash,
9673                                                                                 payment_secret: None, // only used for retries, and we'll never retry on startup
9674                                                                                 payment_metadata: None, // only used for retries, and we'll never retry on startup
9675                                                                                 keysend_preimage: None, // only used for retries, and we'll never retry on startup
9676                                                                                 custom_tlvs: Vec::new(), // only used for retries, and we'll never retry on startup
9677                                                                                 pending_amt_msat: path_amt,
9678                                                                                 pending_fee_msat: Some(path_fee),
9679                                                                                 total_msat: path_amt,
9680                                                                                 starting_block_height: best_block_height,
9681                                                                                 remaining_max_total_routing_fee_msat: None, // only used for retries, and we'll never retry on startup
9682                                                                         });
9683                                                                         log_info!(args.logger, "Added a pending payment for {} msat with payment hash {} for path with session priv {}",
9684                                                                                 path_amt, &htlc.payment_hash,  log_bytes!(session_priv_bytes));
9685                                                                 }
9686                                                         }
9687                                                 }
9688                                         }
9689                                         for (htlc_source, (htlc, preimage_opt)) in monitor.get_all_current_outbound_htlcs() {
9690                                                 match htlc_source {
9691                                                         HTLCSource::PreviousHopData(prev_hop_data) => {
9692                                                                 let pending_forward_matches_htlc = |info: &PendingAddHTLCInfo| {
9693                                                                         info.prev_funding_outpoint == prev_hop_data.outpoint &&
9694                                                                                 info.prev_htlc_id == prev_hop_data.htlc_id
9695                                                                 };
9696                                                                 // The ChannelMonitor is now responsible for this HTLC's
9697                                                                 // failure/success and will let us know what its outcome is. If we
9698                                                                 // still have an entry for this HTLC in `forward_htlcs` or
9699                                                                 // `pending_intercepted_htlcs`, we were apparently not persisted after
9700                                                                 // the monitor was when forwarding the payment.
9701                                                                 forward_htlcs.retain(|_, forwards| {
9702                                                                         forwards.retain(|forward| {
9703                                                                                 if let HTLCForwardInfo::AddHTLC(htlc_info) = forward {
9704                                                                                         if pending_forward_matches_htlc(&htlc_info) {
9705                                                                                                 log_info!(args.logger, "Removing pending to-forward HTLC with hash {} as it was forwarded to the closed channel {}",
9706                                                                                                         &htlc.payment_hash, &monitor.get_funding_txo().0.to_channel_id());
9707                                                                                                 false
9708                                                                                         } else { true }
9709                                                                                 } else { true }
9710                                                                         });
9711                                                                         !forwards.is_empty()
9712                                                                 });
9713                                                                 pending_intercepted_htlcs.as_mut().unwrap().retain(|intercepted_id, htlc_info| {
9714                                                                         if pending_forward_matches_htlc(&htlc_info) {
9715                                                                                 log_info!(args.logger, "Removing pending intercepted HTLC with hash {} as it was forwarded to the closed channel {}",
9716                                                                                         &htlc.payment_hash, &monitor.get_funding_txo().0.to_channel_id());
9717                                                                                 pending_events_read.retain(|(event, _)| {
9718                                                                                         if let Event::HTLCIntercepted { intercept_id: ev_id, .. } = event {
9719                                                                                                 intercepted_id != ev_id
9720                                                                                         } else { true }
9721                                                                                 });
9722                                                                                 false
9723                                                                         } else { true }
9724                                                                 });
9725                                                         },
9726                                                         HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } => {
9727                                                                 if let Some(preimage) = preimage_opt {
9728                                                                         let pending_events = Mutex::new(pending_events_read);
9729                                                                         // Note that we set `from_onchain` to "false" here,
9730                                                                         // deliberately keeping the pending payment around forever.
9731                                                                         // Given it should only occur when we have a channel we're
9732                                                                         // force-closing for being stale that's okay.
9733                                                                         // The alternative would be to wipe the state when claiming,
9734                                                                         // generating a `PaymentPathSuccessful` event but regenerating
9735                                                                         // it and the `PaymentSent` on every restart until the
9736                                                                         // `ChannelMonitor` is removed.
9737                                                                         let compl_action =
9738                                                                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
9739                                                                                         channel_funding_outpoint: monitor.get_funding_txo().0,
9740                                                                                         counterparty_node_id: path.hops[0].pubkey,
9741                                                                                 };
9742                                                                         pending_outbounds.claim_htlc(payment_id, preimage, session_priv,
9743                                                                                 path, false, compl_action, &pending_events, &args.logger);
9744                                                                         pending_events_read = pending_events.into_inner().unwrap();
9745                                                                 }
9746                                                         },
9747                                                 }
9748                                         }
9749                                 }
9750
9751                                 // Whether the downstream channel was closed or not, try to re-apply any payment
9752                                 // preimages from it which may be needed in upstream channels for forwarded
9753                                 // payments.
9754                                 let outbound_claimed_htlcs_iter = monitor.get_all_current_outbound_htlcs()
9755                                         .into_iter()
9756                                         .filter_map(|(htlc_source, (htlc, preimage_opt))| {
9757                                                 if let HTLCSource::PreviousHopData(_) = htlc_source {
9758                                                         if let Some(payment_preimage) = preimage_opt {
9759                                                                 Some((htlc_source, payment_preimage, htlc.amount_msat,
9760                                                                         // Check if `counterparty_opt.is_none()` to see if the
9761                                                                         // downstream chan is closed (because we don't have a
9762                                                                         // channel_id -> peer map entry).
9763                                                                         counterparty_opt.is_none(),
9764                                                                         counterparty_opt.cloned().or(monitor.get_counterparty_node_id()),
9765                                                                         monitor.get_funding_txo().0))
9766                                                         } else { None }
9767                                                 } else {
9768                                                         // If it was an outbound payment, we've handled it above - if a preimage
9769                                                         // came in and we persisted the `ChannelManager` we either handled it and
9770                                                         // are good to go or the channel force-closed - we don't have to handle the
9771                                                         // channel still live case here.
9772                                                         None
9773                                                 }
9774                                         });
9775                                 for tuple in outbound_claimed_htlcs_iter {
9776                                         pending_claims_to_replay.push(tuple);
9777                                 }
9778                         }
9779                 }
9780
9781                 if !forward_htlcs.is_empty() || pending_outbounds.needs_abandon() {
9782                         // If we have pending HTLCs to forward, assume we either dropped a
9783                         // `PendingHTLCsForwardable` or the user received it but never processed it as they
9784                         // shut down before the timer hit. Either way, set the time_forwardable to a small
9785                         // constant as enough time has likely passed that we should simply handle the forwards
9786                         // now, or at least after the user gets a chance to reconnect to our peers.
9787                         pending_events_read.push_back((events::Event::PendingHTLCsForwardable {
9788                                 time_forwardable: Duration::from_secs(2),
9789                         }, None));
9790                 }
9791
9792                 let inbound_pmt_key_material = args.node_signer.get_inbound_payment_key_material();
9793                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
9794
9795                 let mut claimable_payments = HashMap::with_capacity(claimable_htlcs_list.len());
9796                 if let Some(purposes) = claimable_htlc_purposes {
9797                         if purposes.len() != claimable_htlcs_list.len() {
9798                                 return Err(DecodeError::InvalidValue);
9799                         }
9800                         if let Some(onion_fields) = claimable_htlc_onion_fields {
9801                                 if onion_fields.len() != claimable_htlcs_list.len() {
9802                                         return Err(DecodeError::InvalidValue);
9803                                 }
9804                                 for (purpose, (onion, (payment_hash, htlcs))) in
9805                                         purposes.into_iter().zip(onion_fields.into_iter().zip(claimable_htlcs_list.into_iter()))
9806                                 {
9807                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
9808                                                 purpose, htlcs, onion_fields: onion,
9809                                         });
9810                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
9811                                 }
9812                         } else {
9813                                 for (purpose, (payment_hash, htlcs)) in purposes.into_iter().zip(claimable_htlcs_list.into_iter()) {
9814                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
9815                                                 purpose, htlcs, onion_fields: None,
9816                                         });
9817                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
9818                                 }
9819                         }
9820                 } else {
9821                         // LDK versions prior to 0.0.107 did not write a `pending_htlc_purposes`, but do
9822                         // include a `_legacy_hop_data` in the `OnionPayload`.
9823                         for (payment_hash, htlcs) in claimable_htlcs_list.drain(..) {
9824                                 if htlcs.is_empty() {
9825                                         return Err(DecodeError::InvalidValue);
9826                                 }
9827                                 let purpose = match &htlcs[0].onion_payload {
9828                                         OnionPayload::Invoice { _legacy_hop_data } => {
9829                                                 if let Some(hop_data) = _legacy_hop_data {
9830                                                         events::PaymentPurpose::InvoicePayment {
9831                                                                 payment_preimage: match pending_inbound_payments.get(&payment_hash) {
9832                                                                         Some(inbound_payment) => inbound_payment.payment_preimage,
9833                                                                         None => match inbound_payment::verify(payment_hash, &hop_data, 0, &expanded_inbound_key, &args.logger) {
9834                                                                                 Ok((payment_preimage, _)) => payment_preimage,
9835                                                                                 Err(()) => {
9836                                                                                         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);
9837                                                                                         return Err(DecodeError::InvalidValue);
9838                                                                                 }
9839                                                                         }
9840                                                                 },
9841                                                                 payment_secret: hop_data.payment_secret,
9842                                                         }
9843                                                 } else { return Err(DecodeError::InvalidValue); }
9844                                         },
9845                                         OnionPayload::Spontaneous(payment_preimage) =>
9846                                                 events::PaymentPurpose::SpontaneousPayment(*payment_preimage),
9847                                 };
9848                                 claimable_payments.insert(payment_hash, ClaimablePayment {
9849                                         purpose, htlcs, onion_fields: None,
9850                                 });
9851                         }
9852                 }
9853
9854                 let mut secp_ctx = Secp256k1::new();
9855                 secp_ctx.seeded_randomize(&args.entropy_source.get_secure_random_bytes());
9856
9857                 let our_network_pubkey = match args.node_signer.get_node_id(Recipient::Node) {
9858                         Ok(key) => key,
9859                         Err(()) => return Err(DecodeError::InvalidValue)
9860                 };
9861                 if let Some(network_pubkey) = received_network_pubkey {
9862                         if network_pubkey != our_network_pubkey {
9863                                 log_error!(args.logger, "Key that was generated does not match the existing key.");
9864                                 return Err(DecodeError::InvalidValue);
9865                         }
9866                 }
9867
9868                 let mut outbound_scid_aliases = HashSet::new();
9869                 for (_peer_node_id, peer_state_mutex) in per_peer_state.iter_mut() {
9870                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9871                         let peer_state = &mut *peer_state_lock;
9872                         for (chan_id, phase) in peer_state.channel_by_id.iter_mut() {
9873                                 if let ChannelPhase::Funded(chan) = phase {
9874                                         if chan.context.outbound_scid_alias() == 0 {
9875                                                 let mut outbound_scid_alias;
9876                                                 loop {
9877                                                         outbound_scid_alias = fake_scid::Namespace::OutboundAlias
9878                                                                 .get_fake_scid(best_block_height, &genesis_hash, fake_scid_rand_bytes.as_ref().unwrap(), &args.entropy_source);
9879                                                         if outbound_scid_aliases.insert(outbound_scid_alias) { break; }
9880                                                 }
9881                                                 chan.context.set_outbound_scid_alias(outbound_scid_alias);
9882                                         } else if !outbound_scid_aliases.insert(chan.context.outbound_scid_alias()) {
9883                                                 // Note that in rare cases its possible to hit this while reading an older
9884                                                 // channel if we just happened to pick a colliding outbound alias above.
9885                                                 log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
9886                                                 return Err(DecodeError::InvalidValue);
9887                                         }
9888                                         if chan.context.is_usable() {
9889                                                 if short_to_chan_info.insert(chan.context.outbound_scid_alias(), (chan.context.get_counterparty_node_id(), *chan_id)).is_some() {
9890                                                         // Note that in rare cases its possible to hit this while reading an older
9891                                                         // channel if we just happened to pick a colliding outbound alias above.
9892                                                         log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
9893                                                         return Err(DecodeError::InvalidValue);
9894                                                 }
9895                                         }
9896                                 } else {
9897                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
9898                                         // created in this `channel_by_id` map.
9899                                         debug_assert!(false);
9900                                         return Err(DecodeError::InvalidValue);
9901                                 }
9902                         }
9903                 }
9904
9905                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(args.fee_estimator);
9906
9907                 for (_, monitor) in args.channel_monitors.iter() {
9908                         for (payment_hash, payment_preimage) in monitor.get_stored_preimages() {
9909                                 if let Some(payment) = claimable_payments.remove(&payment_hash) {
9910                                         log_info!(args.logger, "Re-claiming HTLCs with payment hash {} as we've released the preimage to a ChannelMonitor!", &payment_hash);
9911                                         let mut claimable_amt_msat = 0;
9912                                         let mut receiver_node_id = Some(our_network_pubkey);
9913                                         let phantom_shared_secret = payment.htlcs[0].prev_hop.phantom_shared_secret;
9914                                         if phantom_shared_secret.is_some() {
9915                                                 let phantom_pubkey = args.node_signer.get_node_id(Recipient::PhantomNode)
9916                                                         .expect("Failed to get node_id for phantom node recipient");
9917                                                 receiver_node_id = Some(phantom_pubkey)
9918                                         }
9919                                         for claimable_htlc in &payment.htlcs {
9920                                                 claimable_amt_msat += claimable_htlc.value;
9921
9922                                                 // Add a holding-cell claim of the payment to the Channel, which should be
9923                                                 // applied ~immediately on peer reconnection. Because it won't generate a
9924                                                 // new commitment transaction we can just provide the payment preimage to
9925                                                 // the corresponding ChannelMonitor and nothing else.
9926                                                 //
9927                                                 // We do so directly instead of via the normal ChannelMonitor update
9928                                                 // procedure as the ChainMonitor hasn't yet been initialized, implying
9929                                                 // we're not allowed to call it directly yet. Further, we do the update
9930                                                 // without incrementing the ChannelMonitor update ID as there isn't any
9931                                                 // reason to.
9932                                                 // If we were to generate a new ChannelMonitor update ID here and then
9933                                                 // crash before the user finishes block connect we'd end up force-closing
9934                                                 // this channel as well. On the flip side, there's no harm in restarting
9935                                                 // without the new monitor persisted - we'll end up right back here on
9936                                                 // restart.
9937                                                 let previous_channel_id = claimable_htlc.prev_hop.outpoint.to_channel_id();
9938                                                 if let Some(peer_node_id) = id_to_peer.get(&previous_channel_id){
9939                                                         let peer_state_mutex = per_peer_state.get(peer_node_id).unwrap();
9940                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9941                                                         let peer_state = &mut *peer_state_lock;
9942                                                         if let Some(ChannelPhase::Funded(channel)) = peer_state.channel_by_id.get_mut(&previous_channel_id) {
9943                                                                 channel.claim_htlc_while_disconnected_dropping_mon_update(claimable_htlc.prev_hop.htlc_id, payment_preimage, &args.logger);
9944                                                         }
9945                                                 }
9946                                                 if let Some(previous_hop_monitor) = args.channel_monitors.get(&claimable_htlc.prev_hop.outpoint) {
9947                                                         previous_hop_monitor.provide_payment_preimage(&payment_hash, &payment_preimage, &args.tx_broadcaster, &bounded_fee_estimator, &args.logger);
9948                                                 }
9949                                         }
9950                                         pending_events_read.push_back((events::Event::PaymentClaimed {
9951                                                 receiver_node_id,
9952                                                 payment_hash,
9953                                                 purpose: payment.purpose,
9954                                                 amount_msat: claimable_amt_msat,
9955                                                 htlcs: payment.htlcs.iter().map(events::ClaimedHTLC::from).collect(),
9956                                                 sender_intended_total_msat: payment.htlcs.first().map(|htlc| htlc.total_msat),
9957                                         }, None));
9958                                 }
9959                         }
9960                 }
9961
9962                 for (node_id, monitor_update_blocked_actions) in monitor_update_blocked_actions_per_peer.unwrap() {
9963                         if let Some(peer_state) = per_peer_state.get(&node_id) {
9964                                 for (_, actions) in monitor_update_blocked_actions.iter() {
9965                                         for action in actions.iter() {
9966                                                 if let MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
9967                                                         downstream_counterparty_and_funding_outpoint:
9968                                                                 Some((blocked_node_id, blocked_channel_outpoint, blocking_action)), ..
9969                                                 } = action {
9970                                                         if let Some(blocked_peer_state) = per_peer_state.get(&blocked_node_id) {
9971                                                                 blocked_peer_state.lock().unwrap().actions_blocking_raa_monitor_updates
9972                                                                         .entry(blocked_channel_outpoint.to_channel_id())
9973                                                                         .or_insert_with(Vec::new).push(blocking_action.clone());
9974                                                         } else {
9975                                                                 // If the channel we were blocking has closed, we don't need to
9976                                                                 // worry about it - the blocked monitor update should never have
9977                                                                 // been released from the `Channel` object so it can't have
9978                                                                 // completed, and if the channel closed there's no reason to bother
9979                                                                 // anymore.
9980                                                         }
9981                                                 }
9982                                         }
9983                                 }
9984                                 peer_state.lock().unwrap().monitor_update_blocked_actions = monitor_update_blocked_actions;
9985                         } else {
9986                                 log_error!(args.logger, "Got blocked actions without a per-peer-state for {}", node_id);
9987                                 return Err(DecodeError::InvalidValue);
9988                         }
9989                 }
9990
9991                 let channel_manager = ChannelManager {
9992                         genesis_hash,
9993                         fee_estimator: bounded_fee_estimator,
9994                         chain_monitor: args.chain_monitor,
9995                         tx_broadcaster: args.tx_broadcaster,
9996                         router: args.router,
9997
9998                         best_block: RwLock::new(BestBlock::new(best_block_hash, best_block_height)),
9999
10000                         inbound_payment_key: expanded_inbound_key,
10001                         pending_inbound_payments: Mutex::new(pending_inbound_payments),
10002                         pending_outbound_payments: pending_outbounds,
10003                         pending_intercepted_htlcs: Mutex::new(pending_intercepted_htlcs.unwrap()),
10004
10005                         forward_htlcs: Mutex::new(forward_htlcs),
10006                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments, pending_claiming_payments: pending_claiming_payments.unwrap() }),
10007                         outbound_scid_aliases: Mutex::new(outbound_scid_aliases),
10008                         id_to_peer: Mutex::new(id_to_peer),
10009                         short_to_chan_info: FairRwLock::new(short_to_chan_info),
10010                         fake_scid_rand_bytes: fake_scid_rand_bytes.unwrap(),
10011
10012                         probing_cookie_secret: probing_cookie_secret.unwrap(),
10013
10014                         our_network_pubkey,
10015                         secp_ctx,
10016
10017                         highest_seen_timestamp: AtomicUsize::new(highest_seen_timestamp as usize),
10018
10019                         per_peer_state: FairRwLock::new(per_peer_state),
10020
10021                         pending_events: Mutex::new(pending_events_read),
10022                         pending_events_processor: AtomicBool::new(false),
10023                         pending_background_events: Mutex::new(pending_background_events),
10024                         total_consistency_lock: RwLock::new(()),
10025                         background_events_processed_since_startup: AtomicBool::new(false),
10026
10027                         event_persist_notifier: Notifier::new(),
10028                         needs_persist_flag: AtomicBool::new(false),
10029
10030                         funding_batch_states: Mutex::new(BTreeMap::new()),
10031
10032                         entropy_source: args.entropy_source,
10033                         node_signer: args.node_signer,
10034                         signer_provider: args.signer_provider,
10035
10036                         logger: args.logger,
10037                         default_configuration: args.default_config,
10038                 };
10039
10040                 for htlc_source in failed_htlcs.drain(..) {
10041                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
10042                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
10043                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
10044                         channel_manager.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
10045                 }
10046
10047                 for (source, preimage, downstream_value, downstream_closed, downstream_node_id, downstream_funding) in pending_claims_to_replay {
10048                         // We use `downstream_closed` in place of `from_onchain` here just as a guess - we
10049                         // don't remember in the `ChannelMonitor` where we got a preimage from, but if the
10050                         // channel is closed we just assume that it probably came from an on-chain claim.
10051                         channel_manager.claim_funds_internal(source, preimage, Some(downstream_value),
10052                                 downstream_closed, downstream_node_id, downstream_funding);
10053                 }
10054
10055                 //TODO: Broadcast channel update for closed channels, but only after we've made a
10056                 //connection or two.
10057
10058                 Ok((best_block_hash.clone(), channel_manager))
10059         }
10060 }
10061
10062 #[cfg(test)]
10063 mod tests {
10064         use bitcoin::hashes::Hash;
10065         use bitcoin::hashes::sha256::Hash as Sha256;
10066         use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
10067         use core::sync::atomic::Ordering;
10068         use crate::events::{Event, HTLCDestination, MessageSendEvent, MessageSendEventsProvider, ClosureReason};
10069         use crate::ln::{PaymentPreimage, PaymentHash, PaymentSecret};
10070         use crate::ln::ChannelId;
10071         use crate::ln::channelmanager::{inbound_payment, PaymentId, PaymentSendFailure, RecipientOnionFields, InterceptId};
10072         use crate::ln::functional_test_utils::*;
10073         use crate::ln::msgs::{self, ErrorAction};
10074         use crate::ln::msgs::ChannelMessageHandler;
10075         use crate::routing::router::{PaymentParameters, RouteParameters, find_route};
10076         use crate::util::errors::APIError;
10077         use crate::util::test_utils;
10078         use crate::util::config::{ChannelConfig, ChannelConfigUpdate};
10079         use crate::sign::EntropySource;
10080
10081         #[test]
10082         fn test_notify_limits() {
10083                 // Check that a few cases which don't require the persistence of a new ChannelManager,
10084                 // indeed, do not cause the persistence of a new ChannelManager.
10085                 let chanmon_cfgs = create_chanmon_cfgs(3);
10086                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
10087                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
10088                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
10089
10090                 // All nodes start with a persistable update pending as `create_network` connects each node
10091                 // with all other nodes to make most tests simpler.
10092                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
10093                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
10094                 assert!(nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
10095
10096                 let mut chan = create_announced_chan_between_nodes(&nodes, 0, 1);
10097
10098                 // We check that the channel info nodes have doesn't change too early, even though we try
10099                 // to connect messages with new values
10100                 chan.0.contents.fee_base_msat *= 2;
10101                 chan.1.contents.fee_base_msat *= 2;
10102                 let node_a_chan_info = nodes[0].node.list_channels_with_counterparty(
10103                         &nodes[1].node.get_our_node_id()).pop().unwrap();
10104                 let node_b_chan_info = nodes[1].node.list_channels_with_counterparty(
10105                         &nodes[0].node.get_our_node_id()).pop().unwrap();
10106
10107                 // The first two nodes (which opened a channel) should now require fresh persistence
10108                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
10109                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
10110                 // ... but the last node should not.
10111                 assert!(!nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
10112                 // After persisting the first two nodes they should no longer need fresh persistence.
10113                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
10114                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
10115
10116                 // Node 3, unrelated to the only channel, shouldn't care if it receives a channel_update
10117                 // about the channel.
10118                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.0);
10119                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.1);
10120                 assert!(!nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
10121
10122                 // The nodes which are a party to the channel should also ignore messages from unrelated
10123                 // parties.
10124                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
10125                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
10126                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
10127                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
10128                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
10129                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
10130
10131                 // At this point the channel info given by peers should still be the same.
10132                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
10133                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
10134
10135                 // An earlier version of handle_channel_update didn't check the directionality of the
10136                 // update message and would always update the local fee info, even if our peer was
10137                 // (spuriously) forwarding us our own channel_update.
10138                 let as_node_one = nodes[0].node.get_our_node_id().serialize()[..] < nodes[1].node.get_our_node_id().serialize()[..];
10139                 let as_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.0 } else { &chan.1 };
10140                 let bs_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.1 } else { &chan.0 };
10141
10142                 // First deliver each peers' own message, checking that the node doesn't need to be
10143                 // persisted and that its channel info remains the same.
10144                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &as_update);
10145                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &bs_update);
10146                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
10147                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
10148                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
10149                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
10150
10151                 // Finally, deliver the other peers' message, ensuring each node needs to be persisted and
10152                 // the channel info has updated.
10153                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &bs_update);
10154                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &as_update);
10155                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
10156                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
10157                 assert_ne!(nodes[0].node.list_channels()[0], node_a_chan_info);
10158                 assert_ne!(nodes[1].node.list_channels()[0], node_b_chan_info);
10159         }
10160
10161         #[test]
10162         fn test_keysend_dup_hash_partial_mpp() {
10163                 // Test that a keysend payment with a duplicate hash to an existing partial MPP payment fails as
10164                 // expected.
10165                 let chanmon_cfgs = create_chanmon_cfgs(2);
10166                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10167                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10168                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10169                 create_announced_chan_between_nodes(&nodes, 0, 1);
10170
10171                 // First, send a partial MPP payment.
10172                 let (route, our_payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100_000);
10173                 let mut mpp_route = route.clone();
10174                 mpp_route.paths.push(mpp_route.paths[0].clone());
10175
10176                 let payment_id = PaymentId([42; 32]);
10177                 // Use the utility function send_payment_along_path to send the payment with MPP data which
10178                 // indicates there are more HTLCs coming.
10179                 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.
10180                 let session_privs = nodes[0].node.test_add_new_pending_payment(our_payment_hash,
10181                         RecipientOnionFields::secret_only(payment_secret), payment_id, &mpp_route).unwrap();
10182                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[0], &our_payment_hash,
10183                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[0]).unwrap();
10184                 check_added_monitors!(nodes[0], 1);
10185                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10186                 assert_eq!(events.len(), 1);
10187                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), false, None);
10188
10189                 // Next, send a keysend payment with the same payment_hash and make sure it fails.
10190                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10191                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
10192                 check_added_monitors!(nodes[0], 1);
10193                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10194                 assert_eq!(events.len(), 1);
10195                 let ev = events.drain(..).next().unwrap();
10196                 let payment_event = SendEvent::from_event(ev);
10197                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
10198                 check_added_monitors!(nodes[1], 0);
10199                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
10200                 expect_pending_htlcs_forwardable!(nodes[1]);
10201                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
10202                 check_added_monitors!(nodes[1], 1);
10203                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10204                 assert!(updates.update_add_htlcs.is_empty());
10205                 assert!(updates.update_fulfill_htlcs.is_empty());
10206                 assert_eq!(updates.update_fail_htlcs.len(), 1);
10207                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10208                 assert!(updates.update_fee.is_none());
10209                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
10210                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
10211                 expect_payment_failed!(nodes[0], our_payment_hash, true);
10212
10213                 // Send the second half of the original MPP payment.
10214                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[1], &our_payment_hash,
10215                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[1]).unwrap();
10216                 check_added_monitors!(nodes[0], 1);
10217                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10218                 assert_eq!(events.len(), 1);
10219                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), true, None);
10220
10221                 // Claim the full MPP payment. Note that we can't use a test utility like
10222                 // claim_funds_along_route because the ordering of the messages causes the second half of the
10223                 // payment to be put in the holding cell, which confuses the test utilities. So we exchange the
10224                 // lightning messages manually.
10225                 nodes[1].node.claim_funds(payment_preimage);
10226                 expect_payment_claimed!(nodes[1], our_payment_hash, 200_000);
10227                 check_added_monitors!(nodes[1], 2);
10228
10229                 let bs_first_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10230                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_first_updates.update_fulfill_htlcs[0]);
10231                 expect_payment_sent(&nodes[0], payment_preimage, None, false, false);
10232                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_first_updates.commitment_signed);
10233                 check_added_monitors!(nodes[0], 1);
10234                 let (as_first_raa, as_first_cs) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10235                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_first_raa);
10236                 check_added_monitors!(nodes[1], 1);
10237                 let bs_second_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10238                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_first_cs);
10239                 check_added_monitors!(nodes[1], 1);
10240                 let bs_first_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
10241                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_second_updates.update_fulfill_htlcs[0]);
10242                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_second_updates.commitment_signed);
10243                 check_added_monitors!(nodes[0], 1);
10244                 let as_second_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
10245                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_first_raa);
10246                 let as_second_updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10247                 check_added_monitors!(nodes[0], 1);
10248                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_second_raa);
10249                 check_added_monitors!(nodes[1], 1);
10250                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_second_updates.commitment_signed);
10251                 check_added_monitors!(nodes[1], 1);
10252                 let bs_third_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
10253                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_third_raa);
10254                 check_added_monitors!(nodes[0], 1);
10255
10256                 // Note that successful MPP payments will generate a single PaymentSent event upon the first
10257                 // path's success and a PaymentPathSuccessful event for each path's success.
10258                 let events = nodes[0].node.get_and_clear_pending_events();
10259                 assert_eq!(events.len(), 2);
10260                 match events[0] {
10261                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
10262                                 assert_eq!(payment_id, *actual_payment_id);
10263                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
10264                                 assert_eq!(route.paths[0], *path);
10265                         },
10266                         _ => panic!("Unexpected event"),
10267                 }
10268                 match events[1] {
10269                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
10270                                 assert_eq!(payment_id, *actual_payment_id);
10271                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
10272                                 assert_eq!(route.paths[0], *path);
10273                         },
10274                         _ => panic!("Unexpected event"),
10275                 }
10276         }
10277
10278         #[test]
10279         fn test_keysend_dup_payment_hash() {
10280                 do_test_keysend_dup_payment_hash(false);
10281                 do_test_keysend_dup_payment_hash(true);
10282         }
10283
10284         fn do_test_keysend_dup_payment_hash(accept_mpp_keysend: bool) {
10285                 // (1): Test that a keysend payment with a duplicate payment hash to an existing pending
10286                 //      outbound regular payment fails as expected.
10287                 // (2): Test that a regular payment with a duplicate payment hash to an existing keysend payment
10288                 //      fails as expected.
10289                 // (3): Test that a keysend payment with a duplicate payment hash to an existing keysend
10290                 //      payment fails as expected. When `accept_mpp_keysend` is false, this tests that we
10291                 //      reject MPP keysend payments, since in this case where the payment has no payment
10292                 //      secret, a keysend payment with a duplicate hash is basically an MPP keysend. If
10293                 //      `accept_mpp_keysend` is true, this tests that we only accept MPP keysends with
10294                 //      payment secrets and reject otherwise.
10295                 let chanmon_cfgs = create_chanmon_cfgs(2);
10296                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10297                 let mut mpp_keysend_cfg = test_default_channel_config();
10298                 mpp_keysend_cfg.accept_mpp_keysend = accept_mpp_keysend;
10299                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(mpp_keysend_cfg)]);
10300                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10301                 create_announced_chan_between_nodes(&nodes, 0, 1);
10302                 let scorer = test_utils::TestScorer::new();
10303                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
10304
10305                 // To start (1), send a regular payment but don't claim it.
10306                 let expected_route = [&nodes[1]];
10307                 let (payment_preimage, payment_hash, ..) = route_payment(&nodes[0], &expected_route, 100_000);
10308
10309                 // Next, attempt a keysend payment and make sure it fails.
10310                 let route_params = RouteParameters::from_payment_params_and_value(
10311                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(),
10312                         TEST_FINAL_CLTV, false), 100_000);
10313                 let route = find_route(
10314                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
10315                         None, nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
10316                 ).unwrap();
10317                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10318                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
10319                 check_added_monitors!(nodes[0], 1);
10320                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10321                 assert_eq!(events.len(), 1);
10322                 let ev = events.drain(..).next().unwrap();
10323                 let payment_event = SendEvent::from_event(ev);
10324                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
10325                 check_added_monitors!(nodes[1], 0);
10326                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
10327                 // We have to forward pending HTLCs twice - once tries to forward the payment forward (and
10328                 // fails), the second will process the resulting failure and fail the HTLC backward
10329                 expect_pending_htlcs_forwardable!(nodes[1]);
10330                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
10331                 check_added_monitors!(nodes[1], 1);
10332                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10333                 assert!(updates.update_add_htlcs.is_empty());
10334                 assert!(updates.update_fulfill_htlcs.is_empty());
10335                 assert_eq!(updates.update_fail_htlcs.len(), 1);
10336                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10337                 assert!(updates.update_fee.is_none());
10338                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
10339                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
10340                 expect_payment_failed!(nodes[0], payment_hash, true);
10341
10342                 // Finally, claim the original payment.
10343                 claim_payment(&nodes[0], &expected_route, payment_preimage);
10344
10345                 // To start (2), send a keysend payment but don't claim it.
10346                 let payment_preimage = PaymentPreimage([42; 32]);
10347                 let route = find_route(
10348                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
10349                         None, nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
10350                 ).unwrap();
10351                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10352                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
10353                 check_added_monitors!(nodes[0], 1);
10354                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10355                 assert_eq!(events.len(), 1);
10356                 let event = events.pop().unwrap();
10357                 let path = vec![&nodes[1]];
10358                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
10359
10360                 // Next, attempt a regular payment and make sure it fails.
10361                 let payment_secret = PaymentSecret([43; 32]);
10362                 nodes[0].node.send_payment_with_route(&route, payment_hash,
10363                         RecipientOnionFields::secret_only(payment_secret), PaymentId(payment_hash.0)).unwrap();
10364                 check_added_monitors!(nodes[0], 1);
10365                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10366                 assert_eq!(events.len(), 1);
10367                 let ev = events.drain(..).next().unwrap();
10368                 let payment_event = SendEvent::from_event(ev);
10369                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
10370                 check_added_monitors!(nodes[1], 0);
10371                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
10372                 expect_pending_htlcs_forwardable!(nodes[1]);
10373                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
10374                 check_added_monitors!(nodes[1], 1);
10375                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10376                 assert!(updates.update_add_htlcs.is_empty());
10377                 assert!(updates.update_fulfill_htlcs.is_empty());
10378                 assert_eq!(updates.update_fail_htlcs.len(), 1);
10379                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10380                 assert!(updates.update_fee.is_none());
10381                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
10382                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
10383                 expect_payment_failed!(nodes[0], payment_hash, true);
10384
10385                 // Finally, succeed the keysend payment.
10386                 claim_payment(&nodes[0], &expected_route, payment_preimage);
10387
10388                 // To start (3), send a keysend payment but don't claim it.
10389                 let payment_id_1 = PaymentId([44; 32]);
10390                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10391                         RecipientOnionFields::spontaneous_empty(), payment_id_1).unwrap();
10392                 check_added_monitors!(nodes[0], 1);
10393                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10394                 assert_eq!(events.len(), 1);
10395                 let event = events.pop().unwrap();
10396                 let path = vec![&nodes[1]];
10397                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
10398
10399                 // Next, attempt a keysend payment and make sure it fails.
10400                 let route_params = RouteParameters::from_payment_params_and_value(
10401                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(), TEST_FINAL_CLTV, false),
10402                         100_000
10403                 );
10404                 let route = find_route(
10405                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
10406                         None, nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
10407                 ).unwrap();
10408                 let payment_id_2 = PaymentId([45; 32]);
10409                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10410                         RecipientOnionFields::spontaneous_empty(), payment_id_2).unwrap();
10411                 check_added_monitors!(nodes[0], 1);
10412                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10413                 assert_eq!(events.len(), 1);
10414                 let ev = events.drain(..).next().unwrap();
10415                 let payment_event = SendEvent::from_event(ev);
10416                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
10417                 check_added_monitors!(nodes[1], 0);
10418                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
10419                 expect_pending_htlcs_forwardable!(nodes[1]);
10420                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
10421                 check_added_monitors!(nodes[1], 1);
10422                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10423                 assert!(updates.update_add_htlcs.is_empty());
10424                 assert!(updates.update_fulfill_htlcs.is_empty());
10425                 assert_eq!(updates.update_fail_htlcs.len(), 1);
10426                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10427                 assert!(updates.update_fee.is_none());
10428                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
10429                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
10430                 expect_payment_failed!(nodes[0], payment_hash, true);
10431
10432                 // Finally, claim the original payment.
10433                 claim_payment(&nodes[0], &expected_route, payment_preimage);
10434         }
10435
10436         #[test]
10437         fn test_keysend_hash_mismatch() {
10438                 // Test that if we receive a keysend `update_add_htlc` msg, we fail as expected if the keysend
10439                 // preimage doesn't match the msg's payment hash.
10440                 let chanmon_cfgs = create_chanmon_cfgs(2);
10441                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10442                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10443                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10444
10445                 let payer_pubkey = nodes[0].node.get_our_node_id();
10446                 let payee_pubkey = nodes[1].node.get_our_node_id();
10447
10448                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
10449                 let route_params = RouteParameters::from_payment_params_and_value(
10450                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
10451                 let network_graph = nodes[0].network_graph.clone();
10452                 let first_hops = nodes[0].node.list_usable_channels();
10453                 let scorer = test_utils::TestScorer::new();
10454                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
10455                 let route = find_route(
10456                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
10457                         nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
10458                 ).unwrap();
10459
10460                 let test_preimage = PaymentPreimage([42; 32]);
10461                 let mismatch_payment_hash = PaymentHash([43; 32]);
10462                 let session_privs = nodes[0].node.test_add_new_pending_payment(mismatch_payment_hash,
10463                         RecipientOnionFields::spontaneous_empty(), PaymentId(mismatch_payment_hash.0), &route).unwrap();
10464                 nodes[0].node.test_send_payment_internal(&route, mismatch_payment_hash,
10465                         RecipientOnionFields::spontaneous_empty(), Some(test_preimage), PaymentId(mismatch_payment_hash.0), None, session_privs).unwrap();
10466                 check_added_monitors!(nodes[0], 1);
10467
10468                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10469                 assert_eq!(updates.update_add_htlcs.len(), 1);
10470                 assert!(updates.update_fulfill_htlcs.is_empty());
10471                 assert!(updates.update_fail_htlcs.is_empty());
10472                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10473                 assert!(updates.update_fee.is_none());
10474                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
10475
10476                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "Payment preimage didn't match payment hash", 1);
10477         }
10478
10479         #[test]
10480         fn test_keysend_msg_with_secret_err() {
10481                 // Test that we error as expected if we receive a keysend payment that includes a payment
10482                 // secret when we don't support MPP keysend.
10483                 let mut reject_mpp_keysend_cfg = test_default_channel_config();
10484                 reject_mpp_keysend_cfg.accept_mpp_keysend = false;
10485                 let chanmon_cfgs = create_chanmon_cfgs(2);
10486                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10487                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(reject_mpp_keysend_cfg)]);
10488                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10489
10490                 let payer_pubkey = nodes[0].node.get_our_node_id();
10491                 let payee_pubkey = nodes[1].node.get_our_node_id();
10492
10493                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
10494                 let route_params = RouteParameters::from_payment_params_and_value(
10495                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
10496                 let network_graph = nodes[0].network_graph.clone();
10497                 let first_hops = nodes[0].node.list_usable_channels();
10498                 let scorer = test_utils::TestScorer::new();
10499                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
10500                 let route = find_route(
10501                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
10502                         nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
10503                 ).unwrap();
10504
10505                 let test_preimage = PaymentPreimage([42; 32]);
10506                 let test_secret = PaymentSecret([43; 32]);
10507                 let payment_hash = PaymentHash(Sha256::hash(&test_preimage.0).into_inner());
10508                 let session_privs = nodes[0].node.test_add_new_pending_payment(payment_hash,
10509                         RecipientOnionFields::secret_only(test_secret), PaymentId(payment_hash.0), &route).unwrap();
10510                 nodes[0].node.test_send_payment_internal(&route, payment_hash,
10511                         RecipientOnionFields::secret_only(test_secret), Some(test_preimage),
10512                         PaymentId(payment_hash.0), None, session_privs).unwrap();
10513                 check_added_monitors!(nodes[0], 1);
10514
10515                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10516                 assert_eq!(updates.update_add_htlcs.len(), 1);
10517                 assert!(updates.update_fulfill_htlcs.is_empty());
10518                 assert!(updates.update_fail_htlcs.is_empty());
10519                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10520                 assert!(updates.update_fee.is_none());
10521                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
10522
10523                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "We don't support MPP keysend payments", 1);
10524         }
10525
10526         #[test]
10527         fn test_multi_hop_missing_secret() {
10528                 let chanmon_cfgs = create_chanmon_cfgs(4);
10529                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
10530                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
10531                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
10532
10533                 let chan_1_id = create_announced_chan_between_nodes(&nodes, 0, 1).0.contents.short_channel_id;
10534                 let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2).0.contents.short_channel_id;
10535                 let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3).0.contents.short_channel_id;
10536                 let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3).0.contents.short_channel_id;
10537
10538                 // Marshall an MPP route.
10539                 let (mut route, payment_hash, _, _) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
10540                 let path = route.paths[0].clone();
10541                 route.paths.push(path);
10542                 route.paths[0].hops[0].pubkey = nodes[1].node.get_our_node_id();
10543                 route.paths[0].hops[0].short_channel_id = chan_1_id;
10544                 route.paths[0].hops[1].short_channel_id = chan_3_id;
10545                 route.paths[1].hops[0].pubkey = nodes[2].node.get_our_node_id();
10546                 route.paths[1].hops[0].short_channel_id = chan_2_id;
10547                 route.paths[1].hops[1].short_channel_id = chan_4_id;
10548
10549                 match nodes[0].node.send_payment_with_route(&route, payment_hash,
10550                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_hash.0))
10551                 .unwrap_err() {
10552                         PaymentSendFailure::ParameterError(APIError::APIMisuseError { ref err }) => {
10553                                 assert!(regex::Regex::new(r"Payment secret is required for multi-path payments").unwrap().is_match(err))
10554                         },
10555                         _ => panic!("unexpected error")
10556                 }
10557         }
10558
10559         #[test]
10560         fn test_drop_disconnected_peers_when_removing_channels() {
10561                 let chanmon_cfgs = create_chanmon_cfgs(2);
10562                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10563                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10564                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10565
10566                 let chan = create_announced_chan_between_nodes(&nodes, 0, 1);
10567
10568                 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
10569                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10570
10571                 nodes[0].node.force_close_broadcasting_latest_txn(&chan.2, &nodes[1].node.get_our_node_id()).unwrap();
10572                 check_closed_broadcast!(nodes[0], true);
10573                 check_added_monitors!(nodes[0], 1);
10574                 check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed, [nodes[1].node.get_our_node_id()], 100000);
10575
10576                 {
10577                         // Assert that nodes[1] is awaiting removal for nodes[0] once nodes[1] has been
10578                         // disconnected and the channel between has been force closed.
10579                         let nodes_0_per_peer_state = nodes[0].node.per_peer_state.read().unwrap();
10580                         // Assert that nodes[1] isn't removed before `timer_tick_occurred` has been executed.
10581                         assert_eq!(nodes_0_per_peer_state.len(), 1);
10582                         assert!(nodes_0_per_peer_state.get(&nodes[1].node.get_our_node_id()).is_some());
10583                 }
10584
10585                 nodes[0].node.timer_tick_occurred();
10586
10587                 {
10588                         // Assert that nodes[1] has now been removed.
10589                         assert_eq!(nodes[0].node.per_peer_state.read().unwrap().len(), 0);
10590                 }
10591         }
10592
10593         #[test]
10594         fn bad_inbound_payment_hash() {
10595                 // Add coverage for checking that a user-provided payment hash matches the payment secret.
10596                 let chanmon_cfgs = create_chanmon_cfgs(2);
10597                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10598                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10599                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10600
10601                 let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[0]);
10602                 let payment_data = msgs::FinalOnionHopData {
10603                         payment_secret,
10604                         total_msat: 100_000,
10605                 };
10606
10607                 // Ensure that if the payment hash given to `inbound_payment::verify` differs from the original,
10608                 // payment verification fails as expected.
10609                 let mut bad_payment_hash = payment_hash.clone();
10610                 bad_payment_hash.0[0] += 1;
10611                 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) {
10612                         Ok(_) => panic!("Unexpected ok"),
10613                         Err(()) => {
10614                                 nodes[0].logger.assert_log_contains("lightning::ln::inbound_payment", "Failing HTLC with user-generated payment_hash", 1);
10615                         }
10616                 }
10617
10618                 // Check that using the original payment hash succeeds.
10619                 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());
10620         }
10621
10622         #[test]
10623         fn test_id_to_peer_coverage() {
10624                 // Test that the `ChannelManager:id_to_peer` contains channels which have been assigned
10625                 // a `channel_id` (i.e. have had the funding tx created), and that they are removed once
10626                 // the channel is successfully closed.
10627                 let chanmon_cfgs = create_chanmon_cfgs(2);
10628                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10629                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10630                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10631
10632                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1_000_000, 500_000_000, 42, None).unwrap();
10633                 let open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10634                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel);
10635                 let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10636                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
10637
10638                 let (temporary_channel_id, tx, _funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 1_000_000, 42);
10639                 let channel_id = ChannelId::from_bytes(tx.txid().into_inner());
10640                 {
10641                         // Ensure that the `id_to_peer` map is empty until either party has received the
10642                         // funding transaction, and have the real `channel_id`.
10643                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
10644                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10645                 }
10646
10647                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
10648                 {
10649                         // Assert that `nodes[0]`'s `id_to_peer` map is populated with the channel as soon as
10650                         // as it has the funding transaction.
10651                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10652                         assert_eq!(nodes_0_lock.len(), 1);
10653                         assert!(nodes_0_lock.contains_key(&channel_id));
10654                 }
10655
10656                 assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10657
10658                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
10659
10660                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
10661                 {
10662                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10663                         assert_eq!(nodes_0_lock.len(), 1);
10664                         assert!(nodes_0_lock.contains_key(&channel_id));
10665                 }
10666                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
10667
10668                 {
10669                         // Assert that `nodes[1]`'s `id_to_peer` map is populated with the channel as soon as
10670                         // as it has the funding transaction.
10671                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10672                         assert_eq!(nodes_1_lock.len(), 1);
10673                         assert!(nodes_1_lock.contains_key(&channel_id));
10674                 }
10675                 check_added_monitors!(nodes[1], 1);
10676                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
10677                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
10678                 check_added_monitors!(nodes[0], 1);
10679                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
10680                 let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
10681                 let (announcement, nodes_0_update, nodes_1_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
10682                 update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &nodes_0_update, &nodes_1_update);
10683
10684                 nodes[0].node.close_channel(&channel_id, &nodes[1].node.get_our_node_id()).unwrap();
10685                 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()));
10686                 let nodes_1_shutdown = get_event_msg!(nodes[1], MessageSendEvent::SendShutdown, nodes[0].node.get_our_node_id());
10687                 nodes[0].node.handle_shutdown(&nodes[1].node.get_our_node_id(), &nodes_1_shutdown);
10688
10689                 let closing_signed_node_0 = get_event_msg!(nodes[0], MessageSendEvent::SendClosingSigned, nodes[1].node.get_our_node_id());
10690                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0);
10691                 {
10692                         // Assert that the channel is kept in the `id_to_peer` map for both nodes until the
10693                         // channel can be fully closed by both parties (i.e. no outstanding htlcs exists, the
10694                         // fee for the closing transaction has been negotiated and the parties has the other
10695                         // party's signature for the fee negotiated closing transaction.)
10696                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10697                         assert_eq!(nodes_0_lock.len(), 1);
10698                         assert!(nodes_0_lock.contains_key(&channel_id));
10699                 }
10700
10701                 {
10702                         // At this stage, `nodes[1]` has proposed a fee for the closing transaction in the
10703                         // `handle_closing_signed` call above. As `nodes[1]` has not yet received the signature
10704                         // from `nodes[0]` for the closing transaction with the proposed fee, the channel is
10705                         // kept in the `nodes[1]`'s `id_to_peer` map.
10706                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10707                         assert_eq!(nodes_1_lock.len(), 1);
10708                         assert!(nodes_1_lock.contains_key(&channel_id));
10709                 }
10710
10711                 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()));
10712                 {
10713                         // `nodes[0]` accepts `nodes[1]`'s proposed fee for the closing transaction, and
10714                         // therefore has all it needs to fully close the channel (both signatures for the
10715                         // closing transaction).
10716                         // Assert that the channel is removed from `nodes[0]`'s `id_to_peer` map as it can be
10717                         // fully closed by `nodes[0]`.
10718                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
10719
10720                         // Assert that the channel is still in `nodes[1]`'s  `id_to_peer` map, as `nodes[1]`
10721                         // doesn't have `nodes[0]`'s signature for the closing transaction yet.
10722                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10723                         assert_eq!(nodes_1_lock.len(), 1);
10724                         assert!(nodes_1_lock.contains_key(&channel_id));
10725                 }
10726
10727                 let (_nodes_0_update, closing_signed_node_0) = get_closing_signed_broadcast!(nodes[0].node, nodes[1].node.get_our_node_id());
10728
10729                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0.unwrap());
10730                 {
10731                         // Assert that the channel has now been removed from both parties `id_to_peer` map once
10732                         // they both have everything required to fully close the channel.
10733                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10734                 }
10735                 let (_nodes_1_update, _none) = get_closing_signed_broadcast!(nodes[1].node, nodes[0].node.get_our_node_id());
10736
10737                 check_closed_event!(nodes[0], 1, ClosureReason::CooperativeClosure, [nodes[1].node.get_our_node_id()], 1000000);
10738                 check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure, [nodes[0].node.get_our_node_id()], 1000000);
10739         }
10740
10741         fn check_not_connected_to_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
10742                 let expected_message = format!("Not connected to node: {}", expected_public_key);
10743                 check_api_error_message(expected_message, res_err)
10744         }
10745
10746         fn check_unkown_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
10747                 let expected_message = format!("Can't find a peer matching the passed counterparty node_id {}", expected_public_key);
10748                 check_api_error_message(expected_message, res_err)
10749         }
10750
10751         fn check_api_error_message<T>(expected_err_message: String, res_err: Result<T, APIError>) {
10752                 match res_err {
10753                         Err(APIError::APIMisuseError { err }) => {
10754                                 assert_eq!(err, expected_err_message);
10755                         },
10756                         Err(APIError::ChannelUnavailable { err }) => {
10757                                 assert_eq!(err, expected_err_message);
10758                         },
10759                         Ok(_) => panic!("Unexpected Ok"),
10760                         Err(_) => panic!("Unexpected Error"),
10761                 }
10762         }
10763
10764         #[test]
10765         fn test_api_calls_with_unkown_counterparty_node() {
10766                 // Tests that our API functions that expects a `counterparty_node_id` as input, behaves as
10767                 // expected if the `counterparty_node_id` is an unkown peer in the
10768                 // `ChannelManager::per_peer_state` map.
10769                 let chanmon_cfg = create_chanmon_cfgs(2);
10770                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
10771                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[None, None]);
10772                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
10773
10774                 // Dummy values
10775                 let channel_id = ChannelId::from_bytes([4; 32]);
10776                 let unkown_public_key = PublicKey::from_secret_key(&Secp256k1::signing_only(), &SecretKey::from_slice(&[42; 32]).unwrap());
10777                 let intercept_id = InterceptId([0; 32]);
10778
10779                 // Test the API functions.
10780                 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);
10781
10782                 check_unkown_peer_error(nodes[0].node.accept_inbound_channel(&channel_id, &unkown_public_key, 42), unkown_public_key);
10783
10784                 check_unkown_peer_error(nodes[0].node.close_channel(&channel_id, &unkown_public_key), unkown_public_key);
10785
10786                 check_unkown_peer_error(nodes[0].node.force_close_broadcasting_latest_txn(&channel_id, &unkown_public_key), unkown_public_key);
10787
10788                 check_unkown_peer_error(nodes[0].node.force_close_without_broadcasting_txn(&channel_id, &unkown_public_key), unkown_public_key);
10789
10790                 check_unkown_peer_error(nodes[0].node.forward_intercepted_htlc(intercept_id, &channel_id, unkown_public_key, 1_000_000), unkown_public_key);
10791
10792                 check_unkown_peer_error(nodes[0].node.update_channel_config(&unkown_public_key, &[channel_id], &ChannelConfig::default()), unkown_public_key);
10793         }
10794
10795         #[test]
10796         fn test_connection_limiting() {
10797                 // Test that we limit un-channel'd peers and un-funded channels properly.
10798                 let chanmon_cfgs = create_chanmon_cfgs(2);
10799                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10800                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10801                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10802
10803                 // Note that create_network connects the nodes together for us
10804
10805                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10806                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10807
10808                 let mut funding_tx = None;
10809                 for idx in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
10810                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10811                         let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10812
10813                         if idx == 0 {
10814                                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
10815                                 let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100_000, 42);
10816                                 funding_tx = Some(tx.clone());
10817                                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx).unwrap();
10818                                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
10819
10820                                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
10821                                 check_added_monitors!(nodes[1], 1);
10822                                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
10823
10824                                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
10825
10826                                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
10827                                 check_added_monitors!(nodes[0], 1);
10828                                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
10829                         }
10830                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10831                 }
10832
10833                 // A MAX_UNFUNDED_CHANS_PER_PEER + 1 channel will be summarily rejected
10834                 open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10835                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10836                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10837                         open_channel_msg.temporary_channel_id);
10838
10839                 // Further, because all of our channels with nodes[0] are inbound, and none of them funded,
10840                 // it doesn't count as a "protected" peer, i.e. it counts towards the MAX_NO_CHANNEL_PEERS
10841                 // limit.
10842                 let mut peer_pks = Vec::with_capacity(super::MAX_NO_CHANNEL_PEERS);
10843                 for _ in 1..super::MAX_NO_CHANNEL_PEERS {
10844                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10845                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10846                         peer_pks.push(random_pk);
10847                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
10848                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10849                         }, true).unwrap();
10850                 }
10851                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10852                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10853                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10854                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10855                 }, true).unwrap_err();
10856
10857                 // Also importantly, because nodes[0] isn't "protected", we will refuse a reconnection from
10858                 // them if we have too many un-channel'd peers.
10859                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10860                 let chan_closed_events = nodes[1].node.get_and_clear_pending_events();
10861                 assert_eq!(chan_closed_events.len(), super::MAX_UNFUNDED_CHANS_PER_PEER - 1);
10862                 for ev in chan_closed_events {
10863                         if let Event::ChannelClosed { .. } = ev { } else { panic!(); }
10864                 }
10865                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10866                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10867                 }, true).unwrap();
10868                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10869                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10870                 }, true).unwrap_err();
10871
10872                 // but of course if the connection is outbound its allowed...
10873                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10874                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10875                 }, false).unwrap();
10876                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10877
10878                 // Now nodes[0] is disconnected but still has a pending, un-funded channel lying around.
10879                 // Even though we accept one more connection from new peers, we won't actually let them
10880                 // open channels.
10881                 assert!(peer_pks.len() > super::MAX_UNFUNDED_CHANNEL_PEERS - 1);
10882                 for i in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
10883                         nodes[1].node.handle_open_channel(&peer_pks[i], &open_channel_msg);
10884                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, peer_pks[i]);
10885                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10886                 }
10887                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10888                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
10889                         open_channel_msg.temporary_channel_id);
10890
10891                 // Of course, however, outbound channels are always allowed
10892                 nodes[1].node.create_channel(last_random_pk, 100_000, 0, 42, None).unwrap();
10893                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, last_random_pk);
10894
10895                 // If we fund the first channel, nodes[0] has a live on-chain channel with us, it is now
10896                 // "protected" and can connect again.
10897                 mine_transaction(&nodes[1], funding_tx.as_ref().unwrap());
10898                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10899                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10900                 }, true).unwrap();
10901                 get_event_msg!(nodes[1], MessageSendEvent::SendChannelReestablish, nodes[0].node.get_our_node_id());
10902
10903                 // Further, because the first channel was funded, we can open another channel with
10904                 // last_random_pk.
10905                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10906                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
10907         }
10908
10909         #[test]
10910         fn test_outbound_chans_unlimited() {
10911                 // Test that we never refuse an outbound channel even if a peer is unfuned-channel-limited
10912                 let chanmon_cfgs = create_chanmon_cfgs(2);
10913                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10914                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10915                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10916
10917                 // Note that create_network connects the nodes together for us
10918
10919                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10920                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10921
10922                 for _ in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
10923                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10924                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10925                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10926                 }
10927
10928                 // Once we have MAX_UNFUNDED_CHANS_PER_PEER unfunded channels, new inbound channels will be
10929                 // rejected.
10930                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10931                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10932                         open_channel_msg.temporary_channel_id);
10933
10934                 // but we can still open an outbound channel.
10935                 nodes[1].node.create_channel(nodes[0].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10936                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
10937
10938                 // but even with such an outbound channel, additional inbound channels will still fail.
10939                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10940                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10941                         open_channel_msg.temporary_channel_id);
10942         }
10943
10944         #[test]
10945         fn test_0conf_limiting() {
10946                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
10947                 // flag set and (sometimes) accept channels as 0conf.
10948                 let chanmon_cfgs = create_chanmon_cfgs(2);
10949                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10950                 let mut settings = test_default_channel_config();
10951                 settings.manually_accept_inbound_channels = true;
10952                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(settings)]);
10953                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10954
10955                 // Note that create_network connects the nodes together for us
10956
10957                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10958                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10959
10960                 // First, get us up to MAX_UNFUNDED_CHANNEL_PEERS so we can test at the edge
10961                 for _ in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
10962                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10963                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10964                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
10965                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10966                         }, true).unwrap();
10967
10968                         nodes[1].node.handle_open_channel(&random_pk, &open_channel_msg);
10969                         let events = nodes[1].node.get_and_clear_pending_events();
10970                         match events[0] {
10971                                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
10972                                         nodes[1].node.accept_inbound_channel(&temporary_channel_id, &random_pk, 23).unwrap();
10973                                 }
10974                                 _ => panic!("Unexpected event"),
10975                         }
10976                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, random_pk);
10977                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10978                 }
10979
10980                 // If we try to accept a channel from another peer non-0conf it will fail.
10981                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10982                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10983                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10984                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10985                 }, true).unwrap();
10986                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10987                 let events = nodes[1].node.get_and_clear_pending_events();
10988                 match events[0] {
10989                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10990                                 match nodes[1].node.accept_inbound_channel(&temporary_channel_id, &last_random_pk, 23) {
10991                                         Err(APIError::APIMisuseError { err }) =>
10992                                                 assert_eq!(err, "Too many peers with unfunded channels, refusing to accept new ones"),
10993                                         _ => panic!(),
10994                                 }
10995                         }
10996                         _ => panic!("Unexpected event"),
10997                 }
10998                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
10999                         open_channel_msg.temporary_channel_id);
11000
11001                 // ...however if we accept the same channel 0conf it should work just fine.
11002                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
11003                 let events = nodes[1].node.get_and_clear_pending_events();
11004                 match events[0] {
11005                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
11006                                 nodes[1].node.accept_inbound_channel_from_trusted_peer_0conf(&temporary_channel_id, &last_random_pk, 23).unwrap();
11007                         }
11008                         _ => panic!("Unexpected event"),
11009                 }
11010                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
11011         }
11012
11013         #[test]
11014         fn reject_excessively_underpaying_htlcs() {
11015                 let chanmon_cfg = create_chanmon_cfgs(1);
11016                 let node_cfg = create_node_cfgs(1, &chanmon_cfg);
11017                 let node_chanmgr = create_node_chanmgrs(1, &node_cfg, &[None]);
11018                 let node = create_network(1, &node_cfg, &node_chanmgr);
11019                 let sender_intended_amt_msat = 100;
11020                 let extra_fee_msat = 10;
11021                 let hop_data = msgs::InboundOnionPayload::Receive {
11022                         amt_msat: 100,
11023                         outgoing_cltv_value: 42,
11024                         payment_metadata: None,
11025                         keysend_preimage: None,
11026                         payment_data: Some(msgs::FinalOnionHopData {
11027                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
11028                         }),
11029                         custom_tlvs: Vec::new(),
11030                 };
11031                 // Check that if the amount we received + the penultimate hop extra fee is less than the sender
11032                 // intended amount, we fail the payment.
11033                 if let Err(crate::ln::channelmanager::InboundOnionErr { err_code, .. }) =
11034                         node[0].node.construct_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
11035                                 sender_intended_amt_msat - extra_fee_msat - 1, 42, None, true, Some(extra_fee_msat))
11036                 {
11037                         assert_eq!(err_code, 19);
11038                 } else { panic!(); }
11039
11040                 // If amt_received + extra_fee is equal to the sender intended amount, we're fine.
11041                 let hop_data = msgs::InboundOnionPayload::Receive { // This is the same payload as above, InboundOnionPayload doesn't implement Clone
11042                         amt_msat: 100,
11043                         outgoing_cltv_value: 42,
11044                         payment_metadata: None,
11045                         keysend_preimage: None,
11046                         payment_data: Some(msgs::FinalOnionHopData {
11047                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
11048                         }),
11049                         custom_tlvs: Vec::new(),
11050                 };
11051                 assert!(node[0].node.construct_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
11052                         sender_intended_amt_msat - extra_fee_msat, 42, None, true, Some(extra_fee_msat)).is_ok());
11053         }
11054
11055         #[test]
11056         fn test_inbound_anchors_manual_acceptance() {
11057                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
11058                 // flag set and (sometimes) accept channels as 0conf.
11059                 let mut anchors_cfg = test_default_channel_config();
11060                 anchors_cfg.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
11061
11062                 let mut anchors_manual_accept_cfg = anchors_cfg.clone();
11063                 anchors_manual_accept_cfg.manually_accept_inbound_channels = true;
11064
11065                 let chanmon_cfgs = create_chanmon_cfgs(3);
11066                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
11067                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs,
11068                         &[Some(anchors_cfg.clone()), Some(anchors_cfg.clone()), Some(anchors_manual_accept_cfg.clone())]);
11069                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
11070
11071                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
11072                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
11073
11074                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
11075                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
11076                 let msg_events = nodes[1].node.get_and_clear_pending_msg_events();
11077                 match &msg_events[0] {
11078                         MessageSendEvent::HandleError { node_id, action } => {
11079                                 assert_eq!(*node_id, nodes[0].node.get_our_node_id());
11080                                 match action {
11081                                         ErrorAction::SendErrorMessage { msg } =>
11082                                                 assert_eq!(msg.data, "No channels with anchor outputs accepted".to_owned()),
11083                                         _ => panic!("Unexpected error action"),
11084                                 }
11085                         }
11086                         _ => panic!("Unexpected event"),
11087                 }
11088
11089                 nodes[2].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
11090                 let events = nodes[2].node.get_and_clear_pending_events();
11091                 match events[0] {
11092                         Event::OpenChannelRequest { temporary_channel_id, .. } =>
11093                                 nodes[2].node.accept_inbound_channel(&temporary_channel_id, &nodes[0].node.get_our_node_id(), 23).unwrap(),
11094                         _ => panic!("Unexpected event"),
11095                 }
11096                 get_event_msg!(nodes[2], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
11097         }
11098
11099         #[test]
11100         fn test_anchors_zero_fee_htlc_tx_fallback() {
11101                 // Tests that if both nodes support anchors, but the remote node does not want to accept
11102                 // anchor channels at the moment, an error it sent to the local node such that it can retry
11103                 // the channel without the anchors feature.
11104                 let chanmon_cfgs = create_chanmon_cfgs(2);
11105                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
11106                 let mut anchors_config = test_default_channel_config();
11107                 anchors_config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
11108                 anchors_config.manually_accept_inbound_channels = true;
11109                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(anchors_config.clone()), Some(anchors_config.clone())]);
11110                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
11111
11112                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 0, None).unwrap();
11113                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
11114                 assert!(open_channel_msg.channel_type.as_ref().unwrap().supports_anchors_zero_fee_htlc_tx());
11115
11116                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
11117                 let events = nodes[1].node.get_and_clear_pending_events();
11118                 match events[0] {
11119                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
11120                                 nodes[1].node.force_close_broadcasting_latest_txn(&temporary_channel_id, &nodes[0].node.get_our_node_id()).unwrap();
11121                         }
11122                         _ => panic!("Unexpected event"),
11123                 }
11124
11125                 let error_msg = get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id());
11126                 nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &error_msg);
11127
11128                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
11129                 assert!(!open_channel_msg.channel_type.unwrap().supports_anchors_zero_fee_htlc_tx());
11130
11131                 // Since nodes[1] should not have accepted the channel, it should
11132                 // not have generated any events.
11133                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
11134         }
11135
11136         #[test]
11137         fn test_update_channel_config() {
11138                 let chanmon_cfg = create_chanmon_cfgs(2);
11139                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
11140                 let mut user_config = test_default_channel_config();
11141                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config), Some(user_config)]);
11142                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
11143                 let _ = create_announced_chan_between_nodes(&nodes, 0, 1);
11144                 let channel = &nodes[0].node.list_channels()[0];
11145
11146                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
11147                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11148                 assert_eq!(events.len(), 0);
11149
11150                 user_config.channel_config.forwarding_fee_base_msat += 10;
11151                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
11152                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_base_msat, user_config.channel_config.forwarding_fee_base_msat);
11153                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11154                 assert_eq!(events.len(), 1);
11155                 match &events[0] {
11156                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
11157                         _ => panic!("expected BroadcastChannelUpdate event"),
11158                 }
11159
11160                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate::default()).unwrap();
11161                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11162                 assert_eq!(events.len(), 0);
11163
11164                 let new_cltv_expiry_delta = user_config.channel_config.cltv_expiry_delta + 6;
11165                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
11166                         cltv_expiry_delta: Some(new_cltv_expiry_delta),
11167                         ..Default::default()
11168                 }).unwrap();
11169                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
11170                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11171                 assert_eq!(events.len(), 1);
11172                 match &events[0] {
11173                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
11174                         _ => panic!("expected BroadcastChannelUpdate event"),
11175                 }
11176
11177                 let new_fee = user_config.channel_config.forwarding_fee_proportional_millionths + 100;
11178                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
11179                         forwarding_fee_proportional_millionths: Some(new_fee),
11180                         ..Default::default()
11181                 }).unwrap();
11182                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
11183                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, new_fee);
11184                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11185                 assert_eq!(events.len(), 1);
11186                 match &events[0] {
11187                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
11188                         _ => panic!("expected BroadcastChannelUpdate event"),
11189                 }
11190
11191                 // If we provide a channel_id not associated with the peer, we should get an error and no updates
11192                 // should be applied to ensure update atomicity as specified in the API docs.
11193                 let bad_channel_id = ChannelId::v1_from_funding_txid(&[10; 32], 10);
11194                 let current_fee = nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths;
11195                 let new_fee = current_fee + 100;
11196                 assert!(
11197                         matches!(
11198                                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id, bad_channel_id], &ChannelConfigUpdate {
11199                                         forwarding_fee_proportional_millionths: Some(new_fee),
11200                                         ..Default::default()
11201                                 }),
11202                                 Err(APIError::ChannelUnavailable { err: _ }),
11203                         )
11204                 );
11205                 // Check that the fee hasn't changed for the channel that exists.
11206                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, current_fee);
11207                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11208                 assert_eq!(events.len(), 0);
11209         }
11210
11211         #[test]
11212         fn test_payment_display() {
11213                 let payment_id = PaymentId([42; 32]);
11214                 assert_eq!(format!("{}", &payment_id), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
11215                 let payment_hash = PaymentHash([42; 32]);
11216                 assert_eq!(format!("{}", &payment_hash), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
11217                 let payment_preimage = PaymentPreimage([42; 32]);
11218                 assert_eq!(format!("{}", &payment_preimage), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
11219         }
11220 }
11221
11222 #[cfg(ldk_bench)]
11223 pub mod bench {
11224         use crate::chain::Listen;
11225         use crate::chain::chainmonitor::{ChainMonitor, Persist};
11226         use crate::sign::{KeysManager, InMemorySigner};
11227         use crate::events::{Event, MessageSendEvent, MessageSendEventsProvider};
11228         use crate::ln::channelmanager::{BestBlock, ChainParameters, ChannelManager, PaymentHash, PaymentPreimage, PaymentId, RecipientOnionFields, Retry};
11229         use crate::ln::functional_test_utils::*;
11230         use crate::ln::msgs::{ChannelMessageHandler, Init};
11231         use crate::routing::gossip::NetworkGraph;
11232         use crate::routing::router::{PaymentParameters, RouteParameters};
11233         use crate::util::test_utils;
11234         use crate::util::config::{UserConfig, MaxDustHTLCExposure};
11235
11236         use bitcoin::hashes::Hash;
11237         use bitcoin::hashes::sha256::Hash as Sha256;
11238         use bitcoin::{Block, BlockHeader, PackedLockTime, Transaction, TxMerkleNode, TxOut};
11239
11240         use crate::sync::{Arc, Mutex, RwLock};
11241
11242         use criterion::Criterion;
11243
11244         type Manager<'a, P> = ChannelManager<
11245                 &'a ChainMonitor<InMemorySigner, &'a test_utils::TestChainSource,
11246                         &'a test_utils::TestBroadcaster, &'a test_utils::TestFeeEstimator,
11247                         &'a test_utils::TestLogger, &'a P>,
11248                 &'a test_utils::TestBroadcaster, &'a KeysManager, &'a KeysManager, &'a KeysManager,
11249                 &'a test_utils::TestFeeEstimator, &'a test_utils::TestRouter<'a>,
11250                 &'a test_utils::TestLogger>;
11251
11252         struct ANodeHolder<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> {
11253                 node: &'node_cfg Manager<'chan_mon_cfg, P>,
11254         }
11255         impl<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> NodeHolder for ANodeHolder<'node_cfg, 'chan_mon_cfg, P> {
11256                 type CM = Manager<'chan_mon_cfg, P>;
11257                 #[inline]
11258                 fn node(&self) -> &Manager<'chan_mon_cfg, P> { self.node }
11259                 #[inline]
11260                 fn chain_monitor(&self) -> Option<&test_utils::TestChainMonitor> { None }
11261         }
11262
11263         pub fn bench_sends(bench: &mut Criterion) {
11264                 bench_two_sends(bench, "bench_sends", test_utils::TestPersister::new(), test_utils::TestPersister::new());
11265         }
11266
11267         pub fn bench_two_sends<P: Persist<InMemorySigner>>(bench: &mut Criterion, bench_name: &str, persister_a: P, persister_b: P) {
11268                 // Do a simple benchmark of sending a payment back and forth between two nodes.
11269                 // Note that this is unrealistic as each payment send will require at least two fsync
11270                 // calls per node.
11271                 let network = bitcoin::Network::Testnet;
11272                 let genesis_block = bitcoin::blockdata::constants::genesis_block(network);
11273
11274                 let tx_broadcaster = test_utils::TestBroadcaster::new(network);
11275                 let fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
11276                 let logger_a = test_utils::TestLogger::with_id("node a".to_owned());
11277                 let scorer = RwLock::new(test_utils::TestScorer::new());
11278                 let router = test_utils::TestRouter::new(Arc::new(NetworkGraph::new(network, &logger_a)), &scorer);
11279
11280                 let mut config: UserConfig = Default::default();
11281                 config.channel_config.max_dust_htlc_exposure = MaxDustHTLCExposure::FeeRateMultiplier(5_000_000 / 253);
11282                 config.channel_handshake_config.minimum_depth = 1;
11283
11284                 let chain_monitor_a = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_a);
11285                 let seed_a = [1u8; 32];
11286                 let keys_manager_a = KeysManager::new(&seed_a, 42, 42);
11287                 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 {
11288                         network,
11289                         best_block: BestBlock::from_network(network),
11290                 }, genesis_block.header.time);
11291                 let node_a_holder = ANodeHolder { node: &node_a };
11292
11293                 let logger_b = test_utils::TestLogger::with_id("node a".to_owned());
11294                 let chain_monitor_b = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_b);
11295                 let seed_b = [2u8; 32];
11296                 let keys_manager_b = KeysManager::new(&seed_b, 42, 42);
11297                 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 {
11298                         network,
11299                         best_block: BestBlock::from_network(network),
11300                 }, genesis_block.header.time);
11301                 let node_b_holder = ANodeHolder { node: &node_b };
11302
11303                 node_a.peer_connected(&node_b.get_our_node_id(), &Init {
11304                         features: node_b.init_features(), networks: None, remote_network_address: None
11305                 }, true).unwrap();
11306                 node_b.peer_connected(&node_a.get_our_node_id(), &Init {
11307                         features: node_a.init_features(), networks: None, remote_network_address: None
11308                 }, false).unwrap();
11309                 node_a.create_channel(node_b.get_our_node_id(), 8_000_000, 100_000_000, 42, None).unwrap();
11310                 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()));
11311                 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()));
11312
11313                 let tx;
11314                 if let Event::FundingGenerationReady { temporary_channel_id, output_script, .. } = get_event!(node_a_holder, Event::FundingGenerationReady) {
11315                         tx = Transaction { version: 2, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: vec![TxOut {
11316                                 value: 8_000_000, script_pubkey: output_script,
11317                         }]};
11318                         node_a.funding_transaction_generated(&temporary_channel_id, &node_b.get_our_node_id(), tx.clone()).unwrap();
11319                 } else { panic!(); }
11320
11321                 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()));
11322                 let events_b = node_b.get_and_clear_pending_events();
11323                 assert_eq!(events_b.len(), 1);
11324                 match events_b[0] {
11325                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
11326                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
11327                         },
11328                         _ => panic!("Unexpected event"),
11329                 }
11330
11331                 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()));
11332                 let events_a = node_a.get_and_clear_pending_events();
11333                 assert_eq!(events_a.len(), 1);
11334                 match events_a[0] {
11335                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
11336                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
11337                         },
11338                         _ => panic!("Unexpected event"),
11339                 }
11340
11341                 assert_eq!(&tx_broadcaster.txn_broadcasted.lock().unwrap()[..], &[tx.clone()]);
11342
11343                 let block = create_dummy_block(BestBlock::from_network(network).block_hash(), 42, vec![tx]);
11344                 Listen::block_connected(&node_a, &block, 1);
11345                 Listen::block_connected(&node_b, &block, 1);
11346
11347                 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()));
11348                 let msg_events = node_a.get_and_clear_pending_msg_events();
11349                 assert_eq!(msg_events.len(), 2);
11350                 match msg_events[0] {
11351                         MessageSendEvent::SendChannelReady { ref msg, .. } => {
11352                                 node_b.handle_channel_ready(&node_a.get_our_node_id(), msg);
11353                                 get_event_msg!(node_b_holder, MessageSendEvent::SendChannelUpdate, node_a.get_our_node_id());
11354                         },
11355                         _ => panic!(),
11356                 }
11357                 match msg_events[1] {
11358                         MessageSendEvent::SendChannelUpdate { .. } => {},
11359                         _ => panic!(),
11360                 }
11361
11362                 let events_a = node_a.get_and_clear_pending_events();
11363                 assert_eq!(events_a.len(), 1);
11364                 match events_a[0] {
11365                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
11366                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
11367                         },
11368                         _ => panic!("Unexpected event"),
11369                 }
11370
11371                 let events_b = node_b.get_and_clear_pending_events();
11372                 assert_eq!(events_b.len(), 1);
11373                 match events_b[0] {
11374                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
11375                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
11376                         },
11377                         _ => panic!("Unexpected event"),
11378                 }
11379
11380                 let mut payment_count: u64 = 0;
11381                 macro_rules! send_payment {
11382                         ($node_a: expr, $node_b: expr) => {
11383                                 let payment_params = PaymentParameters::from_node_id($node_b.get_our_node_id(), TEST_FINAL_CLTV)
11384                                         .with_bolt11_features($node_b.invoice_features()).unwrap();
11385                                 let mut payment_preimage = PaymentPreimage([0; 32]);
11386                                 payment_preimage.0[0..8].copy_from_slice(&payment_count.to_le_bytes());
11387                                 payment_count += 1;
11388                                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner());
11389                                 let payment_secret = $node_b.create_inbound_payment_for_hash(payment_hash, None, 7200, None).unwrap();
11390
11391                                 $node_a.send_payment(payment_hash, RecipientOnionFields::secret_only(payment_secret),
11392                                         PaymentId(payment_hash.0),
11393                                         RouteParameters::from_payment_params_and_value(payment_params, 10_000),
11394                                         Retry::Attempts(0)).unwrap();
11395                                 let payment_event = SendEvent::from_event($node_a.get_and_clear_pending_msg_events().pop().unwrap());
11396                                 $node_b.handle_update_add_htlc(&$node_a.get_our_node_id(), &payment_event.msgs[0]);
11397                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &payment_event.commitment_msg);
11398                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_b }, &$node_a.get_our_node_id());
11399                                 $node_a.handle_revoke_and_ack(&$node_b.get_our_node_id(), &raa);
11400                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &cs);
11401                                 $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()));
11402
11403                                 expect_pending_htlcs_forwardable!(ANodeHolder { node: &$node_b });
11404                                 expect_payment_claimable!(ANodeHolder { node: &$node_b }, payment_hash, payment_secret, 10_000);
11405                                 $node_b.claim_funds(payment_preimage);
11406                                 expect_payment_claimed!(ANodeHolder { node: &$node_b }, payment_hash, 10_000);
11407
11408                                 match $node_b.get_and_clear_pending_msg_events().pop().unwrap() {
11409                                         MessageSendEvent::UpdateHTLCs { node_id, updates } => {
11410                                                 assert_eq!(node_id, $node_a.get_our_node_id());
11411                                                 $node_a.handle_update_fulfill_htlc(&$node_b.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
11412                                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &updates.commitment_signed);
11413                                         },
11414                                         _ => panic!("Failed to generate claim event"),
11415                                 }
11416
11417                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_a }, &$node_b.get_our_node_id());
11418                                 $node_b.handle_revoke_and_ack(&$node_a.get_our_node_id(), &raa);
11419                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &cs);
11420                                 $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()));
11421
11422                                 expect_payment_sent!(ANodeHolder { node: &$node_a }, payment_preimage);
11423                         }
11424                 }
11425
11426                 bench.bench_function(bench_name, |b| b.iter(|| {
11427                         send_payment!(node_a, node_b);
11428                         send_payment!(node_b, node_a);
11429                 }));
11430         }
11431 }