Switch `Simple*ChannelManager` locks around `Score` to `RwLock`
[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<RwLock<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 RwLock<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 #[derive(Clone, Debug, PartialEq)]
1452 pub struct ChannelDetails {
1453         /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
1454         /// thereafter this is the txid of the funding transaction xor the funding transaction output).
1455         /// Note that this means this value is *not* persistent - it can change once during the
1456         /// lifetime of the channel.
1457         pub channel_id: ChannelId,
1458         /// Parameters which apply to our counterparty. See individual fields for more information.
1459         pub counterparty: ChannelCounterparty,
1460         /// The Channel's funding transaction output, if we've negotiated the funding transaction with
1461         /// our counterparty already.
1462         ///
1463         /// Note that, if this has been set, `channel_id` will be equivalent to
1464         /// `funding_txo.unwrap().to_channel_id()`.
1465         pub funding_txo: Option<OutPoint>,
1466         /// The features which this channel operates with. See individual features for more info.
1467         ///
1468         /// `None` until negotiation completes and the channel type is finalized.
1469         pub channel_type: Option<ChannelTypeFeatures>,
1470         /// The position of the funding transaction in the chain. None if the funding transaction has
1471         /// not yet been confirmed and the channel fully opened.
1472         ///
1473         /// Note that if [`inbound_scid_alias`] is set, it must be used for invoices and inbound
1474         /// payments instead of this. See [`get_inbound_payment_scid`].
1475         ///
1476         /// For channels with [`confirmations_required`] set to `Some(0)`, [`outbound_scid_alias`] may
1477         /// be used in place of this in outbound routes. See [`get_outbound_payment_scid`].
1478         ///
1479         /// [`inbound_scid_alias`]: Self::inbound_scid_alias
1480         /// [`outbound_scid_alias`]: Self::outbound_scid_alias
1481         /// [`get_inbound_payment_scid`]: Self::get_inbound_payment_scid
1482         /// [`get_outbound_payment_scid`]: Self::get_outbound_payment_scid
1483         /// [`confirmations_required`]: Self::confirmations_required
1484         pub short_channel_id: Option<u64>,
1485         /// An optional [`short_channel_id`] alias for this channel, randomly generated by us and
1486         /// usable in place of [`short_channel_id`] to reference the channel in outbound routes when
1487         /// the channel has not yet been confirmed (as long as [`confirmations_required`] is
1488         /// `Some(0)`).
1489         ///
1490         /// This will be `None` as long as the channel is not available for routing outbound payments.
1491         ///
1492         /// [`short_channel_id`]: Self::short_channel_id
1493         /// [`confirmations_required`]: Self::confirmations_required
1494         pub outbound_scid_alias: Option<u64>,
1495         /// An optional [`short_channel_id`] alias for this channel, randomly generated by our
1496         /// counterparty and usable in place of [`short_channel_id`] in invoice route hints. Our
1497         /// counterparty will recognize the alias provided here in place of the [`short_channel_id`]
1498         /// when they see a payment to be routed to us.
1499         ///
1500         /// Our counterparty may choose to rotate this value at any time, though will always recognize
1501         /// previous values for inbound payment forwarding.
1502         ///
1503         /// [`short_channel_id`]: Self::short_channel_id
1504         pub inbound_scid_alias: Option<u64>,
1505         /// The value, in satoshis, of this channel as appears in the funding output
1506         pub channel_value_satoshis: u64,
1507         /// The value, in satoshis, that must always be held in the channel for us. This value ensures
1508         /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
1509         /// this value on chain.
1510         ///
1511         /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
1512         ///
1513         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1514         ///
1515         /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
1516         pub unspendable_punishment_reserve: Option<u64>,
1517         /// The `user_channel_id` value passed in to [`ChannelManager::create_channel`] for outbound
1518         /// channels, or to [`ChannelManager::accept_inbound_channel`] for inbound channels if
1519         /// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true. Otherwise
1520         /// `user_channel_id` will be randomized for an inbound channel.  This may be zero for objects
1521         /// serialized with LDK versions prior to 0.0.113.
1522         ///
1523         /// [`ChannelManager::create_channel`]: crate::ln::channelmanager::ChannelManager::create_channel
1524         /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
1525         /// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
1526         pub user_channel_id: u128,
1527         /// The currently negotiated fee rate denominated in satoshi per 1000 weight units,
1528         /// which is applied to commitment and HTLC transactions.
1529         ///
1530         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.115.
1531         pub feerate_sat_per_1000_weight: Option<u32>,
1532         /// Our total balance.  This is the amount we would get if we close the channel.
1533         /// This value is not exact. Due to various in-flight changes and feerate changes, exactly this
1534         /// amount is not likely to be recoverable on close.
1535         ///
1536         /// This does not include any pending HTLCs which are not yet fully resolved (and, thus, whose
1537         /// balance is not available for inclusion in new outbound HTLCs). This further does not include
1538         /// any pending outgoing HTLCs which are awaiting some other resolution to be sent.
1539         /// This does not consider any on-chain fees.
1540         ///
1541         /// See also [`ChannelDetails::outbound_capacity_msat`]
1542         pub balance_msat: u64,
1543         /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
1544         /// any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1545         /// available for inclusion in new outbound HTLCs). This further does not include any pending
1546         /// outgoing HTLCs which are awaiting some other resolution to be sent.
1547         ///
1548         /// See also [`ChannelDetails::balance_msat`]
1549         ///
1550         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1551         /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
1552         /// should be able to spend nearly this amount.
1553         pub outbound_capacity_msat: u64,
1554         /// The available outbound capacity for sending a single HTLC to the remote peer. This is
1555         /// similar to [`ChannelDetails::outbound_capacity_msat`] but it may be further restricted by
1556         /// the current state and per-HTLC limit(s). This is intended for use when routing, allowing us
1557         /// to use a limit as close as possible to the HTLC limit we can currently send.
1558         ///
1559         /// See also [`ChannelDetails::next_outbound_htlc_minimum_msat`],
1560         /// [`ChannelDetails::balance_msat`], and [`ChannelDetails::outbound_capacity_msat`].
1561         pub next_outbound_htlc_limit_msat: u64,
1562         /// The minimum value for sending a single HTLC to the remote peer. This is the equivalent of
1563         /// [`ChannelDetails::next_outbound_htlc_limit_msat`] but represents a lower-bound, rather than
1564         /// an upper-bound. This is intended for use when routing, allowing us to ensure we pick a
1565         /// route which is valid.
1566         pub next_outbound_htlc_minimum_msat: u64,
1567         /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
1568         /// include any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1569         /// available for inclusion in new inbound HTLCs).
1570         /// Note that there are some corner cases not fully handled here, so the actual available
1571         /// inbound capacity may be slightly higher than this.
1572         ///
1573         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1574         /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
1575         /// However, our counterparty should be able to spend nearly this amount.
1576         pub inbound_capacity_msat: u64,
1577         /// The number of required confirmations on the funding transaction before the funding will be
1578         /// considered "locked". This number is selected by the channel fundee (i.e. us if
1579         /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
1580         /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
1581         /// [`ChannelHandshakeLimits::max_minimum_depth`].
1582         ///
1583         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1584         ///
1585         /// [`is_outbound`]: ChannelDetails::is_outbound
1586         /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
1587         /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
1588         pub confirmations_required: Option<u32>,
1589         /// The current number of confirmations on the funding transaction.
1590         ///
1591         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.113.
1592         pub confirmations: Option<u32>,
1593         /// The number of blocks (after our commitment transaction confirms) that we will need to wait
1594         /// until we can claim our funds after we force-close the channel. During this time our
1595         /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
1596         /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
1597         /// time to claim our non-HTLC-encumbered funds.
1598         ///
1599         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1600         pub force_close_spend_delay: Option<u16>,
1601         /// True if the channel was initiated (and thus funded) by us.
1602         pub is_outbound: bool,
1603         /// True if the channel is confirmed, channel_ready messages have been exchanged, and the
1604         /// channel is not currently being shut down. `channel_ready` message exchange implies the
1605         /// required confirmation count has been reached (and we were connected to the peer at some
1606         /// point after the funding transaction received enough confirmations). The required
1607         /// confirmation count is provided in [`confirmations_required`].
1608         ///
1609         /// [`confirmations_required`]: ChannelDetails::confirmations_required
1610         pub is_channel_ready: bool,
1611         /// The stage of the channel's shutdown.
1612         /// `None` for `ChannelDetails` serialized on LDK versions prior to 0.0.116.
1613         pub channel_shutdown_state: Option<ChannelShutdownState>,
1614         /// True if the channel is (a) confirmed and channel_ready messages have been exchanged, (b)
1615         /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
1616         ///
1617         /// This is a strict superset of `is_channel_ready`.
1618         pub is_usable: bool,
1619         /// True if this channel is (or will be) publicly-announced.
1620         pub is_public: bool,
1621         /// The smallest value HTLC (in msat) we will accept, for this channel. This field
1622         /// is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.107
1623         pub inbound_htlc_minimum_msat: Option<u64>,
1624         /// The largest value HTLC (in msat) we currently will accept, for this channel.
1625         pub inbound_htlc_maximum_msat: Option<u64>,
1626         /// Set of configurable parameters that affect channel operation.
1627         ///
1628         /// This field is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.109.
1629         pub config: Option<ChannelConfig>,
1630 }
1631
1632 impl ChannelDetails {
1633         /// Gets the current SCID which should be used to identify this channel for inbound payments.
1634         /// This should be used for providing invoice hints or in any other context where our
1635         /// counterparty will forward a payment to us.
1636         ///
1637         /// This is either the [`ChannelDetails::inbound_scid_alias`], if set, or the
1638         /// [`ChannelDetails::short_channel_id`]. See those for more information.
1639         pub fn get_inbound_payment_scid(&self) -> Option<u64> {
1640                 self.inbound_scid_alias.or(self.short_channel_id)
1641         }
1642
1643         /// Gets the current SCID which should be used to identify this channel for outbound payments.
1644         /// This should be used in [`Route`]s to describe the first hop or in other contexts where
1645         /// we're sending or forwarding a payment outbound over this channel.
1646         ///
1647         /// This is either the [`ChannelDetails::short_channel_id`], if set, or the
1648         /// [`ChannelDetails::outbound_scid_alias`]. See those for more information.
1649         pub fn get_outbound_payment_scid(&self) -> Option<u64> {
1650                 self.short_channel_id.or(self.outbound_scid_alias)
1651         }
1652
1653         fn from_channel_context<SP: Deref, F: Deref>(
1654                 context: &ChannelContext<SP>, best_block_height: u32, latest_features: InitFeatures,
1655                 fee_estimator: &LowerBoundedFeeEstimator<F>
1656         ) -> Self
1657         where
1658                 SP::Target: SignerProvider,
1659                 F::Target: FeeEstimator
1660         {
1661                 let balance = context.get_available_balances(fee_estimator);
1662                 let (to_remote_reserve_satoshis, to_self_reserve_satoshis) =
1663                         context.get_holder_counterparty_selected_channel_reserve_satoshis();
1664                 ChannelDetails {
1665                         channel_id: context.channel_id(),
1666                         counterparty: ChannelCounterparty {
1667                                 node_id: context.get_counterparty_node_id(),
1668                                 features: latest_features,
1669                                 unspendable_punishment_reserve: to_remote_reserve_satoshis,
1670                                 forwarding_info: context.counterparty_forwarding_info(),
1671                                 // Ensures that we have actually received the `htlc_minimum_msat` value
1672                                 // from the counterparty through the `OpenChannel` or `AcceptChannel`
1673                                 // message (as they are always the first message from the counterparty).
1674                                 // Else `Channel::get_counterparty_htlc_minimum_msat` could return the
1675                                 // default `0` value set by `Channel::new_outbound`.
1676                                 outbound_htlc_minimum_msat: if context.have_received_message() {
1677                                         Some(context.get_counterparty_htlc_minimum_msat()) } else { None },
1678                                 outbound_htlc_maximum_msat: context.get_counterparty_htlc_maximum_msat(),
1679                         },
1680                         funding_txo: context.get_funding_txo(),
1681                         // Note that accept_channel (or open_channel) is always the first message, so
1682                         // `have_received_message` indicates that type negotiation has completed.
1683                         channel_type: if context.have_received_message() { Some(context.get_channel_type().clone()) } else { None },
1684                         short_channel_id: context.get_short_channel_id(),
1685                         outbound_scid_alias: if context.is_usable() { Some(context.outbound_scid_alias()) } else { None },
1686                         inbound_scid_alias: context.latest_inbound_scid_alias(),
1687                         channel_value_satoshis: context.get_value_satoshis(),
1688                         feerate_sat_per_1000_weight: Some(context.get_feerate_sat_per_1000_weight()),
1689                         unspendable_punishment_reserve: to_self_reserve_satoshis,
1690                         balance_msat: balance.balance_msat,
1691                         inbound_capacity_msat: balance.inbound_capacity_msat,
1692                         outbound_capacity_msat: balance.outbound_capacity_msat,
1693                         next_outbound_htlc_limit_msat: balance.next_outbound_htlc_limit_msat,
1694                         next_outbound_htlc_minimum_msat: balance.next_outbound_htlc_minimum_msat,
1695                         user_channel_id: context.get_user_id(),
1696                         confirmations_required: context.minimum_depth(),
1697                         confirmations: Some(context.get_funding_tx_confirmations(best_block_height)),
1698                         force_close_spend_delay: context.get_counterparty_selected_contest_delay(),
1699                         is_outbound: context.is_outbound(),
1700                         is_channel_ready: context.is_usable(),
1701                         is_usable: context.is_live(),
1702                         is_public: context.should_announce(),
1703                         inbound_htlc_minimum_msat: Some(context.get_holder_htlc_minimum_msat()),
1704                         inbound_htlc_maximum_msat: context.get_holder_htlc_maximum_msat(),
1705                         config: Some(context.config()),
1706                         channel_shutdown_state: Some(context.shutdown_state()),
1707                 }
1708         }
1709 }
1710
1711 #[derive(Clone, Copy, Debug, PartialEq, Eq)]
1712 /// Further information on the details of the channel shutdown.
1713 /// Upon channels being forced closed (i.e. commitment transaction confirmation detected
1714 /// by `ChainMonitor`), ChannelShutdownState will be set to `ShutdownComplete` or
1715 /// the channel will be removed shortly.
1716 /// Also note, that in normal operation, peers could disconnect at any of these states
1717 /// and require peer re-connection before making progress onto other states
1718 pub enum ChannelShutdownState {
1719         /// Channel has not sent or received a shutdown message.
1720         NotShuttingDown,
1721         /// Local node has sent a shutdown message for this channel.
1722         ShutdownInitiated,
1723         /// Shutdown message exchanges have concluded and the channels are in the midst of
1724         /// resolving all existing open HTLCs before closing can continue.
1725         ResolvingHTLCs,
1726         /// All HTLCs have been resolved, nodes are currently negotiating channel close onchain fee rates.
1727         NegotiatingClosingFee,
1728         /// We've successfully negotiated a closing_signed dance. At this point `ChannelManager` is about
1729         /// to drop the channel.
1730         ShutdownComplete,
1731 }
1732
1733 /// Used by [`ChannelManager::list_recent_payments`] to express the status of recent payments.
1734 /// These include payments that have yet to find a successful path, or have unresolved HTLCs.
1735 #[derive(Debug, PartialEq)]
1736 pub enum RecentPaymentDetails {
1737         /// When an invoice was requested and thus a payment has not yet been sent.
1738         AwaitingInvoice {
1739                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1740                 /// a payment and ensure idempotency in LDK.
1741                 payment_id: PaymentId,
1742         },
1743         /// When a payment is still being sent and awaiting successful delivery.
1744         Pending {
1745                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1746                 /// a payment and ensure idempotency in LDK.
1747                 payment_id: PaymentId,
1748                 /// Hash of the payment that is currently being sent but has yet to be fulfilled or
1749                 /// abandoned.
1750                 payment_hash: PaymentHash,
1751                 /// Total amount (in msat, excluding fees) across all paths for this payment,
1752                 /// not just the amount currently inflight.
1753                 total_msat: u64,
1754         },
1755         /// When a pending payment is fulfilled, we continue tracking it until all pending HTLCs have
1756         /// been resolved. Upon receiving [`Event::PaymentSent`], we delay for a few minutes before the
1757         /// payment is removed from tracking.
1758         Fulfilled {
1759                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1760                 /// a payment and ensure idempotency in LDK.
1761                 payment_id: PaymentId,
1762                 /// Hash of the payment that was claimed. `None` for serializations of [`ChannelManager`]
1763                 /// made before LDK version 0.0.104.
1764                 payment_hash: Option<PaymentHash>,
1765         },
1766         /// After a payment's retries are exhausted per the provided [`Retry`], or it is explicitly
1767         /// abandoned via [`ChannelManager::abandon_payment`], it is marked as abandoned until all
1768         /// pending HTLCs for this payment resolve and an [`Event::PaymentFailed`] is generated.
1769         Abandoned {
1770                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1771                 /// a payment and ensure idempotency in LDK.
1772                 payment_id: PaymentId,
1773                 /// Hash of the payment that we have given up trying to send.
1774                 payment_hash: PaymentHash,
1775         },
1776 }
1777
1778 /// Route hints used in constructing invoices for [phantom node payents].
1779 ///
1780 /// [phantom node payments]: crate::sign::PhantomKeysManager
1781 #[derive(Clone)]
1782 pub struct PhantomRouteHints {
1783         /// The list of channels to be included in the invoice route hints.
1784         pub channels: Vec<ChannelDetails>,
1785         /// A fake scid used for representing the phantom node's fake channel in generating the invoice
1786         /// route hints.
1787         pub phantom_scid: u64,
1788         /// The pubkey of the real backing node that would ultimately receive the payment.
1789         pub real_node_pubkey: PublicKey,
1790 }
1791
1792 macro_rules! handle_error {
1793         ($self: ident, $internal: expr, $counterparty_node_id: expr) => { {
1794                 // In testing, ensure there are no deadlocks where the lock is already held upon
1795                 // entering the macro.
1796                 debug_assert_ne!($self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
1797                 debug_assert_ne!($self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
1798
1799                 match $internal {
1800                         Ok(msg) => Ok(msg),
1801                         Err(MsgHandleErrInternal { err, chan_id, shutdown_finish, channel_capacity }) => {
1802                                 let mut msg_events = Vec::with_capacity(2);
1803
1804                                 if let Some((shutdown_res, update_option)) = shutdown_finish {
1805                                         $self.finish_close_channel(shutdown_res);
1806                                         if let Some(update) = update_option {
1807                                                 msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
1808                                                         msg: update
1809                                                 });
1810                                         }
1811                                         if let Some((channel_id, user_channel_id)) = chan_id {
1812                                                 $self.pending_events.lock().unwrap().push_back((events::Event::ChannelClosed {
1813                                                         channel_id, user_channel_id,
1814                                                         reason: ClosureReason::ProcessingError { err: err.err.clone() },
1815                                                         counterparty_node_id: Some($counterparty_node_id),
1816                                                         channel_capacity_sats: channel_capacity,
1817                                                 }, None));
1818                                         }
1819                                 }
1820
1821                                 log_error!($self.logger, "{}", err.err);
1822                                 if let msgs::ErrorAction::IgnoreError = err.action {
1823                                 } else {
1824                                         msg_events.push(events::MessageSendEvent::HandleError {
1825                                                 node_id: $counterparty_node_id,
1826                                                 action: err.action.clone()
1827                                         });
1828                                 }
1829
1830                                 if !msg_events.is_empty() {
1831                                         let per_peer_state = $self.per_peer_state.read().unwrap();
1832                                         if let Some(peer_state_mutex) = per_peer_state.get(&$counterparty_node_id) {
1833                                                 let mut peer_state = peer_state_mutex.lock().unwrap();
1834                                                 peer_state.pending_msg_events.append(&mut msg_events);
1835                                         }
1836                                 }
1837
1838                                 // Return error in case higher-API need one
1839                                 Err(err)
1840                         },
1841                 }
1842         } };
1843         ($self: ident, $internal: expr) => {
1844                 match $internal {
1845                         Ok(res) => Ok(res),
1846                         Err((chan, msg_handle_err)) => {
1847                                 let counterparty_node_id = chan.get_counterparty_node_id();
1848                                 handle_error!($self, Err(msg_handle_err), counterparty_node_id).map_err(|err| (chan, err))
1849                         },
1850                 }
1851         };
1852 }
1853
1854 macro_rules! update_maps_on_chan_removal {
1855         ($self: expr, $channel_context: expr) => {{
1856                 $self.id_to_peer.lock().unwrap().remove(&$channel_context.channel_id());
1857                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1858                 if let Some(short_id) = $channel_context.get_short_channel_id() {
1859                         short_to_chan_info.remove(&short_id);
1860                 } else {
1861                         // If the channel was never confirmed on-chain prior to its closure, remove the
1862                         // outbound SCID alias we used for it from the collision-prevention set. While we
1863                         // generally want to avoid ever re-using an outbound SCID alias across all channels, we
1864                         // also don't want a counterparty to be able to trivially cause a memory leak by simply
1865                         // opening a million channels with us which are closed before we ever reach the funding
1866                         // stage.
1867                         let alias_removed = $self.outbound_scid_aliases.lock().unwrap().remove(&$channel_context.outbound_scid_alias());
1868                         debug_assert!(alias_removed);
1869                 }
1870                 short_to_chan_info.remove(&$channel_context.outbound_scid_alias());
1871         }}
1872 }
1873
1874 /// Returns (boolean indicating if we should remove the Channel object from memory, a mapped error)
1875 macro_rules! convert_chan_phase_err {
1876         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, MANUAL_CHANNEL_UPDATE, $channel_update: expr) => {
1877                 match $err {
1878                         ChannelError::Warn(msg) => {
1879                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Warn(msg), *$channel_id))
1880                         },
1881                         ChannelError::Ignore(msg) => {
1882                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore(msg), *$channel_id))
1883                         },
1884                         ChannelError::Close(msg) => {
1885                                 log_error!($self.logger, "Closing channel {} due to close-required error: {}", $channel_id, msg);
1886                                 update_maps_on_chan_removal!($self, $channel.context);
1887                                 let shutdown_res = $channel.context.force_shutdown(true);
1888                                 let user_id = $channel.context.get_user_id();
1889                                 let channel_capacity_satoshis = $channel.context.get_value_satoshis();
1890
1891                                 (true, MsgHandleErrInternal::from_finish_shutdown(msg, *$channel_id, user_id,
1892                                         shutdown_res, $channel_update, channel_capacity_satoshis))
1893                         },
1894                 }
1895         };
1896         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, FUNDED_CHANNEL) => {
1897                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, { $self.get_channel_update_for_broadcast($channel).ok() })
1898         };
1899         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, UNFUNDED_CHANNEL) => {
1900                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, None)
1901         };
1902         ($self: ident, $err: expr, $channel_phase: expr, $channel_id: expr) => {
1903                 match $channel_phase {
1904                         ChannelPhase::Funded(channel) => {
1905                                 convert_chan_phase_err!($self, $err, channel, $channel_id, FUNDED_CHANNEL)
1906                         },
1907                         ChannelPhase::UnfundedOutboundV1(channel) => {
1908                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
1909                         },
1910                         ChannelPhase::UnfundedInboundV1(channel) => {
1911                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
1912                         },
1913                 }
1914         };
1915 }
1916
1917 macro_rules! break_chan_phase_entry {
1918         ($self: ident, $res: expr, $entry: expr) => {
1919                 match $res {
1920                         Ok(res) => res,
1921                         Err(e) => {
1922                                 let key = *$entry.key();
1923                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
1924                                 if drop {
1925                                         $entry.remove_entry();
1926                                 }
1927                                 break Err(res);
1928                         }
1929                 }
1930         }
1931 }
1932
1933 macro_rules! try_chan_phase_entry {
1934         ($self: ident, $res: expr, $entry: expr) => {
1935                 match $res {
1936                         Ok(res) => res,
1937                         Err(e) => {
1938                                 let key = *$entry.key();
1939                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
1940                                 if drop {
1941                                         $entry.remove_entry();
1942                                 }
1943                                 return Err(res);
1944                         }
1945                 }
1946         }
1947 }
1948
1949 macro_rules! remove_channel_phase {
1950         ($self: expr, $entry: expr) => {
1951                 {
1952                         let channel = $entry.remove_entry().1;
1953                         update_maps_on_chan_removal!($self, &channel.context());
1954                         channel
1955                 }
1956         }
1957 }
1958
1959 macro_rules! send_channel_ready {
1960         ($self: ident, $pending_msg_events: expr, $channel: expr, $channel_ready_msg: expr) => {{
1961                 $pending_msg_events.push(events::MessageSendEvent::SendChannelReady {
1962                         node_id: $channel.context.get_counterparty_node_id(),
1963                         msg: $channel_ready_msg,
1964                 });
1965                 // Note that we may send a `channel_ready` multiple times for a channel if we reconnect, so
1966                 // we allow collisions, but we shouldn't ever be updating the channel ID pointed to.
1967                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1968                 let outbound_alias_insert = short_to_chan_info.insert($channel.context.outbound_scid_alias(), ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
1969                 assert!(outbound_alias_insert.is_none() || outbound_alias_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
1970                         "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1971                 if let Some(real_scid) = $channel.context.get_short_channel_id() {
1972                         let scid_insert = short_to_chan_info.insert(real_scid, ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
1973                         assert!(scid_insert.is_none() || scid_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
1974                                 "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1975                 }
1976         }}
1977 }
1978
1979 macro_rules! emit_channel_pending_event {
1980         ($locked_events: expr, $channel: expr) => {
1981                 if $channel.context.should_emit_channel_pending_event() {
1982                         $locked_events.push_back((events::Event::ChannelPending {
1983                                 channel_id: $channel.context.channel_id(),
1984                                 former_temporary_channel_id: $channel.context.temporary_channel_id(),
1985                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
1986                                 user_channel_id: $channel.context.get_user_id(),
1987                                 funding_txo: $channel.context.get_funding_txo().unwrap().into_bitcoin_outpoint(),
1988                         }, None));
1989                         $channel.context.set_channel_pending_event_emitted();
1990                 }
1991         }
1992 }
1993
1994 macro_rules! emit_channel_ready_event {
1995         ($locked_events: expr, $channel: expr) => {
1996                 if $channel.context.should_emit_channel_ready_event() {
1997                         debug_assert!($channel.context.channel_pending_event_emitted());
1998                         $locked_events.push_back((events::Event::ChannelReady {
1999                                 channel_id: $channel.context.channel_id(),
2000                                 user_channel_id: $channel.context.get_user_id(),
2001                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
2002                                 channel_type: $channel.context.get_channel_type().clone(),
2003                         }, None));
2004                         $channel.context.set_channel_ready_event_emitted();
2005                 }
2006         }
2007 }
2008
2009 macro_rules! handle_monitor_update_completion {
2010         ($self: ident, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr) => { {
2011                 let mut updates = $chan.monitor_updating_restored(&$self.logger,
2012                         &$self.node_signer, $self.genesis_hash, &$self.default_configuration,
2013                         $self.best_block.read().unwrap().height());
2014                 let counterparty_node_id = $chan.context.get_counterparty_node_id();
2015                 let channel_update = if updates.channel_ready.is_some() && $chan.context.is_usable() {
2016                         // We only send a channel_update in the case where we are just now sending a
2017                         // channel_ready and the channel is in a usable state. We may re-send a
2018                         // channel_update later through the announcement_signatures process for public
2019                         // channels, but there's no reason not to just inform our counterparty of our fees
2020                         // now.
2021                         if let Ok(msg) = $self.get_channel_update_for_unicast($chan) {
2022                                 Some(events::MessageSendEvent::SendChannelUpdate {
2023                                         node_id: counterparty_node_id,
2024                                         msg,
2025                                 })
2026                         } else { None }
2027                 } else { None };
2028
2029                 let update_actions = $peer_state.monitor_update_blocked_actions
2030                         .remove(&$chan.context.channel_id()).unwrap_or(Vec::new());
2031
2032                 let htlc_forwards = $self.handle_channel_resumption(
2033                         &mut $peer_state.pending_msg_events, $chan, updates.raa,
2034                         updates.commitment_update, updates.order, updates.accepted_htlcs,
2035                         updates.funding_broadcastable, updates.channel_ready,
2036                         updates.announcement_sigs);
2037                 if let Some(upd) = channel_update {
2038                         $peer_state.pending_msg_events.push(upd);
2039                 }
2040
2041                 let channel_id = $chan.context.channel_id();
2042                 let unbroadcasted_batch_funding_txid = $chan.context.unbroadcasted_batch_funding_txid();
2043                 core::mem::drop($peer_state_lock);
2044                 core::mem::drop($per_peer_state_lock);
2045
2046                 // If the channel belongs to a batch funding transaction, the progress of the batch
2047                 // should be updated as we have received funding_signed and persisted the monitor.
2048                 if let Some(txid) = unbroadcasted_batch_funding_txid {
2049                         let mut funding_batch_states = $self.funding_batch_states.lock().unwrap();
2050                         let mut batch_completed = false;
2051                         if let Some(batch_state) = funding_batch_states.get_mut(&txid) {
2052                                 let channel_state = batch_state.iter_mut().find(|(chan_id, pubkey, _)| (
2053                                         *chan_id == channel_id &&
2054                                         *pubkey == counterparty_node_id
2055                                 ));
2056                                 if let Some(channel_state) = channel_state {
2057                                         channel_state.2 = true;
2058                                 } else {
2059                                         debug_assert!(false, "Missing channel batch state for channel which completed initial monitor update");
2060                                 }
2061                                 batch_completed = batch_state.iter().all(|(_, _, completed)| *completed);
2062                         } else {
2063                                 debug_assert!(false, "Missing batch state for channel which completed initial monitor update");
2064                         }
2065
2066                         // When all channels in a batched funding transaction have become ready, it is not necessary
2067                         // to track the progress of the batch anymore and the state of the channels can be updated.
2068                         if batch_completed {
2069                                 let removed_batch_state = funding_batch_states.remove(&txid).into_iter().flatten();
2070                                 let per_peer_state = $self.per_peer_state.read().unwrap();
2071                                 let mut batch_funding_tx = None;
2072                                 for (channel_id, counterparty_node_id, _) in removed_batch_state {
2073                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2074                                                 let mut peer_state = peer_state_mutex.lock().unwrap();
2075                                                 if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&channel_id) {
2076                                                         batch_funding_tx = batch_funding_tx.or_else(|| chan.context.unbroadcasted_funding());
2077                                                         chan.set_batch_ready();
2078                                                         let mut pending_events = $self.pending_events.lock().unwrap();
2079                                                         emit_channel_pending_event!(pending_events, chan);
2080                                                 }
2081                                         }
2082                                 }
2083                                 if let Some(tx) = batch_funding_tx {
2084                                         log_info!($self.logger, "Broadcasting batch funding transaction with txid {}", tx.txid());
2085                                         $self.tx_broadcaster.broadcast_transactions(&[&tx]);
2086                                 }
2087                         }
2088                 }
2089
2090                 $self.handle_monitor_update_completion_actions(update_actions);
2091
2092                 if let Some(forwards) = htlc_forwards {
2093                         $self.forward_htlcs(&mut [forwards][..]);
2094                 }
2095                 $self.finalize_claims(updates.finalized_claimed_htlcs);
2096                 for failure in updates.failed_htlcs.drain(..) {
2097                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2098                         $self.fail_htlc_backwards_internal(&failure.0, &failure.1, &failure.2, receiver);
2099                 }
2100         } }
2101 }
2102
2103 macro_rules! handle_new_monitor_update {
2104         ($self: ident, $update_res: expr, $chan: expr, _internal, $completed: expr) => { {
2105                 debug_assert!($self.background_events_processed_since_startup.load(Ordering::Acquire));
2106                 match $update_res {
2107                         ChannelMonitorUpdateStatus::UnrecoverableError => {
2108                                 let err_str = "ChannelMonitor[Update] persistence failed unrecoverably. This indicates we cannot continue normal operation and must shut down.";
2109                                 log_error!($self.logger, "{}", err_str);
2110                                 panic!("{}", err_str);
2111                         },
2112                         ChannelMonitorUpdateStatus::InProgress => {
2113                                 log_debug!($self.logger, "ChannelMonitor update for {} in flight, holding messages until the update completes.",
2114                                         &$chan.context.channel_id());
2115                                 false
2116                         },
2117                         ChannelMonitorUpdateStatus::Completed => {
2118                                 $completed;
2119                                 true
2120                         },
2121                 }
2122         } };
2123         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr, INITIAL_MONITOR) => {
2124                 handle_new_monitor_update!($self, $update_res, $chan, _internal,
2125                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan))
2126         };
2127         ($self: ident, $funding_txo: expr, $update: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr) => { {
2128                 let in_flight_updates = $peer_state.in_flight_monitor_updates.entry($funding_txo)
2129                         .or_insert_with(Vec::new);
2130                 // During startup, we push monitor updates as background events through to here in
2131                 // order to replay updates that were in-flight when we shut down. Thus, we have to
2132                 // filter for uniqueness here.
2133                 let idx = in_flight_updates.iter().position(|upd| upd == &$update)
2134                         .unwrap_or_else(|| {
2135                                 in_flight_updates.push($update);
2136                                 in_flight_updates.len() - 1
2137                         });
2138                 let update_res = $self.chain_monitor.update_channel($funding_txo, &in_flight_updates[idx]);
2139                 handle_new_monitor_update!($self, update_res, $chan, _internal,
2140                         {
2141                                 let _ = in_flight_updates.remove(idx);
2142                                 if in_flight_updates.is_empty() && $chan.blocked_monitor_updates_pending() == 0 {
2143                                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan);
2144                                 }
2145                         })
2146         } };
2147 }
2148
2149 macro_rules! process_events_body {
2150         ($self: expr, $event_to_handle: expr, $handle_event: expr) => {
2151                 let mut processed_all_events = false;
2152                 while !processed_all_events {
2153                         if $self.pending_events_processor.compare_exchange(false, true, Ordering::Acquire, Ordering::Relaxed).is_err() {
2154                                 return;
2155                         }
2156
2157                         let mut result;
2158
2159                         {
2160                                 // We'll acquire our total consistency lock so that we can be sure no other
2161                                 // persists happen while processing monitor events.
2162                                 let _read_guard = $self.total_consistency_lock.read().unwrap();
2163
2164                                 // Because `handle_post_event_actions` may send `ChannelMonitorUpdate`s to the user we must
2165                                 // ensure any startup-generated background events are handled first.
2166                                 result = $self.process_background_events();
2167
2168                                 // TODO: This behavior should be documented. It's unintuitive that we query
2169                                 // ChannelMonitors when clearing other events.
2170                                 if $self.process_pending_monitor_events() {
2171                                         result = NotifyOption::DoPersist;
2172                                 }
2173                         }
2174
2175                         let pending_events = $self.pending_events.lock().unwrap().clone();
2176                         let num_events = pending_events.len();
2177                         if !pending_events.is_empty() {
2178                                 result = NotifyOption::DoPersist;
2179                         }
2180
2181                         let mut post_event_actions = Vec::new();
2182
2183                         for (event, action_opt) in pending_events {
2184                                 $event_to_handle = event;
2185                                 $handle_event;
2186                                 if let Some(action) = action_opt {
2187                                         post_event_actions.push(action);
2188                                 }
2189                         }
2190
2191                         {
2192                                 let mut pending_events = $self.pending_events.lock().unwrap();
2193                                 pending_events.drain(..num_events);
2194                                 processed_all_events = pending_events.is_empty();
2195                                 // Note that `push_pending_forwards_ev` relies on `pending_events_processor` being
2196                                 // updated here with the `pending_events` lock acquired.
2197                                 $self.pending_events_processor.store(false, Ordering::Release);
2198                         }
2199
2200                         if !post_event_actions.is_empty() {
2201                                 $self.handle_post_event_actions(post_event_actions);
2202                                 // If we had some actions, go around again as we may have more events now
2203                                 processed_all_events = false;
2204                         }
2205
2206                         match result {
2207                                 NotifyOption::DoPersist => {
2208                                         $self.needs_persist_flag.store(true, Ordering::Release);
2209                                         $self.event_persist_notifier.notify();
2210                                 },
2211                                 NotifyOption::SkipPersistHandleEvents =>
2212                                         $self.event_persist_notifier.notify(),
2213                                 NotifyOption::SkipPersistNoEvents => {},
2214                         }
2215                 }
2216         }
2217 }
2218
2219 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>
2220 where
2221         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
2222         T::Target: BroadcasterInterface,
2223         ES::Target: EntropySource,
2224         NS::Target: NodeSigner,
2225         SP::Target: SignerProvider,
2226         F::Target: FeeEstimator,
2227         R::Target: Router,
2228         L::Target: Logger,
2229 {
2230         /// Constructs a new `ChannelManager` to hold several channels and route between them.
2231         ///
2232         /// The current time or latest block header time can be provided as the `current_timestamp`.
2233         ///
2234         /// This is the main "logic hub" for all channel-related actions, and implements
2235         /// [`ChannelMessageHandler`].
2236         ///
2237         /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
2238         ///
2239         /// Users need to notify the new `ChannelManager` when a new block is connected or
2240         /// disconnected using its [`block_connected`] and [`block_disconnected`] methods, starting
2241         /// from after [`params.best_block.block_hash`]. See [`chain::Listen`] and [`chain::Confirm`] for
2242         /// more details.
2243         ///
2244         /// [`block_connected`]: chain::Listen::block_connected
2245         /// [`block_disconnected`]: chain::Listen::block_disconnected
2246         /// [`params.best_block.block_hash`]: chain::BestBlock::block_hash
2247         pub fn new(
2248                 fee_est: F, chain_monitor: M, tx_broadcaster: T, router: R, logger: L, entropy_source: ES,
2249                 node_signer: NS, signer_provider: SP, config: UserConfig, params: ChainParameters,
2250                 current_timestamp: u32,
2251         ) -> Self {
2252                 let mut secp_ctx = Secp256k1::new();
2253                 secp_ctx.seeded_randomize(&entropy_source.get_secure_random_bytes());
2254                 let inbound_pmt_key_material = node_signer.get_inbound_payment_key_material();
2255                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
2256                 ChannelManager {
2257                         default_configuration: config.clone(),
2258                         genesis_hash: genesis_block(params.network).header.block_hash(),
2259                         fee_estimator: LowerBoundedFeeEstimator::new(fee_est),
2260                         chain_monitor,
2261                         tx_broadcaster,
2262                         router,
2263
2264                         best_block: RwLock::new(params.best_block),
2265
2266                         outbound_scid_aliases: Mutex::new(HashSet::new()),
2267                         pending_inbound_payments: Mutex::new(HashMap::new()),
2268                         pending_outbound_payments: OutboundPayments::new(),
2269                         forward_htlcs: Mutex::new(HashMap::new()),
2270                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments: HashMap::new(), pending_claiming_payments: HashMap::new() }),
2271                         pending_intercepted_htlcs: Mutex::new(HashMap::new()),
2272                         id_to_peer: Mutex::new(HashMap::new()),
2273                         short_to_chan_info: FairRwLock::new(HashMap::new()),
2274
2275                         our_network_pubkey: node_signer.get_node_id(Recipient::Node).unwrap(),
2276                         secp_ctx,
2277
2278                         inbound_payment_key: expanded_inbound_key,
2279                         fake_scid_rand_bytes: entropy_source.get_secure_random_bytes(),
2280
2281                         probing_cookie_secret: entropy_source.get_secure_random_bytes(),
2282
2283                         highest_seen_timestamp: AtomicUsize::new(current_timestamp as usize),
2284
2285                         per_peer_state: FairRwLock::new(HashMap::new()),
2286
2287                         pending_events: Mutex::new(VecDeque::new()),
2288                         pending_events_processor: AtomicBool::new(false),
2289                         pending_background_events: Mutex::new(Vec::new()),
2290                         total_consistency_lock: RwLock::new(()),
2291                         background_events_processed_since_startup: AtomicBool::new(false),
2292                         event_persist_notifier: Notifier::new(),
2293                         needs_persist_flag: AtomicBool::new(false),
2294                         funding_batch_states: Mutex::new(BTreeMap::new()),
2295
2296                         entropy_source,
2297                         node_signer,
2298                         signer_provider,
2299
2300                         logger,
2301                 }
2302         }
2303
2304         /// Gets the current configuration applied to all new channels.
2305         pub fn get_current_default_configuration(&self) -> &UserConfig {
2306                 &self.default_configuration
2307         }
2308
2309         fn create_and_insert_outbound_scid_alias(&self) -> u64 {
2310                 let height = self.best_block.read().unwrap().height();
2311                 let mut outbound_scid_alias = 0;
2312                 let mut i = 0;
2313                 loop {
2314                         if cfg!(fuzzing) { // fuzzing chacha20 doesn't use the key at all so we always get the same alias
2315                                 outbound_scid_alias += 1;
2316                         } else {
2317                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias.get_fake_scid(height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
2318                         }
2319                         if outbound_scid_alias != 0 && self.outbound_scid_aliases.lock().unwrap().insert(outbound_scid_alias) {
2320                                 break;
2321                         }
2322                         i += 1;
2323                         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"); }
2324                 }
2325                 outbound_scid_alias
2326         }
2327
2328         /// Creates a new outbound channel to the given remote node and with the given value.
2329         ///
2330         /// `user_channel_id` will be provided back as in
2331         /// [`Event::FundingGenerationReady::user_channel_id`] to allow tracking of which events
2332         /// correspond with which `create_channel` call. Note that the `user_channel_id` defaults to a
2333         /// randomized value for inbound channels. `user_channel_id` has no meaning inside of LDK, it
2334         /// is simply copied to events and otherwise ignored.
2335         ///
2336         /// Raises [`APIError::APIMisuseError`] when `channel_value_satoshis` > 2**24 or `push_msat` is
2337         /// greater than `channel_value_satoshis * 1k` or `channel_value_satoshis < 1000`.
2338         ///
2339         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be opened due to failing to
2340         /// generate a shutdown scriptpubkey or destination script set by
2341         /// [`SignerProvider::get_shutdown_scriptpubkey`] or [`SignerProvider::get_destination_script`].
2342         ///
2343         /// Note that we do not check if you are currently connected to the given peer. If no
2344         /// connection is available, the outbound `open_channel` message may fail to send, resulting in
2345         /// the channel eventually being silently forgotten (dropped on reload).
2346         ///
2347         /// Returns the new Channel's temporary `channel_id`. This ID will appear as
2348         /// [`Event::FundingGenerationReady::temporary_channel_id`] and in
2349         /// [`ChannelDetails::channel_id`] until after
2350         /// [`ChannelManager::funding_transaction_generated`] is called, swapping the Channel's ID for
2351         /// one derived from the funding transaction's TXID. If the counterparty rejects the channel
2352         /// immediately, this temporary ID will appear in [`Event::ChannelClosed::channel_id`].
2353         ///
2354         /// [`Event::FundingGenerationReady::user_channel_id`]: events::Event::FundingGenerationReady::user_channel_id
2355         /// [`Event::FundingGenerationReady::temporary_channel_id`]: events::Event::FundingGenerationReady::temporary_channel_id
2356         /// [`Event::ChannelClosed::channel_id`]: events::Event::ChannelClosed::channel_id
2357         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> {
2358                 if channel_value_satoshis < 1000 {
2359                         return Err(APIError::APIMisuseError { err: format!("Channel value must be at least 1000 satoshis. It was {}", channel_value_satoshis) });
2360                 }
2361
2362                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2363                 // We want to make sure the lock is actually acquired by PersistenceNotifierGuard.
2364                 debug_assert!(&self.total_consistency_lock.try_write().is_err());
2365
2366                 let per_peer_state = self.per_peer_state.read().unwrap();
2367
2368                 let peer_state_mutex = per_peer_state.get(&their_network_key)
2369                         .ok_or_else(|| APIError::APIMisuseError{ err: format!("Not connected to node: {}", their_network_key) })?;
2370
2371                 let mut peer_state = peer_state_mutex.lock().unwrap();
2372                 let channel = {
2373                         let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
2374                         let their_features = &peer_state.latest_features;
2375                         let config = if override_config.is_some() { override_config.as_ref().unwrap() } else { &self.default_configuration };
2376                         match OutboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider, their_network_key,
2377                                 their_features, channel_value_satoshis, push_msat, user_channel_id, config,
2378                                 self.best_block.read().unwrap().height(), outbound_scid_alias)
2379                         {
2380                                 Ok(res) => res,
2381                                 Err(e) => {
2382                                         self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
2383                                         return Err(e);
2384                                 },
2385                         }
2386                 };
2387                 let res = channel.get_open_channel(self.genesis_hash.clone());
2388
2389                 let temporary_channel_id = channel.context.channel_id();
2390                 match peer_state.channel_by_id.entry(temporary_channel_id) {
2391                         hash_map::Entry::Occupied(_) => {
2392                                 if cfg!(fuzzing) {
2393                                         return Err(APIError::APIMisuseError { err: "Fuzzy bad RNG".to_owned() });
2394                                 } else {
2395                                         panic!("RNG is bad???");
2396                                 }
2397                         },
2398                         hash_map::Entry::Vacant(entry) => { entry.insert(ChannelPhase::UnfundedOutboundV1(channel)); }
2399                 }
2400
2401                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
2402                         node_id: their_network_key,
2403                         msg: res,
2404                 });
2405                 Ok(temporary_channel_id)
2406         }
2407
2408         fn list_funded_channels_with_filter<Fn: FnMut(&(&ChannelId, &Channel<SP>)) -> bool + Copy>(&self, f: Fn) -> Vec<ChannelDetails> {
2409                 // Allocate our best estimate of the number of channels we have in the `res`
2410                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2411                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2412                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2413                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2414                 // the same channel.
2415                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2416                 {
2417                         let best_block_height = self.best_block.read().unwrap().height();
2418                         let per_peer_state = self.per_peer_state.read().unwrap();
2419                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2420                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2421                                 let peer_state = &mut *peer_state_lock;
2422                                 res.extend(peer_state.channel_by_id.iter()
2423                                         .filter_map(|(chan_id, phase)| match phase {
2424                                                 // Only `Channels` in the `ChannelPhase::Funded` phase can be considered funded.
2425                                                 ChannelPhase::Funded(chan) => Some((chan_id, chan)),
2426                                                 _ => None,
2427                                         })
2428                                         .filter(f)
2429                                         .map(|(_channel_id, channel)| {
2430                                                 ChannelDetails::from_channel_context(&channel.context, best_block_height,
2431                                                         peer_state.latest_features.clone(), &self.fee_estimator)
2432                                         })
2433                                 );
2434                         }
2435                 }
2436                 res
2437         }
2438
2439         /// Gets the list of open channels, in random order. See [`ChannelDetails`] field documentation for
2440         /// more information.
2441         pub fn list_channels(&self) -> Vec<ChannelDetails> {
2442                 // Allocate our best estimate of the number of channels we have in the `res`
2443                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2444                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2445                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2446                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2447                 // the same channel.
2448                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2449                 {
2450                         let best_block_height = self.best_block.read().unwrap().height();
2451                         let per_peer_state = self.per_peer_state.read().unwrap();
2452                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2453                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2454                                 let peer_state = &mut *peer_state_lock;
2455                                 for context in peer_state.channel_by_id.iter().map(|(_, phase)| phase.context()) {
2456                                         let details = ChannelDetails::from_channel_context(context, best_block_height,
2457                                                 peer_state.latest_features.clone(), &self.fee_estimator);
2458                                         res.push(details);
2459                                 }
2460                         }
2461                 }
2462                 res
2463         }
2464
2465         /// Gets the list of usable channels, in random order. Useful as an argument to
2466         /// [`Router::find_route`] to ensure non-announced channels are used.
2467         ///
2468         /// These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
2469         /// documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
2470         /// are.
2471         pub fn list_usable_channels(&self) -> Vec<ChannelDetails> {
2472                 // Note we use is_live here instead of usable which leads to somewhat confused
2473                 // internal/external nomenclature, but that's ok cause that's probably what the user
2474                 // really wanted anyway.
2475                 self.list_funded_channels_with_filter(|&(_, ref channel)| channel.context.is_live())
2476         }
2477
2478         /// Gets the list of channels we have with a given counterparty, in random order.
2479         pub fn list_channels_with_counterparty(&self, counterparty_node_id: &PublicKey) -> Vec<ChannelDetails> {
2480                 let best_block_height = self.best_block.read().unwrap().height();
2481                 let per_peer_state = self.per_peer_state.read().unwrap();
2482
2483                 if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
2484                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2485                         let peer_state = &mut *peer_state_lock;
2486                         let features = &peer_state.latest_features;
2487                         let context_to_details = |context| {
2488                                 ChannelDetails::from_channel_context(context, best_block_height, features.clone(), &self.fee_estimator)
2489                         };
2490                         return peer_state.channel_by_id
2491                                 .iter()
2492                                 .map(|(_, phase)| phase.context())
2493                                 .map(context_to_details)
2494                                 .collect();
2495                 }
2496                 vec![]
2497         }
2498
2499         /// Returns in an undefined order recent payments that -- if not fulfilled -- have yet to find a
2500         /// successful path, or have unresolved HTLCs.
2501         ///
2502         /// This can be useful for payments that may have been prepared, but ultimately not sent, as a
2503         /// result of a crash. If such a payment exists, is not listed here, and an
2504         /// [`Event::PaymentSent`] has not been received, you may consider resending the payment.
2505         ///
2506         /// [`Event::PaymentSent`]: events::Event::PaymentSent
2507         pub fn list_recent_payments(&self) -> Vec<RecentPaymentDetails> {
2508                 self.pending_outbound_payments.pending_outbound_payments.lock().unwrap().iter()
2509                         .filter_map(|(payment_id, pending_outbound_payment)| match pending_outbound_payment {
2510                                 PendingOutboundPayment::AwaitingInvoice { .. } => {
2511                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
2512                                 },
2513                                 // InvoiceReceived is an intermediate state and doesn't need to be exposed
2514                                 PendingOutboundPayment::InvoiceReceived { .. } => {
2515                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
2516                                 },
2517                                 PendingOutboundPayment::Retryable { payment_hash, total_msat, .. } => {
2518                                         Some(RecentPaymentDetails::Pending {
2519                                                 payment_id: *payment_id,
2520                                                 payment_hash: *payment_hash,
2521                                                 total_msat: *total_msat,
2522                                         })
2523                                 },
2524                                 PendingOutboundPayment::Abandoned { payment_hash, .. } => {
2525                                         Some(RecentPaymentDetails::Abandoned { payment_id: *payment_id, payment_hash: *payment_hash })
2526                                 },
2527                                 PendingOutboundPayment::Fulfilled { payment_hash, .. } => {
2528                                         Some(RecentPaymentDetails::Fulfilled { payment_id: *payment_id, payment_hash: *payment_hash })
2529                                 },
2530                                 PendingOutboundPayment::Legacy { .. } => None
2531                         })
2532                         .collect()
2533         }
2534
2535         /// Helper function that issues the channel close events
2536         fn issue_channel_close_events(&self, context: &ChannelContext<SP>, closure_reason: ClosureReason) {
2537                 let mut pending_events_lock = self.pending_events.lock().unwrap();
2538                 match context.unbroadcasted_funding() {
2539                         Some(transaction) => {
2540                                 pending_events_lock.push_back((events::Event::DiscardFunding {
2541                                         channel_id: context.channel_id(), transaction
2542                                 }, None));
2543                         },
2544                         None => {},
2545                 }
2546                 pending_events_lock.push_back((events::Event::ChannelClosed {
2547                         channel_id: context.channel_id(),
2548                         user_channel_id: context.get_user_id(),
2549                         reason: closure_reason,
2550                         counterparty_node_id: Some(context.get_counterparty_node_id()),
2551                         channel_capacity_sats: Some(context.get_value_satoshis()),
2552                 }, None));
2553         }
2554
2555         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> {
2556                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2557
2558                 let mut failed_htlcs: Vec<(HTLCSource, PaymentHash)>;
2559                 let mut shutdown_result = None;
2560                 loop {
2561                         let per_peer_state = self.per_peer_state.read().unwrap();
2562
2563                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
2564                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
2565
2566                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2567                         let peer_state = &mut *peer_state_lock;
2568
2569                         match peer_state.channel_by_id.entry(channel_id.clone()) {
2570                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
2571                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
2572                                                 let funding_txo_opt = chan.context.get_funding_txo();
2573                                                 let their_features = &peer_state.latest_features;
2574                                                 let unbroadcasted_batch_funding_txid = chan.context.unbroadcasted_batch_funding_txid();
2575                                                 let (shutdown_msg, mut monitor_update_opt, htlcs) =
2576                                                         chan.get_shutdown(&self.signer_provider, their_features, target_feerate_sats_per_1000_weight, override_shutdown_script)?;
2577                                                 failed_htlcs = htlcs;
2578
2579                                                 // We can send the `shutdown` message before updating the `ChannelMonitor`
2580                                                 // here as we don't need the monitor update to complete until we send a
2581                                                 // `shutdown_signed`, which we'll delay if we're pending a monitor update.
2582                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
2583                                                         node_id: *counterparty_node_id,
2584                                                         msg: shutdown_msg,
2585                                                 });
2586
2587                                                 debug_assert!(monitor_update_opt.is_none() || !chan.is_shutdown(),
2588                                                         "We can't both complete shutdown and generate a monitor update");
2589
2590                                                 // Update the monitor with the shutdown script if necessary.
2591                                                 if let Some(monitor_update) = monitor_update_opt.take() {
2592                                                         handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
2593                                                                 peer_state_lock, peer_state, per_peer_state, chan);
2594                                                         break;
2595                                                 }
2596
2597                                                 if chan.is_shutdown() {
2598                                                         if let ChannelPhase::Funded(chan) = remove_channel_phase!(self, chan_phase_entry) {
2599                                                                 if let Ok(channel_update) = self.get_channel_update_for_broadcast(&chan) {
2600                                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2601                                                                                 msg: channel_update
2602                                                                         });
2603                                                                 }
2604                                                                 self.issue_channel_close_events(&chan.context, ClosureReason::HolderForceClosed);
2605                                                                 shutdown_result = Some((None, Vec::new(), unbroadcasted_batch_funding_txid));
2606                                                         }
2607                                                 }
2608                                                 break;
2609                                         }
2610                                 },
2611                                 hash_map::Entry::Vacant(_) => {
2612                                         // If we reach this point, it means that the channel_id either refers to an unfunded channel or
2613                                         // it does not exist for this peer. Either way, we can attempt to force-close it.
2614                                         //
2615                                         // An appropriate error will be returned for non-existence of the channel if that's the case.
2616                                         return self.force_close_channel_with_peer(&channel_id, counterparty_node_id, None, false).map(|_| ())
2617                                 },
2618                         }
2619                 }
2620
2621                 for htlc_source in failed_htlcs.drain(..) {
2622                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2623                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(*counterparty_node_id), channel_id: *channel_id };
2624                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
2625                 }
2626
2627                 if let Some(shutdown_result) = shutdown_result {
2628                         self.finish_close_channel(shutdown_result);
2629                 }
2630
2631                 Ok(())
2632         }
2633
2634         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2635         /// will be accepted on the given channel, and after additional timeout/the closing of all
2636         /// pending HTLCs, the channel will be closed on chain.
2637         ///
2638         ///  * If we are the channel initiator, we will pay between our [`Background`] and
2639         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2640         ///    estimate.
2641         ///  * If our counterparty is the channel initiator, we will require a channel closing
2642         ///    transaction feerate of at least our [`Background`] feerate or the feerate which
2643         ///    would appear on a force-closure transaction, whichever is lower. We will allow our
2644         ///    counterparty to pay as much fee as they'd like, however.
2645         ///
2646         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2647         ///
2648         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2649         /// generate a shutdown scriptpubkey or destination script set by
2650         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2651         /// channel.
2652         ///
2653         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2654         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2655         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2656         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2657         pub fn close_channel(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey) -> Result<(), APIError> {
2658                 self.close_channel_internal(channel_id, counterparty_node_id, None, None)
2659         }
2660
2661         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2662         /// will be accepted on the given channel, and after additional timeout/the closing of all
2663         /// pending HTLCs, the channel will be closed on chain.
2664         ///
2665         /// `target_feerate_sat_per_1000_weight` has different meanings depending on if we initiated
2666         /// the channel being closed or not:
2667         ///  * If we are the channel initiator, we will pay at least this feerate on the closing
2668         ///    transaction. The upper-bound is set by
2669         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2670         ///    estimate (or `target_feerate_sat_per_1000_weight`, if it is greater).
2671         ///  * If our counterparty is the channel initiator, we will refuse to accept a channel closure
2672         ///    transaction feerate below `target_feerate_sat_per_1000_weight` (or the feerate which
2673         ///    will appear on a force-closure transaction, whichever is lower).
2674         ///
2675         /// The `shutdown_script` provided  will be used as the `scriptPubKey` for the closing transaction.
2676         /// Will fail if a shutdown script has already been set for this channel by
2677         /// ['ChannelHandshakeConfig::commit_upfront_shutdown_pubkey`]. The given shutdown script must
2678         /// also be compatible with our and the counterparty's features.
2679         ///
2680         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2681         ///
2682         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2683         /// generate a shutdown scriptpubkey or destination script set by
2684         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2685         /// channel.
2686         ///
2687         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2688         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2689         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2690         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2691         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> {
2692                 self.close_channel_internal(channel_id, counterparty_node_id, target_feerate_sats_per_1000_weight, shutdown_script)
2693         }
2694
2695         fn finish_close_channel(&self, shutdown_res: ShutdownResult) {
2696                 debug_assert_ne!(self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
2697                 #[cfg(debug_assertions)]
2698                 for (_, peer) in self.per_peer_state.read().unwrap().iter() {
2699                         debug_assert_ne!(peer.held_by_thread(), LockHeldState::HeldByThread);
2700                 }
2701
2702                 let (monitor_update_option, mut failed_htlcs, unbroadcasted_batch_funding_txid) = shutdown_res;
2703                 log_debug!(self.logger, "Finishing force-closure of channel with {} HTLCs to fail", failed_htlcs.len());
2704                 for htlc_source in failed_htlcs.drain(..) {
2705                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
2706                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2707                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2708                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
2709                 }
2710                 if let Some((_, funding_txo, monitor_update)) = monitor_update_option {
2711                         // There isn't anything we can do if we get an update failure - we're already
2712                         // force-closing. The monitor update on the required in-memory copy should broadcast
2713                         // the latest local state, which is the best we can do anyway. Thus, it is safe to
2714                         // ignore the result here.
2715                         let _ = self.chain_monitor.update_channel(funding_txo, &monitor_update);
2716                 }
2717                 let mut shutdown_results = Vec::new();
2718                 if let Some(txid) = unbroadcasted_batch_funding_txid {
2719                         let mut funding_batch_states = self.funding_batch_states.lock().unwrap();
2720                         let affected_channels = funding_batch_states.remove(&txid).into_iter().flatten();
2721                         let per_peer_state = self.per_peer_state.read().unwrap();
2722                         let mut has_uncompleted_channel = None;
2723                         for (channel_id, counterparty_node_id, state) in affected_channels {
2724                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2725                                         let mut peer_state = peer_state_mutex.lock().unwrap();
2726                                         if let Some(mut chan) = peer_state.channel_by_id.remove(&channel_id) {
2727                                                 update_maps_on_chan_removal!(self, &chan.context());
2728                                                 self.issue_channel_close_events(&chan.context(), ClosureReason::FundingBatchClosure);
2729                                                 shutdown_results.push(chan.context_mut().force_shutdown(false));
2730                                         }
2731                                 }
2732                                 has_uncompleted_channel = Some(has_uncompleted_channel.map_or(!state, |v| v || !state));
2733                         }
2734                         debug_assert!(
2735                                 has_uncompleted_channel.unwrap_or(true),
2736                                 "Closing a batch where all channels have completed initial monitor update",
2737                         );
2738                 }
2739                 for shutdown_result in shutdown_results.drain(..) {
2740                         self.finish_close_channel(shutdown_result);
2741                 }
2742         }
2743
2744         /// `peer_msg` should be set when we receive a message from a peer, but not set when the
2745         /// user closes, which will be re-exposed as the `ChannelClosed` reason.
2746         fn force_close_channel_with_peer(&self, channel_id: &ChannelId, peer_node_id: &PublicKey, peer_msg: Option<&String>, broadcast: bool)
2747         -> Result<PublicKey, APIError> {
2748                 let per_peer_state = self.per_peer_state.read().unwrap();
2749                 let peer_state_mutex = per_peer_state.get(peer_node_id)
2750                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", peer_node_id) })?;
2751                 let (update_opt, counterparty_node_id) = {
2752                         let mut peer_state = peer_state_mutex.lock().unwrap();
2753                         let closure_reason = if let Some(peer_msg) = peer_msg {
2754                                 ClosureReason::CounterpartyForceClosed { peer_msg: UntrustedString(peer_msg.to_string()) }
2755                         } else {
2756                                 ClosureReason::HolderForceClosed
2757                         };
2758                         if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(channel_id.clone()) {
2759                                 log_error!(self.logger, "Force-closing channel {}", channel_id);
2760                                 self.issue_channel_close_events(&chan_phase_entry.get().context(), closure_reason);
2761                                 let mut chan_phase = remove_channel_phase!(self, chan_phase_entry);
2762                                 mem::drop(peer_state);
2763                                 mem::drop(per_peer_state);
2764                                 match chan_phase {
2765                                         ChannelPhase::Funded(mut chan) => {
2766                                                 self.finish_close_channel(chan.context.force_shutdown(broadcast));
2767                                                 (self.get_channel_update_for_broadcast(&chan).ok(), chan.context.get_counterparty_node_id())
2768                                         },
2769                                         ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => {
2770                                                 self.finish_close_channel(chan_phase.context_mut().force_shutdown(false));
2771                                                 // Unfunded channel has no update
2772                                                 (None, chan_phase.context().get_counterparty_node_id())
2773                                         },
2774                                 }
2775                         } else if peer_state.inbound_channel_request_by_id.remove(channel_id).is_some() {
2776                                 log_error!(self.logger, "Force-closing channel {}", &channel_id);
2777                                 // N.B. that we don't send any channel close event here: we
2778                                 // don't have a user_channel_id, and we never sent any opening
2779                                 // events anyway.
2780                                 (None, *peer_node_id)
2781                         } else {
2782                                 return Err(APIError::ChannelUnavailable{ err: format!("Channel with id {} not found for the passed counterparty node_id {}", channel_id, peer_node_id) });
2783                         }
2784                 };
2785                 if let Some(update) = update_opt {
2786                         // Try to send the `BroadcastChannelUpdate` to the peer we just force-closed on, but if
2787                         // not try to broadcast it via whatever peer we have.
2788                         let per_peer_state = self.per_peer_state.read().unwrap();
2789                         let a_peer_state_opt = per_peer_state.get(peer_node_id)
2790                                 .ok_or(per_peer_state.values().next());
2791                         if let Ok(a_peer_state_mutex) = a_peer_state_opt {
2792                                 let mut a_peer_state = a_peer_state_mutex.lock().unwrap();
2793                                 a_peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2794                                         msg: update
2795                                 });
2796                         }
2797                 }
2798
2799                 Ok(counterparty_node_id)
2800         }
2801
2802         fn force_close_sending_error(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, broadcast: bool) -> Result<(), APIError> {
2803                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2804                 match self.force_close_channel_with_peer(channel_id, counterparty_node_id, None, broadcast) {
2805                         Ok(counterparty_node_id) => {
2806                                 let per_peer_state = self.per_peer_state.read().unwrap();
2807                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2808                                         let mut peer_state = peer_state_mutex.lock().unwrap();
2809                                         peer_state.pending_msg_events.push(
2810                                                 events::MessageSendEvent::HandleError {
2811                                                         node_id: counterparty_node_id,
2812                                                         action: msgs::ErrorAction::SendErrorMessage {
2813                                                                 msg: msgs::ErrorMessage { channel_id: *channel_id, data: "Channel force-closed".to_owned() }
2814                                                         },
2815                                                 }
2816                                         );
2817                                 }
2818                                 Ok(())
2819                         },
2820                         Err(e) => Err(e)
2821                 }
2822         }
2823
2824         /// Force closes a channel, immediately broadcasting the latest local transaction(s) and
2825         /// rejecting new HTLCs on the given channel. Fails if `channel_id` is unknown to
2826         /// the manager, or if the `counterparty_node_id` isn't the counterparty of the corresponding
2827         /// channel.
2828         pub fn force_close_broadcasting_latest_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey)
2829         -> Result<(), APIError> {
2830                 self.force_close_sending_error(channel_id, counterparty_node_id, true)
2831         }
2832
2833         /// Force closes a channel, rejecting new HTLCs on the given channel but skips broadcasting
2834         /// the latest local transaction(s). Fails if `channel_id` is unknown to the manager, or if the
2835         /// `counterparty_node_id` isn't the counterparty of the corresponding channel.
2836         ///
2837         /// You can always get the latest local transaction(s) to broadcast from
2838         /// [`ChannelMonitor::get_latest_holder_commitment_txn`].
2839         pub fn force_close_without_broadcasting_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey)
2840         -> Result<(), APIError> {
2841                 self.force_close_sending_error(channel_id, counterparty_node_id, false)
2842         }
2843
2844         /// Force close all channels, immediately broadcasting the latest local commitment transaction
2845         /// for each to the chain and rejecting new HTLCs on each.
2846         pub fn force_close_all_channels_broadcasting_latest_txn(&self) {
2847                 for chan in self.list_channels() {
2848                         let _ = self.force_close_broadcasting_latest_txn(&chan.channel_id, &chan.counterparty.node_id);
2849                 }
2850         }
2851
2852         /// Force close all channels rejecting new HTLCs on each but without broadcasting the latest
2853         /// local transaction(s).
2854         pub fn force_close_all_channels_without_broadcasting_txn(&self) {
2855                 for chan in self.list_channels() {
2856                         let _ = self.force_close_without_broadcasting_txn(&chan.channel_id, &chan.counterparty.node_id);
2857                 }
2858         }
2859
2860         fn construct_fwd_pending_htlc_info(
2861                 &self, msg: &msgs::UpdateAddHTLC, hop_data: msgs::InboundOnionPayload, hop_hmac: [u8; 32],
2862                 new_packet_bytes: [u8; onion_utils::ONION_DATA_LEN], shared_secret: [u8; 32],
2863                 next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>
2864         ) -> Result<PendingHTLCInfo, InboundOnionErr> {
2865                 debug_assert!(next_packet_pubkey_opt.is_some());
2866                 let outgoing_packet = msgs::OnionPacket {
2867                         version: 0,
2868                         public_key: next_packet_pubkey_opt.unwrap_or(Err(secp256k1::Error::InvalidPublicKey)),
2869                         hop_data: new_packet_bytes,
2870                         hmac: hop_hmac,
2871                 };
2872
2873                 let (short_channel_id, amt_to_forward, outgoing_cltv_value) = match hop_data {
2874                         msgs::InboundOnionPayload::Forward { short_channel_id, amt_to_forward, outgoing_cltv_value } =>
2875                                 (short_channel_id, amt_to_forward, outgoing_cltv_value),
2876                         msgs::InboundOnionPayload::Receive { .. } | msgs::InboundOnionPayload::BlindedReceive { .. } =>
2877                                 return Err(InboundOnionErr {
2878                                         msg: "Final Node OnionHopData provided for us as an intermediary node",
2879                                         err_code: 0x4000 | 22,
2880                                         err_data: Vec::new(),
2881                                 }),
2882                 };
2883
2884                 Ok(PendingHTLCInfo {
2885                         routing: PendingHTLCRouting::Forward {
2886                                 onion_packet: outgoing_packet,
2887                                 short_channel_id,
2888                         },
2889                         payment_hash: msg.payment_hash,
2890                         incoming_shared_secret: shared_secret,
2891                         incoming_amt_msat: Some(msg.amount_msat),
2892                         outgoing_amt_msat: amt_to_forward,
2893                         outgoing_cltv_value,
2894                         skimmed_fee_msat: None,
2895                 })
2896         }
2897
2898         fn construct_recv_pending_htlc_info(
2899                 &self, hop_data: msgs::InboundOnionPayload, shared_secret: [u8; 32], payment_hash: PaymentHash,
2900                 amt_msat: u64, cltv_expiry: u32, phantom_shared_secret: Option<[u8; 32]>, allow_underpay: bool,
2901                 counterparty_skimmed_fee_msat: Option<u64>,
2902         ) -> Result<PendingHTLCInfo, InboundOnionErr> {
2903                 let (payment_data, keysend_preimage, custom_tlvs, onion_amt_msat, outgoing_cltv_value, payment_metadata) = match hop_data {
2904                         msgs::InboundOnionPayload::Receive {
2905                                 payment_data, keysend_preimage, custom_tlvs, amt_msat, outgoing_cltv_value, payment_metadata, ..
2906                         } =>
2907                                 (payment_data, keysend_preimage, custom_tlvs, amt_msat, outgoing_cltv_value, payment_metadata),
2908                         msgs::InboundOnionPayload::BlindedReceive {
2909                                 amt_msat, total_msat, outgoing_cltv_value, payment_secret, ..
2910                         } => {
2911                                 let payment_data = msgs::FinalOnionHopData { payment_secret, total_msat };
2912                                 (Some(payment_data), None, Vec::new(), amt_msat, outgoing_cltv_value, None)
2913                         }
2914                         msgs::InboundOnionPayload::Forward { .. } => {
2915                                 return Err(InboundOnionErr {
2916                                         err_code: 0x4000|22,
2917                                         err_data: Vec::new(),
2918                                         msg: "Got non final data with an HMAC of 0",
2919                                 })
2920                         },
2921                 };
2922                 // final_incorrect_cltv_expiry
2923                 if outgoing_cltv_value > cltv_expiry {
2924                         return Err(InboundOnionErr {
2925                                 msg: "Upstream node set CLTV to less than the CLTV set by the sender",
2926                                 err_code: 18,
2927                                 err_data: cltv_expiry.to_be_bytes().to_vec()
2928                         })
2929                 }
2930                 // final_expiry_too_soon
2931                 // We have to have some headroom to broadcast on chain if we have the preimage, so make sure
2932                 // we have at least HTLC_FAIL_BACK_BUFFER blocks to go.
2933                 //
2934                 // Also, ensure that, in the case of an unknown preimage for the received payment hash, our
2935                 // payment logic has enough time to fail the HTLC backward before our onchain logic triggers a
2936                 // channel closure (see HTLC_FAIL_BACK_BUFFER rationale).
2937                 let current_height: u32 = self.best_block.read().unwrap().height();
2938                 if (outgoing_cltv_value as u64) <= current_height as u64 + HTLC_FAIL_BACK_BUFFER as u64 + 1 {
2939                         let mut err_data = Vec::with_capacity(12);
2940                         err_data.extend_from_slice(&amt_msat.to_be_bytes());
2941                         err_data.extend_from_slice(&current_height.to_be_bytes());
2942                         return Err(InboundOnionErr {
2943                                 err_code: 0x4000 | 15, err_data,
2944                                 msg: "The final CLTV expiry is too soon to handle",
2945                         });
2946                 }
2947                 if (!allow_underpay && onion_amt_msat > amt_msat) ||
2948                         (allow_underpay && onion_amt_msat >
2949                          amt_msat.saturating_add(counterparty_skimmed_fee_msat.unwrap_or(0)))
2950                 {
2951                         return Err(InboundOnionErr {
2952                                 err_code: 19,
2953                                 err_data: amt_msat.to_be_bytes().to_vec(),
2954                                 msg: "Upstream node sent less than we were supposed to receive in payment",
2955                         });
2956                 }
2957
2958                 let routing = if let Some(payment_preimage) = keysend_preimage {
2959                         // We need to check that the sender knows the keysend preimage before processing this
2960                         // payment further. Otherwise, an intermediary routing hop forwarding non-keysend-HTLC X
2961                         // could discover the final destination of X, by probing the adjacent nodes on the route
2962                         // with a keysend payment of identical payment hash to X and observing the processing
2963                         // time discrepancies due to a hash collision with X.
2964                         let hashed_preimage = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
2965                         if hashed_preimage != payment_hash {
2966                                 return Err(InboundOnionErr {
2967                                         err_code: 0x4000|22,
2968                                         err_data: Vec::new(),
2969                                         msg: "Payment preimage didn't match payment hash",
2970                                 });
2971                         }
2972                         if !self.default_configuration.accept_mpp_keysend && payment_data.is_some() {
2973                                 return Err(InboundOnionErr {
2974                                         err_code: 0x4000|22,
2975                                         err_data: Vec::new(),
2976                                         msg: "We don't support MPP keysend payments",
2977                                 });
2978                         }
2979                         PendingHTLCRouting::ReceiveKeysend {
2980                                 payment_data,
2981                                 payment_preimage,
2982                                 payment_metadata,
2983                                 incoming_cltv_expiry: outgoing_cltv_value,
2984                                 custom_tlvs,
2985                         }
2986                 } else if let Some(data) = payment_data {
2987                         PendingHTLCRouting::Receive {
2988                                 payment_data: data,
2989                                 payment_metadata,
2990                                 incoming_cltv_expiry: outgoing_cltv_value,
2991                                 phantom_shared_secret,
2992                                 custom_tlvs,
2993                         }
2994                 } else {
2995                         return Err(InboundOnionErr {
2996                                 err_code: 0x4000|0x2000|3,
2997                                 err_data: Vec::new(),
2998                                 msg: "We require payment_secrets",
2999                         });
3000                 };
3001                 Ok(PendingHTLCInfo {
3002                         routing,
3003                         payment_hash,
3004                         incoming_shared_secret: shared_secret,
3005                         incoming_amt_msat: Some(amt_msat),
3006                         outgoing_amt_msat: onion_amt_msat,
3007                         outgoing_cltv_value,
3008                         skimmed_fee_msat: counterparty_skimmed_fee_msat,
3009                 })
3010         }
3011
3012         fn decode_update_add_htlc_onion(
3013                 &self, msg: &msgs::UpdateAddHTLC
3014         ) -> Result<(onion_utils::Hop, [u8; 32], Option<Result<PublicKey, secp256k1::Error>>), HTLCFailureMsg> {
3015                 macro_rules! return_malformed_err {
3016                         ($msg: expr, $err_code: expr) => {
3017                                 {
3018                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3019                                         return Err(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
3020                                                 channel_id: msg.channel_id,
3021                                                 htlc_id: msg.htlc_id,
3022                                                 sha256_of_onion: Sha256::hash(&msg.onion_routing_packet.hop_data).into_inner(),
3023                                                 failure_code: $err_code,
3024                                         }));
3025                                 }
3026                         }
3027                 }
3028
3029                 if let Err(_) = msg.onion_routing_packet.public_key {
3030                         return_malformed_err!("invalid ephemeral pubkey", 0x8000 | 0x4000 | 6);
3031                 }
3032
3033                 let shared_secret = self.node_signer.ecdh(
3034                         Recipient::Node, &msg.onion_routing_packet.public_key.unwrap(), None
3035                 ).unwrap().secret_bytes();
3036
3037                 if msg.onion_routing_packet.version != 0 {
3038                         //TODO: Spec doesn't indicate if we should only hash hop_data here (and in other
3039                         //sha256_of_onion error data packets), or the entire onion_routing_packet. Either way,
3040                         //the hash doesn't really serve any purpose - in the case of hashing all data, the
3041                         //receiving node would have to brute force to figure out which version was put in the
3042                         //packet by the node that send us the message, in the case of hashing the hop_data, the
3043                         //node knows the HMAC matched, so they already know what is there...
3044                         return_malformed_err!("Unknown onion packet version", 0x8000 | 0x4000 | 4);
3045                 }
3046                 macro_rules! return_err {
3047                         ($msg: expr, $err_code: expr, $data: expr) => {
3048                                 {
3049                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3050                                         return Err(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
3051                                                 channel_id: msg.channel_id,
3052                                                 htlc_id: msg.htlc_id,
3053                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
3054                                                         .get_encrypted_failure_packet(&shared_secret, &None),
3055                                         }));
3056                                 }
3057                         }
3058                 }
3059
3060                 let next_hop = match onion_utils::decode_next_payment_hop(
3061                         shared_secret, &msg.onion_routing_packet.hop_data[..], msg.onion_routing_packet.hmac,
3062                         msg.payment_hash, &self.node_signer
3063                 ) {
3064                         Ok(res) => res,
3065                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
3066                                 return_malformed_err!(err_msg, err_code);
3067                         },
3068                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
3069                                 return_err!(err_msg, err_code, &[0; 0]);
3070                         },
3071                 };
3072                 let (outgoing_scid, outgoing_amt_msat, outgoing_cltv_value, next_packet_pk_opt) = match next_hop {
3073                         onion_utils::Hop::Forward {
3074                                 next_hop_data: msgs::InboundOnionPayload::Forward {
3075                                         short_channel_id, amt_to_forward, outgoing_cltv_value
3076                                 }, ..
3077                         } => {
3078                                 let next_packet_pk = onion_utils::next_hop_pubkey(&self.secp_ctx,
3079                                         msg.onion_routing_packet.public_key.unwrap(), &shared_secret);
3080                                 (short_channel_id, amt_to_forward, outgoing_cltv_value, Some(next_packet_pk))
3081                         },
3082                         // We'll do receive checks in [`Self::construct_pending_htlc_info`] so we have access to the
3083                         // inbound channel's state.
3084                         onion_utils::Hop::Receive { .. } => return Ok((next_hop, shared_secret, None)),
3085                         onion_utils::Hop::Forward { next_hop_data: msgs::InboundOnionPayload::Receive { .. }, .. } |
3086                                 onion_utils::Hop::Forward { next_hop_data: msgs::InboundOnionPayload::BlindedReceive { .. }, .. } =>
3087                         {
3088                                 return_err!("Final Node OnionHopData provided for us as an intermediary node", 0x4000 | 22, &[0; 0]);
3089                         }
3090                 };
3091
3092                 // Perform outbound checks here instead of in [`Self::construct_pending_htlc_info`] because we
3093                 // can't hold the outbound peer state lock at the same time as the inbound peer state lock.
3094                 if let Some((err, mut code, chan_update)) = loop {
3095                         let id_option = self.short_to_chan_info.read().unwrap().get(&outgoing_scid).cloned();
3096                         let forwarding_chan_info_opt = match id_option {
3097                                 None => { // unknown_next_peer
3098                                         // Note that this is likely a timing oracle for detecting whether an scid is a
3099                                         // phantom or an intercept.
3100                                         if (self.default_configuration.accept_intercept_htlcs &&
3101                                                 fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, outgoing_scid, &self.genesis_hash)) ||
3102                                                 fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, outgoing_scid, &self.genesis_hash)
3103                                         {
3104                                                 None
3105                                         } else {
3106                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
3107                                         }
3108                                 },
3109                                 Some((cp_id, id)) => Some((cp_id.clone(), id.clone())),
3110                         };
3111                         let chan_update_opt = if let Some((counterparty_node_id, forwarding_id)) = forwarding_chan_info_opt {
3112                                 let per_peer_state = self.per_peer_state.read().unwrap();
3113                                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
3114                                 if peer_state_mutex_opt.is_none() {
3115                                         break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
3116                                 }
3117                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
3118                                 let peer_state = &mut *peer_state_lock;
3119                                 let chan = match peer_state.channel_by_id.get_mut(&forwarding_id).map(
3120                                         |chan_phase| if let ChannelPhase::Funded(chan) = chan_phase { Some(chan) } else { None }
3121                                 ).flatten() {
3122                                         None => {
3123                                                 // Channel was removed. The short_to_chan_info and channel_by_id maps
3124                                                 // have no consistency guarantees.
3125                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
3126                                         },
3127                                         Some(chan) => chan
3128                                 };
3129                                 if !chan.context.should_announce() && !self.default_configuration.accept_forwards_to_priv_channels {
3130                                         // Note that the behavior here should be identical to the above block - we
3131                                         // should NOT reveal the existence or non-existence of a private channel if
3132                                         // we don't allow forwards outbound over them.
3133                                         break Some(("Refusing to forward to a private channel based on our config.", 0x4000 | 10, None));
3134                                 }
3135                                 if chan.context.get_channel_type().supports_scid_privacy() && outgoing_scid != chan.context.outbound_scid_alias() {
3136                                         // `option_scid_alias` (referred to in LDK as `scid_privacy`) means
3137                                         // "refuse to forward unless the SCID alias was used", so we pretend
3138                                         // we don't have the channel here.
3139                                         break Some(("Refusing to forward over real channel SCID as our counterparty requested.", 0x4000 | 10, None));
3140                                 }
3141                                 let chan_update_opt = self.get_channel_update_for_onion(outgoing_scid, chan).ok();
3142
3143                                 // Note that we could technically not return an error yet here and just hope
3144                                 // that the connection is reestablished or monitor updated by the time we get
3145                                 // around to doing the actual forward, but better to fail early if we can and
3146                                 // hopefully an attacker trying to path-trace payments cannot make this occur
3147                                 // on a small/per-node/per-channel scale.
3148                                 if !chan.context.is_live() { // channel_disabled
3149                                         // If the channel_update we're going to return is disabled (i.e. the
3150                                         // peer has been disabled for some time), return `channel_disabled`,
3151                                         // otherwise return `temporary_channel_failure`.
3152                                         if chan_update_opt.as_ref().map(|u| u.contents.flags & 2 == 2).unwrap_or(false) {
3153                                                 break Some(("Forwarding channel has been disconnected for some time.", 0x1000 | 20, chan_update_opt));
3154                                         } else {
3155                                                 break Some(("Forwarding channel is not in a ready state.", 0x1000 | 7, chan_update_opt));
3156                                         }
3157                                 }
3158                                 if outgoing_amt_msat < chan.context.get_counterparty_htlc_minimum_msat() { // amount_below_minimum
3159                                         break Some(("HTLC amount was below the htlc_minimum_msat", 0x1000 | 11, chan_update_opt));
3160                                 }
3161                                 if let Err((err, code)) = chan.htlc_satisfies_config(&msg, outgoing_amt_msat, outgoing_cltv_value) {
3162                                         break Some((err, code, chan_update_opt));
3163                                 }
3164                                 chan_update_opt
3165                         } else {
3166                                 if (msg.cltv_expiry as u64) < (outgoing_cltv_value) as u64 + MIN_CLTV_EXPIRY_DELTA as u64 {
3167                                         // We really should set `incorrect_cltv_expiry` here but as we're not
3168                                         // forwarding over a real channel we can't generate a channel_update
3169                                         // for it. Instead we just return a generic temporary_node_failure.
3170                                         break Some((
3171                                                         "Forwarding node has tampered with the intended HTLC values or origin node has an obsolete cltv_expiry_delta",
3172                                                         0x2000 | 2, None,
3173                                         ));
3174                                 }
3175                                 None
3176                         };
3177
3178                         let cur_height = self.best_block.read().unwrap().height() + 1;
3179                         // Theoretically, channel counterparty shouldn't send us a HTLC expiring now,
3180                         // but we want to be robust wrt to counterparty packet sanitization (see
3181                         // HTLC_FAIL_BACK_BUFFER rationale).
3182                         if msg.cltv_expiry <= cur_height + HTLC_FAIL_BACK_BUFFER as u32 { // expiry_too_soon
3183                                 break Some(("CLTV expiry is too close", 0x1000 | 14, chan_update_opt));
3184                         }
3185                         if msg.cltv_expiry > cur_height + CLTV_FAR_FAR_AWAY as u32 { // expiry_too_far
3186                                 break Some(("CLTV expiry is too far in the future", 21, None));
3187                         }
3188                         // If the HTLC expires ~now, don't bother trying to forward it to our
3189                         // counterparty. They should fail it anyway, but we don't want to bother with
3190                         // the round-trips or risk them deciding they definitely want the HTLC and
3191                         // force-closing to ensure they get it if we're offline.
3192                         // We previously had a much more aggressive check here which tried to ensure
3193                         // our counterparty receives an HTLC which has *our* risk threshold met on it,
3194                         // but there is no need to do that, and since we're a bit conservative with our
3195                         // risk threshold it just results in failing to forward payments.
3196                         if (outgoing_cltv_value) as u64 <= (cur_height + LATENCY_GRACE_PERIOD_BLOCKS) as u64 {
3197                                 break Some(("Outgoing CLTV value is too soon", 0x1000 | 14, chan_update_opt));
3198                         }
3199
3200                         break None;
3201                 }
3202                 {
3203                         let mut res = VecWriter(Vec::with_capacity(chan_update.serialized_length() + 2 + 8 + 2));
3204                         if let Some(chan_update) = chan_update {
3205                                 if code == 0x1000 | 11 || code == 0x1000 | 12 {
3206                                         msg.amount_msat.write(&mut res).expect("Writes cannot fail");
3207                                 }
3208                                 else if code == 0x1000 | 13 {
3209                                         msg.cltv_expiry.write(&mut res).expect("Writes cannot fail");
3210                                 }
3211                                 else if code == 0x1000 | 20 {
3212                                         // TODO: underspecified, follow https://github.com/lightning/bolts/issues/791
3213                                         0u16.write(&mut res).expect("Writes cannot fail");
3214                                 }
3215                                 (chan_update.serialized_length() as u16 + 2).write(&mut res).expect("Writes cannot fail");
3216                                 msgs::ChannelUpdate::TYPE.write(&mut res).expect("Writes cannot fail");
3217                                 chan_update.write(&mut res).expect("Writes cannot fail");
3218                         } else if code & 0x1000 == 0x1000 {
3219                                 // If we're trying to return an error that requires a `channel_update` but
3220                                 // we're forwarding to a phantom or intercept "channel" (i.e. cannot
3221                                 // generate an update), just use the generic "temporary_node_failure"
3222                                 // instead.
3223                                 code = 0x2000 | 2;
3224                         }
3225                         return_err!(err, code, &res.0[..]);
3226                 }
3227                 Ok((next_hop, shared_secret, next_packet_pk_opt))
3228         }
3229
3230         fn construct_pending_htlc_status<'a>(
3231                 &self, msg: &msgs::UpdateAddHTLC, shared_secret: [u8; 32], decoded_hop: onion_utils::Hop,
3232                 allow_underpay: bool, next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>
3233         ) -> PendingHTLCStatus {
3234                 macro_rules! return_err {
3235                         ($msg: expr, $err_code: expr, $data: expr) => {
3236                                 {
3237                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3238                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
3239                                                 channel_id: msg.channel_id,
3240                                                 htlc_id: msg.htlc_id,
3241                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
3242                                                         .get_encrypted_failure_packet(&shared_secret, &None),
3243                                         }));
3244                                 }
3245                         }
3246                 }
3247                 match decoded_hop {
3248                         onion_utils::Hop::Receive(next_hop_data) => {
3249                                 // OUR PAYMENT!
3250                                 match self.construct_recv_pending_htlc_info(next_hop_data, shared_secret, msg.payment_hash,
3251                                         msg.amount_msat, msg.cltv_expiry, None, allow_underpay, msg.skimmed_fee_msat)
3252                                 {
3253                                         Ok(info) => {
3254                                                 // Note that we could obviously respond immediately with an update_fulfill_htlc
3255                                                 // message, however that would leak that we are the recipient of this payment, so
3256                                                 // instead we stay symmetric with the forwarding case, only responding (after a
3257                                                 // delay) once they've send us a commitment_signed!
3258                                                 PendingHTLCStatus::Forward(info)
3259                                         },
3260                                         Err(InboundOnionErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3261                                 }
3262                         },
3263                         onion_utils::Hop::Forward { next_hop_data, next_hop_hmac, new_packet_bytes } => {
3264                                 match self.construct_fwd_pending_htlc_info(msg, next_hop_data, next_hop_hmac,
3265                                         new_packet_bytes, shared_secret, next_packet_pubkey_opt) {
3266                                         Ok(info) => PendingHTLCStatus::Forward(info),
3267                                         Err(InboundOnionErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3268                                 }
3269                         }
3270                 }
3271         }
3272
3273         /// Gets the current [`channel_update`] for the given channel. This first checks if the channel is
3274         /// public, and thus should be called whenever the result is going to be passed out in a
3275         /// [`MessageSendEvent::BroadcastChannelUpdate`] event.
3276         ///
3277         /// Note that in [`internal_closing_signed`], this function is called without the `peer_state`
3278         /// corresponding to the channel's counterparty locked, as the channel been removed from the
3279         /// storage and the `peer_state` lock has been dropped.
3280         ///
3281         /// [`channel_update`]: msgs::ChannelUpdate
3282         /// [`internal_closing_signed`]: Self::internal_closing_signed
3283         fn get_channel_update_for_broadcast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3284                 if !chan.context.should_announce() {
3285                         return Err(LightningError {
3286                                 err: "Cannot broadcast a channel_update for a private channel".to_owned(),
3287                                 action: msgs::ErrorAction::IgnoreError
3288                         });
3289                 }
3290                 if chan.context.get_short_channel_id().is_none() {
3291                         return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError});
3292                 }
3293                 log_trace!(self.logger, "Attempting to generate broadcast channel update for channel {}", &chan.context.channel_id());
3294                 self.get_channel_update_for_unicast(chan)
3295         }
3296
3297         /// Gets the current [`channel_update`] for the given channel. This does not check if the channel
3298         /// is public (only returning an `Err` if the channel does not yet have an assigned SCID),
3299         /// and thus MUST NOT be called unless the recipient of the resulting message has already
3300         /// provided evidence that they know about the existence of the channel.
3301         ///
3302         /// Note that through [`internal_closing_signed`], this function is called without the
3303         /// `peer_state`  corresponding to the channel's counterparty locked, as the channel been
3304         /// removed from the storage and the `peer_state` lock has been dropped.
3305         ///
3306         /// [`channel_update`]: msgs::ChannelUpdate
3307         /// [`internal_closing_signed`]: Self::internal_closing_signed
3308         fn get_channel_update_for_unicast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3309                 log_trace!(self.logger, "Attempting to generate channel update for channel {}", &chan.context.channel_id());
3310                 let short_channel_id = match chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias()) {
3311                         None => return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError}),
3312                         Some(id) => id,
3313                 };
3314
3315                 self.get_channel_update_for_onion(short_channel_id, chan)
3316         }
3317
3318         fn get_channel_update_for_onion(&self, short_channel_id: u64, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3319                 log_trace!(self.logger, "Generating channel update for channel {}", &chan.context.channel_id());
3320                 let were_node_one = self.our_network_pubkey.serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
3321
3322                 let enabled = chan.context.is_usable() && match chan.channel_update_status() {
3323                         ChannelUpdateStatus::Enabled => true,
3324                         ChannelUpdateStatus::DisabledStaged(_) => true,
3325                         ChannelUpdateStatus::Disabled => false,
3326                         ChannelUpdateStatus::EnabledStaged(_) => false,
3327                 };
3328
3329                 let unsigned = msgs::UnsignedChannelUpdate {
3330                         chain_hash: self.genesis_hash,
3331                         short_channel_id,
3332                         timestamp: chan.context.get_update_time_counter(),
3333                         flags: (!were_node_one) as u8 | ((!enabled as u8) << 1),
3334                         cltv_expiry_delta: chan.context.get_cltv_expiry_delta(),
3335                         htlc_minimum_msat: chan.context.get_counterparty_htlc_minimum_msat(),
3336                         htlc_maximum_msat: chan.context.get_announced_htlc_max_msat(),
3337                         fee_base_msat: chan.context.get_outbound_forwarding_fee_base_msat(),
3338                         fee_proportional_millionths: chan.context.get_fee_proportional_millionths(),
3339                         excess_data: Vec::new(),
3340                 };
3341                 // Panic on failure to signal LDK should be restarted to retry signing the `ChannelUpdate`.
3342                 // If we returned an error and the `node_signer` cannot provide a signature for whatever
3343                 // reason`, we wouldn't be able to receive inbound payments through the corresponding
3344                 // channel.
3345                 let sig = self.node_signer.sign_gossip_message(msgs::UnsignedGossipMessage::ChannelUpdate(&unsigned)).unwrap();
3346
3347                 Ok(msgs::ChannelUpdate {
3348                         signature: sig,
3349                         contents: unsigned
3350                 })
3351         }
3352
3353         #[cfg(test)]
3354         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> {
3355                 let _lck = self.total_consistency_lock.read().unwrap();
3356                 self.send_payment_along_path(SendAlongPathArgs {
3357                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
3358                         session_priv_bytes
3359                 })
3360         }
3361
3362         fn send_payment_along_path(&self, args: SendAlongPathArgs) -> Result<(), APIError> {
3363                 let SendAlongPathArgs {
3364                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
3365                         session_priv_bytes
3366                 } = args;
3367                 // The top-level caller should hold the total_consistency_lock read lock.
3368                 debug_assert!(self.total_consistency_lock.try_write().is_err());
3369
3370                 log_trace!(self.logger,
3371                         "Attempting to send payment with payment hash {} along path with next hop {}",
3372                         payment_hash, path.hops.first().unwrap().short_channel_id);
3373                 let prng_seed = self.entropy_source.get_secure_random_bytes();
3374                 let session_priv = SecretKey::from_slice(&session_priv_bytes[..]).expect("RNG is busted");
3375
3376                 let onion_keys = onion_utils::construct_onion_keys(&self.secp_ctx, &path, &session_priv)
3377                         .map_err(|_| APIError::InvalidRoute{err: "Pubkey along hop was maliciously selected".to_owned()})?;
3378                 let (onion_payloads, htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(path, total_value, recipient_onion, cur_height, keysend_preimage)?;
3379
3380                 let onion_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, prng_seed, payment_hash)
3381                         .map_err(|_| APIError::InvalidRoute { err: "Route size too large considering onion data".to_owned()})?;
3382
3383                 let err: Result<(), _> = loop {
3384                         let (counterparty_node_id, id) = match self.short_to_chan_info.read().unwrap().get(&path.hops.first().unwrap().short_channel_id) {
3385                                 None => return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()}),
3386                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
3387                         };
3388
3389                         let per_peer_state = self.per_peer_state.read().unwrap();
3390                         let peer_state_mutex = per_peer_state.get(&counterparty_node_id)
3391                                 .ok_or_else(|| APIError::ChannelUnavailable{err: "No peer matching the path's first hop found!".to_owned() })?;
3392                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3393                         let peer_state = &mut *peer_state_lock;
3394                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(id) {
3395                                 match chan_phase_entry.get_mut() {
3396                                         ChannelPhase::Funded(chan) => {
3397                                                 if !chan.context.is_live() {
3398                                                         return Err(APIError::ChannelUnavailable{err: "Peer for first hop currently disconnected".to_owned()});
3399                                                 }
3400                                                 let funding_txo = chan.context.get_funding_txo().unwrap();
3401                                                 let send_res = chan.send_htlc_and_commit(htlc_msat, payment_hash.clone(),
3402                                                         htlc_cltv, HTLCSource::OutboundRoute {
3403                                                                 path: path.clone(),
3404                                                                 session_priv: session_priv.clone(),
3405                                                                 first_hop_htlc_msat: htlc_msat,
3406                                                                 payment_id,
3407                                                         }, onion_packet, None, &self.fee_estimator, &self.logger);
3408                                                 match break_chan_phase_entry!(self, send_res, chan_phase_entry) {
3409                                                         Some(monitor_update) => {
3410                                                                 match handle_new_monitor_update!(self, funding_txo, monitor_update, peer_state_lock, peer_state, per_peer_state, chan) {
3411                                                                         false => {
3412                                                                                 // Note that MonitorUpdateInProgress here indicates (per function
3413                                                                                 // docs) that we will resend the commitment update once monitor
3414                                                                                 // updating completes. Therefore, we must return an error
3415                                                                                 // indicating that it is unsafe to retry the payment wholesale,
3416                                                                                 // which we do in the send_payment check for
3417                                                                                 // MonitorUpdateInProgress, below.
3418                                                                                 return Err(APIError::MonitorUpdateInProgress);
3419                                                                         },
3420                                                                         true => {},
3421                                                                 }
3422                                                         },
3423                                                         None => {},
3424                                                 }
3425                                         },
3426                                         _ => return Err(APIError::ChannelUnavailable{err: "Channel to first hop is unfunded".to_owned()}),
3427                                 };
3428                         } else {
3429                                 // The channel was likely removed after we fetched the id from the
3430                                 // `short_to_chan_info` map, but before we successfully locked the
3431                                 // `channel_by_id` map.
3432                                 // This can occur as no consistency guarantees exists between the two maps.
3433                                 return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()});
3434                         }
3435                         return Ok(());
3436                 };
3437
3438                 match handle_error!(self, err, path.hops.first().unwrap().pubkey) {
3439                         Ok(_) => unreachable!(),
3440                         Err(e) => {
3441                                 Err(APIError::ChannelUnavailable { err: e.err })
3442                         },
3443                 }
3444         }
3445
3446         /// Sends a payment along a given route.
3447         ///
3448         /// Value parameters are provided via the last hop in route, see documentation for [`RouteHop`]
3449         /// fields for more info.
3450         ///
3451         /// May generate [`UpdateHTLCs`] message(s) event on success, which should be relayed (e.g. via
3452         /// [`PeerManager::process_events`]).
3453         ///
3454         /// # Avoiding Duplicate Payments
3455         ///
3456         /// If a pending payment is currently in-flight with the same [`PaymentId`] provided, this
3457         /// method will error with an [`APIError::InvalidRoute`]. Note, however, that once a payment
3458         /// is no longer pending (either via [`ChannelManager::abandon_payment`], or handling of an
3459         /// [`Event::PaymentSent`] or [`Event::PaymentFailed`]) LDK will not stop you from sending a
3460         /// second payment with the same [`PaymentId`].
3461         ///
3462         /// Thus, in order to ensure duplicate payments are not sent, you should implement your own
3463         /// tracking of payments, including state to indicate once a payment has completed. Because you
3464         /// should also ensure that [`PaymentHash`]es are not re-used, for simplicity, you should
3465         /// consider using the [`PaymentHash`] as the key for tracking payments. In that case, the
3466         /// [`PaymentId`] should be a copy of the [`PaymentHash`] bytes.
3467         ///
3468         /// Additionally, in the scenario where we begin the process of sending a payment, but crash
3469         /// before `send_payment` returns (or prior to [`ChannelMonitorUpdate`] persistence if you're
3470         /// using [`ChannelMonitorUpdateStatus::InProgress`]), the payment may be lost on restart. See
3471         /// [`ChannelManager::list_recent_payments`] for more information.
3472         ///
3473         /// # Possible Error States on [`PaymentSendFailure`]
3474         ///
3475         /// Each path may have a different return value, and [`PaymentSendFailure`] may return a `Vec` with
3476         /// each entry matching the corresponding-index entry in the route paths, see
3477         /// [`PaymentSendFailure`] for more info.
3478         ///
3479         /// In general, a path may raise:
3480         ///  * [`APIError::InvalidRoute`] when an invalid route or forwarding parameter (cltv_delta, fee,
3481         ///    node public key) is specified.
3482         ///  * [`APIError::ChannelUnavailable`] if the next-hop channel is not available as it has been
3483         ///    closed, doesn't exist, or the peer is currently disconnected.
3484         ///  * [`APIError::MonitorUpdateInProgress`] if a new monitor update failure prevented sending the
3485         ///    relevant updates.
3486         ///
3487         /// Note that depending on the type of the [`PaymentSendFailure`] the HTLC may have been
3488         /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
3489         /// different route unless you intend to pay twice!
3490         ///
3491         /// [`RouteHop`]: crate::routing::router::RouteHop
3492         /// [`Event::PaymentSent`]: events::Event::PaymentSent
3493         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
3494         /// [`UpdateHTLCs`]: events::MessageSendEvent::UpdateHTLCs
3495         /// [`PeerManager::process_events`]: crate::ln::peer_handler::PeerManager::process_events
3496         /// [`ChannelMonitorUpdateStatus::InProgress`]: crate::chain::ChannelMonitorUpdateStatus::InProgress
3497         pub fn send_payment_with_route(&self, route: &Route, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<(), PaymentSendFailure> {
3498                 let best_block_height = self.best_block.read().unwrap().height();
3499                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3500                 self.pending_outbound_payments
3501                         .send_payment_with_route(route, payment_hash, recipient_onion, payment_id,
3502                                 &self.entropy_source, &self.node_signer, best_block_height,
3503                                 |args| self.send_payment_along_path(args))
3504         }
3505
3506         /// Similar to [`ChannelManager::send_payment_with_route`], but will automatically find a route based on
3507         /// `route_params` and retry failed payment paths based on `retry_strategy`.
3508         pub fn send_payment(&self, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId, route_params: RouteParameters, retry_strategy: Retry) -> Result<(), RetryableSendFailure> {
3509                 let best_block_height = self.best_block.read().unwrap().height();
3510                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3511                 self.pending_outbound_payments
3512                         .send_payment(payment_hash, recipient_onion, payment_id, retry_strategy, route_params,
3513                                 &self.router, self.list_usable_channels(), || self.compute_inflight_htlcs(),
3514                                 &self.entropy_source, &self.node_signer, best_block_height, &self.logger,
3515                                 &self.pending_events, |args| self.send_payment_along_path(args))
3516         }
3517
3518         #[cfg(test)]
3519         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> {
3520                 let best_block_height = self.best_block.read().unwrap().height();
3521                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3522                 self.pending_outbound_payments.test_send_payment_internal(route, payment_hash, recipient_onion,
3523                         keysend_preimage, payment_id, recv_value_msat, onion_session_privs, &self.node_signer,
3524                         best_block_height, |args| self.send_payment_along_path(args))
3525         }
3526
3527         #[cfg(test)]
3528         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> {
3529                 let best_block_height = self.best_block.read().unwrap().height();
3530                 self.pending_outbound_payments.test_add_new_pending_payment(payment_hash, recipient_onion, payment_id, route, None, &self.entropy_source, best_block_height)
3531         }
3532
3533         #[cfg(test)]
3534         pub(crate) fn test_set_payment_metadata(&self, payment_id: PaymentId, new_payment_metadata: Option<Vec<u8>>) {
3535                 self.pending_outbound_payments.test_set_payment_metadata(payment_id, new_payment_metadata);
3536         }
3537
3538
3539         /// Signals that no further attempts for the given payment should occur. Useful if you have a
3540         /// pending outbound payment with retries remaining, but wish to stop retrying the payment before
3541         /// retries are exhausted.
3542         ///
3543         /// # Event Generation
3544         ///
3545         /// If no [`Event::PaymentFailed`] event had been generated before, one will be generated as soon
3546         /// as there are no remaining pending HTLCs for this payment.
3547         ///
3548         /// Note that calling this method does *not* prevent a payment from succeeding. You must still
3549         /// wait until you receive either a [`Event::PaymentFailed`] or [`Event::PaymentSent`] event to
3550         /// determine the ultimate status of a payment.
3551         ///
3552         /// # Restart Behavior
3553         ///
3554         /// If an [`Event::PaymentFailed`] is generated and we restart without first persisting the
3555         /// [`ChannelManager`], another [`Event::PaymentFailed`] may be generated.
3556         pub fn abandon_payment(&self, payment_id: PaymentId) {
3557                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3558                 self.pending_outbound_payments.abandon_payment(payment_id, PaymentFailureReason::UserAbandoned, &self.pending_events);
3559         }
3560
3561         /// Send a spontaneous payment, which is a payment that does not require the recipient to have
3562         /// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
3563         /// the preimage, it must be a cryptographically secure random value that no intermediate node
3564         /// would be able to guess -- otherwise, an intermediate node may claim the payment and it will
3565         /// never reach the recipient.
3566         ///
3567         /// See [`send_payment`] documentation for more details on the return value of this function
3568         /// and idempotency guarantees provided by the [`PaymentId`] key.
3569         ///
3570         /// Similar to regular payments, you MUST NOT reuse a `payment_preimage` value. See
3571         /// [`send_payment`] for more information about the risks of duplicate preimage usage.
3572         ///
3573         /// [`send_payment`]: Self::send_payment
3574         pub fn send_spontaneous_payment(&self, route: &Route, payment_preimage: Option<PaymentPreimage>, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<PaymentHash, PaymentSendFailure> {
3575                 let best_block_height = self.best_block.read().unwrap().height();
3576                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3577                 self.pending_outbound_payments.send_spontaneous_payment_with_route(
3578                         route, payment_preimage, recipient_onion, payment_id, &self.entropy_source,
3579                         &self.node_signer, best_block_height, |args| self.send_payment_along_path(args))
3580         }
3581
3582         /// Similar to [`ChannelManager::send_spontaneous_payment`], but will automatically find a route
3583         /// based on `route_params` and retry failed payment paths based on `retry_strategy`.
3584         ///
3585         /// See [`PaymentParameters::for_keysend`] for help in constructing `route_params` for spontaneous
3586         /// payments.
3587         ///
3588         /// [`PaymentParameters::for_keysend`]: crate::routing::router::PaymentParameters::for_keysend
3589         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> {
3590                 let best_block_height = self.best_block.read().unwrap().height();
3591                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3592                 self.pending_outbound_payments.send_spontaneous_payment(payment_preimage, recipient_onion,
3593                         payment_id, retry_strategy, route_params, &self.router, self.list_usable_channels(),
3594                         || self.compute_inflight_htlcs(),  &self.entropy_source, &self.node_signer, best_block_height,
3595                         &self.logger, &self.pending_events, |args| self.send_payment_along_path(args))
3596         }
3597
3598         /// Send a payment that is probing the given route for liquidity. We calculate the
3599         /// [`PaymentHash`] of probes based on a static secret and a random [`PaymentId`], which allows
3600         /// us to easily discern them from real payments.
3601         pub fn send_probe(&self, path: Path) -> Result<(PaymentHash, PaymentId), PaymentSendFailure> {
3602                 let best_block_height = self.best_block.read().unwrap().height();
3603                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3604                 self.pending_outbound_payments.send_probe(path, self.probing_cookie_secret,
3605                         &self.entropy_source, &self.node_signer, best_block_height,
3606                         |args| self.send_payment_along_path(args))
3607         }
3608
3609         /// Returns whether a payment with the given [`PaymentHash`] and [`PaymentId`] is, in fact, a
3610         /// payment probe.
3611         #[cfg(test)]
3612         pub(crate) fn payment_is_probe(&self, payment_hash: &PaymentHash, payment_id: &PaymentId) -> bool {
3613                 outbound_payment::payment_is_probe(payment_hash, payment_id, self.probing_cookie_secret)
3614         }
3615
3616         /// Sends payment probes over all paths of a route that would be used to pay the given
3617         /// amount to the given `node_id`.
3618         ///
3619         /// See [`ChannelManager::send_preflight_probes`] for more information.
3620         pub fn send_spontaneous_preflight_probes(
3621                 &self, node_id: PublicKey, amount_msat: u64, final_cltv_expiry_delta: u32,
3622                 liquidity_limit_multiplier: Option<u64>,
3623         ) -> Result<Vec<(PaymentHash, PaymentId)>, ProbeSendFailure> {
3624                 let payment_params =
3625                         PaymentParameters::from_node_id(node_id, final_cltv_expiry_delta);
3626
3627                 let route_params = RouteParameters::from_payment_params_and_value(payment_params, amount_msat);
3628
3629                 self.send_preflight_probes(route_params, liquidity_limit_multiplier)
3630         }
3631
3632         /// Sends payment probes over all paths of a route that would be used to pay a route found
3633         /// according to the given [`RouteParameters`].
3634         ///
3635         /// This may be used to send "pre-flight" probes, i.e., to train our scorer before conducting
3636         /// the actual payment. Note this is only useful if there likely is sufficient time for the
3637         /// probe to settle before sending out the actual payment, e.g., when waiting for user
3638         /// confirmation in a wallet UI.
3639         ///
3640         /// Otherwise, there is a chance the probe could take up some liquidity needed to complete the
3641         /// actual payment. Users should therefore be cautious and might avoid sending probes if
3642         /// liquidity is scarce and/or they don't expect the probe to return before they send the
3643         /// payment. To mitigate this issue, channels with available liquidity less than the required
3644         /// amount times the given `liquidity_limit_multiplier` won't be used to send pre-flight
3645         /// probes. If `None` is given as `liquidity_limit_multiplier`, it defaults to `3`.
3646         pub fn send_preflight_probes(
3647                 &self, route_params: RouteParameters, liquidity_limit_multiplier: Option<u64>,
3648         ) -> Result<Vec<(PaymentHash, PaymentId)>, ProbeSendFailure> {
3649                 let liquidity_limit_multiplier = liquidity_limit_multiplier.unwrap_or(3);
3650
3651                 let payer = self.get_our_node_id();
3652                 let usable_channels = self.list_usable_channels();
3653                 let first_hops = usable_channels.iter().collect::<Vec<_>>();
3654                 let inflight_htlcs = self.compute_inflight_htlcs();
3655
3656                 let route = self
3657                         .router
3658                         .find_route(&payer, &route_params, Some(&first_hops), inflight_htlcs)
3659                         .map_err(|e| {
3660                                 log_error!(self.logger, "Failed to find path for payment probe: {:?}", e);
3661                                 ProbeSendFailure::RouteNotFound
3662                         })?;
3663
3664                 let mut used_liquidity_map = HashMap::with_capacity(first_hops.len());
3665
3666                 let mut res = Vec::new();
3667
3668                 for mut path in route.paths {
3669                         // If the last hop is probably an unannounced channel we refrain from probing all the
3670                         // way through to the end and instead probe up to the second-to-last channel.
3671                         while let Some(last_path_hop) = path.hops.last() {
3672                                 if last_path_hop.maybe_announced_channel {
3673                                         // We found a potentially announced last hop.
3674                                         break;
3675                                 } else {
3676                                         // Drop the last hop, as it's likely unannounced.
3677                                         log_debug!(
3678                                                 self.logger,
3679                                                 "Avoided sending payment probe all the way to last hop {} as it is likely unannounced.",
3680                                                 last_path_hop.short_channel_id
3681                                         );
3682                                         let final_value_msat = path.final_value_msat();
3683                                         path.hops.pop();
3684                                         if let Some(new_last) = path.hops.last_mut() {
3685                                                 new_last.fee_msat += final_value_msat;
3686                                         }
3687                                 }
3688                         }
3689
3690                         if path.hops.len() < 2 {
3691                                 log_debug!(
3692                                         self.logger,
3693                                         "Skipped sending payment probe over path with less than two hops."
3694                                 );
3695                                 continue;
3696                         }
3697
3698                         if let Some(first_path_hop) = path.hops.first() {
3699                                 if let Some(first_hop) = first_hops.iter().find(|h| {
3700                                         h.get_outbound_payment_scid() == Some(first_path_hop.short_channel_id)
3701                                 }) {
3702                                         let path_value = path.final_value_msat() + path.fee_msat();
3703                                         let used_liquidity =
3704                                                 used_liquidity_map.entry(first_path_hop.short_channel_id).or_insert(0);
3705
3706                                         if first_hop.next_outbound_htlc_limit_msat
3707                                                 < (*used_liquidity + path_value) * liquidity_limit_multiplier
3708                                         {
3709                                                 log_debug!(self.logger, "Skipped sending payment probe to avoid putting channel {} under the liquidity limit.", first_path_hop.short_channel_id);
3710                                                 continue;
3711                                         } else {
3712                                                 *used_liquidity += path_value;
3713                                         }
3714                                 }
3715                         }
3716
3717                         res.push(self.send_probe(path).map_err(|e| {
3718                                 log_error!(self.logger, "Failed to send pre-flight probe: {:?}", e);
3719                                 ProbeSendFailure::SendingFailed(e)
3720                         })?);
3721                 }
3722
3723                 Ok(res)
3724         }
3725
3726         /// Handles the generation of a funding transaction, optionally (for tests) with a function
3727         /// which checks the correctness of the funding transaction given the associated channel.
3728         fn funding_transaction_generated_intern<FundingOutput: FnMut(&OutboundV1Channel<SP>, &Transaction) -> Result<OutPoint, APIError>>(
3729                 &self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, is_batch_funding: bool,
3730                 mut find_funding_output: FundingOutput,
3731         ) -> Result<(), APIError> {
3732                 let per_peer_state = self.per_peer_state.read().unwrap();
3733                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3734                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3735
3736                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3737                 let peer_state = &mut *peer_state_lock;
3738                 let (chan, msg) = match peer_state.channel_by_id.remove(temporary_channel_id) {
3739                         Some(ChannelPhase::UnfundedOutboundV1(chan)) => {
3740                                 let funding_txo = find_funding_output(&chan, &funding_transaction)?;
3741
3742                                 let funding_res = chan.get_funding_created(funding_transaction, funding_txo, is_batch_funding, &self.logger)
3743                                         .map_err(|(mut chan, e)| if let ChannelError::Close(msg) = e {
3744                                                 let channel_id = chan.context.channel_id();
3745                                                 let user_id = chan.context.get_user_id();
3746                                                 let shutdown_res = chan.context.force_shutdown(false);
3747                                                 let channel_capacity = chan.context.get_value_satoshis();
3748                                                 (chan, MsgHandleErrInternal::from_finish_shutdown(msg, channel_id, user_id, shutdown_res, None, channel_capacity))
3749                                         } else { unreachable!(); });
3750                                 match funding_res {
3751                                         Ok((chan, funding_msg)) => (chan, funding_msg),
3752                                         Err((chan, err)) => {
3753                                                 mem::drop(peer_state_lock);
3754                                                 mem::drop(per_peer_state);
3755
3756                                                 let _: Result<(), _> = handle_error!(self, Err(err), chan.context.get_counterparty_node_id());
3757                                                 return Err(APIError::ChannelUnavailable {
3758                                                         err: "Signer refused to sign the initial commitment transaction".to_owned()
3759                                                 });
3760                                         },
3761                                 }
3762                         },
3763                         Some(phase) => {
3764                                 peer_state.channel_by_id.insert(*temporary_channel_id, phase);
3765                                 return Err(APIError::APIMisuseError {
3766                                         err: format!(
3767                                                 "Channel with id {} for the passed counterparty node_id {} is not an unfunded, outbound V1 channel",
3768                                                 temporary_channel_id, counterparty_node_id),
3769                                 })
3770                         },
3771                         None => return Err(APIError::ChannelUnavailable {err: format!(
3772                                 "Channel with id {} not found for the passed counterparty node_id {}",
3773                                 temporary_channel_id, counterparty_node_id),
3774                                 }),
3775                 };
3776
3777                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
3778                         node_id: chan.context.get_counterparty_node_id(),
3779                         msg,
3780                 });
3781                 match peer_state.channel_by_id.entry(chan.context.channel_id()) {
3782                         hash_map::Entry::Occupied(_) => {
3783                                 panic!("Generated duplicate funding txid?");
3784                         },
3785                         hash_map::Entry::Vacant(e) => {
3786                                 let mut id_to_peer = self.id_to_peer.lock().unwrap();
3787                                 if id_to_peer.insert(chan.context.channel_id(), chan.context.get_counterparty_node_id()).is_some() {
3788                                         panic!("id_to_peer map already contained funding txid, which shouldn't be possible");
3789                                 }
3790                                 e.insert(ChannelPhase::Funded(chan));
3791                         }
3792                 }
3793                 Ok(())
3794         }
3795
3796         #[cfg(test)]
3797         pub(crate) fn funding_transaction_generated_unchecked(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, output_index: u16) -> Result<(), APIError> {
3798                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, false, |_, tx| {
3799                         Ok(OutPoint { txid: tx.txid(), index: output_index })
3800                 })
3801         }
3802
3803         /// Call this upon creation of a funding transaction for the given channel.
3804         ///
3805         /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
3806         /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
3807         ///
3808         /// Returns [`APIError::APIMisuseError`] if the funding transaction is not final for propagation
3809         /// across the p2p network.
3810         ///
3811         /// Returns [`APIError::ChannelUnavailable`] if a funding transaction has already been provided
3812         /// for the channel or if the channel has been closed as indicated by [`Event::ChannelClosed`].
3813         ///
3814         /// May panic if the output found in the funding transaction is duplicative with some other
3815         /// channel (note that this should be trivially prevented by using unique funding transaction
3816         /// keys per-channel).
3817         ///
3818         /// Do NOT broadcast the funding transaction yourself. When we have safely received our
3819         /// counterparty's signature the funding transaction will automatically be broadcast via the
3820         /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
3821         ///
3822         /// Note that this includes RBF or similar transaction replacement strategies - lightning does
3823         /// not currently support replacing a funding transaction on an existing channel. Instead,
3824         /// create a new channel with a conflicting funding transaction.
3825         ///
3826         /// Note to keep the miner incentives aligned in moving the blockchain forward, we recommend
3827         /// the wallet software generating the funding transaction to apply anti-fee sniping as
3828         /// implemented by Bitcoin Core wallet. See <https://bitcoinops.org/en/topics/fee-sniping/>
3829         /// for more details.
3830         ///
3831         /// [`Event::FundingGenerationReady`]: crate::events::Event::FundingGenerationReady
3832         /// [`Event::ChannelClosed`]: crate::events::Event::ChannelClosed
3833         pub fn funding_transaction_generated(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction) -> Result<(), APIError> {
3834                 self.batch_funding_transaction_generated(&[(temporary_channel_id, counterparty_node_id)], funding_transaction)
3835         }
3836
3837         /// Call this upon creation of a batch funding transaction for the given channels.
3838         ///
3839         /// Return values are identical to [`Self::funding_transaction_generated`], respective to
3840         /// each individual channel and transaction output.
3841         ///
3842         /// Do NOT broadcast the funding transaction yourself. This batch funding transcaction
3843         /// will only be broadcast when we have safely received and persisted the counterparty's
3844         /// signature for each channel.
3845         ///
3846         /// If there is an error, all channels in the batch are to be considered closed.
3847         pub fn batch_funding_transaction_generated(&self, temporary_channels: &[(&ChannelId, &PublicKey)], funding_transaction: Transaction) -> Result<(), APIError> {
3848                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3849                 let mut result = Ok(());
3850
3851                 if !funding_transaction.is_coin_base() {
3852                         for inp in funding_transaction.input.iter() {
3853                                 if inp.witness.is_empty() {
3854                                         result = result.and(Err(APIError::APIMisuseError {
3855                                                 err: "Funding transaction must be fully signed and spend Segwit outputs".to_owned()
3856                                         }));
3857                                 }
3858                         }
3859                 }
3860                 if funding_transaction.output.len() > u16::max_value() as usize {
3861                         result = result.and(Err(APIError::APIMisuseError {
3862                                 err: "Transaction had more than 2^16 outputs, which is not supported".to_owned()
3863                         }));
3864                 }
3865                 {
3866                         let height = self.best_block.read().unwrap().height();
3867                         // Transactions are evaluated as final by network mempools if their locktime is strictly
3868                         // lower than the next block height. However, the modules constituting our Lightning
3869                         // node might not have perfect sync about their blockchain views. Thus, if the wallet
3870                         // module is ahead of LDK, only allow one more block of headroom.
3871                         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 {
3872                                 result = result.and(Err(APIError::APIMisuseError {
3873                                         err: "Funding transaction absolute timelock is non-final".to_owned()
3874                                 }));
3875                         }
3876                 }
3877
3878                 let txid = funding_transaction.txid();
3879                 let is_batch_funding = temporary_channels.len() > 1;
3880                 let mut funding_batch_states = if is_batch_funding {
3881                         Some(self.funding_batch_states.lock().unwrap())
3882                 } else {
3883                         None
3884                 };
3885                 let mut funding_batch_state = funding_batch_states.as_mut().and_then(|states| {
3886                         match states.entry(txid) {
3887                                 btree_map::Entry::Occupied(_) => {
3888                                         result = result.clone().and(Err(APIError::APIMisuseError {
3889                                                 err: "Batch funding transaction with the same txid already exists".to_owned()
3890                                         }));
3891                                         None
3892                                 },
3893                                 btree_map::Entry::Vacant(vacant) => Some(vacant.insert(Vec::new())),
3894                         }
3895                 });
3896                 for &(temporary_channel_id, counterparty_node_id) in temporary_channels.iter() {
3897                         result = result.and_then(|_| self.funding_transaction_generated_intern(
3898                                 temporary_channel_id,
3899                                 counterparty_node_id,
3900                                 funding_transaction.clone(),
3901                                 is_batch_funding,
3902                                 |chan, tx| {
3903                                         let mut output_index = None;
3904                                         let expected_spk = chan.context.get_funding_redeemscript().to_v0_p2wsh();
3905                                         for (idx, outp) in tx.output.iter().enumerate() {
3906                                                 if outp.script_pubkey == expected_spk && outp.value == chan.context.get_value_satoshis() {
3907                                                         if output_index.is_some() {
3908                                                                 return Err(APIError::APIMisuseError {
3909                                                                         err: "Multiple outputs matched the expected script and value".to_owned()
3910                                                                 });
3911                                                         }
3912                                                         output_index = Some(idx as u16);
3913                                                 }
3914                                         }
3915                                         if output_index.is_none() {
3916                                                 return Err(APIError::APIMisuseError {
3917                                                         err: "No output matched the script_pubkey and value in the FundingGenerationReady event".to_owned()
3918                                                 });
3919                                         }
3920                                         let outpoint = OutPoint { txid: tx.txid(), index: output_index.unwrap() };
3921                                         if let Some(funding_batch_state) = funding_batch_state.as_mut() {
3922                                                 funding_batch_state.push((outpoint.to_channel_id(), *counterparty_node_id, false));
3923                                         }
3924                                         Ok(outpoint)
3925                                 })
3926                         );
3927                 }
3928                 if let Err(ref e) = result {
3929                         // Remaining channels need to be removed on any error.
3930                         let e = format!("Error in transaction funding: {:?}", e);
3931                         let mut channels_to_remove = Vec::new();
3932                         channels_to_remove.extend(funding_batch_states.as_mut()
3933                                 .and_then(|states| states.remove(&txid))
3934                                 .into_iter().flatten()
3935                                 .map(|(chan_id, node_id, _state)| (chan_id, node_id))
3936                         );
3937                         channels_to_remove.extend(temporary_channels.iter()
3938                                 .map(|(&chan_id, &node_id)| (chan_id, node_id))
3939                         );
3940                         let mut shutdown_results = Vec::new();
3941                         {
3942                                 let per_peer_state = self.per_peer_state.read().unwrap();
3943                                 for (channel_id, counterparty_node_id) in channels_to_remove {
3944                                         per_peer_state.get(&counterparty_node_id)
3945                                                 .map(|peer_state_mutex| peer_state_mutex.lock().unwrap())
3946                                                 .and_then(|mut peer_state| peer_state.channel_by_id.remove(&channel_id))
3947                                                 .map(|mut chan| {
3948                                                         update_maps_on_chan_removal!(self, &chan.context());
3949                                                         self.issue_channel_close_events(&chan.context(), ClosureReason::ProcessingError { err: e.clone() });
3950                                                         shutdown_results.push(chan.context_mut().force_shutdown(false));
3951                                                 });
3952                                 }
3953                         }
3954                         for shutdown_result in shutdown_results.drain(..) {
3955                                 self.finish_close_channel(shutdown_result);
3956                         }
3957                 }
3958                 result
3959         }
3960
3961         /// Atomically applies partial updates to the [`ChannelConfig`] of the given channels.
3962         ///
3963         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3964         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3965         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3966         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3967         ///
3968         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3969         /// `counterparty_node_id` is provided.
3970         ///
3971         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3972         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3973         ///
3974         /// If an error is returned, none of the updates should be considered applied.
3975         ///
3976         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3977         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3978         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3979         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3980         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3981         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3982         /// [`APIMisuseError`]: APIError::APIMisuseError
3983         pub fn update_partial_channel_config(
3984                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config_update: &ChannelConfigUpdate,
3985         ) -> Result<(), APIError> {
3986                 if config_update.cltv_expiry_delta.map(|delta| delta < MIN_CLTV_EXPIRY_DELTA).unwrap_or(false) {
3987                         return Err(APIError::APIMisuseError {
3988                                 err: format!("The chosen CLTV expiry delta is below the minimum of {}", MIN_CLTV_EXPIRY_DELTA),
3989                         });
3990                 }
3991
3992                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3993                 let per_peer_state = self.per_peer_state.read().unwrap();
3994                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3995                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3996                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3997                 let peer_state = &mut *peer_state_lock;
3998                 for channel_id in channel_ids {
3999                         if !peer_state.has_channel(channel_id) {
4000                                 return Err(APIError::ChannelUnavailable {
4001                                         err: format!("Channel with ID {} was not found for the passed counterparty_node_id {}", channel_id, counterparty_node_id),
4002                                 });
4003                         };
4004                 }
4005                 for channel_id in channel_ids {
4006                         if let Some(channel_phase) = peer_state.channel_by_id.get_mut(channel_id) {
4007                                 let mut config = channel_phase.context().config();
4008                                 config.apply(config_update);
4009                                 if !channel_phase.context_mut().update_config(&config) {
4010                                         continue;
4011                                 }
4012                                 if let ChannelPhase::Funded(channel) = channel_phase {
4013                                         if let Ok(msg) = self.get_channel_update_for_broadcast(channel) {
4014                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate { msg });
4015                                         } else if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
4016                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
4017                                                         node_id: channel.context.get_counterparty_node_id(),
4018                                                         msg,
4019                                                 });
4020                                         }
4021                                 }
4022                                 continue;
4023                         } else {
4024                                 // This should not be reachable as we've already checked for non-existence in the previous channel_id loop.
4025                                 debug_assert!(false);
4026                                 return Err(APIError::ChannelUnavailable {
4027                                         err: format!(
4028                                                 "Channel with ID {} for passed counterparty_node_id {} disappeared after we confirmed its existence - this should not be reachable!",
4029                                                 channel_id, counterparty_node_id),
4030                                 });
4031                         };
4032                 }
4033                 Ok(())
4034         }
4035
4036         /// Atomically updates the [`ChannelConfig`] for the given channels.
4037         ///
4038         /// Once the updates are applied, each eligible channel (advertised with a known short channel
4039         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
4040         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
4041         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
4042         ///
4043         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
4044         /// `counterparty_node_id` is provided.
4045         ///
4046         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
4047         /// below [`MIN_CLTV_EXPIRY_DELTA`].
4048         ///
4049         /// If an error is returned, none of the updates should be considered applied.
4050         ///
4051         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
4052         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
4053         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
4054         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
4055         /// [`ChannelUpdate`]: msgs::ChannelUpdate
4056         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
4057         /// [`APIMisuseError`]: APIError::APIMisuseError
4058         pub fn update_channel_config(
4059                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config: &ChannelConfig,
4060         ) -> Result<(), APIError> {
4061                 return self.update_partial_channel_config(counterparty_node_id, channel_ids, &(*config).into());
4062         }
4063
4064         /// Attempts to forward an intercepted HTLC over the provided channel id and with the provided
4065         /// amount to forward. Should only be called in response to an [`HTLCIntercepted`] event.
4066         ///
4067         /// Intercepted HTLCs can be useful for Lightning Service Providers (LSPs) to open a just-in-time
4068         /// channel to a receiving node if the node lacks sufficient inbound liquidity.
4069         ///
4070         /// To make use of intercepted HTLCs, set [`UserConfig::accept_intercept_htlcs`] and use
4071         /// [`ChannelManager::get_intercept_scid`] to generate short channel id(s) to put in the
4072         /// receiver's invoice route hints. These route hints will signal to LDK to generate an
4073         /// [`HTLCIntercepted`] event when it receives the forwarded HTLC, and this method or
4074         /// [`ChannelManager::fail_intercepted_htlc`] MUST be called in response to the event.
4075         ///
4076         /// Note that LDK does not enforce fee requirements in `amt_to_forward_msat`, and will not stop
4077         /// you from forwarding more than you received. See
4078         /// [`HTLCIntercepted::expected_outbound_amount_msat`] for more on forwarding a different amount
4079         /// than expected.
4080         ///
4081         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
4082         /// backwards.
4083         ///
4084         /// [`UserConfig::accept_intercept_htlcs`]: crate::util::config::UserConfig::accept_intercept_htlcs
4085         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
4086         /// [`HTLCIntercepted::expected_outbound_amount_msat`]: events::Event::HTLCIntercepted::expected_outbound_amount_msat
4087         // TODO: when we move to deciding the best outbound channel at forward time, only take
4088         // `next_node_id` and not `next_hop_channel_id`
4089         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> {
4090                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4091
4092                 let next_hop_scid = {
4093                         let peer_state_lock = self.per_peer_state.read().unwrap();
4094                         let peer_state_mutex = peer_state_lock.get(&next_node_id)
4095                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", next_node_id) })?;
4096                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4097                         let peer_state = &mut *peer_state_lock;
4098                         match peer_state.channel_by_id.get(next_hop_channel_id) {
4099                                 Some(ChannelPhase::Funded(chan)) => {
4100                                         if !chan.context.is_usable() {
4101                                                 return Err(APIError::ChannelUnavailable {
4102                                                         err: format!("Channel with id {} not fully established", next_hop_channel_id)
4103                                                 })
4104                                         }
4105                                         chan.context.get_short_channel_id().unwrap_or(chan.context.outbound_scid_alias())
4106                                 },
4107                                 Some(_) => return Err(APIError::ChannelUnavailable {
4108                                         err: format!("Channel with id {} for the passed counterparty node_id {} is still opening.",
4109                                                 next_hop_channel_id, next_node_id)
4110                                 }),
4111                                 None => return Err(APIError::ChannelUnavailable {
4112                                         err: format!("Channel with id {} not found for the passed counterparty node_id {}.",
4113                                                 next_hop_channel_id, next_node_id)
4114                                 })
4115                         }
4116                 };
4117
4118                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
4119                         .ok_or_else(|| APIError::APIMisuseError {
4120                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
4121                         })?;
4122
4123                 let routing = match payment.forward_info.routing {
4124                         PendingHTLCRouting::Forward { onion_packet, .. } => {
4125                                 PendingHTLCRouting::Forward { onion_packet, short_channel_id: next_hop_scid }
4126                         },
4127                         _ => unreachable!() // Only `PendingHTLCRouting::Forward`s are intercepted
4128                 };
4129                 let skimmed_fee_msat =
4130                         payment.forward_info.outgoing_amt_msat.saturating_sub(amt_to_forward_msat);
4131                 let pending_htlc_info = PendingHTLCInfo {
4132                         skimmed_fee_msat: if skimmed_fee_msat == 0 { None } else { Some(skimmed_fee_msat) },
4133                         outgoing_amt_msat: amt_to_forward_msat, routing, ..payment.forward_info
4134                 };
4135
4136                 let mut per_source_pending_forward = [(
4137                         payment.prev_short_channel_id,
4138                         payment.prev_funding_outpoint,
4139                         payment.prev_user_channel_id,
4140                         vec![(pending_htlc_info, payment.prev_htlc_id)]
4141                 )];
4142                 self.forward_htlcs(&mut per_source_pending_forward);
4143                 Ok(())
4144         }
4145
4146         /// Fails the intercepted HTLC indicated by intercept_id. Should only be called in response to
4147         /// an [`HTLCIntercepted`] event. See [`ChannelManager::forward_intercepted_htlc`].
4148         ///
4149         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
4150         /// backwards.
4151         ///
4152         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
4153         pub fn fail_intercepted_htlc(&self, intercept_id: InterceptId) -> Result<(), APIError> {
4154                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4155
4156                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
4157                         .ok_or_else(|| APIError::APIMisuseError {
4158                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
4159                         })?;
4160
4161                 if let PendingHTLCRouting::Forward { short_channel_id, .. } = payment.forward_info.routing {
4162                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4163                                 short_channel_id: payment.prev_short_channel_id,
4164                                 user_channel_id: Some(payment.prev_user_channel_id),
4165                                 outpoint: payment.prev_funding_outpoint,
4166                                 htlc_id: payment.prev_htlc_id,
4167                                 incoming_packet_shared_secret: payment.forward_info.incoming_shared_secret,
4168                                 phantom_shared_secret: None,
4169                         });
4170
4171                         let failure_reason = HTLCFailReason::from_failure_code(0x4000 | 10);
4172                         let destination = HTLCDestination::UnknownNextHop { requested_forward_scid: short_channel_id };
4173                         self.fail_htlc_backwards_internal(&htlc_source, &payment.forward_info.payment_hash, &failure_reason, destination);
4174                 } else { unreachable!() } // Only `PendingHTLCRouting::Forward`s are intercepted
4175
4176                 Ok(())
4177         }
4178
4179         /// Processes HTLCs which are pending waiting on random forward delay.
4180         ///
4181         /// Should only really ever be called in response to a PendingHTLCsForwardable event.
4182         /// Will likely generate further events.
4183         pub fn process_pending_htlc_forwards(&self) {
4184                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4185
4186                 let mut new_events = VecDeque::new();
4187                 let mut failed_forwards = Vec::new();
4188                 let mut phantom_receives: Vec<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> = Vec::new();
4189                 {
4190                         let mut forward_htlcs = HashMap::new();
4191                         mem::swap(&mut forward_htlcs, &mut self.forward_htlcs.lock().unwrap());
4192
4193                         for (short_chan_id, mut pending_forwards) in forward_htlcs {
4194                                 if short_chan_id != 0 {
4195                                         macro_rules! forwarding_channel_not_found {
4196                                                 () => {
4197                                                         for forward_info in pending_forwards.drain(..) {
4198                                                                 match forward_info {
4199                                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4200                                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4201                                                                                 forward_info: PendingHTLCInfo {
4202                                                                                         routing, incoming_shared_secret, payment_hash, outgoing_amt_msat,
4203                                                                                         outgoing_cltv_value, ..
4204                                                                                 }
4205                                                                         }) => {
4206                                                                                 macro_rules! failure_handler {
4207                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr, $next_hop_unknown: expr) => {
4208                                                                                                 log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
4209
4210                                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4211                                                                                                         short_channel_id: prev_short_channel_id,
4212                                                                                                         user_channel_id: Some(prev_user_channel_id),
4213                                                                                                         outpoint: prev_funding_outpoint,
4214                                                                                                         htlc_id: prev_htlc_id,
4215                                                                                                         incoming_packet_shared_secret: incoming_shared_secret,
4216                                                                                                         phantom_shared_secret: $phantom_ss,
4217                                                                                                 });
4218
4219                                                                                                 let reason = if $next_hop_unknown {
4220                                                                                                         HTLCDestination::UnknownNextHop { requested_forward_scid: short_chan_id }
4221                                                                                                 } else {
4222                                                                                                         HTLCDestination::FailedPayment{ payment_hash }
4223                                                                                                 };
4224
4225                                                                                                 failed_forwards.push((htlc_source, payment_hash,
4226                                                                                                         HTLCFailReason::reason($err_code, $err_data),
4227                                                                                                         reason
4228                                                                                                 ));
4229                                                                                                 continue;
4230                                                                                         }
4231                                                                                 }
4232                                                                                 macro_rules! fail_forward {
4233                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
4234                                                                                                 {
4235                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, true);
4236                                                                                                 }
4237                                                                                         }
4238                                                                                 }
4239                                                                                 macro_rules! failed_payment {
4240                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
4241                                                                                                 {
4242                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, false);
4243                                                                                                 }
4244                                                                                         }
4245                                                                                 }
4246                                                                                 if let PendingHTLCRouting::Forward { onion_packet, .. } = routing {
4247                                                                                         let phantom_pubkey_res = self.node_signer.get_node_id(Recipient::PhantomNode);
4248                                                                                         if phantom_pubkey_res.is_ok() && fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, short_chan_id, &self.genesis_hash) {
4249                                                                                                 let phantom_shared_secret = self.node_signer.ecdh(Recipient::PhantomNode, &onion_packet.public_key.unwrap(), None).unwrap().secret_bytes();
4250                                                                                                 let next_hop = match onion_utils::decode_next_payment_hop(
4251                                                                                                         phantom_shared_secret, &onion_packet.hop_data, onion_packet.hmac,
4252                                                                                                         payment_hash, &self.node_signer
4253                                                                                                 ) {
4254                                                                                                         Ok(res) => res,
4255                                                                                                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
4256                                                                                                                 let sha256_of_onion = Sha256::hash(&onion_packet.hop_data).into_inner();
4257                                                                                                                 // In this scenario, the phantom would have sent us an
4258                                                                                                                 // `update_fail_malformed_htlc`, meaning here we encrypt the error as
4259                                                                                                                 // if it came from us (the second-to-last hop) but contains the sha256
4260                                                                                                                 // of the onion.
4261                                                                                                                 failed_payment!(err_msg, err_code, sha256_of_onion.to_vec(), None);
4262                                                                                                         },
4263                                                                                                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
4264                                                                                                                 failed_payment!(err_msg, err_code, Vec::new(), Some(phantom_shared_secret));
4265                                                                                                         },
4266                                                                                                 };
4267                                                                                                 match next_hop {
4268                                                                                                         onion_utils::Hop::Receive(hop_data) => {
4269                                                                                                                 match self.construct_recv_pending_htlc_info(hop_data,
4270                                                                                                                         incoming_shared_secret, payment_hash, outgoing_amt_msat,
4271                                                                                                                         outgoing_cltv_value, Some(phantom_shared_secret), false, None)
4272                                                                                                                 {
4273                                                                                                                         Ok(info) => phantom_receives.push((prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, vec![(info, prev_htlc_id)])),
4274                                                                                                                         Err(InboundOnionErr { err_code, err_data, msg }) => failed_payment!(msg, err_code, err_data, Some(phantom_shared_secret))
4275                                                                                                                 }
4276                                                                                                         },
4277                                                                                                         _ => panic!(),
4278                                                                                                 }
4279                                                                                         } else {
4280                                                                                                 fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
4281                                                                                         }
4282                                                                                 } else {
4283                                                                                         fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
4284                                                                                 }
4285                                                                         },
4286                                                                         HTLCForwardInfo::FailHTLC { .. } => {
4287                                                                                 // Channel went away before we could fail it. This implies
4288                                                                                 // the channel is now on chain and our counterparty is
4289                                                                                 // trying to broadcast the HTLC-Timeout, but that's their
4290                                                                                 // problem, not ours.
4291                                                                         }
4292                                                                 }
4293                                                         }
4294                                                 }
4295                                         }
4296                                         let (counterparty_node_id, forward_chan_id) = match self.short_to_chan_info.read().unwrap().get(&short_chan_id) {
4297                                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
4298                                                 None => {
4299                                                         forwarding_channel_not_found!();
4300                                                         continue;
4301                                                 }
4302                                         };
4303                                         let per_peer_state = self.per_peer_state.read().unwrap();
4304                                         let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
4305                                         if peer_state_mutex_opt.is_none() {
4306                                                 forwarding_channel_not_found!();
4307                                                 continue;
4308                                         }
4309                                         let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
4310                                         let peer_state = &mut *peer_state_lock;
4311                                         if let Some(ChannelPhase::Funded(ref mut chan)) = peer_state.channel_by_id.get_mut(&forward_chan_id) {
4312                                                 for forward_info in pending_forwards.drain(..) {
4313                                                         match forward_info {
4314                                                                 HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4315                                                                         prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4316                                                                         forward_info: PendingHTLCInfo {
4317                                                                                 incoming_shared_secret, payment_hash, outgoing_amt_msat, outgoing_cltv_value,
4318                                                                                 routing: PendingHTLCRouting::Forward { onion_packet, .. }, skimmed_fee_msat, ..
4319                                                                         },
4320                                                                 }) => {
4321                                                                         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);
4322                                                                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4323                                                                                 short_channel_id: prev_short_channel_id,
4324                                                                                 user_channel_id: Some(prev_user_channel_id),
4325                                                                                 outpoint: prev_funding_outpoint,
4326                                                                                 htlc_id: prev_htlc_id,
4327                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
4328                                                                                 // Phantom payments are only PendingHTLCRouting::Receive.
4329                                                                                 phantom_shared_secret: None,
4330                                                                         });
4331                                                                         if let Err(e) = chan.queue_add_htlc(outgoing_amt_msat,
4332                                                                                 payment_hash, outgoing_cltv_value, htlc_source.clone(),
4333                                                                                 onion_packet, skimmed_fee_msat, &self.fee_estimator,
4334                                                                                 &self.logger)
4335                                                                         {
4336                                                                                 if let ChannelError::Ignore(msg) = e {
4337                                                                                         log_trace!(self.logger, "Failed to forward HTLC with payment_hash {}: {}", &payment_hash, msg);
4338                                                                                 } else {
4339                                                                                         panic!("Stated return value requirements in send_htlc() were not met");
4340                                                                                 }
4341                                                                                 let (failure_code, data) = self.get_htlc_temp_fail_err_and_data(0x1000|7, short_chan_id, chan);
4342                                                                                 failed_forwards.push((htlc_source, payment_hash,
4343                                                                                         HTLCFailReason::reason(failure_code, data),
4344                                                                                         HTLCDestination::NextHopChannel { node_id: Some(chan.context.get_counterparty_node_id()), channel_id: forward_chan_id }
4345                                                                                 ));
4346                                                                                 continue;
4347                                                                         }
4348                                                                 },
4349                                                                 HTLCForwardInfo::AddHTLC { .. } => {
4350                                                                         panic!("short_channel_id != 0 should imply any pending_forward entries are of type Forward");
4351                                                                 },
4352                                                                 HTLCForwardInfo::FailHTLC { htlc_id, err_packet } => {
4353                                                                         log_trace!(self.logger, "Failing HTLC back to channel with short id {} (backward HTLC ID {}) after delay", short_chan_id, htlc_id);
4354                                                                         if let Err(e) = chan.queue_fail_htlc(
4355                                                                                 htlc_id, err_packet, &self.logger
4356                                                                         ) {
4357                                                                                 if let ChannelError::Ignore(msg) = e {
4358                                                                                         log_trace!(self.logger, "Failed to fail HTLC with ID {} backwards to short_id {}: {}", htlc_id, short_chan_id, msg);
4359                                                                                 } else {
4360                                                                                         panic!("Stated return value requirements in queue_fail_htlc() were not met");
4361                                                                                 }
4362                                                                                 // fail-backs are best-effort, we probably already have one
4363                                                                                 // pending, and if not that's OK, if not, the channel is on
4364                                                                                 // the chain and sending the HTLC-Timeout is their problem.
4365                                                                                 continue;
4366                                                                         }
4367                                                                 },
4368                                                         }
4369                                                 }
4370                                         } else {
4371                                                 forwarding_channel_not_found!();
4372                                                 continue;
4373                                         }
4374                                 } else {
4375                                         'next_forwardable_htlc: for forward_info in pending_forwards.drain(..) {
4376                                                 match forward_info {
4377                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4378                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4379                                                                 forward_info: PendingHTLCInfo {
4380                                                                         routing, incoming_shared_secret, payment_hash, incoming_amt_msat, outgoing_amt_msat,
4381                                                                         skimmed_fee_msat, ..
4382                                                                 }
4383                                                         }) => {
4384                                                                 let (cltv_expiry, onion_payload, payment_data, phantom_shared_secret, mut onion_fields) = match routing {
4385                                                                         PendingHTLCRouting::Receive { payment_data, payment_metadata, incoming_cltv_expiry, phantom_shared_secret, custom_tlvs } => {
4386                                                                                 let _legacy_hop_data = Some(payment_data.clone());
4387                                                                                 let onion_fields = RecipientOnionFields { payment_secret: Some(payment_data.payment_secret),
4388                                                                                                 payment_metadata, custom_tlvs };
4389                                                                                 (incoming_cltv_expiry, OnionPayload::Invoice { _legacy_hop_data },
4390                                                                                         Some(payment_data), phantom_shared_secret, onion_fields)
4391                                                                         },
4392                                                                         PendingHTLCRouting::ReceiveKeysend { payment_data, payment_preimage, payment_metadata, incoming_cltv_expiry, custom_tlvs } => {
4393                                                                                 let onion_fields = RecipientOnionFields {
4394                                                                                         payment_secret: payment_data.as_ref().map(|data| data.payment_secret),
4395                                                                                         payment_metadata,
4396                                                                                         custom_tlvs,
4397                                                                                 };
4398                                                                                 (incoming_cltv_expiry, OnionPayload::Spontaneous(payment_preimage),
4399                                                                                         payment_data, None, onion_fields)
4400                                                                         },
4401                                                                         _ => {
4402                                                                                 panic!("short_channel_id == 0 should imply any pending_forward entries are of type Receive");
4403                                                                         }
4404                                                                 };
4405                                                                 let claimable_htlc = ClaimableHTLC {
4406                                                                         prev_hop: HTLCPreviousHopData {
4407                                                                                 short_channel_id: prev_short_channel_id,
4408                                                                                 user_channel_id: Some(prev_user_channel_id),
4409                                                                                 outpoint: prev_funding_outpoint,
4410                                                                                 htlc_id: prev_htlc_id,
4411                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
4412                                                                                 phantom_shared_secret,
4413                                                                         },
4414                                                                         // We differentiate the received value from the sender intended value
4415                                                                         // if possible so that we don't prematurely mark MPP payments complete
4416                                                                         // if routing nodes overpay
4417                                                                         value: incoming_amt_msat.unwrap_or(outgoing_amt_msat),
4418                                                                         sender_intended_value: outgoing_amt_msat,
4419                                                                         timer_ticks: 0,
4420                                                                         total_value_received: None,
4421                                                                         total_msat: if let Some(data) = &payment_data { data.total_msat } else { outgoing_amt_msat },
4422                                                                         cltv_expiry,
4423                                                                         onion_payload,
4424                                                                         counterparty_skimmed_fee_msat: skimmed_fee_msat,
4425                                                                 };
4426
4427                                                                 let mut committed_to_claimable = false;
4428
4429                                                                 macro_rules! fail_htlc {
4430                                                                         ($htlc: expr, $payment_hash: expr) => {
4431                                                                                 debug_assert!(!committed_to_claimable);
4432                                                                                 let mut htlc_msat_height_data = $htlc.value.to_be_bytes().to_vec();
4433                                                                                 htlc_msat_height_data.extend_from_slice(
4434                                                                                         &self.best_block.read().unwrap().height().to_be_bytes(),
4435                                                                                 );
4436                                                                                 failed_forwards.push((HTLCSource::PreviousHopData(HTLCPreviousHopData {
4437                                                                                                 short_channel_id: $htlc.prev_hop.short_channel_id,
4438                                                                                                 user_channel_id: $htlc.prev_hop.user_channel_id,
4439                                                                                                 outpoint: prev_funding_outpoint,
4440                                                                                                 htlc_id: $htlc.prev_hop.htlc_id,
4441                                                                                                 incoming_packet_shared_secret: $htlc.prev_hop.incoming_packet_shared_secret,
4442                                                                                                 phantom_shared_secret,
4443                                                                                         }), payment_hash,
4444                                                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
4445                                                                                         HTLCDestination::FailedPayment { payment_hash: $payment_hash },
4446                                                                                 ));
4447                                                                                 continue 'next_forwardable_htlc;
4448                                                                         }
4449                                                                 }
4450                                                                 let phantom_shared_secret = claimable_htlc.prev_hop.phantom_shared_secret;
4451                                                                 let mut receiver_node_id = self.our_network_pubkey;
4452                                                                 if phantom_shared_secret.is_some() {
4453                                                                         receiver_node_id = self.node_signer.get_node_id(Recipient::PhantomNode)
4454                                                                                 .expect("Failed to get node_id for phantom node recipient");
4455                                                                 }
4456
4457                                                                 macro_rules! check_total_value {
4458                                                                         ($purpose: expr) => {{
4459                                                                                 let mut payment_claimable_generated = false;
4460                                                                                 let is_keysend = match $purpose {
4461                                                                                         events::PaymentPurpose::SpontaneousPayment(_) => true,
4462                                                                                         events::PaymentPurpose::InvoicePayment { .. } => false,
4463                                                                                 };
4464                                                                                 let mut claimable_payments = self.claimable_payments.lock().unwrap();
4465                                                                                 if claimable_payments.pending_claiming_payments.contains_key(&payment_hash) {
4466                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4467                                                                                 }
4468                                                                                 let ref mut claimable_payment = claimable_payments.claimable_payments
4469                                                                                         .entry(payment_hash)
4470                                                                                         // Note that if we insert here we MUST NOT fail_htlc!()
4471                                                                                         .or_insert_with(|| {
4472                                                                                                 committed_to_claimable = true;
4473                                                                                                 ClaimablePayment {
4474                                                                                                         purpose: $purpose.clone(), htlcs: Vec::new(), onion_fields: None,
4475                                                                                                 }
4476                                                                                         });
4477                                                                                 if $purpose != claimable_payment.purpose {
4478                                                                                         let log_keysend = |keysend| if keysend { "keysend" } else { "non-keysend" };
4479                                                                                         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));
4480                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4481                                                                                 }
4482                                                                                 if !self.default_configuration.accept_mpp_keysend && is_keysend && !claimable_payment.htlcs.is_empty() {
4483                                                                                         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);
4484                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4485                                                                                 }
4486                                                                                 if let Some(earlier_fields) = &mut claimable_payment.onion_fields {
4487                                                                                         if earlier_fields.check_merge(&mut onion_fields).is_err() {
4488                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4489                                                                                         }
4490                                                                                 } else {
4491                                                                                         claimable_payment.onion_fields = Some(onion_fields);
4492                                                                                 }
4493                                                                                 let ref mut htlcs = &mut claimable_payment.htlcs;
4494                                                                                 let mut total_value = claimable_htlc.sender_intended_value;
4495                                                                                 let mut earliest_expiry = claimable_htlc.cltv_expiry;
4496                                                                                 for htlc in htlcs.iter() {
4497                                                                                         total_value += htlc.sender_intended_value;
4498                                                                                         earliest_expiry = cmp::min(earliest_expiry, htlc.cltv_expiry);
4499                                                                                         if htlc.total_msat != claimable_htlc.total_msat {
4500                                                                                                 log_trace!(self.logger, "Failing HTLCs with payment_hash {} as the HTLCs had inconsistent total values (eg {} and {})",
4501                                                                                                         &payment_hash, claimable_htlc.total_msat, htlc.total_msat);
4502                                                                                                 total_value = msgs::MAX_VALUE_MSAT;
4503                                                                                         }
4504                                                                                         if total_value >= msgs::MAX_VALUE_MSAT { break; }
4505                                                                                 }
4506                                                                                 // The condition determining whether an MPP is complete must
4507                                                                                 // match exactly the condition used in `timer_tick_occurred`
4508                                                                                 if total_value >= msgs::MAX_VALUE_MSAT {
4509                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4510                                                                                 } else if total_value - claimable_htlc.sender_intended_value >= claimable_htlc.total_msat {
4511                                                                                         log_trace!(self.logger, "Failing HTLC with payment_hash {} as payment is already claimable",
4512                                                                                                 &payment_hash);
4513                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4514                                                                                 } else if total_value >= claimable_htlc.total_msat {
4515                                                                                         #[allow(unused_assignments)] {
4516                                                                                                 committed_to_claimable = true;
4517                                                                                         }
4518                                                                                         let prev_channel_id = prev_funding_outpoint.to_channel_id();
4519                                                                                         htlcs.push(claimable_htlc);
4520                                                                                         let amount_msat = htlcs.iter().map(|htlc| htlc.value).sum();
4521                                                                                         htlcs.iter_mut().for_each(|htlc| htlc.total_value_received = Some(amount_msat));
4522                                                                                         let counterparty_skimmed_fee_msat = htlcs.iter()
4523                                                                                                 .map(|htlc| htlc.counterparty_skimmed_fee_msat.unwrap_or(0)).sum();
4524                                                                                         debug_assert!(total_value.saturating_sub(amount_msat) <=
4525                                                                                                 counterparty_skimmed_fee_msat);
4526                                                                                         new_events.push_back((events::Event::PaymentClaimable {
4527                                                                                                 receiver_node_id: Some(receiver_node_id),
4528                                                                                                 payment_hash,
4529                                                                                                 purpose: $purpose,
4530                                                                                                 amount_msat,
4531                                                                                                 counterparty_skimmed_fee_msat,
4532                                                                                                 via_channel_id: Some(prev_channel_id),
4533                                                                                                 via_user_channel_id: Some(prev_user_channel_id),
4534                                                                                                 claim_deadline: Some(earliest_expiry - HTLC_FAIL_BACK_BUFFER),
4535                                                                                                 onion_fields: claimable_payment.onion_fields.clone(),
4536                                                                                         }, None));
4537                                                                                         payment_claimable_generated = true;
4538                                                                                 } else {
4539                                                                                         // Nothing to do - we haven't reached the total
4540                                                                                         // payment value yet, wait until we receive more
4541                                                                                         // MPP parts.
4542                                                                                         htlcs.push(claimable_htlc);
4543                                                                                         #[allow(unused_assignments)] {
4544                                                                                                 committed_to_claimable = true;
4545                                                                                         }
4546                                                                                 }
4547                                                                                 payment_claimable_generated
4548                                                                         }}
4549                                                                 }
4550
4551                                                                 // Check that the payment hash and secret are known. Note that we
4552                                                                 // MUST take care to handle the "unknown payment hash" and
4553                                                                 // "incorrect payment secret" cases here identically or we'd expose
4554                                                                 // that we are the ultimate recipient of the given payment hash.
4555                                                                 // Further, we must not expose whether we have any other HTLCs
4556                                                                 // associated with the same payment_hash pending or not.
4557                                                                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
4558                                                                 match payment_secrets.entry(payment_hash) {
4559                                                                         hash_map::Entry::Vacant(_) => {
4560                                                                                 match claimable_htlc.onion_payload {
4561                                                                                         OnionPayload::Invoice { .. } => {
4562                                                                                                 let payment_data = payment_data.unwrap();
4563                                                                                                 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) {
4564                                                                                                         Ok(result) => result,
4565                                                                                                         Err(()) => {
4566                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as payment verification failed", &payment_hash);
4567                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4568                                                                                                         }
4569                                                                                                 };
4570                                                                                                 if let Some(min_final_cltv_expiry_delta) = min_final_cltv_expiry_delta {
4571                                                                                                         let expected_min_expiry_height = (self.current_best_block().height() + min_final_cltv_expiry_delta as u32) as u64;
4572                                                                                                         if (cltv_expiry as u64) < expected_min_expiry_height {
4573                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as its CLTV expiry was too soon (had {}, earliest expected {})",
4574                                                                                                                         &payment_hash, cltv_expiry, expected_min_expiry_height);
4575                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4576                                                                                                         }
4577                                                                                                 }
4578                                                                                                 let purpose = events::PaymentPurpose::InvoicePayment {
4579                                                                                                         payment_preimage: payment_preimage.clone(),
4580                                                                                                         payment_secret: payment_data.payment_secret,
4581                                                                                                 };
4582                                                                                                 check_total_value!(purpose);
4583                                                                                         },
4584                                                                                         OnionPayload::Spontaneous(preimage) => {
4585                                                                                                 let purpose = events::PaymentPurpose::SpontaneousPayment(preimage);
4586                                                                                                 check_total_value!(purpose);
4587                                                                                         }
4588                                                                                 }
4589                                                                         },
4590                                                                         hash_map::Entry::Occupied(inbound_payment) => {
4591                                                                                 if let OnionPayload::Spontaneous(_) = claimable_htlc.onion_payload {
4592                                                                                         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);
4593                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4594                                                                                 }
4595                                                                                 let payment_data = payment_data.unwrap();
4596                                                                                 if inbound_payment.get().payment_secret != payment_data.payment_secret {
4597                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our expected payment secret.", &payment_hash);
4598                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4599                                                                                 } else if inbound_payment.get().min_value_msat.is_some() && payment_data.total_msat < inbound_payment.get().min_value_msat.unwrap() {
4600                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our minimum value (had {}, needed {}).",
4601                                                                                                 &payment_hash, payment_data.total_msat, inbound_payment.get().min_value_msat.unwrap());
4602                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4603                                                                                 } else {
4604                                                                                         let purpose = events::PaymentPurpose::InvoicePayment {
4605                                                                                                 payment_preimage: inbound_payment.get().payment_preimage,
4606                                                                                                 payment_secret: payment_data.payment_secret,
4607                                                                                         };
4608                                                                                         let payment_claimable_generated = check_total_value!(purpose);
4609                                                                                         if payment_claimable_generated {
4610                                                                                                 inbound_payment.remove_entry();
4611                                                                                         }
4612                                                                                 }
4613                                                                         },
4614                                                                 };
4615                                                         },
4616                                                         HTLCForwardInfo::FailHTLC { .. } => {
4617                                                                 panic!("Got pending fail of our own HTLC");
4618                                                         }
4619                                                 }
4620                                         }
4621                                 }
4622                         }
4623                 }
4624
4625                 let best_block_height = self.best_block.read().unwrap().height();
4626                 self.pending_outbound_payments.check_retry_payments(&self.router, || self.list_usable_channels(),
4627                         || self.compute_inflight_htlcs(), &self.entropy_source, &self.node_signer, best_block_height,
4628                         &self.pending_events, &self.logger, |args| self.send_payment_along_path(args));
4629
4630                 for (htlc_source, payment_hash, failure_reason, destination) in failed_forwards.drain(..) {
4631                         self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
4632                 }
4633                 self.forward_htlcs(&mut phantom_receives);
4634
4635                 // Freeing the holding cell here is relatively redundant - in practice we'll do it when we
4636                 // next get a `get_and_clear_pending_msg_events` call, but some tests rely on it, and it's
4637                 // nice to do the work now if we can rather than while we're trying to get messages in the
4638                 // network stack.
4639                 self.check_free_holding_cells();
4640
4641                 if new_events.is_empty() { return }
4642                 let mut events = self.pending_events.lock().unwrap();
4643                 events.append(&mut new_events);
4644         }
4645
4646         /// Free the background events, generally called from [`PersistenceNotifierGuard`] constructors.
4647         ///
4648         /// Expects the caller to have a total_consistency_lock read lock.
4649         fn process_background_events(&self) -> NotifyOption {
4650                 debug_assert_ne!(self.total_consistency_lock.held_by_thread(), LockHeldState::NotHeldByThread);
4651
4652                 self.background_events_processed_since_startup.store(true, Ordering::Release);
4653
4654                 let mut background_events = Vec::new();
4655                 mem::swap(&mut *self.pending_background_events.lock().unwrap(), &mut background_events);
4656                 if background_events.is_empty() {
4657                         return NotifyOption::SkipPersistNoEvents;
4658                 }
4659
4660                 for event in background_events.drain(..) {
4661                         match event {
4662                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((funding_txo, update)) => {
4663                                         // The channel has already been closed, so no use bothering to care about the
4664                                         // monitor updating completing.
4665                                         let _ = self.chain_monitor.update_channel(funding_txo, &update);
4666                                 },
4667                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup { counterparty_node_id, funding_txo, update } => {
4668                                         let mut updated_chan = false;
4669                                         {
4670                                                 let per_peer_state = self.per_peer_state.read().unwrap();
4671                                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
4672                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4673                                                         let peer_state = &mut *peer_state_lock;
4674                                                         match peer_state.channel_by_id.entry(funding_txo.to_channel_id()) {
4675                                                                 hash_map::Entry::Occupied(mut chan_phase) => {
4676                                                                         if let ChannelPhase::Funded(chan) = chan_phase.get_mut() {
4677                                                                                 updated_chan = true;
4678                                                                                 handle_new_monitor_update!(self, funding_txo, update.clone(),
4679                                                                                         peer_state_lock, peer_state, per_peer_state, chan);
4680                                                                         } else {
4681                                                                                 debug_assert!(false, "We shouldn't have an update for a non-funded channel");
4682                                                                         }
4683                                                                 },
4684                                                                 hash_map::Entry::Vacant(_) => {},
4685                                                         }
4686                                                 }
4687                                         }
4688                                         if !updated_chan {
4689                                                 // TODO: Track this as in-flight even though the channel is closed.
4690                                                 let _ = self.chain_monitor.update_channel(funding_txo, &update);
4691                                         }
4692                                 },
4693                                 BackgroundEvent::MonitorUpdatesComplete { counterparty_node_id, channel_id } => {
4694                                         let per_peer_state = self.per_peer_state.read().unwrap();
4695                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
4696                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4697                                                 let peer_state = &mut *peer_state_lock;
4698                                                 if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&channel_id) {
4699                                                         handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, chan);
4700                                                 } else {
4701                                                         let update_actions = peer_state.monitor_update_blocked_actions
4702                                                                 .remove(&channel_id).unwrap_or(Vec::new());
4703                                                         mem::drop(peer_state_lock);
4704                                                         mem::drop(per_peer_state);
4705                                                         self.handle_monitor_update_completion_actions(update_actions);
4706                                                 }
4707                                         }
4708                                 },
4709                         }
4710                 }
4711                 NotifyOption::DoPersist
4712         }
4713
4714         #[cfg(any(test, feature = "_test_utils"))]
4715         /// Process background events, for functional testing
4716         pub fn test_process_background_events(&self) {
4717                 let _lck = self.total_consistency_lock.read().unwrap();
4718                 let _ = self.process_background_events();
4719         }
4720
4721         fn update_channel_fee(&self, chan_id: &ChannelId, chan: &mut Channel<SP>, new_feerate: u32) -> NotifyOption {
4722                 if !chan.context.is_outbound() { return NotifyOption::SkipPersistNoEvents; }
4723                 // If the feerate has decreased by less than half, don't bother
4724                 if new_feerate <= chan.context.get_feerate_sat_per_1000_weight() && new_feerate * 2 > chan.context.get_feerate_sat_per_1000_weight() {
4725                         log_trace!(self.logger, "Channel {} does not qualify for a feerate change from {} to {}.",
4726                                 chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4727                         return NotifyOption::SkipPersistNoEvents;
4728                 }
4729                 if !chan.context.is_live() {
4730                         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).",
4731                                 chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4732                         return NotifyOption::SkipPersistNoEvents;
4733                 }
4734                 log_trace!(self.logger, "Channel {} qualifies for a feerate change from {} to {}.",
4735                         &chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4736
4737                 chan.queue_update_fee(new_feerate, &self.fee_estimator, &self.logger);
4738                 NotifyOption::DoPersist
4739         }
4740
4741         #[cfg(fuzzing)]
4742         /// In chanmon_consistency we want to sometimes do the channel fee updates done in
4743         /// timer_tick_occurred, but we can't generate the disabled channel updates as it considers
4744         /// these a fuzz failure (as they usually indicate a channel force-close, which is exactly what
4745         /// it wants to detect). Thus, we have a variant exposed here for its benefit.
4746         pub fn maybe_update_chan_fees(&self) {
4747                 PersistenceNotifierGuard::optionally_notify(self, || {
4748                         let mut should_persist = NotifyOption::SkipPersistNoEvents;
4749
4750                         let normal_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
4751                         let min_mempool_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::MempoolMinimum);
4752
4753                         let per_peer_state = self.per_peer_state.read().unwrap();
4754                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
4755                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4756                                 let peer_state = &mut *peer_state_lock;
4757                                 for (chan_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
4758                                         |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
4759                                 ) {
4760                                         let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
4761                                                 min_mempool_feerate
4762                                         } else {
4763                                                 normal_feerate
4764                                         };
4765                                         let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4766                                         if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4767                                 }
4768                         }
4769
4770                         should_persist
4771                 });
4772         }
4773
4774         /// Performs actions which should happen on startup and roughly once per minute thereafter.
4775         ///
4776         /// This currently includes:
4777         ///  * Increasing or decreasing the on-chain feerate estimates for our outbound channels,
4778         ///  * Broadcasting [`ChannelUpdate`] messages if we've been disconnected from our peer for more
4779         ///    than a minute, informing the network that they should no longer attempt to route over
4780         ///    the channel.
4781         ///  * Expiring a channel's previous [`ChannelConfig`] if necessary to only allow forwarding HTLCs
4782         ///    with the current [`ChannelConfig`].
4783         ///  * Removing peers which have disconnected but and no longer have any channels.
4784         ///  * Force-closing and removing channels which have not completed establishment in a timely manner.
4785         ///
4786         /// Note that this may cause reentrancy through [`chain::Watch::update_channel`] calls or feerate
4787         /// estimate fetches.
4788         ///
4789         /// [`ChannelUpdate`]: msgs::ChannelUpdate
4790         /// [`ChannelConfig`]: crate::util::config::ChannelConfig
4791         pub fn timer_tick_occurred(&self) {
4792                 PersistenceNotifierGuard::optionally_notify(self, || {
4793                         let mut should_persist = NotifyOption::SkipPersistNoEvents;
4794
4795                         let normal_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
4796                         let min_mempool_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::MempoolMinimum);
4797
4798                         let mut handle_errors: Vec<(Result<(), _>, _)> = Vec::new();
4799                         let mut timed_out_mpp_htlcs = Vec::new();
4800                         let mut pending_peers_awaiting_removal = Vec::new();
4801                         let mut shutdown_channels = Vec::new();
4802
4803                         let mut process_unfunded_channel_tick = |
4804                                 chan_id: &ChannelId,
4805                                 context: &mut ChannelContext<SP>,
4806                                 unfunded_context: &mut UnfundedChannelContext,
4807                                 pending_msg_events: &mut Vec<MessageSendEvent>,
4808                                 counterparty_node_id: PublicKey,
4809                         | {
4810                                 context.maybe_expire_prev_config();
4811                                 if unfunded_context.should_expire_unfunded_channel() {
4812                                         log_error!(self.logger,
4813                                                 "Force-closing pending channel with ID {} for not establishing in a timely manner", chan_id);
4814                                         update_maps_on_chan_removal!(self, &context);
4815                                         self.issue_channel_close_events(&context, ClosureReason::HolderForceClosed);
4816                                         shutdown_channels.push(context.force_shutdown(false));
4817                                         pending_msg_events.push(MessageSendEvent::HandleError {
4818                                                 node_id: counterparty_node_id,
4819                                                 action: msgs::ErrorAction::SendErrorMessage {
4820                                                         msg: msgs::ErrorMessage {
4821                                                                 channel_id: *chan_id,
4822                                                                 data: "Force-closing pending channel due to timeout awaiting establishment handshake".to_owned(),
4823                                                         },
4824                                                 },
4825                                         });
4826                                         false
4827                                 } else {
4828                                         true
4829                                 }
4830                         };
4831
4832                         {
4833                                 let per_peer_state = self.per_peer_state.read().unwrap();
4834                                 for (counterparty_node_id, peer_state_mutex) in per_peer_state.iter() {
4835                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4836                                         let peer_state = &mut *peer_state_lock;
4837                                         let pending_msg_events = &mut peer_state.pending_msg_events;
4838                                         let counterparty_node_id = *counterparty_node_id;
4839                                         peer_state.channel_by_id.retain(|chan_id, phase| {
4840                                                 match phase {
4841                                                         ChannelPhase::Funded(chan) => {
4842                                                                 let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
4843                                                                         min_mempool_feerate
4844                                                                 } else {
4845                                                                         normal_feerate
4846                                                                 };
4847                                                                 let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4848                                                                 if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4849
4850                                                                 if let Err(e) = chan.timer_check_closing_negotiation_progress() {
4851                                                                         let (needs_close, err) = convert_chan_phase_err!(self, e, chan, chan_id, FUNDED_CHANNEL);
4852                                                                         handle_errors.push((Err(err), counterparty_node_id));
4853                                                                         if needs_close { return false; }
4854                                                                 }
4855
4856                                                                 match chan.channel_update_status() {
4857                                                                         ChannelUpdateStatus::Enabled if !chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(0)),
4858                                                                         ChannelUpdateStatus::Disabled if chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(0)),
4859                                                                         ChannelUpdateStatus::DisabledStaged(_) if chan.context.is_live()
4860                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Enabled),
4861                                                                         ChannelUpdateStatus::EnabledStaged(_) if !chan.context.is_live()
4862                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Disabled),
4863                                                                         ChannelUpdateStatus::DisabledStaged(mut n) if !chan.context.is_live() => {
4864                                                                                 n += 1;
4865                                                                                 if n >= DISABLE_GOSSIP_TICKS {
4866                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Disabled);
4867                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4868                                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4869                                                                                                         msg: update
4870                                                                                                 });
4871                                                                                         }
4872                                                                                         should_persist = NotifyOption::DoPersist;
4873                                                                                 } else {
4874                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(n));
4875                                                                                 }
4876                                                                         },
4877                                                                         ChannelUpdateStatus::EnabledStaged(mut n) if chan.context.is_live() => {
4878                                                                                 n += 1;
4879                                                                                 if n >= ENABLE_GOSSIP_TICKS {
4880                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Enabled);
4881                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4882                                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4883                                                                                                         msg: update
4884                                                                                                 });
4885                                                                                         }
4886                                                                                         should_persist = NotifyOption::DoPersist;
4887                                                                                 } else {
4888                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(n));
4889                                                                                 }
4890                                                                         },
4891                                                                         _ => {},
4892                                                                 }
4893
4894                                                                 chan.context.maybe_expire_prev_config();
4895
4896                                                                 if chan.should_disconnect_peer_awaiting_response() {
4897                                                                         log_debug!(self.logger, "Disconnecting peer {} due to not making any progress on channel {}",
4898                                                                                         counterparty_node_id, chan_id);
4899                                                                         pending_msg_events.push(MessageSendEvent::HandleError {
4900                                                                                 node_id: counterparty_node_id,
4901                                                                                 action: msgs::ErrorAction::DisconnectPeerWithWarning {
4902                                                                                         msg: msgs::WarningMessage {
4903                                                                                                 channel_id: *chan_id,
4904                                                                                                 data: "Disconnecting due to timeout awaiting response".to_owned(),
4905                                                                                         },
4906                                                                                 },
4907                                                                         });
4908                                                                 }
4909
4910                                                                 true
4911                                                         },
4912                                                         ChannelPhase::UnfundedInboundV1(chan) => {
4913                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
4914                                                                         pending_msg_events, counterparty_node_id)
4915                                                         },
4916                                                         ChannelPhase::UnfundedOutboundV1(chan) => {
4917                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
4918                                                                         pending_msg_events, counterparty_node_id)
4919                                                         },
4920                                                 }
4921                                         });
4922
4923                                         for (chan_id, req) in peer_state.inbound_channel_request_by_id.iter_mut() {
4924                                                 if { req.ticks_remaining -= 1 ; req.ticks_remaining } <= 0 {
4925                                                         log_error!(self.logger, "Force-closing unaccepted inbound channel {} for not accepting in a timely manner", &chan_id);
4926                                                         peer_state.pending_msg_events.push(
4927                                                                 events::MessageSendEvent::HandleError {
4928                                                                         node_id: counterparty_node_id,
4929                                                                         action: msgs::ErrorAction::SendErrorMessage {
4930                                                                                 msg: msgs::ErrorMessage { channel_id: chan_id.clone(), data: "Channel force-closed".to_owned() }
4931                                                                         },
4932                                                                 }
4933                                                         );
4934                                                 }
4935                                         }
4936                                         peer_state.inbound_channel_request_by_id.retain(|_, req| req.ticks_remaining > 0);
4937
4938                                         if peer_state.ok_to_remove(true) {
4939                                                 pending_peers_awaiting_removal.push(counterparty_node_id);
4940                                         }
4941                                 }
4942                         }
4943
4944                         // When a peer disconnects but still has channels, the peer's `peer_state` entry in the
4945                         // `per_peer_state` is not removed by the `peer_disconnected` function. If the channels
4946                         // of to that peer is later closed while still being disconnected (i.e. force closed),
4947                         // we therefore need to remove the peer from `peer_state` separately.
4948                         // To avoid having to take the `per_peer_state` `write` lock once the channels are
4949                         // closed, we instead remove such peers awaiting removal here on a timer, to limit the
4950                         // negative effects on parallelism as much as possible.
4951                         if pending_peers_awaiting_removal.len() > 0 {
4952                                 let mut per_peer_state = self.per_peer_state.write().unwrap();
4953                                 for counterparty_node_id in pending_peers_awaiting_removal {
4954                                         match per_peer_state.entry(counterparty_node_id) {
4955                                                 hash_map::Entry::Occupied(entry) => {
4956                                                         // Remove the entry if the peer is still disconnected and we still
4957                                                         // have no channels to the peer.
4958                                                         let remove_entry = {
4959                                                                 let peer_state = entry.get().lock().unwrap();
4960                                                                 peer_state.ok_to_remove(true)
4961                                                         };
4962                                                         if remove_entry {
4963                                                                 entry.remove_entry();
4964                                                         }
4965                                                 },
4966                                                 hash_map::Entry::Vacant(_) => { /* The PeerState has already been removed */ }
4967                                         }
4968                                 }
4969                         }
4970
4971                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
4972                                 if payment.htlcs.is_empty() {
4973                                         // This should be unreachable
4974                                         debug_assert!(false);
4975                                         return false;
4976                                 }
4977                                 if let OnionPayload::Invoice { .. } = payment.htlcs[0].onion_payload {
4978                                         // Check if we've received all the parts we need for an MPP (the value of the parts adds to total_msat).
4979                                         // In this case we're not going to handle any timeouts of the parts here.
4980                                         // This condition determining whether the MPP is complete here must match
4981                                         // exactly the condition used in `process_pending_htlc_forwards`.
4982                                         if payment.htlcs[0].total_msat <= payment.htlcs.iter()
4983                                                 .fold(0, |total, htlc| total + htlc.sender_intended_value)
4984                                         {
4985                                                 return true;
4986                                         } else if payment.htlcs.iter_mut().any(|htlc| {
4987                                                 htlc.timer_ticks += 1;
4988                                                 return htlc.timer_ticks >= MPP_TIMEOUT_TICKS
4989                                         }) {
4990                                                 timed_out_mpp_htlcs.extend(payment.htlcs.drain(..)
4991                                                         .map(|htlc: ClaimableHTLC| (htlc.prev_hop, *payment_hash)));
4992                                                 return false;
4993                                         }
4994                                 }
4995                                 true
4996                         });
4997
4998                         for htlc_source in timed_out_mpp_htlcs.drain(..) {
4999                                 let source = HTLCSource::PreviousHopData(htlc_source.0.clone());
5000                                 let reason = HTLCFailReason::from_failure_code(23);
5001                                 let receiver = HTLCDestination::FailedPayment { payment_hash: htlc_source.1 };
5002                                 self.fail_htlc_backwards_internal(&source, &htlc_source.1, &reason, receiver);
5003                         }
5004
5005                         for (err, counterparty_node_id) in handle_errors.drain(..) {
5006                                 let _ = handle_error!(self, err, counterparty_node_id);
5007                         }
5008
5009                         for shutdown_res in shutdown_channels {
5010                                 self.finish_close_channel(shutdown_res);
5011                         }
5012
5013                         self.pending_outbound_payments.remove_stale_payments(&self.pending_events);
5014
5015                         // Technically we don't need to do this here, but if we have holding cell entries in a
5016                         // channel that need freeing, it's better to do that here and block a background task
5017                         // than block the message queueing pipeline.
5018                         if self.check_free_holding_cells() {
5019                                 should_persist = NotifyOption::DoPersist;
5020                         }
5021
5022                         should_persist
5023                 });
5024         }
5025
5026         /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
5027         /// after a PaymentClaimable event, failing the HTLC back to its origin and freeing resources
5028         /// along the path (including in our own channel on which we received it).
5029         ///
5030         /// Note that in some cases around unclean shutdown, it is possible the payment may have
5031         /// already been claimed by you via [`ChannelManager::claim_funds`] prior to you seeing (a
5032         /// second copy of) the [`events::Event::PaymentClaimable`] event. Alternatively, the payment
5033         /// may have already been failed automatically by LDK if it was nearing its expiration time.
5034         ///
5035         /// While LDK will never claim a payment automatically on your behalf (i.e. without you calling
5036         /// [`ChannelManager::claim_funds`]), you should still monitor for
5037         /// [`events::Event::PaymentClaimed`] events even for payments you intend to fail, especially on
5038         /// startup during which time claims that were in-progress at shutdown may be replayed.
5039         pub fn fail_htlc_backwards(&self, payment_hash: &PaymentHash) {
5040                 self.fail_htlc_backwards_with_reason(payment_hash, FailureCode::IncorrectOrUnknownPaymentDetails);
5041         }
5042
5043         /// This is a variant of [`ChannelManager::fail_htlc_backwards`] that allows you to specify the
5044         /// reason for the failure.
5045         ///
5046         /// See [`FailureCode`] for valid failure codes.
5047         pub fn fail_htlc_backwards_with_reason(&self, payment_hash: &PaymentHash, failure_code: FailureCode) {
5048                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5049
5050                 let removed_source = self.claimable_payments.lock().unwrap().claimable_payments.remove(payment_hash);
5051                 if let Some(payment) = removed_source {
5052                         for htlc in payment.htlcs {
5053                                 let reason = self.get_htlc_fail_reason_from_failure_code(failure_code, &htlc);
5054                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
5055                                 let receiver = HTLCDestination::FailedPayment { payment_hash: *payment_hash };
5056                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
5057                         }
5058                 }
5059         }
5060
5061         /// Gets error data to form an [`HTLCFailReason`] given a [`FailureCode`] and [`ClaimableHTLC`].
5062         fn get_htlc_fail_reason_from_failure_code(&self, failure_code: FailureCode, htlc: &ClaimableHTLC) -> HTLCFailReason {
5063                 match failure_code {
5064                         FailureCode::TemporaryNodeFailure => HTLCFailReason::from_failure_code(failure_code.into()),
5065                         FailureCode::RequiredNodeFeatureMissing => HTLCFailReason::from_failure_code(failure_code.into()),
5066                         FailureCode::IncorrectOrUnknownPaymentDetails => {
5067                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
5068                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
5069                                 HTLCFailReason::reason(failure_code.into(), htlc_msat_height_data)
5070                         },
5071                         FailureCode::InvalidOnionPayload(data) => {
5072                                 let fail_data = match data {
5073                                         Some((typ, offset)) => [BigSize(typ).encode(), offset.encode()].concat(),
5074                                         None => Vec::new(),
5075                                 };
5076                                 HTLCFailReason::reason(failure_code.into(), fail_data)
5077                         }
5078                 }
5079         }
5080
5081         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
5082         /// that we want to return and a channel.
5083         ///
5084         /// This is for failures on the channel on which the HTLC was *received*, not failures
5085         /// forwarding
5086         fn get_htlc_inbound_temp_fail_err_and_data(&self, desired_err_code: u16, chan: &Channel<SP>) -> (u16, Vec<u8>) {
5087                 // We can't be sure what SCID was used when relaying inbound towards us, so we have to
5088                 // guess somewhat. If its a public channel, we figure best to just use the real SCID (as
5089                 // we're not leaking that we have a channel with the counterparty), otherwise we try to use
5090                 // an inbound SCID alias before the real SCID.
5091                 let scid_pref = if chan.context.should_announce() {
5092                         chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias())
5093                 } else {
5094                         chan.context.latest_inbound_scid_alias().or(chan.context.get_short_channel_id())
5095                 };
5096                 if let Some(scid) = scid_pref {
5097                         self.get_htlc_temp_fail_err_and_data(desired_err_code, scid, chan)
5098                 } else {
5099                         (0x4000|10, Vec::new())
5100                 }
5101         }
5102
5103
5104         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
5105         /// that we want to return and a channel.
5106         fn get_htlc_temp_fail_err_and_data(&self, desired_err_code: u16, scid: u64, chan: &Channel<SP>) -> (u16, Vec<u8>) {
5107                 debug_assert_eq!(desired_err_code & 0x1000, 0x1000);
5108                 if let Ok(upd) = self.get_channel_update_for_onion(scid, chan) {
5109                         let mut enc = VecWriter(Vec::with_capacity(upd.serialized_length() + 6));
5110                         if desired_err_code == 0x1000 | 20 {
5111                                 // No flags for `disabled_flags` are currently defined so they're always two zero bytes.
5112                                 // See https://github.com/lightning/bolts/blob/341ec84/04-onion-routing.md?plain=1#L1008
5113                                 0u16.write(&mut enc).expect("Writes cannot fail");
5114                         }
5115                         (upd.serialized_length() as u16 + 2).write(&mut enc).expect("Writes cannot fail");
5116                         msgs::ChannelUpdate::TYPE.write(&mut enc).expect("Writes cannot fail");
5117                         upd.write(&mut enc).expect("Writes cannot fail");
5118                         (desired_err_code, enc.0)
5119                 } else {
5120                         // If we fail to get a unicast channel_update, it implies we don't yet have an SCID,
5121                         // which means we really shouldn't have gotten a payment to be forwarded over this
5122                         // channel yet, or if we did it's from a route hint. Either way, returning an error of
5123                         // PERM|no_such_channel should be fine.
5124                         (0x4000|10, Vec::new())
5125                 }
5126         }
5127
5128         // Fail a list of HTLCs that were just freed from the holding cell. The HTLCs need to be
5129         // failed backwards or, if they were one of our outgoing HTLCs, then their failure needs to
5130         // be surfaced to the user.
5131         fn fail_holding_cell_htlcs(
5132                 &self, mut htlcs_to_fail: Vec<(HTLCSource, PaymentHash)>, channel_id: ChannelId,
5133                 counterparty_node_id: &PublicKey
5134         ) {
5135                 let (failure_code, onion_failure_data) = {
5136                         let per_peer_state = self.per_peer_state.read().unwrap();
5137                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
5138                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5139                                 let peer_state = &mut *peer_state_lock;
5140                                 match peer_state.channel_by_id.entry(channel_id) {
5141                                         hash_map::Entry::Occupied(chan_phase_entry) => {
5142                                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get() {
5143                                                         self.get_htlc_inbound_temp_fail_err_and_data(0x1000|7, &chan)
5144                                                 } else {
5145                                                         // We shouldn't be trying to fail holding cell HTLCs on an unfunded channel.
5146                                                         debug_assert!(false);
5147                                                         (0x4000|10, Vec::new())
5148                                                 }
5149                                         },
5150                                         hash_map::Entry::Vacant(_) => (0x4000|10, Vec::new())
5151                                 }
5152                         } else { (0x4000|10, Vec::new()) }
5153                 };
5154
5155                 for (htlc_src, payment_hash) in htlcs_to_fail.drain(..) {
5156                         let reason = HTLCFailReason::reason(failure_code, onion_failure_data.clone());
5157                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id };
5158                         self.fail_htlc_backwards_internal(&htlc_src, &payment_hash, &reason, receiver);
5159                 }
5160         }
5161
5162         /// Fails an HTLC backwards to the sender of it to us.
5163         /// Note that we do not assume that channels corresponding to failed HTLCs are still available.
5164         fn fail_htlc_backwards_internal(&self, source: &HTLCSource, payment_hash: &PaymentHash, onion_error: &HTLCFailReason, destination: HTLCDestination) {
5165                 // Ensure that no peer state channel storage lock is held when calling this function.
5166                 // This ensures that future code doesn't introduce a lock-order requirement for
5167                 // `forward_htlcs` to be locked after the `per_peer_state` peer locks, which calling
5168                 // this function with any `per_peer_state` peer lock acquired would.
5169                 #[cfg(debug_assertions)]
5170                 for (_, peer) in self.per_peer_state.read().unwrap().iter() {
5171                         debug_assert_ne!(peer.held_by_thread(), LockHeldState::HeldByThread);
5172                 }
5173
5174                 //TODO: There is a timing attack here where if a node fails an HTLC back to us they can
5175                 //identify whether we sent it or not based on the (I presume) very different runtime
5176                 //between the branches here. We should make this async and move it into the forward HTLCs
5177                 //timer handling.
5178
5179                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
5180                 // from block_connected which may run during initialization prior to the chain_monitor
5181                 // being fully configured. See the docs for `ChannelManagerReadArgs` for more.
5182                 match source {
5183                         HTLCSource::OutboundRoute { ref path, ref session_priv, ref payment_id, .. } => {
5184                                 if self.pending_outbound_payments.fail_htlc(source, payment_hash, onion_error, path,
5185                                         session_priv, payment_id, self.probing_cookie_secret, &self.secp_ctx,
5186                                         &self.pending_events, &self.logger)
5187                                 { self.push_pending_forwards_ev(); }
5188                         },
5189                         HTLCSource::PreviousHopData(HTLCPreviousHopData { ref short_channel_id, ref htlc_id, ref incoming_packet_shared_secret, ref phantom_shared_secret, ref outpoint, .. }) => {
5190                                 log_trace!(self.logger, "Failing HTLC with payment_hash {} backwards from us with {:?}", &payment_hash, onion_error);
5191                                 let err_packet = onion_error.get_encrypted_failure_packet(incoming_packet_shared_secret, phantom_shared_secret);
5192
5193                                 let mut push_forward_ev = false;
5194                                 let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
5195                                 if forward_htlcs.is_empty() {
5196                                         push_forward_ev = true;
5197                                 }
5198                                 match forward_htlcs.entry(*short_channel_id) {
5199                                         hash_map::Entry::Occupied(mut entry) => {
5200                                                 entry.get_mut().push(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet });
5201                                         },
5202                                         hash_map::Entry::Vacant(entry) => {
5203                                                 entry.insert(vec!(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet }));
5204                                         }
5205                                 }
5206                                 mem::drop(forward_htlcs);
5207                                 if push_forward_ev { self.push_pending_forwards_ev(); }
5208                                 let mut pending_events = self.pending_events.lock().unwrap();
5209                                 pending_events.push_back((events::Event::HTLCHandlingFailed {
5210                                         prev_channel_id: outpoint.to_channel_id(),
5211                                         failed_next_destination: destination,
5212                                 }, None));
5213                         },
5214                 }
5215         }
5216
5217         /// Provides a payment preimage in response to [`Event::PaymentClaimable`], generating any
5218         /// [`MessageSendEvent`]s needed to claim the payment.
5219         ///
5220         /// This method is guaranteed to ensure the payment has been claimed but only if the current
5221         /// height is strictly below [`Event::PaymentClaimable::claim_deadline`]. To avoid race
5222         /// conditions, you should wait for an [`Event::PaymentClaimed`] before considering the payment
5223         /// successful. It will generally be available in the next [`process_pending_events`] call.
5224         ///
5225         /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
5226         /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentClaimable`
5227         /// event matches your expectation. If you fail to do so and call this method, you may provide
5228         /// the sender "proof-of-payment" when they did not fulfill the full expected payment.
5229         ///
5230         /// This function will fail the payment if it has custom TLVs with even type numbers, as we
5231         /// will assume they are unknown. If you intend to accept even custom TLVs, you should use
5232         /// [`claim_funds_with_known_custom_tlvs`].
5233         ///
5234         /// [`Event::PaymentClaimable`]: crate::events::Event::PaymentClaimable
5235         /// [`Event::PaymentClaimable::claim_deadline`]: crate::events::Event::PaymentClaimable::claim_deadline
5236         /// [`Event::PaymentClaimed`]: crate::events::Event::PaymentClaimed
5237         /// [`process_pending_events`]: EventsProvider::process_pending_events
5238         /// [`create_inbound_payment`]: Self::create_inbound_payment
5239         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
5240         /// [`claim_funds_with_known_custom_tlvs`]: Self::claim_funds_with_known_custom_tlvs
5241         pub fn claim_funds(&self, payment_preimage: PaymentPreimage) {
5242                 self.claim_payment_internal(payment_preimage, false);
5243         }
5244
5245         /// This is a variant of [`claim_funds`] that allows accepting a payment with custom TLVs with
5246         /// even type numbers.
5247         ///
5248         /// # Note
5249         ///
5250         /// You MUST check you've understood all even TLVs before using this to
5251         /// claim, otherwise you may unintentionally agree to some protocol you do not understand.
5252         ///
5253         /// [`claim_funds`]: Self::claim_funds
5254         pub fn claim_funds_with_known_custom_tlvs(&self, payment_preimage: PaymentPreimage) {
5255                 self.claim_payment_internal(payment_preimage, true);
5256         }
5257
5258         fn claim_payment_internal(&self, payment_preimage: PaymentPreimage, custom_tlvs_known: bool) {
5259                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
5260
5261                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5262
5263                 let mut sources = {
5264                         let mut claimable_payments = self.claimable_payments.lock().unwrap();
5265                         if let Some(payment) = claimable_payments.claimable_payments.remove(&payment_hash) {
5266                                 let mut receiver_node_id = self.our_network_pubkey;
5267                                 for htlc in payment.htlcs.iter() {
5268                                         if htlc.prev_hop.phantom_shared_secret.is_some() {
5269                                                 let phantom_pubkey = self.node_signer.get_node_id(Recipient::PhantomNode)
5270                                                         .expect("Failed to get node_id for phantom node recipient");
5271                                                 receiver_node_id = phantom_pubkey;
5272                                                 break;
5273                                         }
5274                                 }
5275
5276                                 let htlcs = payment.htlcs.iter().map(events::ClaimedHTLC::from).collect();
5277                                 let sender_intended_value = payment.htlcs.first().map(|htlc| htlc.total_msat);
5278                                 let dup_purpose = claimable_payments.pending_claiming_payments.insert(payment_hash,
5279                                         ClaimingPayment { amount_msat: payment.htlcs.iter().map(|source| source.value).sum(),
5280                                         payment_purpose: payment.purpose, receiver_node_id, htlcs, sender_intended_value
5281                                 });
5282                                 if dup_purpose.is_some() {
5283                                         debug_assert!(false, "Shouldn't get a duplicate pending claim event ever");
5284                                         log_error!(self.logger, "Got a duplicate pending claimable event on payment hash {}! Please report this bug",
5285                                                 &payment_hash);
5286                                 }
5287
5288                                 if let Some(RecipientOnionFields { ref custom_tlvs, .. }) = payment.onion_fields {
5289                                         if !custom_tlvs_known && custom_tlvs.iter().any(|(typ, _)| typ % 2 == 0) {
5290                                                 log_info!(self.logger, "Rejecting payment with payment hash {} as we cannot accept payment with unknown even TLVs: {}",
5291                                                         &payment_hash, log_iter!(custom_tlvs.iter().map(|(typ, _)| typ).filter(|typ| *typ % 2 == 0)));
5292                                                 claimable_payments.pending_claiming_payments.remove(&payment_hash);
5293                                                 mem::drop(claimable_payments);
5294                                                 for htlc in payment.htlcs {
5295                                                         let reason = self.get_htlc_fail_reason_from_failure_code(FailureCode::InvalidOnionPayload(None), &htlc);
5296                                                         let source = HTLCSource::PreviousHopData(htlc.prev_hop);
5297                                                         let receiver = HTLCDestination::FailedPayment { payment_hash };
5298                                                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
5299                                                 }
5300                                                 return;
5301                                         }
5302                                 }
5303
5304                                 payment.htlcs
5305                         } else { return; }
5306                 };
5307                 debug_assert!(!sources.is_empty());
5308
5309                 // Just in case one HTLC has been failed between when we generated the `PaymentClaimable`
5310                 // and when we got here we need to check that the amount we're about to claim matches the
5311                 // amount we told the user in the last `PaymentClaimable`. We also do a sanity-check that
5312                 // the MPP parts all have the same `total_msat`.
5313                 let mut claimable_amt_msat = 0;
5314                 let mut prev_total_msat = None;
5315                 let mut expected_amt_msat = None;
5316                 let mut valid_mpp = true;
5317                 let mut errs = Vec::new();
5318                 let per_peer_state = self.per_peer_state.read().unwrap();
5319                 for htlc in sources.iter() {
5320                         if prev_total_msat.is_some() && prev_total_msat != Some(htlc.total_msat) {
5321                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different expected total amounts - this should not be reachable!");
5322                                 debug_assert!(false);
5323                                 valid_mpp = false;
5324                                 break;
5325                         }
5326                         prev_total_msat = Some(htlc.total_msat);
5327
5328                         if expected_amt_msat.is_some() && expected_amt_msat != htlc.total_value_received {
5329                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different received total amounts - this should not be reachable!");
5330                                 debug_assert!(false);
5331                                 valid_mpp = false;
5332                                 break;
5333                         }
5334                         expected_amt_msat = htlc.total_value_received;
5335                         claimable_amt_msat += htlc.value;
5336                 }
5337                 mem::drop(per_peer_state);
5338                 if sources.is_empty() || expected_amt_msat.is_none() {
5339                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5340                         log_info!(self.logger, "Attempted to claim an incomplete payment which no longer had any available HTLCs!");
5341                         return;
5342                 }
5343                 if claimable_amt_msat != expected_amt_msat.unwrap() {
5344                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5345                         log_info!(self.logger, "Attempted to claim an incomplete payment, expected {} msat, had {} available to claim.",
5346                                 expected_amt_msat.unwrap(), claimable_amt_msat);
5347                         return;
5348                 }
5349                 if valid_mpp {
5350                         for htlc in sources.drain(..) {
5351                                 if let Err((pk, err)) = self.claim_funds_from_hop(
5352                                         htlc.prev_hop, payment_preimage,
5353                                         |_| Some(MonitorUpdateCompletionAction::PaymentClaimed { payment_hash }))
5354                                 {
5355                                         if let msgs::ErrorAction::IgnoreError = err.err.action {
5356                                                 // We got a temporary failure updating monitor, but will claim the
5357                                                 // HTLC when the monitor updating is restored (or on chain).
5358                                                 log_error!(self.logger, "Temporary failure claiming HTLC, treating as success: {}", err.err.err);
5359                                         } else { errs.push((pk, err)); }
5360                                 }
5361                         }
5362                 }
5363                 if !valid_mpp {
5364                         for htlc in sources.drain(..) {
5365                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
5366                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
5367                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
5368                                 let reason = HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data);
5369                                 let receiver = HTLCDestination::FailedPayment { payment_hash };
5370                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
5371                         }
5372                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5373                 }
5374
5375                 // Now we can handle any errors which were generated.
5376                 for (counterparty_node_id, err) in errs.drain(..) {
5377                         let res: Result<(), _> = Err(err);
5378                         let _ = handle_error!(self, res, counterparty_node_id);
5379                 }
5380         }
5381
5382         fn claim_funds_from_hop<ComplFunc: FnOnce(Option<u64>) -> Option<MonitorUpdateCompletionAction>>(&self,
5383                 prev_hop: HTLCPreviousHopData, payment_preimage: PaymentPreimage, completion_action: ComplFunc)
5384         -> Result<(), (PublicKey, MsgHandleErrInternal)> {
5385                 //TODO: Delay the claimed_funds relaying just like we do outbound relay!
5386
5387                 // If we haven't yet run background events assume we're still deserializing and shouldn't
5388                 // actually pass `ChannelMonitorUpdate`s to users yet. Instead, queue them up as
5389                 // `BackgroundEvent`s.
5390                 let during_init = !self.background_events_processed_since_startup.load(Ordering::Acquire);
5391
5392                 {
5393                         let per_peer_state = self.per_peer_state.read().unwrap();
5394                         let chan_id = prev_hop.outpoint.to_channel_id();
5395                         let counterparty_node_id_opt = match self.short_to_chan_info.read().unwrap().get(&prev_hop.short_channel_id) {
5396                                 Some((cp_id, _dup_chan_id)) => Some(cp_id.clone()),
5397                                 None => None
5398                         };
5399
5400                         let peer_state_opt = counterparty_node_id_opt.as_ref().map(
5401                                 |counterparty_node_id| per_peer_state.get(counterparty_node_id)
5402                                         .map(|peer_mutex| peer_mutex.lock().unwrap())
5403                         ).unwrap_or(None);
5404
5405                         if peer_state_opt.is_some() {
5406                                 let mut peer_state_lock = peer_state_opt.unwrap();
5407                                 let peer_state = &mut *peer_state_lock;
5408                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(chan_id) {
5409                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
5410                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
5411                                                 let fulfill_res = chan.get_update_fulfill_htlc_and_commit(prev_hop.htlc_id, payment_preimage, &self.logger);
5412
5413                                                 if let UpdateFulfillCommitFetch::NewClaim { htlc_value_msat, monitor_update } = fulfill_res {
5414                                                         if let Some(action) = completion_action(Some(htlc_value_msat)) {
5415                                                                 log_trace!(self.logger, "Tracking monitor update completion action for channel {}: {:?}",
5416                                                                         chan_id, action);
5417                                                                 peer_state.monitor_update_blocked_actions.entry(chan_id).or_insert(Vec::new()).push(action);
5418                                                         }
5419                                                         if !during_init {
5420                                                                 handle_new_monitor_update!(self, prev_hop.outpoint, monitor_update, peer_state_lock,
5421                                                                         peer_state, per_peer_state, chan);
5422                                                         } else {
5423                                                                 // If we're running during init we cannot update a monitor directly -
5424                                                                 // they probably haven't actually been loaded yet. Instead, push the
5425                                                                 // monitor update as a background event.
5426                                                                 self.pending_background_events.lock().unwrap().push(
5427                                                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
5428                                                                                 counterparty_node_id,
5429                                                                                 funding_txo: prev_hop.outpoint,
5430                                                                                 update: monitor_update.clone(),
5431                                                                         });
5432                                                         }
5433                                                 }
5434                                         }
5435                                         return Ok(());
5436                                 }
5437                         }
5438                 }
5439                 let preimage_update = ChannelMonitorUpdate {
5440                         update_id: CLOSED_CHANNEL_UPDATE_ID,
5441                         updates: vec![ChannelMonitorUpdateStep::PaymentPreimage {
5442                                 payment_preimage,
5443                         }],
5444                 };
5445
5446                 if !during_init {
5447                         // We update the ChannelMonitor on the backward link, after
5448                         // receiving an `update_fulfill_htlc` from the forward link.
5449                         let update_res = self.chain_monitor.update_channel(prev_hop.outpoint, &preimage_update);
5450                         if update_res != ChannelMonitorUpdateStatus::Completed {
5451                                 // TODO: This needs to be handled somehow - if we receive a monitor update
5452                                 // with a preimage we *must* somehow manage to propagate it to the upstream
5453                                 // channel, or we must have an ability to receive the same event and try
5454                                 // again on restart.
5455                                 log_error!(self.logger, "Critical error: failed to update channel monitor with preimage {:?}: {:?}",
5456                                         payment_preimage, update_res);
5457                         }
5458                 } else {
5459                         // If we're running during init we cannot update a monitor directly - they probably
5460                         // haven't actually been loaded yet. Instead, push the monitor update as a background
5461                         // event.
5462                         // Note that while it's safe to use `ClosedMonitorUpdateRegeneratedOnStartup` here (the
5463                         // channel is already closed) we need to ultimately handle the monitor update
5464                         // completion action only after we've completed the monitor update. This is the only
5465                         // way to guarantee this update *will* be regenerated on startup (otherwise if this was
5466                         // from a forwarded HTLC the downstream preimage may be deleted before we claim
5467                         // upstream). Thus, we need to transition to some new `BackgroundEvent` type which will
5468                         // complete the monitor update completion action from `completion_action`.
5469                         self.pending_background_events.lock().unwrap().push(
5470                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((
5471                                         prev_hop.outpoint, preimage_update,
5472                                 )));
5473                 }
5474                 // Note that we do process the completion action here. This totally could be a
5475                 // duplicate claim, but we have no way of knowing without interrogating the
5476                 // `ChannelMonitor` we've provided the above update to. Instead, note that `Event`s are
5477                 // generally always allowed to be duplicative (and it's specifically noted in
5478                 // `PaymentForwarded`).
5479                 self.handle_monitor_update_completion_actions(completion_action(None));
5480                 Ok(())
5481         }
5482
5483         fn finalize_claims(&self, sources: Vec<HTLCSource>) {
5484                 self.pending_outbound_payments.finalize_claims(sources, &self.pending_events);
5485         }
5486
5487         fn claim_funds_internal(&self, source: HTLCSource, payment_preimage: PaymentPreimage,
5488                 forwarded_htlc_value_msat: Option<u64>, from_onchain: bool,
5489                 next_channel_counterparty_node_id: Option<PublicKey>, next_channel_outpoint: OutPoint
5490         ) {
5491                 match source {
5492                         HTLCSource::OutboundRoute { session_priv, payment_id, path, .. } => {
5493                                 debug_assert!(self.background_events_processed_since_startup.load(Ordering::Acquire),
5494                                         "We don't support claim_htlc claims during startup - monitors may not be available yet");
5495                                 if let Some(pubkey) = next_channel_counterparty_node_id {
5496                                         debug_assert_eq!(pubkey, path.hops[0].pubkey);
5497                                 }
5498                                 let ev_completion_action = EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
5499                                         channel_funding_outpoint: next_channel_outpoint,
5500                                         counterparty_node_id: path.hops[0].pubkey,
5501                                 };
5502                                 self.pending_outbound_payments.claim_htlc(payment_id, payment_preimage,
5503                                         session_priv, path, from_onchain, ev_completion_action, &self.pending_events,
5504                                         &self.logger);
5505                         },
5506                         HTLCSource::PreviousHopData(hop_data) => {
5507                                 let prev_outpoint = hop_data.outpoint;
5508                                 let completed_blocker = RAAMonitorUpdateBlockingAction::from_prev_hop_data(&hop_data);
5509                                 let res = self.claim_funds_from_hop(hop_data, payment_preimage,
5510                                         |htlc_claim_value_msat| {
5511                                                 if let Some(forwarded_htlc_value) = forwarded_htlc_value_msat {
5512                                                         let fee_earned_msat = if let Some(claimed_htlc_value) = htlc_claim_value_msat {
5513                                                                 Some(claimed_htlc_value - forwarded_htlc_value)
5514                                                         } else { None };
5515
5516                                                         Some(MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
5517                                                                 event: events::Event::PaymentForwarded {
5518                                                                         fee_earned_msat,
5519                                                                         claim_from_onchain_tx: from_onchain,
5520                                                                         prev_channel_id: Some(prev_outpoint.to_channel_id()),
5521                                                                         next_channel_id: Some(next_channel_outpoint.to_channel_id()),
5522                                                                         outbound_amount_forwarded_msat: forwarded_htlc_value_msat,
5523                                                                 },
5524                                                                 downstream_counterparty_and_funding_outpoint:
5525                                                                         if let Some(node_id) = next_channel_counterparty_node_id {
5526                                                                                 Some((node_id, next_channel_outpoint, completed_blocker))
5527                                                                         } else {
5528                                                                                 // We can only get `None` here if we are processing a
5529                                                                                 // `ChannelMonitor`-originated event, in which case we
5530                                                                                 // don't care about ensuring we wake the downstream
5531                                                                                 // channel's monitor updating - the channel is already
5532                                                                                 // closed.
5533                                                                                 None
5534                                                                         },
5535                                                         })
5536                                                 } else { None }
5537                                         });
5538                                 if let Err((pk, err)) = res {
5539                                         let result: Result<(), _> = Err(err);
5540                                         let _ = handle_error!(self, result, pk);
5541                                 }
5542                         },
5543                 }
5544         }
5545
5546         /// Gets the node_id held by this ChannelManager
5547         pub fn get_our_node_id(&self) -> PublicKey {
5548                 self.our_network_pubkey.clone()
5549         }
5550
5551         fn handle_monitor_update_completion_actions<I: IntoIterator<Item=MonitorUpdateCompletionAction>>(&self, actions: I) {
5552                 for action in actions.into_iter() {
5553                         match action {
5554                                 MonitorUpdateCompletionAction::PaymentClaimed { payment_hash } => {
5555                                         let payment = self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5556                                         if let Some(ClaimingPayment {
5557                                                 amount_msat,
5558                                                 payment_purpose: purpose,
5559                                                 receiver_node_id,
5560                                                 htlcs,
5561                                                 sender_intended_value: sender_intended_total_msat,
5562                                         }) = payment {
5563                                                 self.pending_events.lock().unwrap().push_back((events::Event::PaymentClaimed {
5564                                                         payment_hash,
5565                                                         purpose,
5566                                                         amount_msat,
5567                                                         receiver_node_id: Some(receiver_node_id),
5568                                                         htlcs,
5569                                                         sender_intended_total_msat,
5570                                                 }, None));
5571                                         }
5572                                 },
5573                                 MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
5574                                         event, downstream_counterparty_and_funding_outpoint
5575                                 } => {
5576                                         self.pending_events.lock().unwrap().push_back((event, None));
5577                                         if let Some((node_id, funding_outpoint, blocker)) = downstream_counterparty_and_funding_outpoint {
5578                                                 self.handle_monitor_update_release(node_id, funding_outpoint, Some(blocker));
5579                                         }
5580                                 },
5581                         }
5582                 }
5583         }
5584
5585         /// Handles a channel reentering a functional state, either due to reconnect or a monitor
5586         /// update completion.
5587         fn handle_channel_resumption(&self, pending_msg_events: &mut Vec<MessageSendEvent>,
5588                 channel: &mut Channel<SP>, raa: Option<msgs::RevokeAndACK>,
5589                 commitment_update: Option<msgs::CommitmentUpdate>, order: RAACommitmentOrder,
5590                 pending_forwards: Vec<(PendingHTLCInfo, u64)>, funding_broadcastable: Option<Transaction>,
5591                 channel_ready: Option<msgs::ChannelReady>, announcement_sigs: Option<msgs::AnnouncementSignatures>)
5592         -> Option<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> {
5593                 log_trace!(self.logger, "Handling channel resumption for channel {} with {} RAA, {} commitment update, {} pending forwards, {}broadcasting funding, {} channel ready, {} announcement",
5594                         &channel.context.channel_id(),
5595                         if raa.is_some() { "an" } else { "no" },
5596                         if commitment_update.is_some() { "a" } else { "no" }, pending_forwards.len(),
5597                         if funding_broadcastable.is_some() { "" } else { "not " },
5598                         if channel_ready.is_some() { "sending" } else { "without" },
5599                         if announcement_sigs.is_some() { "sending" } else { "without" });
5600
5601                 let mut htlc_forwards = None;
5602
5603                 let counterparty_node_id = channel.context.get_counterparty_node_id();
5604                 if !pending_forwards.is_empty() {
5605                         htlc_forwards = Some((channel.context.get_short_channel_id().unwrap_or(channel.context.outbound_scid_alias()),
5606                                 channel.context.get_funding_txo().unwrap(), channel.context.get_user_id(), pending_forwards));
5607                 }
5608
5609                 if let Some(msg) = channel_ready {
5610                         send_channel_ready!(self, pending_msg_events, channel, msg);
5611                 }
5612                 if let Some(msg) = announcement_sigs {
5613                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
5614                                 node_id: counterparty_node_id,
5615                                 msg,
5616                         });
5617                 }
5618
5619                 macro_rules! handle_cs { () => {
5620                         if let Some(update) = commitment_update {
5621                                 pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
5622                                         node_id: counterparty_node_id,
5623                                         updates: update,
5624                                 });
5625                         }
5626                 } }
5627                 macro_rules! handle_raa { () => {
5628                         if let Some(revoke_and_ack) = raa {
5629                                 pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
5630                                         node_id: counterparty_node_id,
5631                                         msg: revoke_and_ack,
5632                                 });
5633                         }
5634                 } }
5635                 match order {
5636                         RAACommitmentOrder::CommitmentFirst => {
5637                                 handle_cs!();
5638                                 handle_raa!();
5639                         },
5640                         RAACommitmentOrder::RevokeAndACKFirst => {
5641                                 handle_raa!();
5642                                 handle_cs!();
5643                         },
5644                 }
5645
5646                 if let Some(tx) = funding_broadcastable {
5647                         log_info!(self.logger, "Broadcasting funding transaction with txid {}", tx.txid());
5648                         self.tx_broadcaster.broadcast_transactions(&[&tx]);
5649                 }
5650
5651                 {
5652                         let mut pending_events = self.pending_events.lock().unwrap();
5653                         emit_channel_pending_event!(pending_events, channel);
5654                         emit_channel_ready_event!(pending_events, channel);
5655                 }
5656
5657                 htlc_forwards
5658         }
5659
5660         fn channel_monitor_updated(&self, funding_txo: &OutPoint, highest_applied_update_id: u64, counterparty_node_id: Option<&PublicKey>) {
5661                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
5662
5663                 let counterparty_node_id = match counterparty_node_id {
5664                         Some(cp_id) => cp_id.clone(),
5665                         None => {
5666                                 // TODO: Once we can rely on the counterparty_node_id from the
5667                                 // monitor event, this and the id_to_peer map should be removed.
5668                                 let id_to_peer = self.id_to_peer.lock().unwrap();
5669                                 match id_to_peer.get(&funding_txo.to_channel_id()) {
5670                                         Some(cp_id) => cp_id.clone(),
5671                                         None => return,
5672                                 }
5673                         }
5674                 };
5675                 let per_peer_state = self.per_peer_state.read().unwrap();
5676                 let mut peer_state_lock;
5677                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
5678                 if peer_state_mutex_opt.is_none() { return }
5679                 peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
5680                 let peer_state = &mut *peer_state_lock;
5681                 let channel =
5682                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&funding_txo.to_channel_id()) {
5683                                 chan
5684                         } else {
5685                                 let update_actions = peer_state.monitor_update_blocked_actions
5686                                         .remove(&funding_txo.to_channel_id()).unwrap_or(Vec::new());
5687                                 mem::drop(peer_state_lock);
5688                                 mem::drop(per_peer_state);
5689                                 self.handle_monitor_update_completion_actions(update_actions);
5690                                 return;
5691                         };
5692                 let remaining_in_flight =
5693                         if let Some(pending) = peer_state.in_flight_monitor_updates.get_mut(funding_txo) {
5694                                 pending.retain(|upd| upd.update_id > highest_applied_update_id);
5695                                 pending.len()
5696                         } else { 0 };
5697                 log_trace!(self.logger, "ChannelMonitor updated to {}. Current highest is {}. {} pending in-flight updates.",
5698                         highest_applied_update_id, channel.context.get_latest_monitor_update_id(),
5699                         remaining_in_flight);
5700                 if !channel.is_awaiting_monitor_update() || channel.context.get_latest_monitor_update_id() != highest_applied_update_id {
5701                         return;
5702                 }
5703                 handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, channel);
5704         }
5705
5706         /// Accepts a request to open a channel after a [`Event::OpenChannelRequest`].
5707         ///
5708         /// The `temporary_channel_id` parameter indicates which inbound channel should be accepted,
5709         /// and the `counterparty_node_id` parameter is the id of the peer which has requested to open
5710         /// the channel.
5711         ///
5712         /// The `user_channel_id` parameter will be provided back in
5713         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
5714         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
5715         ///
5716         /// Note that this method will return an error and reject the channel, if it requires support
5717         /// for zero confirmations. Instead, `accept_inbound_channel_from_trusted_peer_0conf` must be
5718         /// used to accept such channels.
5719         ///
5720         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
5721         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
5722         pub fn accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
5723                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, false, user_channel_id)
5724         }
5725
5726         /// Accepts a request to open a channel after a [`events::Event::OpenChannelRequest`], treating
5727         /// it as confirmed immediately.
5728         ///
5729         /// The `user_channel_id` parameter will be provided back in
5730         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
5731         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
5732         ///
5733         /// Unlike [`ChannelManager::accept_inbound_channel`], this method accepts the incoming channel
5734         /// and (if the counterparty agrees), enables forwarding of payments immediately.
5735         ///
5736         /// This fully trusts that the counterparty has honestly and correctly constructed the funding
5737         /// transaction and blindly assumes that it will eventually confirm.
5738         ///
5739         /// If it does not confirm before we decide to close the channel, or if the funding transaction
5740         /// does not pay to the correct script the correct amount, *you will lose funds*.
5741         ///
5742         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
5743         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
5744         pub fn accept_inbound_channel_from_trusted_peer_0conf(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
5745                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, true, user_channel_id)
5746         }
5747
5748         fn do_accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, accept_0conf: bool, user_channel_id: u128) -> Result<(), APIError> {
5749                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5750
5751                 let peers_without_funded_channels =
5752                         self.peers_without_funded_channels(|peer| { peer.total_channel_count() > 0 });
5753                 let per_peer_state = self.per_peer_state.read().unwrap();
5754                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5755                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
5756                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5757                 let peer_state = &mut *peer_state_lock;
5758                 let is_only_peer_channel = peer_state.total_channel_count() == 1;
5759
5760                 // Find (and remove) the channel in the unaccepted table. If it's not there, something weird is
5761                 // happening and return an error. N.B. that we create channel with an outbound SCID of zero so
5762                 // that we can delay allocating the SCID until after we're sure that the checks below will
5763                 // succeed.
5764                 let mut channel = match peer_state.inbound_channel_request_by_id.remove(temporary_channel_id) {
5765                         Some(unaccepted_channel) => {
5766                                 let best_block_height = self.best_block.read().unwrap().height();
5767                                 InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
5768                                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features,
5769                                         &unaccepted_channel.open_channel_msg, user_channel_id, &self.default_configuration, best_block_height,
5770                                         &self.logger, accept_0conf).map_err(|e| APIError::ChannelUnavailable { err: e.to_string() })
5771                         }
5772                         _ => Err(APIError::APIMisuseError { err: "No such channel awaiting to be accepted.".to_owned() })
5773                 }?;
5774
5775                 if accept_0conf {
5776                         // This should have been correctly configured by the call to InboundV1Channel::new.
5777                         debug_assert!(channel.context.minimum_depth().unwrap() == 0);
5778                 } else if channel.context.get_channel_type().requires_zero_conf() {
5779                         let send_msg_err_event = events::MessageSendEvent::HandleError {
5780                                 node_id: channel.context.get_counterparty_node_id(),
5781                                 action: msgs::ErrorAction::SendErrorMessage{
5782                                         msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "No zero confirmation channels accepted".to_owned(), }
5783                                 }
5784                         };
5785                         peer_state.pending_msg_events.push(send_msg_err_event);
5786                         return Err(APIError::APIMisuseError { err: "Please use accept_inbound_channel_from_trusted_peer_0conf to accept channels with zero confirmations.".to_owned() });
5787                 } else {
5788                         // If this peer already has some channels, a new channel won't increase our number of peers
5789                         // with unfunded channels, so as long as we aren't over the maximum number of unfunded
5790                         // channels per-peer we can accept channels from a peer with existing ones.
5791                         if is_only_peer_channel && peers_without_funded_channels >= MAX_UNFUNDED_CHANNEL_PEERS {
5792                                 let send_msg_err_event = events::MessageSendEvent::HandleError {
5793                                         node_id: channel.context.get_counterparty_node_id(),
5794                                         action: msgs::ErrorAction::SendErrorMessage{
5795                                                 msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "Have too many peers with unfunded channels, not accepting new ones".to_owned(), }
5796                                         }
5797                                 };
5798                                 peer_state.pending_msg_events.push(send_msg_err_event);
5799                                 return Err(APIError::APIMisuseError { err: "Too many peers with unfunded channels, refusing to accept new ones".to_owned() });
5800                         }
5801                 }
5802
5803                 // Now that we know we have a channel, assign an outbound SCID alias.
5804                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
5805                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
5806
5807                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
5808                         node_id: channel.context.get_counterparty_node_id(),
5809                         msg: channel.accept_inbound_channel(),
5810                 });
5811
5812                 peer_state.channel_by_id.insert(temporary_channel_id.clone(), ChannelPhase::UnfundedInboundV1(channel));
5813
5814                 Ok(())
5815         }
5816
5817         /// Gets the number of peers which match the given filter and do not have any funded, outbound,
5818         /// or 0-conf channels.
5819         ///
5820         /// The filter is called for each peer and provided with the number of unfunded, inbound, and
5821         /// non-0-conf channels we have with the peer.
5822         fn peers_without_funded_channels<Filter>(&self, maybe_count_peer: Filter) -> usize
5823         where Filter: Fn(&PeerState<SP>) -> bool {
5824                 let mut peers_without_funded_channels = 0;
5825                 let best_block_height = self.best_block.read().unwrap().height();
5826                 {
5827                         let peer_state_lock = self.per_peer_state.read().unwrap();
5828                         for (_, peer_mtx) in peer_state_lock.iter() {
5829                                 let peer = peer_mtx.lock().unwrap();
5830                                 if !maybe_count_peer(&*peer) { continue; }
5831                                 let num_unfunded_channels = Self::unfunded_channel_count(&peer, best_block_height);
5832                                 if num_unfunded_channels == peer.total_channel_count() {
5833                                         peers_without_funded_channels += 1;
5834                                 }
5835                         }
5836                 }
5837                 return peers_without_funded_channels;
5838         }
5839
5840         fn unfunded_channel_count(
5841                 peer: &PeerState<SP>, best_block_height: u32
5842         ) -> usize {
5843                 let mut num_unfunded_channels = 0;
5844                 for (_, phase) in peer.channel_by_id.iter() {
5845                         match phase {
5846                                 ChannelPhase::Funded(chan) => {
5847                                         // This covers non-zero-conf inbound `Channel`s that we are currently monitoring, but those
5848                                         // which have not yet had any confirmations on-chain.
5849                                         if !chan.context.is_outbound() && chan.context.minimum_depth().unwrap_or(1) != 0 &&
5850                                                 chan.context.get_funding_tx_confirmations(best_block_height) == 0
5851                                         {
5852                                                 num_unfunded_channels += 1;
5853                                         }
5854                                 },
5855                                 ChannelPhase::UnfundedInboundV1(chan) => {
5856                                         if chan.context.minimum_depth().unwrap_or(1) != 0 {
5857                                                 num_unfunded_channels += 1;
5858                                         }
5859                                 },
5860                                 ChannelPhase::UnfundedOutboundV1(_) => {
5861                                         // Outbound channels don't contribute to the unfunded count in the DoS context.
5862                                         continue;
5863                                 }
5864                         }
5865                 }
5866                 num_unfunded_channels + peer.inbound_channel_request_by_id.len()
5867         }
5868
5869         fn internal_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) -> Result<(), MsgHandleErrInternal> {
5870                 // Note that the ChannelManager is NOT re-persisted on disk after this, so any changes are
5871                 // likely to be lost on restart!
5872                 if msg.chain_hash != self.genesis_hash {
5873                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Unknown genesis block hash".to_owned(), msg.temporary_channel_id.clone()));
5874                 }
5875
5876                 if !self.default_configuration.accept_inbound_channels {
5877                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No inbound channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5878                 }
5879
5880                 // Get the number of peers with channels, but without funded ones. We don't care too much
5881                 // about peers that never open a channel, so we filter by peers that have at least one
5882                 // channel, and then limit the number of those with unfunded channels.
5883                 let channeled_peers_without_funding =
5884                         self.peers_without_funded_channels(|node| node.total_channel_count() > 0);
5885
5886                 let per_peer_state = self.per_peer_state.read().unwrap();
5887                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5888                     .ok_or_else(|| {
5889                                 debug_assert!(false);
5890                                 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())
5891                         })?;
5892                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5893                 let peer_state = &mut *peer_state_lock;
5894
5895                 // If this peer already has some channels, a new channel won't increase our number of peers
5896                 // with unfunded channels, so as long as we aren't over the maximum number of unfunded
5897                 // channels per-peer we can accept channels from a peer with existing ones.
5898                 if peer_state.total_channel_count() == 0 &&
5899                         channeled_peers_without_funding >= MAX_UNFUNDED_CHANNEL_PEERS &&
5900                         !self.default_configuration.manually_accept_inbound_channels
5901                 {
5902                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5903                                 "Have too many peers with unfunded channels, not accepting new ones".to_owned(),
5904                                 msg.temporary_channel_id.clone()));
5905                 }
5906
5907                 let best_block_height = self.best_block.read().unwrap().height();
5908                 if Self::unfunded_channel_count(peer_state, best_block_height) >= MAX_UNFUNDED_CHANS_PER_PEER {
5909                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5910                                 format!("Refusing more than {} unfunded channels.", MAX_UNFUNDED_CHANS_PER_PEER),
5911                                 msg.temporary_channel_id.clone()));
5912                 }
5913
5914                 let channel_id = msg.temporary_channel_id;
5915                 let channel_exists = peer_state.has_channel(&channel_id);
5916                 if channel_exists {
5917                         return Err(MsgHandleErrInternal::send_err_msg_no_close("temporary_channel_id collision for the same peer!".to_owned(), msg.temporary_channel_id.clone()));
5918                 }
5919
5920                 // If we're doing manual acceptance checks on the channel, then defer creation until we're sure we want to accept.
5921                 if self.default_configuration.manually_accept_inbound_channels {
5922                         let mut pending_events = self.pending_events.lock().unwrap();
5923                         pending_events.push_back((events::Event::OpenChannelRequest {
5924                                 temporary_channel_id: msg.temporary_channel_id.clone(),
5925                                 counterparty_node_id: counterparty_node_id.clone(),
5926                                 funding_satoshis: msg.funding_satoshis,
5927                                 push_msat: msg.push_msat,
5928                                 channel_type: msg.channel_type.clone().unwrap(),
5929                         }, None));
5930                         peer_state.inbound_channel_request_by_id.insert(channel_id, InboundChannelRequest {
5931                                 open_channel_msg: msg.clone(),
5932                                 ticks_remaining: UNACCEPTED_INBOUND_CHANNEL_AGE_LIMIT_TICKS,
5933                         });
5934                         return Ok(());
5935                 }
5936
5937                 // Otherwise create the channel right now.
5938                 let mut random_bytes = [0u8; 16];
5939                 random_bytes.copy_from_slice(&self.entropy_source.get_secure_random_bytes()[..16]);
5940                 let user_channel_id = u128::from_be_bytes(random_bytes);
5941                 let mut channel = match InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
5942                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features, msg, user_channel_id,
5943                         &self.default_configuration, best_block_height, &self.logger, /*is_0conf=*/false)
5944                 {
5945                         Err(e) => {
5946                                 return Err(MsgHandleErrInternal::from_chan_no_close(e, msg.temporary_channel_id));
5947                         },
5948                         Ok(res) => res
5949                 };
5950
5951                 let channel_type = channel.context.get_channel_type();
5952                 if channel_type.requires_zero_conf() {
5953                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No zero confirmation channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5954                 }
5955                 if channel_type.requires_anchors_zero_fee_htlc_tx() {
5956                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No channels with anchor outputs accepted".to_owned(), msg.temporary_channel_id.clone()));
5957                 }
5958
5959                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
5960                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
5961
5962                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
5963                         node_id: counterparty_node_id.clone(),
5964                         msg: channel.accept_inbound_channel(),
5965                 });
5966                 peer_state.channel_by_id.insert(channel_id, ChannelPhase::UnfundedInboundV1(channel));
5967                 Ok(())
5968         }
5969
5970         fn internal_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) -> Result<(), MsgHandleErrInternal> {
5971                 // Note that the ChannelManager is NOT re-persisted on disk after this, so any changes are
5972                 // likely to be lost on restart!
5973                 let (value, output_script, user_id) = {
5974                         let per_peer_state = self.per_peer_state.read().unwrap();
5975                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5976                                 .ok_or_else(|| {
5977                                         debug_assert!(false);
5978                                         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)
5979                                 })?;
5980                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5981                         let peer_state = &mut *peer_state_lock;
5982                         match peer_state.channel_by_id.entry(msg.temporary_channel_id) {
5983                                 hash_map::Entry::Occupied(mut phase) => {
5984                                         match phase.get_mut() {
5985                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
5986                                                         try_chan_phase_entry!(self, chan.accept_channel(&msg, &self.default_configuration.channel_handshake_limits, &peer_state.latest_features), phase);
5987                                                         (chan.context.get_value_satoshis(), chan.context.get_funding_redeemscript().to_v0_p2wsh(), chan.context.get_user_id())
5988                                                 },
5989                                                 _ => {
5990                                                         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));
5991                                                 }
5992                                         }
5993                                 },
5994                                 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))
5995                         }
5996                 };
5997                 let mut pending_events = self.pending_events.lock().unwrap();
5998                 pending_events.push_back((events::Event::FundingGenerationReady {
5999                         temporary_channel_id: msg.temporary_channel_id,
6000                         counterparty_node_id: *counterparty_node_id,
6001                         channel_value_satoshis: value,
6002                         output_script,
6003                         user_channel_id: user_id,
6004                 }, None));
6005                 Ok(())
6006         }
6007
6008         fn internal_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) -> Result<(), MsgHandleErrInternal> {
6009                 let best_block = *self.best_block.read().unwrap();
6010
6011                 let per_peer_state = self.per_peer_state.read().unwrap();
6012                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6013                         .ok_or_else(|| {
6014                                 debug_assert!(false);
6015                                 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)
6016                         })?;
6017
6018                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6019                 let peer_state = &mut *peer_state_lock;
6020                 let (chan, funding_msg, monitor) =
6021                         match peer_state.channel_by_id.remove(&msg.temporary_channel_id) {
6022                                 Some(ChannelPhase::UnfundedInboundV1(inbound_chan)) => {
6023                                         match inbound_chan.funding_created(msg, best_block, &self.signer_provider, &self.logger) {
6024                                                 Ok(res) => res,
6025                                                 Err((mut inbound_chan, err)) => {
6026                                                         // We've already removed this inbound channel from the map in `PeerState`
6027                                                         // above so at this point we just need to clean up any lingering entries
6028                                                         // concerning this channel as it is safe to do so.
6029                                                         update_maps_on_chan_removal!(self, &inbound_chan.context);
6030                                                         let user_id = inbound_chan.context.get_user_id();
6031                                                         let shutdown_res = inbound_chan.context.force_shutdown(false);
6032                                                         return Err(MsgHandleErrInternal::from_finish_shutdown(format!("{}", err),
6033                                                                 msg.temporary_channel_id, user_id, shutdown_res, None, inbound_chan.context.get_value_satoshis()));
6034                                                 },
6035                                         }
6036                                 },
6037                                 Some(ChannelPhase::Funded(_)) | Some(ChannelPhase::UnfundedOutboundV1(_)) => {
6038                                         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));
6039                                 },
6040                                 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))
6041                         };
6042
6043                 match peer_state.channel_by_id.entry(funding_msg.channel_id) {
6044                         hash_map::Entry::Occupied(_) => {
6045                                 Err(MsgHandleErrInternal::send_err_msg_no_close("Already had channel with the new channel_id".to_owned(), funding_msg.channel_id))
6046                         },
6047                         hash_map::Entry::Vacant(e) => {
6048                                 let mut id_to_peer_lock = self.id_to_peer.lock().unwrap();
6049                                 match id_to_peer_lock.entry(chan.context.channel_id()) {
6050                                         hash_map::Entry::Occupied(_) => {
6051                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close(
6052                                                         "The funding_created message had the same funding_txid as an existing channel - funding is not possible".to_owned(),
6053                                                         funding_msg.channel_id))
6054                                         },
6055                                         hash_map::Entry::Vacant(i_e) => {
6056                                                 let monitor_res = self.chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor);
6057                                                 if let Ok(persist_state) = monitor_res {
6058                                                         i_e.insert(chan.context.get_counterparty_node_id());
6059                                                         mem::drop(id_to_peer_lock);
6060
6061                                                         // There's no problem signing a counterparty's funding transaction if our monitor
6062                                                         // hasn't persisted to disk yet - we can't lose money on a transaction that we haven't
6063                                                         // accepted payment from yet. We do, however, need to wait to send our channel_ready
6064                                                         // until we have persisted our monitor.
6065                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
6066                                                                 node_id: counterparty_node_id.clone(),
6067                                                                 msg: funding_msg,
6068                                                         });
6069
6070                                                         if let ChannelPhase::Funded(chan) = e.insert(ChannelPhase::Funded(chan)) {
6071                                                                 handle_new_monitor_update!(self, persist_state, peer_state_lock, peer_state,
6072                                                                         per_peer_state, chan, INITIAL_MONITOR);
6073                                                         } else {
6074                                                                 unreachable!("This must be a funded channel as we just inserted it.");
6075                                                         }
6076                                                         Ok(())
6077                                                 } else {
6078                                                         log_error!(self.logger, "Persisting initial ChannelMonitor failed, implying the funding outpoint was duplicated");
6079                                                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
6080                                                                 "The funding_created message had the same funding_txid as an existing channel - funding is not possible".to_owned(),
6081                                                                 funding_msg.channel_id));
6082                                                 }
6083                                         }
6084                                 }
6085                         }
6086                 }
6087         }
6088
6089         fn internal_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) -> Result<(), MsgHandleErrInternal> {
6090                 let best_block = *self.best_block.read().unwrap();
6091                 let per_peer_state = self.per_peer_state.read().unwrap();
6092                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6093                         .ok_or_else(|| {
6094                                 debug_assert!(false);
6095                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6096                         })?;
6097
6098                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6099                 let peer_state = &mut *peer_state_lock;
6100                 match peer_state.channel_by_id.entry(msg.channel_id) {
6101                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6102                                 match chan_phase_entry.get_mut() {
6103                                         ChannelPhase::Funded(ref mut chan) => {
6104                                                 let monitor = try_chan_phase_entry!(self,
6105                                                         chan.funding_signed(&msg, best_block, &self.signer_provider, &self.logger), chan_phase_entry);
6106                                                 if let Ok(persist_status) = self.chain_monitor.watch_channel(chan.context.get_funding_txo().unwrap(), monitor) {
6107                                                         handle_new_monitor_update!(self, persist_status, peer_state_lock, peer_state, per_peer_state, chan, INITIAL_MONITOR);
6108                                                         Ok(())
6109                                                 } else {
6110                                                         try_chan_phase_entry!(self, Err(ChannelError::Close("Channel funding outpoint was a duplicate".to_owned())), chan_phase_entry)
6111                                                 }
6112                                         },
6113                                         _ => {
6114                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id));
6115                                         },
6116                                 }
6117                         },
6118                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
6119                 }
6120         }
6121
6122         fn internal_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) -> Result<(), MsgHandleErrInternal> {
6123                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
6124                 // closing a channel), so any changes are likely to be lost on restart!
6125                 let per_peer_state = self.per_peer_state.read().unwrap();
6126                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6127                         .ok_or_else(|| {
6128                                 debug_assert!(false);
6129                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6130                         })?;
6131                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6132                 let peer_state = &mut *peer_state_lock;
6133                 match peer_state.channel_by_id.entry(msg.channel_id) {
6134                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6135                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6136                                         let announcement_sigs_opt = try_chan_phase_entry!(self, chan.channel_ready(&msg, &self.node_signer,
6137                                                 self.genesis_hash.clone(), &self.default_configuration, &self.best_block.read().unwrap(), &self.logger), chan_phase_entry);
6138                                         if let Some(announcement_sigs) = announcement_sigs_opt {
6139                                                 log_trace!(self.logger, "Sending announcement_signatures for channel {}", chan.context.channel_id());
6140                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
6141                                                         node_id: counterparty_node_id.clone(),
6142                                                         msg: announcement_sigs,
6143                                                 });
6144                                         } else if chan.context.is_usable() {
6145                                                 // If we're sending an announcement_signatures, we'll send the (public)
6146                                                 // channel_update after sending a channel_announcement when we receive our
6147                                                 // counterparty's announcement_signatures. Thus, we only bother to send a
6148                                                 // channel_update here if the channel is not public, i.e. we're not sending an
6149                                                 // announcement_signatures.
6150                                                 log_trace!(self.logger, "Sending private initial channel_update for our counterparty on channel {}", chan.context.channel_id());
6151                                                 if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
6152                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
6153                                                                 node_id: counterparty_node_id.clone(),
6154                                                                 msg,
6155                                                         });
6156                                                 }
6157                                         }
6158
6159                                         {
6160                                                 let mut pending_events = self.pending_events.lock().unwrap();
6161                                                 emit_channel_ready_event!(pending_events, chan);
6162                                         }
6163
6164                                         Ok(())
6165                                 } else {
6166                                         try_chan_phase_entry!(self, Err(ChannelError::Close(
6167                                                 "Got a channel_ready message for an unfunded channel!".into())), chan_phase_entry)
6168                                 }
6169                         },
6170                         hash_map::Entry::Vacant(_) => {
6171                                 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))
6172                         }
6173                 }
6174         }
6175
6176         fn internal_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) -> Result<(), MsgHandleErrInternal> {
6177                 let mut dropped_htlcs: Vec<(HTLCSource, PaymentHash)> = Vec::new();
6178                 let mut finish_shutdown = None;
6179                 {
6180                         let per_peer_state = self.per_peer_state.read().unwrap();
6181                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6182                                 .ok_or_else(|| {
6183                                         debug_assert!(false);
6184                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6185                                 })?;
6186                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6187                         let peer_state = &mut *peer_state_lock;
6188                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(msg.channel_id.clone()) {
6189                                 let phase = chan_phase_entry.get_mut();
6190                                 match phase {
6191                                         ChannelPhase::Funded(chan) => {
6192                                                 if !chan.received_shutdown() {
6193                                                         log_info!(self.logger, "Received a shutdown message from our counterparty for channel {}{}.",
6194                                                                 msg.channel_id,
6195                                                                 if chan.sent_shutdown() { " after we initiated shutdown" } else { "" });
6196                                                 }
6197
6198                                                 let funding_txo_opt = chan.context.get_funding_txo();
6199                                                 let (shutdown, monitor_update_opt, htlcs) = try_chan_phase_entry!(self,
6200                                                         chan.shutdown(&self.signer_provider, &peer_state.latest_features, &msg), chan_phase_entry);
6201                                                 dropped_htlcs = htlcs;
6202
6203                                                 if let Some(msg) = shutdown {
6204                                                         // We can send the `shutdown` message before updating the `ChannelMonitor`
6205                                                         // here as we don't need the monitor update to complete until we send a
6206                                                         // `shutdown_signed`, which we'll delay if we're pending a monitor update.
6207                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
6208                                                                 node_id: *counterparty_node_id,
6209                                                                 msg,
6210                                                         });
6211                                                 }
6212                                                 // Update the monitor with the shutdown script if necessary.
6213                                                 if let Some(monitor_update) = monitor_update_opt {
6214                                                         handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
6215                                                                 peer_state_lock, peer_state, per_peer_state, chan);
6216                                                 }
6217                                         },
6218                                         ChannelPhase::UnfundedInboundV1(_) | ChannelPhase::UnfundedOutboundV1(_) => {
6219                                                 let context = phase.context_mut();
6220                                                 log_error!(self.logger, "Immediately closing unfunded channel {} as peer asked to cooperatively shut it down (which is unnecessary)", &msg.channel_id);
6221                                                 self.issue_channel_close_events(&context, ClosureReason::CounterpartyCoopClosedUnfundedChannel);
6222                                                 let mut chan = remove_channel_phase!(self, chan_phase_entry);
6223                                                 finish_shutdown = Some(chan.context_mut().force_shutdown(false));
6224                                         },
6225                                 }
6226                         } else {
6227                                 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))
6228                         }
6229                 }
6230                 for htlc_source in dropped_htlcs.drain(..) {
6231                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id: msg.channel_id };
6232                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
6233                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
6234                 }
6235                 if let Some(shutdown_res) = finish_shutdown {
6236                         self.finish_close_channel(shutdown_res);
6237                 }
6238
6239                 Ok(())
6240         }
6241
6242         fn internal_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) -> Result<(), MsgHandleErrInternal> {
6243                 let mut shutdown_result = None;
6244                 let unbroadcasted_batch_funding_txid;
6245                 let per_peer_state = self.per_peer_state.read().unwrap();
6246                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6247                         .ok_or_else(|| {
6248                                 debug_assert!(false);
6249                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6250                         })?;
6251                 let (tx, chan_option) = {
6252                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6253                         let peer_state = &mut *peer_state_lock;
6254                         match peer_state.channel_by_id.entry(msg.channel_id.clone()) {
6255                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6256                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6257                                                 unbroadcasted_batch_funding_txid = chan.context.unbroadcasted_batch_funding_txid();
6258                                                 let (closing_signed, tx) = try_chan_phase_entry!(self, chan.closing_signed(&self.fee_estimator, &msg), chan_phase_entry);
6259                                                 if let Some(msg) = closing_signed {
6260                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
6261                                                                 node_id: counterparty_node_id.clone(),
6262                                                                 msg,
6263                                                         });
6264                                                 }
6265                                                 if tx.is_some() {
6266                                                         // We're done with this channel, we've got a signed closing transaction and
6267                                                         // will send the closing_signed back to the remote peer upon return. This
6268                                                         // also implies there are no pending HTLCs left on the channel, so we can
6269                                                         // fully delete it from tracking (the channel monitor is still around to
6270                                                         // watch for old state broadcasts)!
6271                                                         (tx, Some(remove_channel_phase!(self, chan_phase_entry)))
6272                                                 } else { (tx, None) }
6273                                         } else {
6274                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6275                                                         "Got a closing_signed message for an unfunded channel!".into())), chan_phase_entry);
6276                                         }
6277                                 },
6278                                 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))
6279                         }
6280                 };
6281                 if let Some(broadcast_tx) = tx {
6282                         log_info!(self.logger, "Broadcasting {}", log_tx!(broadcast_tx));
6283                         self.tx_broadcaster.broadcast_transactions(&[&broadcast_tx]);
6284                 }
6285                 if let Some(ChannelPhase::Funded(chan)) = chan_option {
6286                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6287                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6288                                 let peer_state = &mut *peer_state_lock;
6289                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6290                                         msg: update
6291                                 });
6292                         }
6293                         self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
6294                         shutdown_result = Some((None, Vec::new(), unbroadcasted_batch_funding_txid));
6295                 }
6296                 mem::drop(per_peer_state);
6297                 if let Some(shutdown_result) = shutdown_result {
6298                         self.finish_close_channel(shutdown_result);
6299                 }
6300                 Ok(())
6301         }
6302
6303         fn internal_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) -> Result<(), MsgHandleErrInternal> {
6304                 //TODO: BOLT 4 points out a specific attack where a peer may re-send an onion packet and
6305                 //determine the state of the payment based on our response/if we forward anything/the time
6306                 //we take to respond. We should take care to avoid allowing such an attack.
6307                 //
6308                 //TODO: There exists a further attack where a node may garble the onion data, forward it to
6309                 //us repeatedly garbled in different ways, and compare our error messages, which are
6310                 //encrypted with the same key. It's not immediately obvious how to usefully exploit that,
6311                 //but we should prevent it anyway.
6312
6313                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
6314                 // closing a channel), so any changes are likely to be lost on restart!
6315
6316                 let decoded_hop_res = self.decode_update_add_htlc_onion(msg);
6317                 let per_peer_state = self.per_peer_state.read().unwrap();
6318                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6319                         .ok_or_else(|| {
6320                                 debug_assert!(false);
6321                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6322                         })?;
6323                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6324                 let peer_state = &mut *peer_state_lock;
6325                 match peer_state.channel_by_id.entry(msg.channel_id) {
6326                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6327                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6328                                         let pending_forward_info = match decoded_hop_res {
6329                                                 Ok((next_hop, shared_secret, next_packet_pk_opt)) =>
6330                                                         self.construct_pending_htlc_status(msg, shared_secret, next_hop,
6331                                                                 chan.context.config().accept_underpaying_htlcs, next_packet_pk_opt),
6332                                                 Err(e) => PendingHTLCStatus::Fail(e)
6333                                         };
6334                                         let create_pending_htlc_status = |chan: &Channel<SP>, pending_forward_info: PendingHTLCStatus, error_code: u16| {
6335                                                 // If the update_add is completely bogus, the call will Err and we will close,
6336                                                 // but if we've sent a shutdown and they haven't acknowledged it yet, we just
6337                                                 // want to reject the new HTLC and fail it backwards instead of forwarding.
6338                                                 match pending_forward_info {
6339                                                         PendingHTLCStatus::Forward(PendingHTLCInfo { ref incoming_shared_secret, .. }) => {
6340                                                                 let reason = if (error_code & 0x1000) != 0 {
6341                                                                         let (real_code, error_data) = self.get_htlc_inbound_temp_fail_err_and_data(error_code, chan);
6342                                                                         HTLCFailReason::reason(real_code, error_data)
6343                                                                 } else {
6344                                                                         HTLCFailReason::from_failure_code(error_code)
6345                                                                 }.get_encrypted_failure_packet(incoming_shared_secret, &None);
6346                                                                 let msg = msgs::UpdateFailHTLC {
6347                                                                         channel_id: msg.channel_id,
6348                                                                         htlc_id: msg.htlc_id,
6349                                                                         reason
6350                                                                 };
6351                                                                 PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msg))
6352                                                         },
6353                                                         _ => pending_forward_info
6354                                                 }
6355                                         };
6356                                         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);
6357                                 } else {
6358                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6359                                                 "Got an update_add_htlc message for an unfunded channel!".into())), chan_phase_entry);
6360                                 }
6361                         },
6362                         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))
6363                 }
6364                 Ok(())
6365         }
6366
6367         fn internal_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) -> Result<(), MsgHandleErrInternal> {
6368                 let funding_txo;
6369                 let (htlc_source, forwarded_htlc_value) = {
6370                         let per_peer_state = self.per_peer_state.read().unwrap();
6371                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6372                                 .ok_or_else(|| {
6373                                         debug_assert!(false);
6374                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6375                                 })?;
6376                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6377                         let peer_state = &mut *peer_state_lock;
6378                         match peer_state.channel_by_id.entry(msg.channel_id) {
6379                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6380                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6381                                                 let res = try_chan_phase_entry!(self, chan.update_fulfill_htlc(&msg), chan_phase_entry);
6382                                                 if let HTLCSource::PreviousHopData(prev_hop) = &res.0 {
6383                                                         peer_state.actions_blocking_raa_monitor_updates.entry(msg.channel_id)
6384                                                                 .or_insert_with(Vec::new)
6385                                                                 .push(RAAMonitorUpdateBlockingAction::from_prev_hop_data(&prev_hop));
6386                                                 }
6387                                                 // Note that we do not need to push an `actions_blocking_raa_monitor_updates`
6388                                                 // entry here, even though we *do* need to block the next RAA monitor update.
6389                                                 // We do this instead in the `claim_funds_internal` by attaching a
6390                                                 // `ReleaseRAAChannelMonitorUpdate` action to the event generated when the
6391                                                 // outbound HTLC is claimed. This is guaranteed to all complete before we
6392                                                 // process the RAA as messages are processed from single peers serially.
6393                                                 funding_txo = chan.context.get_funding_txo().expect("We won't accept a fulfill until funded");
6394                                                 res
6395                                         } else {
6396                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6397                                                         "Got an update_fulfill_htlc message for an unfunded channel!".into())), chan_phase_entry);
6398                                         }
6399                                 },
6400                                 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))
6401                         }
6402                 };
6403                 self.claim_funds_internal(htlc_source, msg.payment_preimage.clone(), Some(forwarded_htlc_value), false, Some(*counterparty_node_id), funding_txo);
6404                 Ok(())
6405         }
6406
6407         fn internal_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) -> Result<(), MsgHandleErrInternal> {
6408                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
6409                 // closing a channel), so any changes are likely to be lost on restart!
6410                 let per_peer_state = self.per_peer_state.read().unwrap();
6411                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6412                         .ok_or_else(|| {
6413                                 debug_assert!(false);
6414                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6415                         })?;
6416                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6417                 let peer_state = &mut *peer_state_lock;
6418                 match peer_state.channel_by_id.entry(msg.channel_id) {
6419                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6420                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6421                                         try_chan_phase_entry!(self, chan.update_fail_htlc(&msg, HTLCFailReason::from_msg(msg)), chan_phase_entry);
6422                                 } else {
6423                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6424                                                 "Got an update_fail_htlc message for an unfunded channel!".into())), chan_phase_entry);
6425                                 }
6426                         },
6427                         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))
6428                 }
6429                 Ok(())
6430         }
6431
6432         fn internal_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) -> Result<(), MsgHandleErrInternal> {
6433                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
6434                 // closing a channel), so any changes are likely to be lost on restart!
6435                 let per_peer_state = self.per_peer_state.read().unwrap();
6436                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6437                         .ok_or_else(|| {
6438                                 debug_assert!(false);
6439                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6440                         })?;
6441                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6442                 let peer_state = &mut *peer_state_lock;
6443                 match peer_state.channel_by_id.entry(msg.channel_id) {
6444                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6445                                 if (msg.failure_code & 0x8000) == 0 {
6446                                         let chan_err: ChannelError = ChannelError::Close("Got update_fail_malformed_htlc with BADONION not set".to_owned());
6447                                         try_chan_phase_entry!(self, Err(chan_err), chan_phase_entry);
6448                                 }
6449                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6450                                         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);
6451                                 } else {
6452                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6453                                                 "Got an update_fail_malformed_htlc message for an unfunded channel!".into())), chan_phase_entry);
6454                                 }
6455                                 Ok(())
6456                         },
6457                         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))
6458                 }
6459         }
6460
6461         fn internal_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) -> Result<(), MsgHandleErrInternal> {
6462                 let per_peer_state = self.per_peer_state.read().unwrap();
6463                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6464                         .ok_or_else(|| {
6465                                 debug_assert!(false);
6466                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6467                         })?;
6468                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6469                 let peer_state = &mut *peer_state_lock;
6470                 match peer_state.channel_by_id.entry(msg.channel_id) {
6471                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6472                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6473                                         let funding_txo = chan.context.get_funding_txo();
6474                                         let monitor_update_opt = try_chan_phase_entry!(self, chan.commitment_signed(&msg, &self.logger), chan_phase_entry);
6475                                         if let Some(monitor_update) = monitor_update_opt {
6476                                                 handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update, peer_state_lock,
6477                                                         peer_state, per_peer_state, chan);
6478                                         }
6479                                         Ok(())
6480                                 } else {
6481                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6482                                                 "Got a commitment_signed message for an unfunded channel!".into())), chan_phase_entry);
6483                                 }
6484                         },
6485                         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))
6486                 }
6487         }
6488
6489         #[inline]
6490         fn forward_htlcs(&self, per_source_pending_forwards: &mut [(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)]) {
6491                 for &mut (prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, ref mut pending_forwards) in per_source_pending_forwards {
6492                         let mut push_forward_event = false;
6493                         let mut new_intercept_events = VecDeque::new();
6494                         let mut failed_intercept_forwards = Vec::new();
6495                         if !pending_forwards.is_empty() {
6496                                 for (forward_info, prev_htlc_id) in pending_forwards.drain(..) {
6497                                         let scid = match forward_info.routing {
6498                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
6499                                                 PendingHTLCRouting::Receive { .. } => 0,
6500                                                 PendingHTLCRouting::ReceiveKeysend { .. } => 0,
6501                                         };
6502                                         // Pull this now to avoid introducing a lock order with `forward_htlcs`.
6503                                         let is_our_scid = self.short_to_chan_info.read().unwrap().contains_key(&scid);
6504
6505                                         let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
6506                                         let forward_htlcs_empty = forward_htlcs.is_empty();
6507                                         match forward_htlcs.entry(scid) {
6508                                                 hash_map::Entry::Occupied(mut entry) => {
6509                                                         entry.get_mut().push(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
6510                                                                 prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info }));
6511                                                 },
6512                                                 hash_map::Entry::Vacant(entry) => {
6513                                                         if !is_our_scid && forward_info.incoming_amt_msat.is_some() &&
6514                                                            fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, scid, &self.genesis_hash)
6515                                                         {
6516                                                                 let intercept_id = InterceptId(Sha256::hash(&forward_info.incoming_shared_secret).into_inner());
6517                                                                 let mut pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
6518                                                                 match pending_intercepts.entry(intercept_id) {
6519                                                                         hash_map::Entry::Vacant(entry) => {
6520                                                                                 new_intercept_events.push_back((events::Event::HTLCIntercepted {
6521                                                                                         requested_next_hop_scid: scid,
6522                                                                                         payment_hash: forward_info.payment_hash,
6523                                                                                         inbound_amount_msat: forward_info.incoming_amt_msat.unwrap(),
6524                                                                                         expected_outbound_amount_msat: forward_info.outgoing_amt_msat,
6525                                                                                         intercept_id
6526                                                                                 }, None));
6527                                                                                 entry.insert(PendingAddHTLCInfo {
6528                                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info });
6529                                                                         },
6530                                                                         hash_map::Entry::Occupied(_) => {
6531                                                                                 log_info!(self.logger, "Failed to forward incoming HTLC: detected duplicate intercepted payment over short channel id {}", scid);
6532                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
6533                                                                                         short_channel_id: prev_short_channel_id,
6534                                                                                         user_channel_id: Some(prev_user_channel_id),
6535                                                                                         outpoint: prev_funding_outpoint,
6536                                                                                         htlc_id: prev_htlc_id,
6537                                                                                         incoming_packet_shared_secret: forward_info.incoming_shared_secret,
6538                                                                                         phantom_shared_secret: None,
6539                                                                                 });
6540
6541                                                                                 failed_intercept_forwards.push((htlc_source, forward_info.payment_hash,
6542                                                                                                 HTLCFailReason::from_failure_code(0x4000 | 10),
6543                                                                                                 HTLCDestination::InvalidForward { requested_forward_scid: scid },
6544                                                                                 ));
6545                                                                         }
6546                                                                 }
6547                                                         } else {
6548                                                                 // We don't want to generate a PendingHTLCsForwardable event if only intercepted
6549                                                                 // payments are being processed.
6550                                                                 if forward_htlcs_empty {
6551                                                                         push_forward_event = true;
6552                                                                 }
6553                                                                 entry.insert(vec!(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
6554                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info })));
6555                                                         }
6556                                                 }
6557                                         }
6558                                 }
6559                         }
6560
6561                         for (htlc_source, payment_hash, failure_reason, destination) in failed_intercept_forwards.drain(..) {
6562                                 self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
6563                         }
6564
6565                         if !new_intercept_events.is_empty() {
6566                                 let mut events = self.pending_events.lock().unwrap();
6567                                 events.append(&mut new_intercept_events);
6568                         }
6569                         if push_forward_event { self.push_pending_forwards_ev() }
6570                 }
6571         }
6572
6573         fn push_pending_forwards_ev(&self) {
6574                 let mut pending_events = self.pending_events.lock().unwrap();
6575                 let is_processing_events = self.pending_events_processor.load(Ordering::Acquire);
6576                 let num_forward_events = pending_events.iter().filter(|(ev, _)|
6577                         if let events::Event::PendingHTLCsForwardable { .. } = ev { true } else { false }
6578                 ).count();
6579                 // We only want to push a PendingHTLCsForwardable event if no others are queued. Processing
6580                 // events is done in batches and they are not removed until we're done processing each
6581                 // batch. Since handling a `PendingHTLCsForwardable` event will call back into the
6582                 // `ChannelManager`, we'll still see the original forwarding event not removed. Phantom
6583                 // payments will need an additional forwarding event before being claimed to make them look
6584                 // real by taking more time.
6585                 if (is_processing_events && num_forward_events <= 1) || num_forward_events < 1 {
6586                         pending_events.push_back((Event::PendingHTLCsForwardable {
6587                                 time_forwardable: Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS),
6588                         }, None));
6589                 }
6590         }
6591
6592         /// Checks whether [`ChannelMonitorUpdate`]s generated by the receipt of a remote
6593         /// [`msgs::RevokeAndACK`] should be held for the given channel until some other action
6594         /// completes. Note that this needs to happen in the same [`PeerState`] mutex as any release of
6595         /// the [`ChannelMonitorUpdate`] in question.
6596         fn raa_monitor_updates_held(&self,
6597                 actions_blocking_raa_monitor_updates: &BTreeMap<ChannelId, Vec<RAAMonitorUpdateBlockingAction>>,
6598                 channel_funding_outpoint: OutPoint, counterparty_node_id: PublicKey
6599         ) -> bool {
6600                 actions_blocking_raa_monitor_updates
6601                         .get(&channel_funding_outpoint.to_channel_id()).map(|v| !v.is_empty()).unwrap_or(false)
6602                 || self.pending_events.lock().unwrap().iter().any(|(_, action)| {
6603                         action == &Some(EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
6604                                 channel_funding_outpoint,
6605                                 counterparty_node_id,
6606                         })
6607                 })
6608         }
6609
6610         #[cfg(any(test, feature = "_test_utils"))]
6611         pub(crate) fn test_raa_monitor_updates_held(&self,
6612                 counterparty_node_id: PublicKey, channel_id: ChannelId
6613         ) -> bool {
6614                 let per_peer_state = self.per_peer_state.read().unwrap();
6615                 if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
6616                         let mut peer_state_lck = peer_state_mtx.lock().unwrap();
6617                         let peer_state = &mut *peer_state_lck;
6618
6619                         if let Some(chan) = peer_state.channel_by_id.get(&channel_id) {
6620                                 return self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
6621                                         chan.context().get_funding_txo().unwrap(), counterparty_node_id);
6622                         }
6623                 }
6624                 false
6625         }
6626
6627         fn internal_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) -> Result<(), MsgHandleErrInternal> {
6628                 let htlcs_to_fail = {
6629                         let per_peer_state = self.per_peer_state.read().unwrap();
6630                         let mut peer_state_lock = per_peer_state.get(counterparty_node_id)
6631                                 .ok_or_else(|| {
6632                                         debug_assert!(false);
6633                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6634                                 }).map(|mtx| mtx.lock().unwrap())?;
6635                         let peer_state = &mut *peer_state_lock;
6636                         match peer_state.channel_by_id.entry(msg.channel_id) {
6637                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6638                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6639                                                 let funding_txo_opt = chan.context.get_funding_txo();
6640                                                 let mon_update_blocked = if let Some(funding_txo) = funding_txo_opt {
6641                                                         self.raa_monitor_updates_held(
6642                                                                 &peer_state.actions_blocking_raa_monitor_updates, funding_txo,
6643                                                                 *counterparty_node_id)
6644                                                 } else { false };
6645                                                 let (htlcs_to_fail, monitor_update_opt) = try_chan_phase_entry!(self,
6646                                                         chan.revoke_and_ack(&msg, &self.fee_estimator, &self.logger, mon_update_blocked), chan_phase_entry);
6647                                                 if let Some(monitor_update) = monitor_update_opt {
6648                                                         let funding_txo = funding_txo_opt
6649                                                                 .expect("Funding outpoint must have been set for RAA handling to succeed");
6650                                                         handle_new_monitor_update!(self, funding_txo, monitor_update,
6651                                                                 peer_state_lock, peer_state, per_peer_state, chan);
6652                                                 }
6653                                                 htlcs_to_fail
6654                                         } else {
6655                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6656                                                         "Got a revoke_and_ack message for an unfunded channel!".into())), chan_phase_entry);
6657                                         }
6658                                 },
6659                                 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))
6660                         }
6661                 };
6662                 self.fail_holding_cell_htlcs(htlcs_to_fail, msg.channel_id, counterparty_node_id);
6663                 Ok(())
6664         }
6665
6666         fn internal_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) -> Result<(), MsgHandleErrInternal> {
6667                 let per_peer_state = self.per_peer_state.read().unwrap();
6668                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6669                         .ok_or_else(|| {
6670                                 debug_assert!(false);
6671                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6672                         })?;
6673                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6674                 let peer_state = &mut *peer_state_lock;
6675                 match peer_state.channel_by_id.entry(msg.channel_id) {
6676                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6677                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6678                                         try_chan_phase_entry!(self, chan.update_fee(&self.fee_estimator, &msg, &self.logger), chan_phase_entry);
6679                                 } else {
6680                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6681                                                 "Got an update_fee message for an unfunded channel!".into())), chan_phase_entry);
6682                                 }
6683                         },
6684                         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))
6685                 }
6686                 Ok(())
6687         }
6688
6689         fn internal_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) -> Result<(), MsgHandleErrInternal> {
6690                 let per_peer_state = self.per_peer_state.read().unwrap();
6691                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6692                         .ok_or_else(|| {
6693                                 debug_assert!(false);
6694                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6695                         })?;
6696                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6697                 let peer_state = &mut *peer_state_lock;
6698                 match peer_state.channel_by_id.entry(msg.channel_id) {
6699                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6700                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6701                                         if !chan.context.is_usable() {
6702                                                 return Err(MsgHandleErrInternal::from_no_close(LightningError{err: "Got an announcement_signatures before we were ready for it".to_owned(), action: msgs::ErrorAction::IgnoreError}));
6703                                         }
6704
6705                                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
6706                                                 msg: try_chan_phase_entry!(self, chan.announcement_signatures(
6707                                                         &self.node_signer, self.genesis_hash.clone(), self.best_block.read().unwrap().height(),
6708                                                         msg, &self.default_configuration
6709                                                 ), chan_phase_entry),
6710                                                 // Note that announcement_signatures fails if the channel cannot be announced,
6711                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
6712                                                 update_msg: Some(self.get_channel_update_for_broadcast(chan).unwrap()),
6713                                         });
6714                                 } else {
6715                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6716                                                 "Got an announcement_signatures message for an unfunded channel!".into())), chan_phase_entry);
6717                                 }
6718                         },
6719                         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))
6720                 }
6721                 Ok(())
6722         }
6723
6724         /// Returns DoPersist if anything changed, otherwise either SkipPersistNoEvents or an Err.
6725         fn internal_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) -> Result<NotifyOption, MsgHandleErrInternal> {
6726                 let (chan_counterparty_node_id, chan_id) = match self.short_to_chan_info.read().unwrap().get(&msg.contents.short_channel_id) {
6727                         Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
6728                         None => {
6729                                 // It's not a local channel
6730                                 return Ok(NotifyOption::SkipPersistNoEvents)
6731                         }
6732                 };
6733                 let per_peer_state = self.per_peer_state.read().unwrap();
6734                 let peer_state_mutex_opt = per_peer_state.get(&chan_counterparty_node_id);
6735                 if peer_state_mutex_opt.is_none() {
6736                         return Ok(NotifyOption::SkipPersistNoEvents)
6737                 }
6738                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
6739                 let peer_state = &mut *peer_state_lock;
6740                 match peer_state.channel_by_id.entry(chan_id) {
6741                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6742                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6743                                         if chan.context.get_counterparty_node_id() != *counterparty_node_id {
6744                                                 if chan.context.should_announce() {
6745                                                         // If the announcement is about a channel of ours which is public, some
6746                                                         // other peer may simply be forwarding all its gossip to us. Don't provide
6747                                                         // a scary-looking error message and return Ok instead.
6748                                                         return Ok(NotifyOption::SkipPersistNoEvents);
6749                                                 }
6750                                                 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));
6751                                         }
6752                                         let were_node_one = self.get_our_node_id().serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
6753                                         let msg_from_node_one = msg.contents.flags & 1 == 0;
6754                                         if were_node_one == msg_from_node_one {
6755                                                 return Ok(NotifyOption::SkipPersistNoEvents);
6756                                         } else {
6757                                                 log_debug!(self.logger, "Received channel_update {:?} for channel {}.", msg, chan_id);
6758                                                 let did_change = try_chan_phase_entry!(self, chan.channel_update(&msg), chan_phase_entry);
6759                                                 // If nothing changed after applying their update, we don't need to bother
6760                                                 // persisting.
6761                                                 if !did_change {
6762                                                         return Ok(NotifyOption::SkipPersistNoEvents);
6763                                                 }
6764                                         }
6765                                 } else {
6766                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6767                                                 "Got a channel_update for an unfunded channel!".into())), chan_phase_entry);
6768                                 }
6769                         },
6770                         hash_map::Entry::Vacant(_) => return Ok(NotifyOption::SkipPersistNoEvents)
6771                 }
6772                 Ok(NotifyOption::DoPersist)
6773         }
6774
6775         fn internal_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) -> Result<NotifyOption, MsgHandleErrInternal> {
6776                 let htlc_forwards;
6777                 let need_lnd_workaround = {
6778                         let per_peer_state = self.per_peer_state.read().unwrap();
6779
6780                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6781                                 .ok_or_else(|| {
6782                                         debug_assert!(false);
6783                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6784                                 })?;
6785                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6786                         let peer_state = &mut *peer_state_lock;
6787                         match peer_state.channel_by_id.entry(msg.channel_id) {
6788                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6789                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6790                                                 // Currently, we expect all holding cell update_adds to be dropped on peer
6791                                                 // disconnect, so Channel's reestablish will never hand us any holding cell
6792                                                 // freed HTLCs to fail backwards. If in the future we no longer drop pending
6793                                                 // add-HTLCs on disconnect, we may be handed HTLCs to fail backwards here.
6794                                                 let responses = try_chan_phase_entry!(self, chan.channel_reestablish(
6795                                                         msg, &self.logger, &self.node_signer, self.genesis_hash,
6796                                                         &self.default_configuration, &*self.best_block.read().unwrap()), chan_phase_entry);
6797                                                 let mut channel_update = None;
6798                                                 if let Some(msg) = responses.shutdown_msg {
6799                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
6800                                                                 node_id: counterparty_node_id.clone(),
6801                                                                 msg,
6802                                                         });
6803                                                 } else if chan.context.is_usable() {
6804                                                         // If the channel is in a usable state (ie the channel is not being shut
6805                                                         // down), send a unicast channel_update to our counterparty to make sure
6806                                                         // they have the latest channel parameters.
6807                                                         if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
6808                                                                 channel_update = Some(events::MessageSendEvent::SendChannelUpdate {
6809                                                                         node_id: chan.context.get_counterparty_node_id(),
6810                                                                         msg,
6811                                                                 });
6812                                                         }
6813                                                 }
6814                                                 let need_lnd_workaround = chan.context.workaround_lnd_bug_4006.take();
6815                                                 htlc_forwards = self.handle_channel_resumption(
6816                                                         &mut peer_state.pending_msg_events, chan, responses.raa, responses.commitment_update, responses.order,
6817                                                         Vec::new(), None, responses.channel_ready, responses.announcement_sigs);
6818                                                 if let Some(upd) = channel_update {
6819                                                         peer_state.pending_msg_events.push(upd);
6820                                                 }
6821                                                 need_lnd_workaround
6822                                         } else {
6823                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6824                                                         "Got a channel_reestablish message for an unfunded channel!".into())), chan_phase_entry);
6825                                         }
6826                                 },
6827                                 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))
6828                         }
6829                 };
6830
6831                 let mut persist = NotifyOption::SkipPersistHandleEvents;
6832                 if let Some(forwards) = htlc_forwards {
6833                         self.forward_htlcs(&mut [forwards][..]);
6834                         persist = NotifyOption::DoPersist;
6835                 }
6836
6837                 if let Some(channel_ready_msg) = need_lnd_workaround {
6838                         self.internal_channel_ready(counterparty_node_id, &channel_ready_msg)?;
6839                 }
6840                 Ok(persist)
6841         }
6842
6843         /// Process pending events from the [`chain::Watch`], returning whether any events were processed.
6844         fn process_pending_monitor_events(&self) -> bool {
6845                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
6846
6847                 let mut failed_channels = Vec::new();
6848                 let mut pending_monitor_events = self.chain_monitor.release_pending_monitor_events();
6849                 let has_pending_monitor_events = !pending_monitor_events.is_empty();
6850                 for (funding_outpoint, mut monitor_events, counterparty_node_id) in pending_monitor_events.drain(..) {
6851                         for monitor_event in monitor_events.drain(..) {
6852                                 match monitor_event {
6853                                         MonitorEvent::HTLCEvent(htlc_update) => {
6854                                                 if let Some(preimage) = htlc_update.payment_preimage {
6855                                                         log_trace!(self.logger, "Claiming HTLC with preimage {} from our monitor", preimage);
6856                                                         self.claim_funds_internal(htlc_update.source, preimage, htlc_update.htlc_value_satoshis.map(|v| v * 1000), true, counterparty_node_id, funding_outpoint);
6857                                                 } else {
6858                                                         log_trace!(self.logger, "Failing HTLC with hash {} from our monitor", &htlc_update.payment_hash);
6859                                                         let receiver = HTLCDestination::NextHopChannel { node_id: counterparty_node_id, channel_id: funding_outpoint.to_channel_id() };
6860                                                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
6861                                                         self.fail_htlc_backwards_internal(&htlc_update.source, &htlc_update.payment_hash, &reason, receiver);
6862                                                 }
6863                                         },
6864                                         MonitorEvent::HolderForceClosed(funding_outpoint) => {
6865                                                 let counterparty_node_id_opt = match counterparty_node_id {
6866                                                         Some(cp_id) => Some(cp_id),
6867                                                         None => {
6868                                                                 // TODO: Once we can rely on the counterparty_node_id from the
6869                                                                 // monitor event, this and the id_to_peer map should be removed.
6870                                                                 let id_to_peer = self.id_to_peer.lock().unwrap();
6871                                                                 id_to_peer.get(&funding_outpoint.to_channel_id()).cloned()
6872                                                         }
6873                                                 };
6874                                                 if let Some(counterparty_node_id) = counterparty_node_id_opt {
6875                                                         let per_peer_state = self.per_peer_state.read().unwrap();
6876                                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
6877                                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6878                                                                 let peer_state = &mut *peer_state_lock;
6879                                                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6880                                                                 if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(funding_outpoint.to_channel_id()) {
6881                                                                         if let ChannelPhase::Funded(mut chan) = remove_channel_phase!(self, chan_phase_entry) {
6882                                                                                 failed_channels.push(chan.context.force_shutdown(false));
6883                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6884                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6885                                                                                                 msg: update
6886                                                                                         });
6887                                                                                 }
6888                                                                                 self.issue_channel_close_events(&chan.context, ClosureReason::HolderForceClosed);
6889                                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
6890                                                                                         node_id: chan.context.get_counterparty_node_id(),
6891                                                                                         action: msgs::ErrorAction::SendErrorMessage {
6892                                                                                                 msg: msgs::ErrorMessage { channel_id: chan.context.channel_id(), data: "Channel force-closed".to_owned() }
6893                                                                                         },
6894                                                                                 });
6895                                                                         }
6896                                                                 }
6897                                                         }
6898                                                 }
6899                                         },
6900                                         MonitorEvent::Completed { funding_txo, monitor_update_id } => {
6901                                                 self.channel_monitor_updated(&funding_txo, monitor_update_id, counterparty_node_id.as_ref());
6902                                         },
6903                                 }
6904                         }
6905                 }
6906
6907                 for failure in failed_channels.drain(..) {
6908                         self.finish_close_channel(failure);
6909                 }
6910
6911                 has_pending_monitor_events
6912         }
6913
6914         /// In chanmon_consistency_target, we'd like to be able to restore monitor updating without
6915         /// handling all pending events (i.e. not PendingHTLCsForwardable). Thus, we expose monitor
6916         /// update events as a separate process method here.
6917         #[cfg(fuzzing)]
6918         pub fn process_monitor_events(&self) {
6919                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6920                 self.process_pending_monitor_events();
6921         }
6922
6923         /// Check the holding cell in each channel and free any pending HTLCs in them if possible.
6924         /// Returns whether there were any updates such as if pending HTLCs were freed or a monitor
6925         /// update was applied.
6926         fn check_free_holding_cells(&self) -> bool {
6927                 let mut has_monitor_update = false;
6928                 let mut failed_htlcs = Vec::new();
6929
6930                 // Walk our list of channels and find any that need to update. Note that when we do find an
6931                 // update, if it includes actions that must be taken afterwards, we have to drop the
6932                 // per-peer state lock as well as the top level per_peer_state lock. Thus, we loop until we
6933                 // manage to go through all our peers without finding a single channel to update.
6934                 'peer_loop: loop {
6935                         let per_peer_state = self.per_peer_state.read().unwrap();
6936                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6937                                 'chan_loop: loop {
6938                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6939                                         let peer_state: &mut PeerState<_> = &mut *peer_state_lock;
6940                                         for (channel_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
6941                                                 |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
6942                                         ) {
6943                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
6944                                                 let funding_txo = chan.context.get_funding_txo();
6945                                                 let (monitor_opt, holding_cell_failed_htlcs) =
6946                                                         chan.maybe_free_holding_cell_htlcs(&self.fee_estimator, &self.logger);
6947                                                 if !holding_cell_failed_htlcs.is_empty() {
6948                                                         failed_htlcs.push((holding_cell_failed_htlcs, *channel_id, counterparty_node_id));
6949                                                 }
6950                                                 if let Some(monitor_update) = monitor_opt {
6951                                                         has_monitor_update = true;
6952
6953                                                         handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update,
6954                                                                 peer_state_lock, peer_state, per_peer_state, chan);
6955                                                         continue 'peer_loop;
6956                                                 }
6957                                         }
6958                                         break 'chan_loop;
6959                                 }
6960                         }
6961                         break 'peer_loop;
6962                 }
6963
6964                 let has_update = has_monitor_update || !failed_htlcs.is_empty();
6965                 for (failures, channel_id, counterparty_node_id) in failed_htlcs.drain(..) {
6966                         self.fail_holding_cell_htlcs(failures, channel_id, &counterparty_node_id);
6967                 }
6968
6969                 has_update
6970         }
6971
6972         /// Check whether any channels have finished removing all pending updates after a shutdown
6973         /// exchange and can now send a closing_signed.
6974         /// Returns whether any closing_signed messages were generated.
6975         fn maybe_generate_initial_closing_signed(&self) -> bool {
6976                 let mut handle_errors: Vec<(PublicKey, Result<(), _>)> = Vec::new();
6977                 let mut has_update = false;
6978                 let mut shutdown_results = Vec::new();
6979                 {
6980                         let per_peer_state = self.per_peer_state.read().unwrap();
6981
6982                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6983                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6984                                 let peer_state = &mut *peer_state_lock;
6985                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6986                                 peer_state.channel_by_id.retain(|channel_id, phase| {
6987                                         match phase {
6988                                                 ChannelPhase::Funded(chan) => {
6989                                                         let unbroadcasted_batch_funding_txid = chan.context.unbroadcasted_batch_funding_txid();
6990                                                         match chan.maybe_propose_closing_signed(&self.fee_estimator, &self.logger) {
6991                                                                 Ok((msg_opt, tx_opt)) => {
6992                                                                         if let Some(msg) = msg_opt {
6993                                                                                 has_update = true;
6994                                                                                 pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
6995                                                                                         node_id: chan.context.get_counterparty_node_id(), msg,
6996                                                                                 });
6997                                                                         }
6998                                                                         if let Some(tx) = tx_opt {
6999                                                                                 // We're done with this channel. We got a closing_signed and sent back
7000                                                                                 // a closing_signed with a closing transaction to broadcast.
7001                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
7002                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
7003                                                                                                 msg: update
7004                                                                                         });
7005                                                                                 }
7006
7007                                                                                 self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
7008
7009                                                                                 log_info!(self.logger, "Broadcasting {}", log_tx!(tx));
7010                                                                                 self.tx_broadcaster.broadcast_transactions(&[&tx]);
7011                                                                                 update_maps_on_chan_removal!(self, &chan.context);
7012                                                                                 shutdown_results.push((None, Vec::new(), unbroadcasted_batch_funding_txid));
7013                                                                                 false
7014                                                                         } else { true }
7015                                                                 },
7016                                                                 Err(e) => {
7017                                                                         has_update = true;
7018                                                                         let (close_channel, res) = convert_chan_phase_err!(self, e, chan, channel_id, FUNDED_CHANNEL);
7019                                                                         handle_errors.push((chan.context.get_counterparty_node_id(), Err(res)));
7020                                                                         !close_channel
7021                                                                 }
7022                                                         }
7023                                                 },
7024                                                 _ => true, // Retain unfunded channels if present.
7025                                         }
7026                                 });
7027                         }
7028                 }
7029
7030                 for (counterparty_node_id, err) in handle_errors.drain(..) {
7031                         let _ = handle_error!(self, err, counterparty_node_id);
7032                 }
7033
7034                 for shutdown_result in shutdown_results.drain(..) {
7035                         self.finish_close_channel(shutdown_result);
7036                 }
7037
7038                 has_update
7039         }
7040
7041         /// Handle a list of channel failures during a block_connected or block_disconnected call,
7042         /// pushing the channel monitor update (if any) to the background events queue and removing the
7043         /// Channel object.
7044         fn handle_init_event_channel_failures(&self, mut failed_channels: Vec<ShutdownResult>) {
7045                 for mut failure in failed_channels.drain(..) {
7046                         // Either a commitment transactions has been confirmed on-chain or
7047                         // Channel::block_disconnected detected that the funding transaction has been
7048                         // reorganized out of the main chain.
7049                         // We cannot broadcast our latest local state via monitor update (as
7050                         // Channel::force_shutdown tries to make us do) as we may still be in initialization,
7051                         // so we track the update internally and handle it when the user next calls
7052                         // timer_tick_occurred, guaranteeing we're running normally.
7053                         if let Some((counterparty_node_id, funding_txo, update)) = failure.0.take() {
7054                                 assert_eq!(update.updates.len(), 1);
7055                                 if let ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } = update.updates[0] {
7056                                         assert!(should_broadcast);
7057                                 } else { unreachable!(); }
7058                                 self.pending_background_events.lock().unwrap().push(
7059                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
7060                                                 counterparty_node_id, funding_txo, update
7061                                         });
7062                         }
7063                         self.finish_close_channel(failure);
7064                 }
7065         }
7066
7067         /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
7068         /// to pay us.
7069         ///
7070         /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
7071         /// [`PaymentHash`] and [`PaymentPreimage`] for you.
7072         ///
7073         /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentClaimable`], which
7074         /// will have the [`PaymentClaimable::purpose`] be [`PaymentPurpose::InvoicePayment`] with
7075         /// its [`PaymentPurpose::InvoicePayment::payment_preimage`] field filled in. That should then be
7076         /// passed directly to [`claim_funds`].
7077         ///
7078         /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
7079         ///
7080         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
7081         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
7082         ///
7083         /// # Note
7084         ///
7085         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
7086         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
7087         ///
7088         /// Errors if `min_value_msat` is greater than total bitcoin supply.
7089         ///
7090         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
7091         /// on versions of LDK prior to 0.0.114.
7092         ///
7093         /// [`claim_funds`]: Self::claim_funds
7094         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
7095         /// [`PaymentClaimable::purpose`]: events::Event::PaymentClaimable::purpose
7096         /// [`PaymentPurpose::InvoicePayment`]: events::PaymentPurpose::InvoicePayment
7097         /// [`PaymentPurpose::InvoicePayment::payment_preimage`]: events::PaymentPurpose::InvoicePayment::payment_preimage
7098         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
7099         pub fn create_inbound_payment(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32,
7100                 min_final_cltv_expiry_delta: Option<u16>) -> Result<(PaymentHash, PaymentSecret), ()> {
7101                 inbound_payment::create(&self.inbound_payment_key, min_value_msat, invoice_expiry_delta_secs,
7102                         &self.entropy_source, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
7103                         min_final_cltv_expiry_delta)
7104         }
7105
7106         /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
7107         /// stored external to LDK.
7108         ///
7109         /// A [`PaymentClaimable`] event will only be generated if the [`PaymentSecret`] matches a
7110         /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
7111         /// the `min_value_msat` provided here, if one is provided.
7112         ///
7113         /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) should be globally unique, though
7114         /// note that LDK will not stop you from registering duplicate payment hashes for inbound
7115         /// payments.
7116         ///
7117         /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
7118         /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
7119         /// before a [`PaymentClaimable`] event will be generated, ensuring that we do not provide the
7120         /// sender "proof-of-payment" unless they have paid the required amount.
7121         ///
7122         /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
7123         /// in excess of the current time. This should roughly match the expiry time set in the invoice.
7124         /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
7125         /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
7126         /// invoices when no timeout is set.
7127         ///
7128         /// Note that we use block header time to time-out pending inbound payments (with some margin
7129         /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
7130         /// accept a payment and generate a [`PaymentClaimable`] event for some time after the expiry.
7131         /// If you need exact expiry semantics, you should enforce them upon receipt of
7132         /// [`PaymentClaimable`].
7133         ///
7134         /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry_delta`
7135         /// set to at least [`MIN_FINAL_CLTV_EXPIRY_DELTA`].
7136         ///
7137         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
7138         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
7139         ///
7140         /// # Note
7141         ///
7142         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
7143         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
7144         ///
7145         /// Errors if `min_value_msat` is greater than total bitcoin supply.
7146         ///
7147         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
7148         /// on versions of LDK prior to 0.0.114.
7149         ///
7150         /// [`create_inbound_payment`]: Self::create_inbound_payment
7151         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
7152         pub fn create_inbound_payment_for_hash(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>,
7153                 invoice_expiry_delta_secs: u32, min_final_cltv_expiry: Option<u16>) -> Result<PaymentSecret, ()> {
7154                 inbound_payment::create_from_hash(&self.inbound_payment_key, min_value_msat, payment_hash,
7155                         invoice_expiry_delta_secs, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
7156                         min_final_cltv_expiry)
7157         }
7158
7159         /// Gets an LDK-generated payment preimage from a payment hash and payment secret that were
7160         /// previously returned from [`create_inbound_payment`].
7161         ///
7162         /// [`create_inbound_payment`]: Self::create_inbound_payment
7163         pub fn get_payment_preimage(&self, payment_hash: PaymentHash, payment_secret: PaymentSecret) -> Result<PaymentPreimage, APIError> {
7164                 inbound_payment::get_payment_preimage(payment_hash, payment_secret, &self.inbound_payment_key)
7165         }
7166
7167         /// Gets a fake short channel id for use in receiving [phantom node payments]. These fake scids
7168         /// are used when constructing the phantom invoice's route hints.
7169         ///
7170         /// [phantom node payments]: crate::sign::PhantomKeysManager
7171         pub fn get_phantom_scid(&self) -> u64 {
7172                 let best_block_height = self.best_block.read().unwrap().height();
7173                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
7174                 loop {
7175                         let scid_candidate = fake_scid::Namespace::Phantom.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
7176                         // Ensure the generated scid doesn't conflict with a real channel.
7177                         match short_to_chan_info.get(&scid_candidate) {
7178                                 Some(_) => continue,
7179                                 None => return scid_candidate
7180                         }
7181                 }
7182         }
7183
7184         /// Gets route hints for use in receiving [phantom node payments].
7185         ///
7186         /// [phantom node payments]: crate::sign::PhantomKeysManager
7187         pub fn get_phantom_route_hints(&self) -> PhantomRouteHints {
7188                 PhantomRouteHints {
7189                         channels: self.list_usable_channels(),
7190                         phantom_scid: self.get_phantom_scid(),
7191                         real_node_pubkey: self.get_our_node_id(),
7192                 }
7193         }
7194
7195         /// Gets a fake short channel id for use in receiving intercepted payments. These fake scids are
7196         /// used when constructing the route hints for HTLCs intended to be intercepted. See
7197         /// [`ChannelManager::forward_intercepted_htlc`].
7198         ///
7199         /// Note that this method is not guaranteed to return unique values, you may need to call it a few
7200         /// times to get a unique scid.
7201         pub fn get_intercept_scid(&self) -> u64 {
7202                 let best_block_height = self.best_block.read().unwrap().height();
7203                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
7204                 loop {
7205                         let scid_candidate = fake_scid::Namespace::Intercept.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
7206                         // Ensure the generated scid doesn't conflict with a real channel.
7207                         if short_to_chan_info.contains_key(&scid_candidate) { continue }
7208                         return scid_candidate
7209                 }
7210         }
7211
7212         /// Gets inflight HTLC information by processing pending outbound payments that are in
7213         /// our channels. May be used during pathfinding to account for in-use channel liquidity.
7214         pub fn compute_inflight_htlcs(&self) -> InFlightHtlcs {
7215                 let mut inflight_htlcs = InFlightHtlcs::new();
7216
7217                 let per_peer_state = self.per_peer_state.read().unwrap();
7218                 for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7219                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7220                         let peer_state = &mut *peer_state_lock;
7221                         for chan in peer_state.channel_by_id.values().filter_map(
7222                                 |phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }
7223                         ) {
7224                                 for (htlc_source, _) in chan.inflight_htlc_sources() {
7225                                         if let HTLCSource::OutboundRoute { path, .. } = htlc_source {
7226                                                 inflight_htlcs.process_path(path, self.get_our_node_id());
7227                                         }
7228                                 }
7229                         }
7230                 }
7231
7232                 inflight_htlcs
7233         }
7234
7235         #[cfg(any(test, feature = "_test_utils"))]
7236         pub fn get_and_clear_pending_events(&self) -> Vec<events::Event> {
7237                 let events = core::cell::RefCell::new(Vec::new());
7238                 let event_handler = |event: events::Event| events.borrow_mut().push(event);
7239                 self.process_pending_events(&event_handler);
7240                 events.into_inner()
7241         }
7242
7243         #[cfg(feature = "_test_utils")]
7244         pub fn push_pending_event(&self, event: events::Event) {
7245                 let mut events = self.pending_events.lock().unwrap();
7246                 events.push_back((event, None));
7247         }
7248
7249         #[cfg(test)]
7250         pub fn pop_pending_event(&self) -> Option<events::Event> {
7251                 let mut events = self.pending_events.lock().unwrap();
7252                 events.pop_front().map(|(e, _)| e)
7253         }
7254
7255         #[cfg(test)]
7256         pub fn has_pending_payments(&self) -> bool {
7257                 self.pending_outbound_payments.has_pending_payments()
7258         }
7259
7260         #[cfg(test)]
7261         pub fn clear_pending_payments(&self) {
7262                 self.pending_outbound_payments.clear_pending_payments()
7263         }
7264
7265         /// When something which was blocking a channel from updating its [`ChannelMonitor`] (e.g. an
7266         /// [`Event`] being handled) completes, this should be called to restore the channel to normal
7267         /// operation. It will double-check that nothing *else* is also blocking the same channel from
7268         /// making progress and then let any blocked [`ChannelMonitorUpdate`]s fly.
7269         fn handle_monitor_update_release(&self, counterparty_node_id: PublicKey, channel_funding_outpoint: OutPoint, mut completed_blocker: Option<RAAMonitorUpdateBlockingAction>) {
7270                 loop {
7271                         let per_peer_state = self.per_peer_state.read().unwrap();
7272                         if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
7273                                 let mut peer_state_lck = peer_state_mtx.lock().unwrap();
7274                                 let peer_state = &mut *peer_state_lck;
7275
7276                                 if let Some(blocker) = completed_blocker.take() {
7277                                         // Only do this on the first iteration of the loop.
7278                                         if let Some(blockers) = peer_state.actions_blocking_raa_monitor_updates
7279                                                 .get_mut(&channel_funding_outpoint.to_channel_id())
7280                                         {
7281                                                 blockers.retain(|iter| iter != &blocker);
7282                                         }
7283                                 }
7284
7285                                 if self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
7286                                         channel_funding_outpoint, counterparty_node_id) {
7287                                         // Check that, while holding the peer lock, we don't have anything else
7288                                         // blocking monitor updates for this channel. If we do, release the monitor
7289                                         // update(s) when those blockers complete.
7290                                         log_trace!(self.logger, "Delaying monitor unlock for channel {} as another channel's mon update needs to complete first",
7291                                                 &channel_funding_outpoint.to_channel_id());
7292                                         break;
7293                                 }
7294
7295                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(channel_funding_outpoint.to_channel_id()) {
7296                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7297                                                 debug_assert_eq!(chan.context.get_funding_txo().unwrap(), channel_funding_outpoint);
7298                                                 if let Some((monitor_update, further_update_exists)) = chan.unblock_next_blocked_monitor_update() {
7299                                                         log_debug!(self.logger, "Unlocking monitor updating for channel {} and updating monitor",
7300                                                                 channel_funding_outpoint.to_channel_id());
7301                                                         handle_new_monitor_update!(self, channel_funding_outpoint, monitor_update,
7302                                                                 peer_state_lck, peer_state, per_peer_state, chan);
7303                                                         if further_update_exists {
7304                                                                 // If there are more `ChannelMonitorUpdate`s to process, restart at the
7305                                                                 // top of the loop.
7306                                                                 continue;
7307                                                         }
7308                                                 } else {
7309                                                         log_trace!(self.logger, "Unlocked monitor updating for channel {} without monitors to update",
7310                                                                 channel_funding_outpoint.to_channel_id());
7311                                                 }
7312                                         }
7313                                 }
7314                         } else {
7315                                 log_debug!(self.logger,
7316                                         "Got a release post-RAA monitor update for peer {} but the channel is gone",
7317                                         log_pubkey!(counterparty_node_id));
7318                         }
7319                         break;
7320                 }
7321         }
7322
7323         fn handle_post_event_actions(&self, actions: Vec<EventCompletionAction>) {
7324                 for action in actions {
7325                         match action {
7326                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
7327                                         channel_funding_outpoint, counterparty_node_id
7328                                 } => {
7329                                         self.handle_monitor_update_release(counterparty_node_id, channel_funding_outpoint, None);
7330                                 }
7331                         }
7332                 }
7333         }
7334
7335         /// Processes any events asynchronously in the order they were generated since the last call
7336         /// using the given event handler.
7337         ///
7338         /// See the trait-level documentation of [`EventsProvider`] for requirements.
7339         pub async fn process_pending_events_async<Future: core::future::Future, H: Fn(Event) -> Future>(
7340                 &self, handler: H
7341         ) {
7342                 let mut ev;
7343                 process_events_body!(self, ev, { handler(ev).await });
7344         }
7345 }
7346
7347 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>
7348 where
7349         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7350         T::Target: BroadcasterInterface,
7351         ES::Target: EntropySource,
7352         NS::Target: NodeSigner,
7353         SP::Target: SignerProvider,
7354         F::Target: FeeEstimator,
7355         R::Target: Router,
7356         L::Target: Logger,
7357 {
7358         /// Returns `MessageSendEvent`s strictly ordered per-peer, in the order they were generated.
7359         /// The returned array will contain `MessageSendEvent`s for different peers if
7360         /// `MessageSendEvent`s to more than one peer exists, but `MessageSendEvent`s to the same peer
7361         /// is always placed next to each other.
7362         ///
7363         /// Note that that while `MessageSendEvent`s are strictly ordered per-peer, the peer order for
7364         /// the chunks of `MessageSendEvent`s for different peers is random. I.e. if the array contains
7365         /// `MessageSendEvent`s  for both `node_a` and `node_b`, the `MessageSendEvent`s for `node_a`
7366         /// will randomly be placed first or last in the returned array.
7367         ///
7368         /// Note that even though `BroadcastChannelAnnouncement` and `BroadcastChannelUpdate`
7369         /// `MessageSendEvent`s are intended to be broadcasted to all peers, they will be pleaced among
7370         /// the `MessageSendEvent`s to the specific peer they were generated under.
7371         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent> {
7372                 let events = RefCell::new(Vec::new());
7373                 PersistenceNotifierGuard::optionally_notify(self, || {
7374                         let mut result = NotifyOption::SkipPersistNoEvents;
7375
7376                         // TODO: This behavior should be documented. It's unintuitive that we query
7377                         // ChannelMonitors when clearing other events.
7378                         if self.process_pending_monitor_events() {
7379                                 result = NotifyOption::DoPersist;
7380                         }
7381
7382                         if self.check_free_holding_cells() {
7383                                 result = NotifyOption::DoPersist;
7384                         }
7385                         if self.maybe_generate_initial_closing_signed() {
7386                                 result = NotifyOption::DoPersist;
7387                         }
7388
7389                         let mut pending_events = Vec::new();
7390                         let per_peer_state = self.per_peer_state.read().unwrap();
7391                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7392                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7393                                 let peer_state = &mut *peer_state_lock;
7394                                 if peer_state.pending_msg_events.len() > 0 {
7395                                         pending_events.append(&mut peer_state.pending_msg_events);
7396                                 }
7397                         }
7398
7399                         if !pending_events.is_empty() {
7400                                 events.replace(pending_events);
7401                         }
7402
7403                         result
7404                 });
7405                 events.into_inner()
7406         }
7407 }
7408
7409 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>
7410 where
7411         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7412         T::Target: BroadcasterInterface,
7413         ES::Target: EntropySource,
7414         NS::Target: NodeSigner,
7415         SP::Target: SignerProvider,
7416         F::Target: FeeEstimator,
7417         R::Target: Router,
7418         L::Target: Logger,
7419 {
7420         /// Processes events that must be periodically handled.
7421         ///
7422         /// An [`EventHandler`] may safely call back to the provider in order to handle an event.
7423         /// However, it must not call [`Writeable::write`] as doing so would result in a deadlock.
7424         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler {
7425                 let mut ev;
7426                 process_events_body!(self, ev, handler.handle_event(ev));
7427         }
7428 }
7429
7430 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>
7431 where
7432         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7433         T::Target: BroadcasterInterface,
7434         ES::Target: EntropySource,
7435         NS::Target: NodeSigner,
7436         SP::Target: SignerProvider,
7437         F::Target: FeeEstimator,
7438         R::Target: Router,
7439         L::Target: Logger,
7440 {
7441         fn filtered_block_connected(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
7442                 {
7443                         let best_block = self.best_block.read().unwrap();
7444                         assert_eq!(best_block.block_hash(), header.prev_blockhash,
7445                                 "Blocks must be connected in chain-order - the connected header must build on the last connected header");
7446                         assert_eq!(best_block.height(), height - 1,
7447                                 "Blocks must be connected in chain-order - the connected block height must be one greater than the previous height");
7448                 }
7449
7450                 self.transactions_confirmed(header, txdata, height);
7451                 self.best_block_updated(header, height);
7452         }
7453
7454         fn block_disconnected(&self, header: &BlockHeader, height: u32) {
7455                 let _persistence_guard =
7456                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7457                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7458                 let new_height = height - 1;
7459                 {
7460                         let mut best_block = self.best_block.write().unwrap();
7461                         assert_eq!(best_block.block_hash(), header.block_hash(),
7462                                 "Blocks must be disconnected in chain-order - the disconnected header must be the last connected header");
7463                         assert_eq!(best_block.height(), height,
7464                                 "Blocks must be disconnected in chain-order - the disconnected block must have the correct height");
7465                         *best_block = BestBlock::new(header.prev_blockhash, new_height)
7466                 }
7467
7468                 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));
7469         }
7470 }
7471
7472 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>
7473 where
7474         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7475         T::Target: BroadcasterInterface,
7476         ES::Target: EntropySource,
7477         NS::Target: NodeSigner,
7478         SP::Target: SignerProvider,
7479         F::Target: FeeEstimator,
7480         R::Target: Router,
7481         L::Target: Logger,
7482 {
7483         fn transactions_confirmed(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
7484                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7485                 // during initialization prior to the chain_monitor being fully configured in some cases.
7486                 // See the docs for `ChannelManagerReadArgs` for more.
7487
7488                 let block_hash = header.block_hash();
7489                 log_trace!(self.logger, "{} transactions included in block {} at height {} provided", txdata.len(), block_hash, height);
7490
7491                 let _persistence_guard =
7492                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7493                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7494                 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)
7495                         .map(|(a, b)| (a, Vec::new(), b)));
7496
7497                 let last_best_block_height = self.best_block.read().unwrap().height();
7498                 if height < last_best_block_height {
7499                         let timestamp = self.highest_seen_timestamp.load(Ordering::Acquire);
7500                         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));
7501                 }
7502         }
7503
7504         fn best_block_updated(&self, header: &BlockHeader, height: u32) {
7505                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7506                 // during initialization prior to the chain_monitor being fully configured in some cases.
7507                 // See the docs for `ChannelManagerReadArgs` for more.
7508
7509                 let block_hash = header.block_hash();
7510                 log_trace!(self.logger, "New best block: {} at height {}", block_hash, height);
7511
7512                 let _persistence_guard =
7513                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7514                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7515                 *self.best_block.write().unwrap() = BestBlock::new(block_hash, height);
7516
7517                 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));
7518
7519                 macro_rules! max_time {
7520                         ($timestamp: expr) => {
7521                                 loop {
7522                                         // Update $timestamp to be the max of its current value and the block
7523                                         // timestamp. This should keep us close to the current time without relying on
7524                                         // having an explicit local time source.
7525                                         // Just in case we end up in a race, we loop until we either successfully
7526                                         // update $timestamp or decide we don't need to.
7527                                         let old_serial = $timestamp.load(Ordering::Acquire);
7528                                         if old_serial >= header.time as usize { break; }
7529                                         if $timestamp.compare_exchange(old_serial, header.time as usize, Ordering::AcqRel, Ordering::Relaxed).is_ok() {
7530                                                 break;
7531                                         }
7532                                 }
7533                         }
7534                 }
7535                 max_time!(self.highest_seen_timestamp);
7536                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
7537                 payment_secrets.retain(|_, inbound_payment| {
7538                         inbound_payment.expiry_time > header.time as u64
7539                 });
7540         }
7541
7542         fn get_relevant_txids(&self) -> Vec<(Txid, Option<BlockHash>)> {
7543                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
7544                 for (_cp_id, peer_state_mutex) in self.per_peer_state.read().unwrap().iter() {
7545                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7546                         let peer_state = &mut *peer_state_lock;
7547                         for chan in peer_state.channel_by_id.values().filter_map(|phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }) {
7548                                 if let (Some(funding_txo), Some(block_hash)) = (chan.context.get_funding_txo(), chan.context.get_funding_tx_confirmed_in()) {
7549                                         res.push((funding_txo.txid, Some(block_hash)));
7550                                 }
7551                         }
7552                 }
7553                 res
7554         }
7555
7556         fn transaction_unconfirmed(&self, txid: &Txid) {
7557                 let _persistence_guard =
7558                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7559                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7560                 self.do_chain_event(None, |channel| {
7561                         if let Some(funding_txo) = channel.context.get_funding_txo() {
7562                                 if funding_txo.txid == *txid {
7563                                         channel.funding_transaction_unconfirmed(&self.logger).map(|()| (None, Vec::new(), None))
7564                                 } else { Ok((None, Vec::new(), None)) }
7565                         } else { Ok((None, Vec::new(), None)) }
7566                 });
7567         }
7568 }
7569
7570 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>
7571 where
7572         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7573         T::Target: BroadcasterInterface,
7574         ES::Target: EntropySource,
7575         NS::Target: NodeSigner,
7576         SP::Target: SignerProvider,
7577         F::Target: FeeEstimator,
7578         R::Target: Router,
7579         L::Target: Logger,
7580 {
7581         /// Calls a function which handles an on-chain event (blocks dis/connected, transactions
7582         /// un/confirmed, etc) on each channel, handling any resulting errors or messages generated by
7583         /// the function.
7584         fn do_chain_event<FN: Fn(&mut Channel<SP>) -> Result<(Option<msgs::ChannelReady>, Vec<(HTLCSource, PaymentHash)>, Option<msgs::AnnouncementSignatures>), ClosureReason>>
7585                         (&self, height_opt: Option<u32>, f: FN) {
7586                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7587                 // during initialization prior to the chain_monitor being fully configured in some cases.
7588                 // See the docs for `ChannelManagerReadArgs` for more.
7589
7590                 let mut failed_channels = Vec::new();
7591                 let mut timed_out_htlcs = Vec::new();
7592                 {
7593                         let per_peer_state = self.per_peer_state.read().unwrap();
7594                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7595                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7596                                 let peer_state = &mut *peer_state_lock;
7597                                 let pending_msg_events = &mut peer_state.pending_msg_events;
7598                                 peer_state.channel_by_id.retain(|_, phase| {
7599                                         match phase {
7600                                                 // Retain unfunded channels.
7601                                                 ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => true,
7602                                                 ChannelPhase::Funded(channel) => {
7603                                                         let res = f(channel);
7604                                                         if let Ok((channel_ready_opt, mut timed_out_pending_htlcs, announcement_sigs)) = res {
7605                                                                 for (source, payment_hash) in timed_out_pending_htlcs.drain(..) {
7606                                                                         let (failure_code, data) = self.get_htlc_inbound_temp_fail_err_and_data(0x1000|14 /* expiry_too_soon */, &channel);
7607                                                                         timed_out_htlcs.push((source, payment_hash, HTLCFailReason::reason(failure_code, data),
7608                                                                                 HTLCDestination::NextHopChannel { node_id: Some(channel.context.get_counterparty_node_id()), channel_id: channel.context.channel_id() }));
7609                                                                 }
7610                                                                 if let Some(channel_ready) = channel_ready_opt {
7611                                                                         send_channel_ready!(self, pending_msg_events, channel, channel_ready);
7612                                                                         if channel.context.is_usable() {
7613                                                                                 log_trace!(self.logger, "Sending channel_ready with private initial channel_update for our counterparty on channel {}", channel.context.channel_id());
7614                                                                                 if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
7615                                                                                         pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
7616                                                                                                 node_id: channel.context.get_counterparty_node_id(),
7617                                                                                                 msg,
7618                                                                                         });
7619                                                                                 }
7620                                                                         } else {
7621                                                                                 log_trace!(self.logger, "Sending channel_ready WITHOUT channel_update for {}", channel.context.channel_id());
7622                                                                         }
7623                                                                 }
7624
7625                                                                 {
7626                                                                         let mut pending_events = self.pending_events.lock().unwrap();
7627                                                                         emit_channel_ready_event!(pending_events, channel);
7628                                                                 }
7629
7630                                                                 if let Some(announcement_sigs) = announcement_sigs {
7631                                                                         log_trace!(self.logger, "Sending announcement_signatures for channel {}", channel.context.channel_id());
7632                                                                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
7633                                                                                 node_id: channel.context.get_counterparty_node_id(),
7634                                                                                 msg: announcement_sigs,
7635                                                                         });
7636                                                                         if let Some(height) = height_opt {
7637                                                                                 if let Some(announcement) = channel.get_signed_channel_announcement(&self.node_signer, self.genesis_hash, height, &self.default_configuration) {
7638                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
7639                                                                                                 msg: announcement,
7640                                                                                                 // Note that announcement_signatures fails if the channel cannot be announced,
7641                                                                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
7642                                                                                                 update_msg: Some(self.get_channel_update_for_broadcast(channel).unwrap()),
7643                                                                                         });
7644                                                                                 }
7645                                                                         }
7646                                                                 }
7647                                                                 if channel.is_our_channel_ready() {
7648                                                                         if let Some(real_scid) = channel.context.get_short_channel_id() {
7649                                                                                 // If we sent a 0conf channel_ready, and now have an SCID, we add it
7650                                                                                 // to the short_to_chan_info map here. Note that we check whether we
7651                                                                                 // can relay using the real SCID at relay-time (i.e.
7652                                                                                 // enforce option_scid_alias then), and if the funding tx is ever
7653                                                                                 // un-confirmed we force-close the channel, ensuring short_to_chan_info
7654                                                                                 // is always consistent.
7655                                                                                 let mut short_to_chan_info = self.short_to_chan_info.write().unwrap();
7656                                                                                 let scid_insert = short_to_chan_info.insert(real_scid, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
7657                                                                                 assert!(scid_insert.is_none() || scid_insert.unwrap() == (channel.context.get_counterparty_node_id(), channel.context.channel_id()),
7658                                                                                         "SCIDs should never collide - ensure you weren't behind by a full {} blocks when creating channels",
7659                                                                                         fake_scid::MAX_SCID_BLOCKS_FROM_NOW);
7660                                                                         }
7661                                                                 }
7662                                                         } else if let Err(reason) = res {
7663                                                                 update_maps_on_chan_removal!(self, &channel.context);
7664                                                                 // It looks like our counterparty went on-chain or funding transaction was
7665                                                                 // reorged out of the main chain. Close the channel.
7666                                                                 failed_channels.push(channel.context.force_shutdown(true));
7667                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&channel) {
7668                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
7669                                                                                 msg: update
7670                                                                         });
7671                                                                 }
7672                                                                 let reason_message = format!("{}", reason);
7673                                                                 self.issue_channel_close_events(&channel.context, reason);
7674                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
7675                                                                         node_id: channel.context.get_counterparty_node_id(),
7676                                                                         action: msgs::ErrorAction::SendErrorMessage { msg: msgs::ErrorMessage {
7677                                                                                 channel_id: channel.context.channel_id(),
7678                                                                                 data: reason_message,
7679                                                                         } },
7680                                                                 });
7681                                                                 return false;
7682                                                         }
7683                                                         true
7684                                                 }
7685                                         }
7686                                 });
7687                         }
7688                 }
7689
7690                 if let Some(height) = height_opt {
7691                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
7692                                 payment.htlcs.retain(|htlc| {
7693                                         // If height is approaching the number of blocks we think it takes us to get
7694                                         // our commitment transaction confirmed before the HTLC expires, plus the
7695                                         // number of blocks we generally consider it to take to do a commitment update,
7696                                         // just give up on it and fail the HTLC.
7697                                         if height >= htlc.cltv_expiry - HTLC_FAIL_BACK_BUFFER {
7698                                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
7699                                                 htlc_msat_height_data.extend_from_slice(&height.to_be_bytes());
7700
7701                                                 timed_out_htlcs.push((HTLCSource::PreviousHopData(htlc.prev_hop.clone()), payment_hash.clone(),
7702                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
7703                                                         HTLCDestination::FailedPayment { payment_hash: payment_hash.clone() }));
7704                                                 false
7705                                         } else { true }
7706                                 });
7707                                 !payment.htlcs.is_empty() // Only retain this entry if htlcs has at least one entry.
7708                         });
7709
7710                         let mut intercepted_htlcs = self.pending_intercepted_htlcs.lock().unwrap();
7711                         intercepted_htlcs.retain(|_, htlc| {
7712                                 if height >= htlc.forward_info.outgoing_cltv_value - HTLC_FAIL_BACK_BUFFER {
7713                                         let prev_hop_data = HTLCSource::PreviousHopData(HTLCPreviousHopData {
7714                                                 short_channel_id: htlc.prev_short_channel_id,
7715                                                 user_channel_id: Some(htlc.prev_user_channel_id),
7716                                                 htlc_id: htlc.prev_htlc_id,
7717                                                 incoming_packet_shared_secret: htlc.forward_info.incoming_shared_secret,
7718                                                 phantom_shared_secret: None,
7719                                                 outpoint: htlc.prev_funding_outpoint,
7720                                         });
7721
7722                                         let requested_forward_scid /* intercept scid */ = match htlc.forward_info.routing {
7723                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
7724                                                 _ => unreachable!(),
7725                                         };
7726                                         timed_out_htlcs.push((prev_hop_data, htlc.forward_info.payment_hash,
7727                                                         HTLCFailReason::from_failure_code(0x2000 | 2),
7728                                                         HTLCDestination::InvalidForward { requested_forward_scid }));
7729                                         log_trace!(self.logger, "Timing out intercepted HTLC with requested forward scid {}", requested_forward_scid);
7730                                         false
7731                                 } else { true }
7732                         });
7733                 }
7734
7735                 self.handle_init_event_channel_failures(failed_channels);
7736
7737                 for (source, payment_hash, reason, destination) in timed_out_htlcs.drain(..) {
7738                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, destination);
7739                 }
7740         }
7741
7742         /// Gets a [`Future`] that completes when this [`ChannelManager`] may need to be persisted or
7743         /// may have events that need processing.
7744         ///
7745         /// In order to check if this [`ChannelManager`] needs persisting, call
7746         /// [`Self::get_and_clear_needs_persistence`].
7747         ///
7748         /// Note that callbacks registered on the [`Future`] MUST NOT call back into this
7749         /// [`ChannelManager`] and should instead register actions to be taken later.
7750         pub fn get_event_or_persistence_needed_future(&self) -> Future {
7751                 self.event_persist_notifier.get_future()
7752         }
7753
7754         /// Returns true if this [`ChannelManager`] needs to be persisted.
7755         pub fn get_and_clear_needs_persistence(&self) -> bool {
7756                 self.needs_persist_flag.swap(false, Ordering::AcqRel)
7757         }
7758
7759         #[cfg(any(test, feature = "_test_utils"))]
7760         pub fn get_event_or_persist_condvar_value(&self) -> bool {
7761                 self.event_persist_notifier.notify_pending()
7762         }
7763
7764         /// Gets the latest best block which was connected either via the [`chain::Listen`] or
7765         /// [`chain::Confirm`] interfaces.
7766         pub fn current_best_block(&self) -> BestBlock {
7767                 self.best_block.read().unwrap().clone()
7768         }
7769
7770         /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
7771         /// [`ChannelManager`].
7772         pub fn node_features(&self) -> NodeFeatures {
7773                 provided_node_features(&self.default_configuration)
7774         }
7775
7776         /// Fetches the set of [`Bolt11InvoiceFeatures`] flags which are provided by or required by
7777         /// [`ChannelManager`].
7778         ///
7779         /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
7780         /// or not. Thus, this method is not public.
7781         #[cfg(any(feature = "_test_utils", test))]
7782         pub fn invoice_features(&self) -> Bolt11InvoiceFeatures {
7783                 provided_invoice_features(&self.default_configuration)
7784         }
7785
7786         /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
7787         /// [`ChannelManager`].
7788         pub fn channel_features(&self) -> ChannelFeatures {
7789                 provided_channel_features(&self.default_configuration)
7790         }
7791
7792         /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
7793         /// [`ChannelManager`].
7794         pub fn channel_type_features(&self) -> ChannelTypeFeatures {
7795                 provided_channel_type_features(&self.default_configuration)
7796         }
7797
7798         /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
7799         /// [`ChannelManager`].
7800         pub fn init_features(&self) -> InitFeatures {
7801                 provided_init_features(&self.default_configuration)
7802         }
7803 }
7804
7805 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
7806         ChannelMessageHandler for ChannelManager<M, T, ES, NS, SP, F, R, L>
7807 where
7808         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7809         T::Target: BroadcasterInterface,
7810         ES::Target: EntropySource,
7811         NS::Target: NodeSigner,
7812         SP::Target: SignerProvider,
7813         F::Target: FeeEstimator,
7814         R::Target: Router,
7815         L::Target: Logger,
7816 {
7817         fn handle_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) {
7818                 // Note that we never need to persist the updated ChannelManager for an inbound
7819                 // open_channel message - pre-funded channels are never written so there should be no
7820                 // change to the contents.
7821                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7822                         let res = self.internal_open_channel(counterparty_node_id, msg);
7823                         let persist = match &res {
7824                                 Err(e) if e.closes_channel() => {
7825                                         debug_assert!(false, "We shouldn't close a new channel");
7826                                         NotifyOption::DoPersist
7827                                 },
7828                                 _ => NotifyOption::SkipPersistHandleEvents,
7829                         };
7830                         let _ = handle_error!(self, res, *counterparty_node_id);
7831                         persist
7832                 });
7833         }
7834
7835         fn handle_open_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannelV2) {
7836                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7837                         "Dual-funded channels not supported".to_owned(),
7838                          msg.temporary_channel_id.clone())), *counterparty_node_id);
7839         }
7840
7841         fn handle_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) {
7842                 // Note that we never need to persist the updated ChannelManager for an inbound
7843                 // accept_channel message - pre-funded channels are never written so there should be no
7844                 // change to the contents.
7845                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7846                         let _ = handle_error!(self, self.internal_accept_channel(counterparty_node_id, msg), *counterparty_node_id);
7847                         NotifyOption::SkipPersistHandleEvents
7848                 });
7849         }
7850
7851         fn handle_accept_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannelV2) {
7852                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7853                         "Dual-funded channels not supported".to_owned(),
7854                          msg.temporary_channel_id.clone())), *counterparty_node_id);
7855         }
7856
7857         fn handle_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) {
7858                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7859                 let _ = handle_error!(self, self.internal_funding_created(counterparty_node_id, msg), *counterparty_node_id);
7860         }
7861
7862         fn handle_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) {
7863                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7864                 let _ = handle_error!(self, self.internal_funding_signed(counterparty_node_id, msg), *counterparty_node_id);
7865         }
7866
7867         fn handle_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) {
7868                 // Note that we never need to persist the updated ChannelManager for an inbound
7869                 // channel_ready message - while the channel's state will change, any channel_ready message
7870                 // will ultimately be re-sent on startup and the `ChannelMonitor` won't be updated so we
7871                 // will not force-close the channel on startup.
7872                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7873                         let res = self.internal_channel_ready(counterparty_node_id, msg);
7874                         let persist = match &res {
7875                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7876                                 _ => NotifyOption::SkipPersistHandleEvents,
7877                         };
7878                         let _ = handle_error!(self, res, *counterparty_node_id);
7879                         persist
7880                 });
7881         }
7882
7883         fn handle_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) {
7884                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7885                 let _ = handle_error!(self, self.internal_shutdown(counterparty_node_id, msg), *counterparty_node_id);
7886         }
7887
7888         fn handle_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) {
7889                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7890                 let _ = handle_error!(self, self.internal_closing_signed(counterparty_node_id, msg), *counterparty_node_id);
7891         }
7892
7893         fn handle_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) {
7894                 // Note that we never need to persist the updated ChannelManager for an inbound
7895                 // update_add_htlc message - the message itself doesn't change our channel state only the
7896                 // `commitment_signed` message afterwards will.
7897                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7898                         let res = self.internal_update_add_htlc(counterparty_node_id, msg);
7899                         let persist = match &res {
7900                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7901                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7902                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
7903                         };
7904                         let _ = handle_error!(self, res, *counterparty_node_id);
7905                         persist
7906                 });
7907         }
7908
7909         fn handle_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) {
7910                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7911                 let _ = handle_error!(self, self.internal_update_fulfill_htlc(counterparty_node_id, msg), *counterparty_node_id);
7912         }
7913
7914         fn handle_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) {
7915                 // Note that we never need to persist the updated ChannelManager for an inbound
7916                 // update_fail_htlc message - the message itself doesn't change our channel state only the
7917                 // `commitment_signed` message afterwards will.
7918                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7919                         let res = self.internal_update_fail_htlc(counterparty_node_id, msg);
7920                         let persist = match &res {
7921                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7922                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7923                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
7924                         };
7925                         let _ = handle_error!(self, res, *counterparty_node_id);
7926                         persist
7927                 });
7928         }
7929
7930         fn handle_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) {
7931                 // Note that we never need to persist the updated ChannelManager for an inbound
7932                 // update_fail_malformed_htlc message - the message itself doesn't change our channel state
7933                 // only the `commitment_signed` message afterwards will.
7934                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7935                         let res = self.internal_update_fail_malformed_htlc(counterparty_node_id, msg);
7936                         let persist = match &res {
7937                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7938                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7939                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
7940                         };
7941                         let _ = handle_error!(self, res, *counterparty_node_id);
7942                         persist
7943                 });
7944         }
7945
7946         fn handle_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) {
7947                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7948                 let _ = handle_error!(self, self.internal_commitment_signed(counterparty_node_id, msg), *counterparty_node_id);
7949         }
7950
7951         fn handle_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) {
7952                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7953                 let _ = handle_error!(self, self.internal_revoke_and_ack(counterparty_node_id, msg), *counterparty_node_id);
7954         }
7955
7956         fn handle_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) {
7957                 // Note that we never need to persist the updated ChannelManager for an inbound
7958                 // update_fee message - the message itself doesn't change our channel state only the
7959                 // `commitment_signed` message afterwards will.
7960                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7961                         let res = self.internal_update_fee(counterparty_node_id, msg);
7962                         let persist = match &res {
7963                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7964                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7965                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
7966                         };
7967                         let _ = handle_error!(self, res, *counterparty_node_id);
7968                         persist
7969                 });
7970         }
7971
7972         fn handle_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) {
7973                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7974                 let _ = handle_error!(self, self.internal_announcement_signatures(counterparty_node_id, msg), *counterparty_node_id);
7975         }
7976
7977         fn handle_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) {
7978                 PersistenceNotifierGuard::optionally_notify(self, || {
7979                         if let Ok(persist) = handle_error!(self, self.internal_channel_update(counterparty_node_id, msg), *counterparty_node_id) {
7980                                 persist
7981                         } else {
7982                                 NotifyOption::DoPersist
7983                         }
7984                 });
7985         }
7986
7987         fn handle_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) {
7988                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7989                         let res = self.internal_channel_reestablish(counterparty_node_id, msg);
7990                         let persist = match &res {
7991                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7992                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7993                                 Ok(persist) => *persist,
7994                         };
7995                         let _ = handle_error!(self, res, *counterparty_node_id);
7996                         persist
7997                 });
7998         }
7999
8000         fn peer_disconnected(&self, counterparty_node_id: &PublicKey) {
8001                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(
8002                         self, || NotifyOption::SkipPersistHandleEvents);
8003                 let mut failed_channels = Vec::new();
8004                 let mut per_peer_state = self.per_peer_state.write().unwrap();
8005                 let remove_peer = {
8006                         log_debug!(self.logger, "Marking channels with {} disconnected and generating channel_updates.",
8007                                 log_pubkey!(counterparty_node_id));
8008                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
8009                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8010                                 let peer_state = &mut *peer_state_lock;
8011                                 let pending_msg_events = &mut peer_state.pending_msg_events;
8012                                 peer_state.channel_by_id.retain(|_, phase| {
8013                                         let context = match phase {
8014                                                 ChannelPhase::Funded(chan) => {
8015                                                         if chan.remove_uncommitted_htlcs_and_mark_paused(&self.logger).is_ok() {
8016                                                                 // We only retain funded channels that are not shutdown.
8017                                                                 return true;
8018                                                         }
8019                                                         &mut chan.context
8020                                                 },
8021                                                 // Unfunded channels will always be removed.
8022                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
8023                                                         &mut chan.context
8024                                                 },
8025                                                 ChannelPhase::UnfundedInboundV1(chan) => {
8026                                                         &mut chan.context
8027                                                 },
8028                                         };
8029                                         // Clean up for removal.
8030                                         update_maps_on_chan_removal!(self, &context);
8031                                         self.issue_channel_close_events(&context, ClosureReason::DisconnectedPeer);
8032                                         failed_channels.push(context.force_shutdown(false));
8033                                         false
8034                                 });
8035                                 // Note that we don't bother generating any events for pre-accept channels -
8036                                 // they're not considered "channels" yet from the PoV of our events interface.
8037                                 peer_state.inbound_channel_request_by_id.clear();
8038                                 pending_msg_events.retain(|msg| {
8039                                         match msg {
8040                                                 // V1 Channel Establishment
8041                                                 &events::MessageSendEvent::SendAcceptChannel { .. } => false,
8042                                                 &events::MessageSendEvent::SendOpenChannel { .. } => false,
8043                                                 &events::MessageSendEvent::SendFundingCreated { .. } => false,
8044                                                 &events::MessageSendEvent::SendFundingSigned { .. } => false,
8045                                                 // V2 Channel Establishment
8046                                                 &events::MessageSendEvent::SendAcceptChannelV2 { .. } => false,
8047                                                 &events::MessageSendEvent::SendOpenChannelV2 { .. } => false,
8048                                                 // Common Channel Establishment
8049                                                 &events::MessageSendEvent::SendChannelReady { .. } => false,
8050                                                 &events::MessageSendEvent::SendAnnouncementSignatures { .. } => false,
8051                                                 // Interactive Transaction Construction
8052                                                 &events::MessageSendEvent::SendTxAddInput { .. } => false,
8053                                                 &events::MessageSendEvent::SendTxAddOutput { .. } => false,
8054                                                 &events::MessageSendEvent::SendTxRemoveInput { .. } => false,
8055                                                 &events::MessageSendEvent::SendTxRemoveOutput { .. } => false,
8056                                                 &events::MessageSendEvent::SendTxComplete { .. } => false,
8057                                                 &events::MessageSendEvent::SendTxSignatures { .. } => false,
8058                                                 &events::MessageSendEvent::SendTxInitRbf { .. } => false,
8059                                                 &events::MessageSendEvent::SendTxAckRbf { .. } => false,
8060                                                 &events::MessageSendEvent::SendTxAbort { .. } => false,
8061                                                 // Channel Operations
8062                                                 &events::MessageSendEvent::UpdateHTLCs { .. } => false,
8063                                                 &events::MessageSendEvent::SendRevokeAndACK { .. } => false,
8064                                                 &events::MessageSendEvent::SendClosingSigned { .. } => false,
8065                                                 &events::MessageSendEvent::SendShutdown { .. } => false,
8066                                                 &events::MessageSendEvent::SendChannelReestablish { .. } => false,
8067                                                 &events::MessageSendEvent::HandleError { .. } => false,
8068                                                 // Gossip
8069                                                 &events::MessageSendEvent::SendChannelAnnouncement { .. } => false,
8070                                                 &events::MessageSendEvent::BroadcastChannelAnnouncement { .. } => true,
8071                                                 &events::MessageSendEvent::BroadcastChannelUpdate { .. } => true,
8072                                                 &events::MessageSendEvent::BroadcastNodeAnnouncement { .. } => true,
8073                                                 &events::MessageSendEvent::SendChannelUpdate { .. } => false,
8074                                                 &events::MessageSendEvent::SendChannelRangeQuery { .. } => false,
8075                                                 &events::MessageSendEvent::SendShortIdsQuery { .. } => false,
8076                                                 &events::MessageSendEvent::SendReplyChannelRange { .. } => false,
8077                                                 &events::MessageSendEvent::SendGossipTimestampFilter { .. } => false,
8078                                         }
8079                                 });
8080                                 debug_assert!(peer_state.is_connected, "A disconnected peer cannot disconnect");
8081                                 peer_state.is_connected = false;
8082                                 peer_state.ok_to_remove(true)
8083                         } else { debug_assert!(false, "Unconnected peer disconnected"); true }
8084                 };
8085                 if remove_peer {
8086                         per_peer_state.remove(counterparty_node_id);
8087                 }
8088                 mem::drop(per_peer_state);
8089
8090                 for failure in failed_channels.drain(..) {
8091                         self.finish_close_channel(failure);
8092                 }
8093         }
8094
8095         fn peer_connected(&self, counterparty_node_id: &PublicKey, init_msg: &msgs::Init, inbound: bool) -> Result<(), ()> {
8096                 if !init_msg.features.supports_static_remote_key() {
8097                         log_debug!(self.logger, "Peer {} does not support static remote key, disconnecting", log_pubkey!(counterparty_node_id));
8098                         return Err(());
8099                 }
8100
8101                 let mut res = Ok(());
8102
8103                 PersistenceNotifierGuard::optionally_notify(self, || {
8104                         // If we have too many peers connected which don't have funded channels, disconnect the
8105                         // peer immediately (as long as it doesn't have funded channels). If we have a bunch of
8106                         // unfunded channels taking up space in memory for disconnected peers, we still let new
8107                         // peers connect, but we'll reject new channels from them.
8108                         let connected_peers_without_funded_channels = self.peers_without_funded_channels(|node| node.is_connected);
8109                         let inbound_peer_limited = inbound && connected_peers_without_funded_channels >= MAX_NO_CHANNEL_PEERS;
8110
8111                         {
8112                                 let mut peer_state_lock = self.per_peer_state.write().unwrap();
8113                                 match peer_state_lock.entry(counterparty_node_id.clone()) {
8114                                         hash_map::Entry::Vacant(e) => {
8115                                                 if inbound_peer_limited {
8116                                                         res = Err(());
8117                                                         return NotifyOption::SkipPersistNoEvents;
8118                                                 }
8119                                                 e.insert(Mutex::new(PeerState {
8120                                                         channel_by_id: HashMap::new(),
8121                                                         inbound_channel_request_by_id: HashMap::new(),
8122                                                         latest_features: init_msg.features.clone(),
8123                                                         pending_msg_events: Vec::new(),
8124                                                         in_flight_monitor_updates: BTreeMap::new(),
8125                                                         monitor_update_blocked_actions: BTreeMap::new(),
8126                                                         actions_blocking_raa_monitor_updates: BTreeMap::new(),
8127                                                         is_connected: true,
8128                                                 }));
8129                                         },
8130                                         hash_map::Entry::Occupied(e) => {
8131                                                 let mut peer_state = e.get().lock().unwrap();
8132                                                 peer_state.latest_features = init_msg.features.clone();
8133
8134                                                 let best_block_height = self.best_block.read().unwrap().height();
8135                                                 if inbound_peer_limited &&
8136                                                         Self::unfunded_channel_count(&*peer_state, best_block_height) ==
8137                                                         peer_state.channel_by_id.len()
8138                                                 {
8139                                                         res = Err(());
8140                                                         return NotifyOption::SkipPersistNoEvents;
8141                                                 }
8142
8143                                                 debug_assert!(!peer_state.is_connected, "A peer shouldn't be connected twice");
8144                                                 peer_state.is_connected = true;
8145                                         },
8146                                 }
8147                         }
8148
8149                         log_debug!(self.logger, "Generating channel_reestablish events for {}", log_pubkey!(counterparty_node_id));
8150
8151                         let per_peer_state = self.per_peer_state.read().unwrap();
8152                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
8153                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8154                                 let peer_state = &mut *peer_state_lock;
8155                                 let pending_msg_events = &mut peer_state.pending_msg_events;
8156
8157                                 peer_state.channel_by_id.iter_mut().filter_map(|(_, phase)|
8158                                         if let ChannelPhase::Funded(chan) = phase { Some(chan) } else {
8159                                                 // Since unfunded channel maps are cleared upon disconnecting a peer, and they're not persisted
8160                                                 // (so won't be recovered after a crash), they shouldn't exist here and we would never need to
8161                                                 // worry about closing and removing them.
8162                                                 debug_assert!(false);
8163                                                 None
8164                                         }
8165                                 ).for_each(|chan| {
8166                                         pending_msg_events.push(events::MessageSendEvent::SendChannelReestablish {
8167                                                 node_id: chan.context.get_counterparty_node_id(),
8168                                                 msg: chan.get_channel_reestablish(&self.logger),
8169                                         });
8170                                 });
8171                         }
8172
8173                         return NotifyOption::SkipPersistHandleEvents;
8174                         //TODO: Also re-broadcast announcement_signatures
8175                 });
8176                 res
8177         }
8178
8179         fn handle_error(&self, counterparty_node_id: &PublicKey, msg: &msgs::ErrorMessage) {
8180                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8181
8182                 match &msg.data as &str {
8183                         "cannot co-op close channel w/ active htlcs"|
8184                         "link failed to shutdown" =>
8185                         {
8186                                 // LND hasn't properly handled shutdown messages ever, and force-closes any time we
8187                                 // send one while HTLCs are still present. The issue is tracked at
8188                                 // https://github.com/lightningnetwork/lnd/issues/6039 and has had multiple patches
8189                                 // to fix it but none so far have managed to land upstream. The issue appears to be
8190                                 // very low priority for the LND team despite being marked "P1".
8191                                 // We're not going to bother handling this in a sensible way, instead simply
8192                                 // repeating the Shutdown message on repeat until morale improves.
8193                                 if !msg.channel_id.is_zero() {
8194                                         let per_peer_state = self.per_peer_state.read().unwrap();
8195                                         let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
8196                                         if peer_state_mutex_opt.is_none() { return; }
8197                                         let mut peer_state = peer_state_mutex_opt.unwrap().lock().unwrap();
8198                                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get(&msg.channel_id) {
8199                                                 if let Some(msg) = chan.get_outbound_shutdown() {
8200                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
8201                                                                 node_id: *counterparty_node_id,
8202                                                                 msg,
8203                                                         });
8204                                                 }
8205                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::HandleError {
8206                                                         node_id: *counterparty_node_id,
8207                                                         action: msgs::ErrorAction::SendWarningMessage {
8208                                                                 msg: msgs::WarningMessage {
8209                                                                         channel_id: msg.channel_id,
8210                                                                         data: "You appear to be exhibiting LND bug 6039, we'll keep sending you shutdown messages until you handle them correctly".to_owned()
8211                                                                 },
8212                                                                 log_level: Level::Trace,
8213                                                         }
8214                                                 });
8215                                         }
8216                                 }
8217                                 return;
8218                         }
8219                         _ => {}
8220                 }
8221
8222                 if msg.channel_id.is_zero() {
8223                         let channel_ids: Vec<ChannelId> = {
8224                                 let per_peer_state = self.per_peer_state.read().unwrap();
8225                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
8226                                 if peer_state_mutex_opt.is_none() { return; }
8227                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
8228                                 let peer_state = &mut *peer_state_lock;
8229                                 // Note that we don't bother generating any events for pre-accept channels -
8230                                 // they're not considered "channels" yet from the PoV of our events interface.
8231                                 peer_state.inbound_channel_request_by_id.clear();
8232                                 peer_state.channel_by_id.keys().cloned().collect()
8233                         };
8234                         for channel_id in channel_ids {
8235                                 // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
8236                                 let _ = self.force_close_channel_with_peer(&channel_id, counterparty_node_id, Some(&msg.data), true);
8237                         }
8238                 } else {
8239                         {
8240                                 // First check if we can advance the channel type and try again.
8241                                 let per_peer_state = self.per_peer_state.read().unwrap();
8242                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
8243                                 if peer_state_mutex_opt.is_none() { return; }
8244                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
8245                                 let peer_state = &mut *peer_state_lock;
8246                                 if let Some(ChannelPhase::UnfundedOutboundV1(chan)) = peer_state.channel_by_id.get_mut(&msg.channel_id) {
8247                                         if let Ok(msg) = chan.maybe_handle_error_without_close(self.genesis_hash, &self.fee_estimator) {
8248                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
8249                                                         node_id: *counterparty_node_id,
8250                                                         msg,
8251                                                 });
8252                                                 return;
8253                                         }
8254                                 }
8255                         }
8256
8257                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
8258                         let _ = self.force_close_channel_with_peer(&msg.channel_id, counterparty_node_id, Some(&msg.data), true);
8259                 }
8260         }
8261
8262         fn provided_node_features(&self) -> NodeFeatures {
8263                 provided_node_features(&self.default_configuration)
8264         }
8265
8266         fn provided_init_features(&self, _their_init_features: &PublicKey) -> InitFeatures {
8267                 provided_init_features(&self.default_configuration)
8268         }
8269
8270         fn get_genesis_hashes(&self) -> Option<Vec<ChainHash>> {
8271                 Some(vec![ChainHash::from(&self.genesis_hash[..])])
8272         }
8273
8274         fn handle_tx_add_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddInput) {
8275                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8276                         "Dual-funded channels not supported".to_owned(),
8277                          msg.channel_id.clone())), *counterparty_node_id);
8278         }
8279
8280         fn handle_tx_add_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddOutput) {
8281                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8282                         "Dual-funded channels not supported".to_owned(),
8283                          msg.channel_id.clone())), *counterparty_node_id);
8284         }
8285
8286         fn handle_tx_remove_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveInput) {
8287                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8288                         "Dual-funded channels not supported".to_owned(),
8289                          msg.channel_id.clone())), *counterparty_node_id);
8290         }
8291
8292         fn handle_tx_remove_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveOutput) {
8293                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8294                         "Dual-funded channels not supported".to_owned(),
8295                          msg.channel_id.clone())), *counterparty_node_id);
8296         }
8297
8298         fn handle_tx_complete(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxComplete) {
8299                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8300                         "Dual-funded channels not supported".to_owned(),
8301                          msg.channel_id.clone())), *counterparty_node_id);
8302         }
8303
8304         fn handle_tx_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxSignatures) {
8305                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8306                         "Dual-funded channels not supported".to_owned(),
8307                          msg.channel_id.clone())), *counterparty_node_id);
8308         }
8309
8310         fn handle_tx_init_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxInitRbf) {
8311                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8312                         "Dual-funded channels not supported".to_owned(),
8313                          msg.channel_id.clone())), *counterparty_node_id);
8314         }
8315
8316         fn handle_tx_ack_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAckRbf) {
8317                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8318                         "Dual-funded channels not supported".to_owned(),
8319                          msg.channel_id.clone())), *counterparty_node_id);
8320         }
8321
8322         fn handle_tx_abort(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAbort) {
8323                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8324                         "Dual-funded channels not supported".to_owned(),
8325                          msg.channel_id.clone())), *counterparty_node_id);
8326         }
8327 }
8328
8329 /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
8330 /// [`ChannelManager`].
8331 pub(crate) fn provided_node_features(config: &UserConfig) -> NodeFeatures {
8332         let mut node_features = provided_init_features(config).to_context();
8333         node_features.set_keysend_optional();
8334         node_features
8335 }
8336
8337 /// Fetches the set of [`Bolt11InvoiceFeatures`] flags which are provided by or required by
8338 /// [`ChannelManager`].
8339 ///
8340 /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
8341 /// or not. Thus, this method is not public.
8342 #[cfg(any(feature = "_test_utils", test))]
8343 pub(crate) fn provided_invoice_features(config: &UserConfig) -> Bolt11InvoiceFeatures {
8344         provided_init_features(config).to_context()
8345 }
8346
8347 /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
8348 /// [`ChannelManager`].
8349 pub(crate) fn provided_channel_features(config: &UserConfig) -> ChannelFeatures {
8350         provided_init_features(config).to_context()
8351 }
8352
8353 /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
8354 /// [`ChannelManager`].
8355 pub(crate) fn provided_channel_type_features(config: &UserConfig) -> ChannelTypeFeatures {
8356         ChannelTypeFeatures::from_init(&provided_init_features(config))
8357 }
8358
8359 /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
8360 /// [`ChannelManager`].
8361 pub fn provided_init_features(config: &UserConfig) -> InitFeatures {
8362         // Note that if new features are added here which other peers may (eventually) require, we
8363         // should also add the corresponding (optional) bit to the [`ChannelMessageHandler`] impl for
8364         // [`ErroringMessageHandler`].
8365         let mut features = InitFeatures::empty();
8366         features.set_data_loss_protect_required();
8367         features.set_upfront_shutdown_script_optional();
8368         features.set_variable_length_onion_required();
8369         features.set_static_remote_key_required();
8370         features.set_payment_secret_required();
8371         features.set_basic_mpp_optional();
8372         features.set_wumbo_optional();
8373         features.set_shutdown_any_segwit_optional();
8374         features.set_channel_type_optional();
8375         features.set_scid_privacy_optional();
8376         features.set_zero_conf_optional();
8377         if config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx {
8378                 features.set_anchors_zero_fee_htlc_tx_optional();
8379         }
8380         features
8381 }
8382
8383 const SERIALIZATION_VERSION: u8 = 1;
8384 const MIN_SERIALIZATION_VERSION: u8 = 1;
8385
8386 impl_writeable_tlv_based!(CounterpartyForwardingInfo, {
8387         (2, fee_base_msat, required),
8388         (4, fee_proportional_millionths, required),
8389         (6, cltv_expiry_delta, required),
8390 });
8391
8392 impl_writeable_tlv_based!(ChannelCounterparty, {
8393         (2, node_id, required),
8394         (4, features, required),
8395         (6, unspendable_punishment_reserve, required),
8396         (8, forwarding_info, option),
8397         (9, outbound_htlc_minimum_msat, option),
8398         (11, outbound_htlc_maximum_msat, option),
8399 });
8400
8401 impl Writeable for ChannelDetails {
8402         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8403                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
8404                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
8405                 let user_channel_id_low = self.user_channel_id as u64;
8406                 let user_channel_id_high_opt = Some((self.user_channel_id >> 64) as u64);
8407                 write_tlv_fields!(writer, {
8408                         (1, self.inbound_scid_alias, option),
8409                         (2, self.channel_id, required),
8410                         (3, self.channel_type, option),
8411                         (4, self.counterparty, required),
8412                         (5, self.outbound_scid_alias, option),
8413                         (6, self.funding_txo, option),
8414                         (7, self.config, option),
8415                         (8, self.short_channel_id, option),
8416                         (9, self.confirmations, option),
8417                         (10, self.channel_value_satoshis, required),
8418                         (12, self.unspendable_punishment_reserve, option),
8419                         (14, user_channel_id_low, required),
8420                         (16, self.balance_msat, required),
8421                         (18, self.outbound_capacity_msat, required),
8422                         (19, self.next_outbound_htlc_limit_msat, required),
8423                         (20, self.inbound_capacity_msat, required),
8424                         (21, self.next_outbound_htlc_minimum_msat, required),
8425                         (22, self.confirmations_required, option),
8426                         (24, self.force_close_spend_delay, option),
8427                         (26, self.is_outbound, required),
8428                         (28, self.is_channel_ready, required),
8429                         (30, self.is_usable, required),
8430                         (32, self.is_public, required),
8431                         (33, self.inbound_htlc_minimum_msat, option),
8432                         (35, self.inbound_htlc_maximum_msat, option),
8433                         (37, user_channel_id_high_opt, option),
8434                         (39, self.feerate_sat_per_1000_weight, option),
8435                         (41, self.channel_shutdown_state, option),
8436                 });
8437                 Ok(())
8438         }
8439 }
8440
8441 impl Readable for ChannelDetails {
8442         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8443                 _init_and_read_len_prefixed_tlv_fields!(reader, {
8444                         (1, inbound_scid_alias, option),
8445                         (2, channel_id, required),
8446                         (3, channel_type, option),
8447                         (4, counterparty, required),
8448                         (5, outbound_scid_alias, option),
8449                         (6, funding_txo, option),
8450                         (7, config, option),
8451                         (8, short_channel_id, option),
8452                         (9, confirmations, option),
8453                         (10, channel_value_satoshis, required),
8454                         (12, unspendable_punishment_reserve, option),
8455                         (14, user_channel_id_low, required),
8456                         (16, balance_msat, required),
8457                         (18, outbound_capacity_msat, required),
8458                         // Note that by the time we get past the required read above, outbound_capacity_msat will be
8459                         // filled in, so we can safely unwrap it here.
8460                         (19, next_outbound_htlc_limit_msat, (default_value, outbound_capacity_msat.0.unwrap() as u64)),
8461                         (20, inbound_capacity_msat, required),
8462                         (21, next_outbound_htlc_minimum_msat, (default_value, 0)),
8463                         (22, confirmations_required, option),
8464                         (24, force_close_spend_delay, option),
8465                         (26, is_outbound, required),
8466                         (28, is_channel_ready, required),
8467                         (30, is_usable, required),
8468                         (32, is_public, required),
8469                         (33, inbound_htlc_minimum_msat, option),
8470                         (35, inbound_htlc_maximum_msat, option),
8471                         (37, user_channel_id_high_opt, option),
8472                         (39, feerate_sat_per_1000_weight, option),
8473                         (41, channel_shutdown_state, option),
8474                 });
8475
8476                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
8477                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
8478                 let user_channel_id_low: u64 = user_channel_id_low.0.unwrap();
8479                 let user_channel_id = user_channel_id_low as u128 +
8480                         ((user_channel_id_high_opt.unwrap_or(0 as u64) as u128) << 64);
8481
8482                 Ok(Self {
8483                         inbound_scid_alias,
8484                         channel_id: channel_id.0.unwrap(),
8485                         channel_type,
8486                         counterparty: counterparty.0.unwrap(),
8487                         outbound_scid_alias,
8488                         funding_txo,
8489                         config,
8490                         short_channel_id,
8491                         channel_value_satoshis: channel_value_satoshis.0.unwrap(),
8492                         unspendable_punishment_reserve,
8493                         user_channel_id,
8494                         balance_msat: balance_msat.0.unwrap(),
8495                         outbound_capacity_msat: outbound_capacity_msat.0.unwrap(),
8496                         next_outbound_htlc_limit_msat: next_outbound_htlc_limit_msat.0.unwrap(),
8497                         next_outbound_htlc_minimum_msat: next_outbound_htlc_minimum_msat.0.unwrap(),
8498                         inbound_capacity_msat: inbound_capacity_msat.0.unwrap(),
8499                         confirmations_required,
8500                         confirmations,
8501                         force_close_spend_delay,
8502                         is_outbound: is_outbound.0.unwrap(),
8503                         is_channel_ready: is_channel_ready.0.unwrap(),
8504                         is_usable: is_usable.0.unwrap(),
8505                         is_public: is_public.0.unwrap(),
8506                         inbound_htlc_minimum_msat,
8507                         inbound_htlc_maximum_msat,
8508                         feerate_sat_per_1000_weight,
8509                         channel_shutdown_state,
8510                 })
8511         }
8512 }
8513
8514 impl_writeable_tlv_based!(PhantomRouteHints, {
8515         (2, channels, required_vec),
8516         (4, phantom_scid, required),
8517         (6, real_node_pubkey, required),
8518 });
8519
8520 impl_writeable_tlv_based_enum!(PendingHTLCRouting,
8521         (0, Forward) => {
8522                 (0, onion_packet, required),
8523                 (2, short_channel_id, required),
8524         },
8525         (1, Receive) => {
8526                 (0, payment_data, required),
8527                 (1, phantom_shared_secret, option),
8528                 (2, incoming_cltv_expiry, required),
8529                 (3, payment_metadata, option),
8530                 (5, custom_tlvs, optional_vec),
8531         },
8532         (2, ReceiveKeysend) => {
8533                 (0, payment_preimage, required),
8534                 (2, incoming_cltv_expiry, required),
8535                 (3, payment_metadata, option),
8536                 (4, payment_data, option), // Added in 0.0.116
8537                 (5, custom_tlvs, optional_vec),
8538         },
8539 ;);
8540
8541 impl_writeable_tlv_based!(PendingHTLCInfo, {
8542         (0, routing, required),
8543         (2, incoming_shared_secret, required),
8544         (4, payment_hash, required),
8545         (6, outgoing_amt_msat, required),
8546         (8, outgoing_cltv_value, required),
8547         (9, incoming_amt_msat, option),
8548         (10, skimmed_fee_msat, option),
8549 });
8550
8551
8552 impl Writeable for HTLCFailureMsg {
8553         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8554                 match self {
8555                         HTLCFailureMsg::Relay(msgs::UpdateFailHTLC { channel_id, htlc_id, reason }) => {
8556                                 0u8.write(writer)?;
8557                                 channel_id.write(writer)?;
8558                                 htlc_id.write(writer)?;
8559                                 reason.write(writer)?;
8560                         },
8561                         HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
8562                                 channel_id, htlc_id, sha256_of_onion, failure_code
8563                         }) => {
8564                                 1u8.write(writer)?;
8565                                 channel_id.write(writer)?;
8566                                 htlc_id.write(writer)?;
8567                                 sha256_of_onion.write(writer)?;
8568                                 failure_code.write(writer)?;
8569                         },
8570                 }
8571                 Ok(())
8572         }
8573 }
8574
8575 impl Readable for HTLCFailureMsg {
8576         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8577                 let id: u8 = Readable::read(reader)?;
8578                 match id {
8579                         0 => {
8580                                 Ok(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
8581                                         channel_id: Readable::read(reader)?,
8582                                         htlc_id: Readable::read(reader)?,
8583                                         reason: Readable::read(reader)?,
8584                                 }))
8585                         },
8586                         1 => {
8587                                 Ok(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
8588                                         channel_id: Readable::read(reader)?,
8589                                         htlc_id: Readable::read(reader)?,
8590                                         sha256_of_onion: Readable::read(reader)?,
8591                                         failure_code: Readable::read(reader)?,
8592                                 }))
8593                         },
8594                         // In versions prior to 0.0.101, HTLCFailureMsg objects were written with type 0 or 1 but
8595                         // weren't length-prefixed and thus didn't support reading the TLV stream suffix of the network
8596                         // messages contained in the variants.
8597                         // In version 0.0.101, support for reading the variants with these types was added, and
8598                         // we should migrate to writing these variants when UpdateFailHTLC or
8599                         // UpdateFailMalformedHTLC get TLV fields.
8600                         2 => {
8601                                 let length: BigSize = Readable::read(reader)?;
8602                                 let mut s = FixedLengthReader::new(reader, length.0);
8603                                 let res = Readable::read(&mut s)?;
8604                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
8605                                 Ok(HTLCFailureMsg::Relay(res))
8606                         },
8607                         3 => {
8608                                 let length: BigSize = Readable::read(reader)?;
8609                                 let mut s = FixedLengthReader::new(reader, length.0);
8610                                 let res = Readable::read(&mut s)?;
8611                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
8612                                 Ok(HTLCFailureMsg::Malformed(res))
8613                         },
8614                         _ => Err(DecodeError::UnknownRequiredFeature),
8615                 }
8616         }
8617 }
8618
8619 impl_writeable_tlv_based_enum!(PendingHTLCStatus, ;
8620         (0, Forward),
8621         (1, Fail),
8622 );
8623
8624 impl_writeable_tlv_based!(HTLCPreviousHopData, {
8625         (0, short_channel_id, required),
8626         (1, phantom_shared_secret, option),
8627         (2, outpoint, required),
8628         (4, htlc_id, required),
8629         (6, incoming_packet_shared_secret, required),
8630         (7, user_channel_id, option),
8631 });
8632
8633 impl Writeable for ClaimableHTLC {
8634         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8635                 let (payment_data, keysend_preimage) = match &self.onion_payload {
8636                         OnionPayload::Invoice { _legacy_hop_data } => (_legacy_hop_data.as_ref(), None),
8637                         OnionPayload::Spontaneous(preimage) => (None, Some(preimage)),
8638                 };
8639                 write_tlv_fields!(writer, {
8640                         (0, self.prev_hop, required),
8641                         (1, self.total_msat, required),
8642                         (2, self.value, required),
8643                         (3, self.sender_intended_value, required),
8644                         (4, payment_data, option),
8645                         (5, self.total_value_received, option),
8646                         (6, self.cltv_expiry, required),
8647                         (8, keysend_preimage, option),
8648                         (10, self.counterparty_skimmed_fee_msat, option),
8649                 });
8650                 Ok(())
8651         }
8652 }
8653
8654 impl Readable for ClaimableHTLC {
8655         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8656                 _init_and_read_len_prefixed_tlv_fields!(reader, {
8657                         (0, prev_hop, required),
8658                         (1, total_msat, option),
8659                         (2, value_ser, required),
8660                         (3, sender_intended_value, option),
8661                         (4, payment_data_opt, option),
8662                         (5, total_value_received, option),
8663                         (6, cltv_expiry, required),
8664                         (8, keysend_preimage, option),
8665                         (10, counterparty_skimmed_fee_msat, option),
8666                 });
8667                 let payment_data: Option<msgs::FinalOnionHopData> = payment_data_opt;
8668                 let value = value_ser.0.unwrap();
8669                 let onion_payload = match keysend_preimage {
8670                         Some(p) => {
8671                                 if payment_data.is_some() {
8672                                         return Err(DecodeError::InvalidValue)
8673                                 }
8674                                 if total_msat.is_none() {
8675                                         total_msat = Some(value);
8676                                 }
8677                                 OnionPayload::Spontaneous(p)
8678                         },
8679                         None => {
8680                                 if total_msat.is_none() {
8681                                         if payment_data.is_none() {
8682                                                 return Err(DecodeError::InvalidValue)
8683                                         }
8684                                         total_msat = Some(payment_data.as_ref().unwrap().total_msat);
8685                                 }
8686                                 OnionPayload::Invoice { _legacy_hop_data: payment_data }
8687                         },
8688                 };
8689                 Ok(Self {
8690                         prev_hop: prev_hop.0.unwrap(),
8691                         timer_ticks: 0,
8692                         value,
8693                         sender_intended_value: sender_intended_value.unwrap_or(value),
8694                         total_value_received,
8695                         total_msat: total_msat.unwrap(),
8696                         onion_payload,
8697                         cltv_expiry: cltv_expiry.0.unwrap(),
8698                         counterparty_skimmed_fee_msat,
8699                 })
8700         }
8701 }
8702
8703 impl Readable for HTLCSource {
8704         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8705                 let id: u8 = Readable::read(reader)?;
8706                 match id {
8707                         0 => {
8708                                 let mut session_priv: crate::util::ser::RequiredWrapper<SecretKey> = crate::util::ser::RequiredWrapper(None);
8709                                 let mut first_hop_htlc_msat: u64 = 0;
8710                                 let mut path_hops = Vec::new();
8711                                 let mut payment_id = None;
8712                                 let mut payment_params: Option<PaymentParameters> = None;
8713                                 let mut blinded_tail: Option<BlindedTail> = None;
8714                                 read_tlv_fields!(reader, {
8715                                         (0, session_priv, required),
8716                                         (1, payment_id, option),
8717                                         (2, first_hop_htlc_msat, required),
8718                                         (4, path_hops, required_vec),
8719                                         (5, payment_params, (option: ReadableArgs, 0)),
8720                                         (6, blinded_tail, option),
8721                                 });
8722                                 if payment_id.is_none() {
8723                                         // For backwards compat, if there was no payment_id written, use the session_priv bytes
8724                                         // instead.
8725                                         payment_id = Some(PaymentId(*session_priv.0.unwrap().as_ref()));
8726                                 }
8727                                 let path = Path { hops: path_hops, blinded_tail };
8728                                 if path.hops.len() == 0 {
8729                                         return Err(DecodeError::InvalidValue);
8730                                 }
8731                                 if let Some(params) = payment_params.as_mut() {
8732                                         if let Payee::Clear { ref mut final_cltv_expiry_delta, .. } = params.payee {
8733                                                 if final_cltv_expiry_delta == &0 {
8734                                                         *final_cltv_expiry_delta = path.final_cltv_expiry_delta().ok_or(DecodeError::InvalidValue)?;
8735                                                 }
8736                                         }
8737                                 }
8738                                 Ok(HTLCSource::OutboundRoute {
8739                                         session_priv: session_priv.0.unwrap(),
8740                                         first_hop_htlc_msat,
8741                                         path,
8742                                         payment_id: payment_id.unwrap(),
8743                                 })
8744                         }
8745                         1 => Ok(HTLCSource::PreviousHopData(Readable::read(reader)?)),
8746                         _ => Err(DecodeError::UnknownRequiredFeature),
8747                 }
8748         }
8749 }
8750
8751 impl Writeable for HTLCSource {
8752         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), crate::io::Error> {
8753                 match self {
8754                         HTLCSource::OutboundRoute { ref session_priv, ref first_hop_htlc_msat, ref path, payment_id } => {
8755                                 0u8.write(writer)?;
8756                                 let payment_id_opt = Some(payment_id);
8757                                 write_tlv_fields!(writer, {
8758                                         (0, session_priv, required),
8759                                         (1, payment_id_opt, option),
8760                                         (2, first_hop_htlc_msat, required),
8761                                         // 3 was previously used to write a PaymentSecret for the payment.
8762                                         (4, path.hops, required_vec),
8763                                         (5, None::<PaymentParameters>, option), // payment_params in LDK versions prior to 0.0.115
8764                                         (6, path.blinded_tail, option),
8765                                  });
8766                         }
8767                         HTLCSource::PreviousHopData(ref field) => {
8768                                 1u8.write(writer)?;
8769                                 field.write(writer)?;
8770                         }
8771                 }
8772                 Ok(())
8773         }
8774 }
8775
8776 impl_writeable_tlv_based!(PendingAddHTLCInfo, {
8777         (0, forward_info, required),
8778         (1, prev_user_channel_id, (default_value, 0)),
8779         (2, prev_short_channel_id, required),
8780         (4, prev_htlc_id, required),
8781         (6, prev_funding_outpoint, required),
8782 });
8783
8784 impl_writeable_tlv_based_enum!(HTLCForwardInfo,
8785         (1, FailHTLC) => {
8786                 (0, htlc_id, required),
8787                 (2, err_packet, required),
8788         };
8789         (0, AddHTLC)
8790 );
8791
8792 impl_writeable_tlv_based!(PendingInboundPayment, {
8793         (0, payment_secret, required),
8794         (2, expiry_time, required),
8795         (4, user_payment_id, required),
8796         (6, payment_preimage, required),
8797         (8, min_value_msat, required),
8798 });
8799
8800 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>
8801 where
8802         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8803         T::Target: BroadcasterInterface,
8804         ES::Target: EntropySource,
8805         NS::Target: NodeSigner,
8806         SP::Target: SignerProvider,
8807         F::Target: FeeEstimator,
8808         R::Target: Router,
8809         L::Target: Logger,
8810 {
8811         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8812                 let _consistency_lock = self.total_consistency_lock.write().unwrap();
8813
8814                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
8815
8816                 self.genesis_hash.write(writer)?;
8817                 {
8818                         let best_block = self.best_block.read().unwrap();
8819                         best_block.height().write(writer)?;
8820                         best_block.block_hash().write(writer)?;
8821                 }
8822
8823                 let mut serializable_peer_count: u64 = 0;
8824                 {
8825                         let per_peer_state = self.per_peer_state.read().unwrap();
8826                         let mut number_of_funded_channels = 0;
8827                         for (_, peer_state_mutex) in per_peer_state.iter() {
8828                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8829                                 let peer_state = &mut *peer_state_lock;
8830                                 if !peer_state.ok_to_remove(false) {
8831                                         serializable_peer_count += 1;
8832                                 }
8833
8834                                 number_of_funded_channels += peer_state.channel_by_id.iter().filter(
8835                                         |(_, phase)| if let ChannelPhase::Funded(chan) = phase { chan.context.is_funding_broadcast() } else { false }
8836                                 ).count();
8837                         }
8838
8839                         (number_of_funded_channels as u64).write(writer)?;
8840
8841                         for (_, peer_state_mutex) in per_peer_state.iter() {
8842                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8843                                 let peer_state = &mut *peer_state_lock;
8844                                 for channel in peer_state.channel_by_id.iter().filter_map(
8845                                         |(_, phase)| if let ChannelPhase::Funded(channel) = phase {
8846                                                 if channel.context.is_funding_broadcast() { Some(channel) } else { None }
8847                                         } else { None }
8848                                 ) {
8849                                         channel.write(writer)?;
8850                                 }
8851                         }
8852                 }
8853
8854                 {
8855                         let forward_htlcs = self.forward_htlcs.lock().unwrap();
8856                         (forward_htlcs.len() as u64).write(writer)?;
8857                         for (short_channel_id, pending_forwards) in forward_htlcs.iter() {
8858                                 short_channel_id.write(writer)?;
8859                                 (pending_forwards.len() as u64).write(writer)?;
8860                                 for forward in pending_forwards {
8861                                         forward.write(writer)?;
8862                                 }
8863                         }
8864                 }
8865
8866                 let per_peer_state = self.per_peer_state.write().unwrap();
8867
8868                 let pending_inbound_payments = self.pending_inbound_payments.lock().unwrap();
8869                 let claimable_payments = self.claimable_payments.lock().unwrap();
8870                 let pending_outbound_payments = self.pending_outbound_payments.pending_outbound_payments.lock().unwrap();
8871
8872                 let mut htlc_purposes: Vec<&events::PaymentPurpose> = Vec::new();
8873                 let mut htlc_onion_fields: Vec<&_> = Vec::new();
8874                 (claimable_payments.claimable_payments.len() as u64).write(writer)?;
8875                 for (payment_hash, payment) in claimable_payments.claimable_payments.iter() {
8876                         payment_hash.write(writer)?;
8877                         (payment.htlcs.len() as u64).write(writer)?;
8878                         for htlc in payment.htlcs.iter() {
8879                                 htlc.write(writer)?;
8880                         }
8881                         htlc_purposes.push(&payment.purpose);
8882                         htlc_onion_fields.push(&payment.onion_fields);
8883                 }
8884
8885                 let mut monitor_update_blocked_actions_per_peer = None;
8886                 let mut peer_states = Vec::new();
8887                 for (_, peer_state_mutex) in per_peer_state.iter() {
8888                         // Because we're holding the owning `per_peer_state` write lock here there's no chance
8889                         // of a lockorder violation deadlock - no other thread can be holding any
8890                         // per_peer_state lock at all.
8891                         peer_states.push(peer_state_mutex.unsafe_well_ordered_double_lock_self());
8892                 }
8893
8894                 (serializable_peer_count).write(writer)?;
8895                 for ((peer_pubkey, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
8896                         // Peers which we have no channels to should be dropped once disconnected. As we
8897                         // disconnect all peers when shutting down and serializing the ChannelManager, we
8898                         // consider all peers as disconnected here. There's therefore no need write peers with
8899                         // no channels.
8900                         if !peer_state.ok_to_remove(false) {
8901                                 peer_pubkey.write(writer)?;
8902                                 peer_state.latest_features.write(writer)?;
8903                                 if !peer_state.monitor_update_blocked_actions.is_empty() {
8904                                         monitor_update_blocked_actions_per_peer
8905                                                 .get_or_insert_with(Vec::new)
8906                                                 .push((*peer_pubkey, &peer_state.monitor_update_blocked_actions));
8907                                 }
8908                         }
8909                 }
8910
8911                 let events = self.pending_events.lock().unwrap();
8912                 // LDK versions prior to 0.0.115 don't support post-event actions, thus if there's no
8913                 // actions at all, skip writing the required TLV. Otherwise, pre-0.0.115 versions will
8914                 // refuse to read the new ChannelManager.
8915                 let events_not_backwards_compatible = events.iter().any(|(_, action)| action.is_some());
8916                 if events_not_backwards_compatible {
8917                         // If we're gonna write a even TLV that will overwrite our events anyway we might as
8918                         // well save the space and not write any events here.
8919                         0u64.write(writer)?;
8920                 } else {
8921                         (events.len() as u64).write(writer)?;
8922                         for (event, _) in events.iter() {
8923                                 event.write(writer)?;
8924                         }
8925                 }
8926
8927                 // LDK versions prior to 0.0.116 wrote the `pending_background_events`
8928                 // `MonitorUpdateRegeneratedOnStartup`s here, however there was never a reason to do so -
8929                 // the closing monitor updates were always effectively replayed on startup (either directly
8930                 // by calling `broadcast_latest_holder_commitment_txn` on a `ChannelMonitor` during
8931                 // deserialization or, in 0.0.115, by regenerating the monitor update itself).
8932                 0u64.write(writer)?;
8933
8934                 // Prior to 0.0.111 we tracked node_announcement serials here, however that now happens in
8935                 // `PeerManager`, and thus we simply write the `highest_seen_timestamp` twice, which is
8936                 // likely to be identical.
8937                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
8938                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
8939
8940                 (pending_inbound_payments.len() as u64).write(writer)?;
8941                 for (hash, pending_payment) in pending_inbound_payments.iter() {
8942                         hash.write(writer)?;
8943                         pending_payment.write(writer)?;
8944                 }
8945
8946                 // For backwards compat, write the session privs and their total length.
8947                 let mut num_pending_outbounds_compat: u64 = 0;
8948                 for (_, outbound) in pending_outbound_payments.iter() {
8949                         if !outbound.is_fulfilled() && !outbound.abandoned() {
8950                                 num_pending_outbounds_compat += outbound.remaining_parts() as u64;
8951                         }
8952                 }
8953                 num_pending_outbounds_compat.write(writer)?;
8954                 for (_, outbound) in pending_outbound_payments.iter() {
8955                         match outbound {
8956                                 PendingOutboundPayment::Legacy { session_privs } |
8957                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
8958                                         for session_priv in session_privs.iter() {
8959                                                 session_priv.write(writer)?;
8960                                         }
8961                                 }
8962                                 PendingOutboundPayment::AwaitingInvoice { .. } => {},
8963                                 PendingOutboundPayment::InvoiceReceived { .. } => {},
8964                                 PendingOutboundPayment::Fulfilled { .. } => {},
8965                                 PendingOutboundPayment::Abandoned { .. } => {},
8966                         }
8967                 }
8968
8969                 // Encode without retry info for 0.0.101 compatibility.
8970                 let mut pending_outbound_payments_no_retry: HashMap<PaymentId, HashSet<[u8; 32]>> = HashMap::new();
8971                 for (id, outbound) in pending_outbound_payments.iter() {
8972                         match outbound {
8973                                 PendingOutboundPayment::Legacy { session_privs } |
8974                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
8975                                         pending_outbound_payments_no_retry.insert(*id, session_privs.clone());
8976                                 },
8977                                 _ => {},
8978                         }
8979                 }
8980
8981                 let mut pending_intercepted_htlcs = None;
8982                 let our_pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
8983                 if our_pending_intercepts.len() != 0 {
8984                         pending_intercepted_htlcs = Some(our_pending_intercepts);
8985                 }
8986
8987                 let mut pending_claiming_payments = Some(&claimable_payments.pending_claiming_payments);
8988                 if pending_claiming_payments.as_ref().unwrap().is_empty() {
8989                         // LDK versions prior to 0.0.113 do not know how to read the pending claimed payments
8990                         // map. Thus, if there are no entries we skip writing a TLV for it.
8991                         pending_claiming_payments = None;
8992                 }
8993
8994                 let mut in_flight_monitor_updates: Option<HashMap<(&PublicKey, &OutPoint), &Vec<ChannelMonitorUpdate>>> = None;
8995                 for ((counterparty_id, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
8996                         for (funding_outpoint, updates) in peer_state.in_flight_monitor_updates.iter() {
8997                                 if !updates.is_empty() {
8998                                         if in_flight_monitor_updates.is_none() { in_flight_monitor_updates = Some(HashMap::new()); }
8999                                         in_flight_monitor_updates.as_mut().unwrap().insert((counterparty_id, funding_outpoint), updates);
9000                                 }
9001                         }
9002                 }
9003
9004                 write_tlv_fields!(writer, {
9005                         (1, pending_outbound_payments_no_retry, required),
9006                         (2, pending_intercepted_htlcs, option),
9007                         (3, pending_outbound_payments, required),
9008                         (4, pending_claiming_payments, option),
9009                         (5, self.our_network_pubkey, required),
9010                         (6, monitor_update_blocked_actions_per_peer, option),
9011                         (7, self.fake_scid_rand_bytes, required),
9012                         (8, if events_not_backwards_compatible { Some(&*events) } else { None }, option),
9013                         (9, htlc_purposes, required_vec),
9014                         (10, in_flight_monitor_updates, option),
9015                         (11, self.probing_cookie_secret, required),
9016                         (13, htlc_onion_fields, optional_vec),
9017                 });
9018
9019                 Ok(())
9020         }
9021 }
9022
9023 impl Writeable for VecDeque<(Event, Option<EventCompletionAction>)> {
9024         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
9025                 (self.len() as u64).write(w)?;
9026                 for (event, action) in self.iter() {
9027                         event.write(w)?;
9028                         action.write(w)?;
9029                         #[cfg(debug_assertions)] {
9030                                 // Events are MaybeReadable, in some cases indicating that they shouldn't actually
9031                                 // be persisted and are regenerated on restart. However, if such an event has a
9032                                 // post-event-handling action we'll write nothing for the event and would have to
9033                                 // either forget the action or fail on deserialization (which we do below). Thus,
9034                                 // check that the event is sane here.
9035                                 let event_encoded = event.encode();
9036                                 let event_read: Option<Event> =
9037                                         MaybeReadable::read(&mut &event_encoded[..]).unwrap();
9038                                 if action.is_some() { assert!(event_read.is_some()); }
9039                         }
9040                 }
9041                 Ok(())
9042         }
9043 }
9044 impl Readable for VecDeque<(Event, Option<EventCompletionAction>)> {
9045         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
9046                 let len: u64 = Readable::read(reader)?;
9047                 const MAX_ALLOC_SIZE: u64 = 1024 * 16;
9048                 let mut events: Self = VecDeque::with_capacity(cmp::min(
9049                         MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>() as u64,
9050                         len) as usize);
9051                 for _ in 0..len {
9052                         let ev_opt = MaybeReadable::read(reader)?;
9053                         let action = Readable::read(reader)?;
9054                         if let Some(ev) = ev_opt {
9055                                 events.push_back((ev, action));
9056                         } else if action.is_some() {
9057                                 return Err(DecodeError::InvalidValue);
9058                         }
9059                 }
9060                 Ok(events)
9061         }
9062 }
9063
9064 impl_writeable_tlv_based_enum!(ChannelShutdownState,
9065         (0, NotShuttingDown) => {},
9066         (2, ShutdownInitiated) => {},
9067         (4, ResolvingHTLCs) => {},
9068         (6, NegotiatingClosingFee) => {},
9069         (8, ShutdownComplete) => {}, ;
9070 );
9071
9072 /// Arguments for the creation of a ChannelManager that are not deserialized.
9073 ///
9074 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
9075 /// is:
9076 /// 1) Deserialize all stored [`ChannelMonitor`]s.
9077 /// 2) Deserialize the [`ChannelManager`] by filling in this struct and calling:
9078 ///    `<(BlockHash, ChannelManager)>::read(reader, args)`
9079 ///    This may result in closing some channels if the [`ChannelMonitor`] is newer than the stored
9080 ///    [`ChannelManager`] state to ensure no loss of funds. Thus, transactions may be broadcasted.
9081 /// 3) If you are not fetching full blocks, register all relevant [`ChannelMonitor`] outpoints the
9082 ///    same way you would handle a [`chain::Filter`] call using
9083 ///    [`ChannelMonitor::get_outputs_to_watch`] and [`ChannelMonitor::get_funding_txo`].
9084 /// 4) Reconnect blocks on your [`ChannelMonitor`]s.
9085 /// 5) Disconnect/connect blocks on the [`ChannelManager`].
9086 /// 6) Re-persist the [`ChannelMonitor`]s to ensure the latest state is on disk.
9087 ///    Note that if you're using a [`ChainMonitor`] for your [`chain::Watch`] implementation, you
9088 ///    will likely accomplish this as a side-effect of calling [`chain::Watch::watch_channel`] in
9089 ///    the next step.
9090 /// 7) Move the [`ChannelMonitor`]s into your local [`chain::Watch`]. If you're using a
9091 ///    [`ChainMonitor`], this is done by calling [`chain::Watch::watch_channel`].
9092 ///
9093 /// Note that the ordering of #4-7 is not of importance, however all four must occur before you
9094 /// call any other methods on the newly-deserialized [`ChannelManager`].
9095 ///
9096 /// Note that because some channels may be closed during deserialization, it is critical that you
9097 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
9098 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
9099 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
9100 /// not force-close the same channels but consider them live), you may end up revoking a state for
9101 /// which you've already broadcasted the transaction.
9102 ///
9103 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
9104 pub struct ChannelManagerReadArgs<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
9105 where
9106         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
9107         T::Target: BroadcasterInterface,
9108         ES::Target: EntropySource,
9109         NS::Target: NodeSigner,
9110         SP::Target: SignerProvider,
9111         F::Target: FeeEstimator,
9112         R::Target: Router,
9113         L::Target: Logger,
9114 {
9115         /// A cryptographically secure source of entropy.
9116         pub entropy_source: ES,
9117
9118         /// A signer that is able to perform node-scoped cryptographic operations.
9119         pub node_signer: NS,
9120
9121         /// The keys provider which will give us relevant keys. Some keys will be loaded during
9122         /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
9123         /// signing data.
9124         pub signer_provider: SP,
9125
9126         /// The fee_estimator for use in the ChannelManager in the future.
9127         ///
9128         /// No calls to the FeeEstimator will be made during deserialization.
9129         pub fee_estimator: F,
9130         /// The chain::Watch for use in the ChannelManager in the future.
9131         ///
9132         /// No calls to the chain::Watch will be made during deserialization. It is assumed that
9133         /// you have deserialized ChannelMonitors separately and will add them to your
9134         /// chain::Watch after deserializing this ChannelManager.
9135         pub chain_monitor: M,
9136
9137         /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
9138         /// used to broadcast the latest local commitment transactions of channels which must be
9139         /// force-closed during deserialization.
9140         pub tx_broadcaster: T,
9141         /// The router which will be used in the ChannelManager in the future for finding routes
9142         /// on-the-fly for trampoline payments. Absent in private nodes that don't support forwarding.
9143         ///
9144         /// No calls to the router will be made during deserialization.
9145         pub router: R,
9146         /// The Logger for use in the ChannelManager and which may be used to log information during
9147         /// deserialization.
9148         pub logger: L,
9149         /// Default settings used for new channels. Any existing channels will continue to use the
9150         /// runtime settings which were stored when the ChannelManager was serialized.
9151         pub default_config: UserConfig,
9152
9153         /// A map from channel funding outpoints to ChannelMonitors for those channels (ie
9154         /// value.context.get_funding_txo() should be the key).
9155         ///
9156         /// If a monitor is inconsistent with the channel state during deserialization the channel will
9157         /// be force-closed using the data in the ChannelMonitor and the channel will be dropped. This
9158         /// is true for missing channels as well. If there is a monitor missing for which we find
9159         /// channel data Err(DecodeError::InvalidValue) will be returned.
9160         ///
9161         /// In such cases the latest local transactions will be sent to the tx_broadcaster included in
9162         /// this struct.
9163         ///
9164         /// This is not exported to bindings users because we have no HashMap bindings
9165         pub channel_monitors: HashMap<OutPoint, &'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>,
9166 }
9167
9168 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
9169                 ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>
9170 where
9171         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
9172         T::Target: BroadcasterInterface,
9173         ES::Target: EntropySource,
9174         NS::Target: NodeSigner,
9175         SP::Target: SignerProvider,
9176         F::Target: FeeEstimator,
9177         R::Target: Router,
9178         L::Target: Logger,
9179 {
9180         /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
9181         /// HashMap for you. This is primarily useful for C bindings where it is not practical to
9182         /// populate a HashMap directly from C.
9183         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,
9184                         mut channel_monitors: Vec<&'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>) -> Self {
9185                 Self {
9186                         entropy_source, node_signer, signer_provider, fee_estimator, chain_monitor, tx_broadcaster, router, logger, default_config,
9187                         channel_monitors: channel_monitors.drain(..).map(|monitor| { (monitor.get_funding_txo().0, monitor) }).collect()
9188                 }
9189         }
9190 }
9191
9192 // Implement ReadableArgs for an Arc'd ChannelManager to make it a bit easier to work with the
9193 // SipmleArcChannelManager type:
9194 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
9195         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, Arc<ChannelManager<M, T, ES, NS, SP, F, R, L>>)
9196 where
9197         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
9198         T::Target: BroadcasterInterface,
9199         ES::Target: EntropySource,
9200         NS::Target: NodeSigner,
9201         SP::Target: SignerProvider,
9202         F::Target: FeeEstimator,
9203         R::Target: Router,
9204         L::Target: Logger,
9205 {
9206         fn read<Reader: io::Read>(reader: &mut Reader, args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
9207                 let (blockhash, chan_manager) = <(BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)>::read(reader, args)?;
9208                 Ok((blockhash, Arc::new(chan_manager)))
9209         }
9210 }
9211
9212 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
9213         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)
9214 where
9215         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
9216         T::Target: BroadcasterInterface,
9217         ES::Target: EntropySource,
9218         NS::Target: NodeSigner,
9219         SP::Target: SignerProvider,
9220         F::Target: FeeEstimator,
9221         R::Target: Router,
9222         L::Target: Logger,
9223 {
9224         fn read<Reader: io::Read>(reader: &mut Reader, mut args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
9225                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
9226
9227                 let genesis_hash: BlockHash = Readable::read(reader)?;
9228                 let best_block_height: u32 = Readable::read(reader)?;
9229                 let best_block_hash: BlockHash = Readable::read(reader)?;
9230
9231                 let mut failed_htlcs = Vec::new();
9232
9233                 let channel_count: u64 = Readable::read(reader)?;
9234                 let mut funding_txo_set = HashSet::with_capacity(cmp::min(channel_count as usize, 128));
9235                 let mut funded_peer_channels: HashMap<PublicKey, HashMap<ChannelId, ChannelPhase<SP>>> = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
9236                 let mut id_to_peer = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
9237                 let mut short_to_chan_info = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
9238                 let mut channel_closures = VecDeque::new();
9239                 let mut close_background_events = Vec::new();
9240                 for _ in 0..channel_count {
9241                         let mut channel: Channel<SP> = Channel::read(reader, (
9242                                 &args.entropy_source, &args.signer_provider, best_block_height, &provided_channel_type_features(&args.default_config)
9243                         ))?;
9244                         let funding_txo = channel.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
9245                         funding_txo_set.insert(funding_txo.clone());
9246                         if let Some(ref mut monitor) = args.channel_monitors.get_mut(&funding_txo) {
9247                                 if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() ||
9248                                                 channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() ||
9249                                                 channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() ||
9250                                                 channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
9251                                         // But if the channel is behind of the monitor, close the channel:
9252                                         log_error!(args.logger, "A ChannelManager is stale compared to the current ChannelMonitor!");
9253                                         log_error!(args.logger, " The channel will be force-closed and the latest commitment transaction from the ChannelMonitor broadcast.");
9254                                         if channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
9255                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
9256                                                         &channel.context.channel_id(), monitor.get_latest_update_id(), channel.context.get_latest_monitor_update_id());
9257                                         }
9258                                         if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() {
9259                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at holder commitment number {} but the ChannelManager is at holder commitment number {}.",
9260                                                         &channel.context.channel_id(), monitor.get_cur_holder_commitment_number(), channel.get_cur_holder_commitment_transaction_number());
9261                                         }
9262                                         if channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() {
9263                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at revoked counterparty transaction number {} but the ChannelManager is at revoked counterparty transaction number {}.",
9264                                                         &channel.context.channel_id(), monitor.get_min_seen_secret(), channel.get_revoked_counterparty_commitment_transaction_number());
9265                                         }
9266                                         if channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() {
9267                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at counterparty commitment transaction number {} but the ChannelManager is at counterparty commitment transaction number {}.",
9268                                                         &channel.context.channel_id(), monitor.get_cur_counterparty_commitment_number(), channel.get_cur_counterparty_commitment_transaction_number());
9269                                         }
9270                                         let (monitor_update, mut new_failed_htlcs, batch_funding_txid) = channel.context.force_shutdown(true);
9271                                         if batch_funding_txid.is_some() {
9272                                                 return Err(DecodeError::InvalidValue);
9273                                         }
9274                                         if let Some((counterparty_node_id, funding_txo, update)) = monitor_update {
9275                                                 close_background_events.push(BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
9276                                                         counterparty_node_id, funding_txo, update
9277                                                 });
9278                                         }
9279                                         failed_htlcs.append(&mut new_failed_htlcs);
9280                                         channel_closures.push_back((events::Event::ChannelClosed {
9281                                                 channel_id: channel.context.channel_id(),
9282                                                 user_channel_id: channel.context.get_user_id(),
9283                                                 reason: ClosureReason::OutdatedChannelManager,
9284                                                 counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
9285                                                 channel_capacity_sats: Some(channel.context.get_value_satoshis()),
9286                                         }, None));
9287                                         for (channel_htlc_source, payment_hash) in channel.inflight_htlc_sources() {
9288                                                 let mut found_htlc = false;
9289                                                 for (monitor_htlc_source, _) in monitor.get_all_current_outbound_htlcs() {
9290                                                         if *channel_htlc_source == monitor_htlc_source { found_htlc = true; break; }
9291                                                 }
9292                                                 if !found_htlc {
9293                                                         // If we have some HTLCs in the channel which are not present in the newer
9294                                                         // ChannelMonitor, they have been removed and should be failed back to
9295                                                         // ensure we don't forget them entirely. Note that if the missing HTLC(s)
9296                                                         // were actually claimed we'd have generated and ensured the previous-hop
9297                                                         // claim update ChannelMonitor updates were persisted prior to persising
9298                                                         // the ChannelMonitor update for the forward leg, so attempting to fail the
9299                                                         // backwards leg of the HTLC will simply be rejected.
9300                                                         log_info!(args.logger,
9301                                                                 "Failing HTLC with hash {} as it is missing in the ChannelMonitor for channel {} but was present in the (stale) ChannelManager",
9302                                                                 &channel.context.channel_id(), &payment_hash);
9303                                                         failed_htlcs.push((channel_htlc_source.clone(), *payment_hash, channel.context.get_counterparty_node_id(), channel.context.channel_id()));
9304                                                 }
9305                                         }
9306                                 } else {
9307                                         log_info!(args.logger, "Successfully loaded channel {} at update_id {} against monitor at update id {}",
9308                                                 &channel.context.channel_id(), channel.context.get_latest_monitor_update_id(),
9309                                                 monitor.get_latest_update_id());
9310                                         if let Some(short_channel_id) = channel.context.get_short_channel_id() {
9311                                                 short_to_chan_info.insert(short_channel_id, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
9312                                         }
9313                                         if channel.context.is_funding_broadcast() {
9314                                                 id_to_peer.insert(channel.context.channel_id(), channel.context.get_counterparty_node_id());
9315                                         }
9316                                         match funded_peer_channels.entry(channel.context.get_counterparty_node_id()) {
9317                                                 hash_map::Entry::Occupied(mut entry) => {
9318                                                         let by_id_map = entry.get_mut();
9319                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
9320                                                 },
9321                                                 hash_map::Entry::Vacant(entry) => {
9322                                                         let mut by_id_map = HashMap::new();
9323                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
9324                                                         entry.insert(by_id_map);
9325                                                 }
9326                                         }
9327                                 }
9328                         } else if channel.is_awaiting_initial_mon_persist() {
9329                                 // If we were persisted and shut down while the initial ChannelMonitor persistence
9330                                 // was in-progress, we never broadcasted the funding transaction and can still
9331                                 // safely discard the channel.
9332                                 let _ = channel.context.force_shutdown(false);
9333                                 channel_closures.push_back((events::Event::ChannelClosed {
9334                                         channel_id: channel.context.channel_id(),
9335                                         user_channel_id: channel.context.get_user_id(),
9336                                         reason: ClosureReason::DisconnectedPeer,
9337                                         counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
9338                                         channel_capacity_sats: Some(channel.context.get_value_satoshis()),
9339                                 }, None));
9340                         } else {
9341                                 log_error!(args.logger, "Missing ChannelMonitor for channel {} needed by ChannelManager.", &channel.context.channel_id());
9342                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
9343                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
9344                                 log_error!(args.logger, " Without the ChannelMonitor we cannot continue without risking funds.");
9345                                 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");
9346                                 return Err(DecodeError::InvalidValue);
9347                         }
9348                 }
9349
9350                 for (funding_txo, _) in args.channel_monitors.iter() {
9351                         if !funding_txo_set.contains(funding_txo) {
9352                                 log_info!(args.logger, "Queueing monitor update to ensure missing channel {} is force closed",
9353                                         &funding_txo.to_channel_id());
9354                                 let monitor_update = ChannelMonitorUpdate {
9355                                         update_id: CLOSED_CHANNEL_UPDATE_ID,
9356                                         updates: vec![ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast: true }],
9357                                 };
9358                                 close_background_events.push(BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((*funding_txo, monitor_update)));
9359                         }
9360                 }
9361
9362                 const MAX_ALLOC_SIZE: usize = 1024 * 64;
9363                 let forward_htlcs_count: u64 = Readable::read(reader)?;
9364                 let mut forward_htlcs = HashMap::with_capacity(cmp::min(forward_htlcs_count as usize, 128));
9365                 for _ in 0..forward_htlcs_count {
9366                         let short_channel_id = Readable::read(reader)?;
9367                         let pending_forwards_count: u64 = Readable::read(reader)?;
9368                         let mut pending_forwards = Vec::with_capacity(cmp::min(pending_forwards_count as usize, MAX_ALLOC_SIZE/mem::size_of::<HTLCForwardInfo>()));
9369                         for _ in 0..pending_forwards_count {
9370                                 pending_forwards.push(Readable::read(reader)?);
9371                         }
9372                         forward_htlcs.insert(short_channel_id, pending_forwards);
9373                 }
9374
9375                 let claimable_htlcs_count: u64 = Readable::read(reader)?;
9376                 let mut claimable_htlcs_list = Vec::with_capacity(cmp::min(claimable_htlcs_count as usize, 128));
9377                 for _ in 0..claimable_htlcs_count {
9378                         let payment_hash = Readable::read(reader)?;
9379                         let previous_hops_len: u64 = Readable::read(reader)?;
9380                         let mut previous_hops = Vec::with_capacity(cmp::min(previous_hops_len as usize, MAX_ALLOC_SIZE/mem::size_of::<ClaimableHTLC>()));
9381                         for _ in 0..previous_hops_len {
9382                                 previous_hops.push(<ClaimableHTLC as Readable>::read(reader)?);
9383                         }
9384                         claimable_htlcs_list.push((payment_hash, previous_hops));
9385                 }
9386
9387                 let peer_state_from_chans = |channel_by_id| {
9388                         PeerState {
9389                                 channel_by_id,
9390                                 inbound_channel_request_by_id: HashMap::new(),
9391                                 latest_features: InitFeatures::empty(),
9392                                 pending_msg_events: Vec::new(),
9393                                 in_flight_monitor_updates: BTreeMap::new(),
9394                                 monitor_update_blocked_actions: BTreeMap::new(),
9395                                 actions_blocking_raa_monitor_updates: BTreeMap::new(),
9396                                 is_connected: false,
9397                         }
9398                 };
9399
9400                 let peer_count: u64 = Readable::read(reader)?;
9401                 let mut per_peer_state = HashMap::with_capacity(cmp::min(peer_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(PublicKey, Mutex<PeerState<SP>>)>()));
9402                 for _ in 0..peer_count {
9403                         let peer_pubkey = Readable::read(reader)?;
9404                         let peer_chans = funded_peer_channels.remove(&peer_pubkey).unwrap_or(HashMap::new());
9405                         let mut peer_state = peer_state_from_chans(peer_chans);
9406                         peer_state.latest_features = Readable::read(reader)?;
9407                         per_peer_state.insert(peer_pubkey, Mutex::new(peer_state));
9408                 }
9409
9410                 let event_count: u64 = Readable::read(reader)?;
9411                 let mut pending_events_read: VecDeque<(events::Event, Option<EventCompletionAction>)> =
9412                         VecDeque::with_capacity(cmp::min(event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>()));
9413                 for _ in 0..event_count {
9414                         match MaybeReadable::read(reader)? {
9415                                 Some(event) => pending_events_read.push_back((event, None)),
9416                                 None => continue,
9417                         }
9418                 }
9419
9420                 let background_event_count: u64 = Readable::read(reader)?;
9421                 for _ in 0..background_event_count {
9422                         match <u8 as Readable>::read(reader)? {
9423                                 0 => {
9424                                         // LDK versions prior to 0.0.116 wrote pending `MonitorUpdateRegeneratedOnStartup`s here,
9425                                         // however we really don't (and never did) need them - we regenerate all
9426                                         // on-startup monitor updates.
9427                                         let _: OutPoint = Readable::read(reader)?;
9428                                         let _: ChannelMonitorUpdate = Readable::read(reader)?;
9429                                 }
9430                                 _ => return Err(DecodeError::InvalidValue),
9431                         }
9432                 }
9433
9434                 let _last_node_announcement_serial: u32 = Readable::read(reader)?; // Only used < 0.0.111
9435                 let highest_seen_timestamp: u32 = Readable::read(reader)?;
9436
9437                 let pending_inbound_payment_count: u64 = Readable::read(reader)?;
9438                 let mut pending_inbound_payments: HashMap<PaymentHash, PendingInboundPayment> = HashMap::with_capacity(cmp::min(pending_inbound_payment_count as usize, MAX_ALLOC_SIZE/(3*32)));
9439                 for _ in 0..pending_inbound_payment_count {
9440                         if pending_inbound_payments.insert(Readable::read(reader)?, Readable::read(reader)?).is_some() {
9441                                 return Err(DecodeError::InvalidValue);
9442                         }
9443                 }
9444
9445                 let pending_outbound_payments_count_compat: u64 = Readable::read(reader)?;
9446                 let mut pending_outbound_payments_compat: HashMap<PaymentId, PendingOutboundPayment> =
9447                         HashMap::with_capacity(cmp::min(pending_outbound_payments_count_compat as usize, MAX_ALLOC_SIZE/32));
9448                 for _ in 0..pending_outbound_payments_count_compat {
9449                         let session_priv = Readable::read(reader)?;
9450                         let payment = PendingOutboundPayment::Legacy {
9451                                 session_privs: [session_priv].iter().cloned().collect()
9452                         };
9453                         if pending_outbound_payments_compat.insert(PaymentId(session_priv), payment).is_some() {
9454                                 return Err(DecodeError::InvalidValue)
9455                         };
9456                 }
9457
9458                 // pending_outbound_payments_no_retry is for compatibility with 0.0.101 clients.
9459                 let mut pending_outbound_payments_no_retry: Option<HashMap<PaymentId, HashSet<[u8; 32]>>> = None;
9460                 let mut pending_outbound_payments = None;
9461                 let mut pending_intercepted_htlcs: Option<HashMap<InterceptId, PendingAddHTLCInfo>> = Some(HashMap::new());
9462                 let mut received_network_pubkey: Option<PublicKey> = None;
9463                 let mut fake_scid_rand_bytes: Option<[u8; 32]> = None;
9464                 let mut probing_cookie_secret: Option<[u8; 32]> = None;
9465                 let mut claimable_htlc_purposes = None;
9466                 let mut claimable_htlc_onion_fields = None;
9467                 let mut pending_claiming_payments = Some(HashMap::new());
9468                 let mut monitor_update_blocked_actions_per_peer: Option<Vec<(_, BTreeMap<_, Vec<_>>)>> = Some(Vec::new());
9469                 let mut events_override = None;
9470                 let mut in_flight_monitor_updates: Option<HashMap<(PublicKey, OutPoint), Vec<ChannelMonitorUpdate>>> = None;
9471                 read_tlv_fields!(reader, {
9472                         (1, pending_outbound_payments_no_retry, option),
9473                         (2, pending_intercepted_htlcs, option),
9474                         (3, pending_outbound_payments, option),
9475                         (4, pending_claiming_payments, option),
9476                         (5, received_network_pubkey, option),
9477                         (6, monitor_update_blocked_actions_per_peer, option),
9478                         (7, fake_scid_rand_bytes, option),
9479                         (8, events_override, option),
9480                         (9, claimable_htlc_purposes, optional_vec),
9481                         (10, in_flight_monitor_updates, option),
9482                         (11, probing_cookie_secret, option),
9483                         (13, claimable_htlc_onion_fields, optional_vec),
9484                 });
9485                 if fake_scid_rand_bytes.is_none() {
9486                         fake_scid_rand_bytes = Some(args.entropy_source.get_secure_random_bytes());
9487                 }
9488
9489                 if probing_cookie_secret.is_none() {
9490                         probing_cookie_secret = Some(args.entropy_source.get_secure_random_bytes());
9491                 }
9492
9493                 if let Some(events) = events_override {
9494                         pending_events_read = events;
9495                 }
9496
9497                 if !channel_closures.is_empty() {
9498                         pending_events_read.append(&mut channel_closures);
9499                 }
9500
9501                 if pending_outbound_payments.is_none() && pending_outbound_payments_no_retry.is_none() {
9502                         pending_outbound_payments = Some(pending_outbound_payments_compat);
9503                 } else if pending_outbound_payments.is_none() {
9504                         let mut outbounds = HashMap::new();
9505                         for (id, session_privs) in pending_outbound_payments_no_retry.unwrap().drain() {
9506                                 outbounds.insert(id, PendingOutboundPayment::Legacy { session_privs });
9507                         }
9508                         pending_outbound_payments = Some(outbounds);
9509                 }
9510                 let pending_outbounds = OutboundPayments {
9511                         pending_outbound_payments: Mutex::new(pending_outbound_payments.unwrap()),
9512                         retry_lock: Mutex::new(())
9513                 };
9514
9515                 // We have to replay (or skip, if they were completed after we wrote the `ChannelManager`)
9516                 // each `ChannelMonitorUpdate` in `in_flight_monitor_updates`. After doing so, we have to
9517                 // check that each channel we have isn't newer than the latest `ChannelMonitorUpdate`(s) we
9518                 // replayed, and for each monitor update we have to replay we have to ensure there's a
9519                 // `ChannelMonitor` for it.
9520                 //
9521                 // In order to do so we first walk all of our live channels (so that we can check their
9522                 // state immediately after doing the update replays, when we have the `update_id`s
9523                 // available) and then walk any remaining in-flight updates.
9524                 //
9525                 // Because the actual handling of the in-flight updates is the same, it's macro'ized here:
9526                 let mut pending_background_events = Vec::new();
9527                 macro_rules! handle_in_flight_updates {
9528                         ($counterparty_node_id: expr, $chan_in_flight_upds: expr, $funding_txo: expr,
9529                          $monitor: expr, $peer_state: expr, $channel_info_log: expr
9530                         ) => { {
9531                                 let mut max_in_flight_update_id = 0;
9532                                 $chan_in_flight_upds.retain(|upd| upd.update_id > $monitor.get_latest_update_id());
9533                                 for update in $chan_in_flight_upds.iter() {
9534                                         log_trace!(args.logger, "Replaying ChannelMonitorUpdate {} for {}channel {}",
9535                                                 update.update_id, $channel_info_log, &$funding_txo.to_channel_id());
9536                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id, update.update_id);
9537                                         pending_background_events.push(
9538                                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
9539                                                         counterparty_node_id: $counterparty_node_id,
9540                                                         funding_txo: $funding_txo,
9541                                                         update: update.clone(),
9542                                                 });
9543                                 }
9544                                 if $chan_in_flight_upds.is_empty() {
9545                                         // We had some updates to apply, but it turns out they had completed before we
9546                                         // were serialized, we just weren't notified of that. Thus, we may have to run
9547                                         // the completion actions for any monitor updates, but otherwise are done.
9548                                         pending_background_events.push(
9549                                                 BackgroundEvent::MonitorUpdatesComplete {
9550                                                         counterparty_node_id: $counterparty_node_id,
9551                                                         channel_id: $funding_txo.to_channel_id(),
9552                                                 });
9553                                 }
9554                                 if $peer_state.in_flight_monitor_updates.insert($funding_txo, $chan_in_flight_upds).is_some() {
9555                                         log_error!(args.logger, "Duplicate in-flight monitor update set for the same channel!");
9556                                         return Err(DecodeError::InvalidValue);
9557                                 }
9558                                 max_in_flight_update_id
9559                         } }
9560                 }
9561
9562                 for (counterparty_id, peer_state_mtx) in per_peer_state.iter_mut() {
9563                         let mut peer_state_lock = peer_state_mtx.lock().unwrap();
9564                         let peer_state = &mut *peer_state_lock;
9565                         for phase in peer_state.channel_by_id.values() {
9566                                 if let ChannelPhase::Funded(chan) = phase {
9567                                         // Channels that were persisted have to be funded, otherwise they should have been
9568                                         // discarded.
9569                                         let funding_txo = chan.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
9570                                         let monitor = args.channel_monitors.get(&funding_txo)
9571                                                 .expect("We already checked for monitor presence when loading channels");
9572                                         let mut max_in_flight_update_id = monitor.get_latest_update_id();
9573                                         if let Some(in_flight_upds) = &mut in_flight_monitor_updates {
9574                                                 if let Some(mut chan_in_flight_upds) = in_flight_upds.remove(&(*counterparty_id, funding_txo)) {
9575                                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id,
9576                                                                 handle_in_flight_updates!(*counterparty_id, chan_in_flight_upds,
9577                                                                         funding_txo, monitor, peer_state, ""));
9578                                                 }
9579                                         }
9580                                         if chan.get_latest_unblocked_monitor_update_id() > max_in_flight_update_id {
9581                                                 // If the channel is ahead of the monitor, return InvalidValue:
9582                                                 log_error!(args.logger, "A ChannelMonitor is stale compared to the current ChannelManager! This indicates a potentially-critical violation of the chain::Watch API!");
9583                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} with update_id through {} in-flight",
9584                                                         chan.context.channel_id(), monitor.get_latest_update_id(), max_in_flight_update_id);
9585                                                 log_error!(args.logger, " but the ChannelManager is at update_id {}.", chan.get_latest_unblocked_monitor_update_id());
9586                                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
9587                                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
9588                                                 log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
9589                                                 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");
9590                                                 return Err(DecodeError::InvalidValue);
9591                                         }
9592                                 } else {
9593                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
9594                                         // created in this `channel_by_id` map.
9595                                         debug_assert!(false);
9596                                         return Err(DecodeError::InvalidValue);
9597                                 }
9598                         }
9599                 }
9600
9601                 if let Some(in_flight_upds) = in_flight_monitor_updates {
9602                         for ((counterparty_id, funding_txo), mut chan_in_flight_updates) in in_flight_upds {
9603                                 if let Some(monitor) = args.channel_monitors.get(&funding_txo) {
9604                                         // Now that we've removed all the in-flight monitor updates for channels that are
9605                                         // still open, we need to replay any monitor updates that are for closed channels,
9606                                         // creating the neccessary peer_state entries as we go.
9607                                         let peer_state_mutex = per_peer_state.entry(counterparty_id).or_insert_with(|| {
9608                                                 Mutex::new(peer_state_from_chans(HashMap::new()))
9609                                         });
9610                                         let mut peer_state = peer_state_mutex.lock().unwrap();
9611                                         handle_in_flight_updates!(counterparty_id, chan_in_flight_updates,
9612                                                 funding_txo, monitor, peer_state, "closed ");
9613                                 } else {
9614                                         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!");
9615                                         log_error!(args.logger, " The ChannelMonitor for channel {} is missing.",
9616                                                 &funding_txo.to_channel_id());
9617                                         log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
9618                                         log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
9619                                         log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
9620                                         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");
9621                                         return Err(DecodeError::InvalidValue);
9622                                 }
9623                         }
9624                 }
9625
9626                 // Note that we have to do the above replays before we push new monitor updates.
9627                 pending_background_events.append(&mut close_background_events);
9628
9629                 // If there's any preimages for forwarded HTLCs hanging around in ChannelMonitors we
9630                 // should ensure we try them again on the inbound edge. We put them here and do so after we
9631                 // have a fully-constructed `ChannelManager` at the end.
9632                 let mut pending_claims_to_replay = Vec::new();
9633
9634                 {
9635                         // If we're tracking pending payments, ensure we haven't lost any by looking at the
9636                         // ChannelMonitor data for any channels for which we do not have authorative state
9637                         // (i.e. those for which we just force-closed above or we otherwise don't have a
9638                         // corresponding `Channel` at all).
9639                         // This avoids several edge-cases where we would otherwise "forget" about pending
9640                         // payments which are still in-flight via their on-chain state.
9641                         // We only rebuild the pending payments map if we were most recently serialized by
9642                         // 0.0.102+
9643                         for (_, monitor) in args.channel_monitors.iter() {
9644                                 let counterparty_opt = id_to_peer.get(&monitor.get_funding_txo().0.to_channel_id());
9645                                 if counterparty_opt.is_none() {
9646                                         for (htlc_source, (htlc, _)) in monitor.get_pending_or_resolved_outbound_htlcs() {
9647                                                 if let HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } = htlc_source {
9648                                                         if path.hops.is_empty() {
9649                                                                 log_error!(args.logger, "Got an empty path for a pending payment");
9650                                                                 return Err(DecodeError::InvalidValue);
9651                                                         }
9652
9653                                                         let path_amt = path.final_value_msat();
9654                                                         let mut session_priv_bytes = [0; 32];
9655                                                         session_priv_bytes[..].copy_from_slice(&session_priv[..]);
9656                                                         match pending_outbounds.pending_outbound_payments.lock().unwrap().entry(payment_id) {
9657                                                                 hash_map::Entry::Occupied(mut entry) => {
9658                                                                         let newly_added = entry.get_mut().insert(session_priv_bytes, &path);
9659                                                                         log_info!(args.logger, "{} a pending payment path for {} msat for session priv {} on an existing pending payment with payment hash {}",
9660                                                                                 if newly_added { "Added" } else { "Had" }, path_amt, log_bytes!(session_priv_bytes), &htlc.payment_hash);
9661                                                                 },
9662                                                                 hash_map::Entry::Vacant(entry) => {
9663                                                                         let path_fee = path.fee_msat();
9664                                                                         entry.insert(PendingOutboundPayment::Retryable {
9665                                                                                 retry_strategy: None,
9666                                                                                 attempts: PaymentAttempts::new(),
9667                                                                                 payment_params: None,
9668                                                                                 session_privs: [session_priv_bytes].iter().map(|a| *a).collect(),
9669                                                                                 payment_hash: htlc.payment_hash,
9670                                                                                 payment_secret: None, // only used for retries, and we'll never retry on startup
9671                                                                                 payment_metadata: None, // only used for retries, and we'll never retry on startup
9672                                                                                 keysend_preimage: None, // only used for retries, and we'll never retry on startup
9673                                                                                 custom_tlvs: Vec::new(), // only used for retries, and we'll never retry on startup
9674                                                                                 pending_amt_msat: path_amt,
9675                                                                                 pending_fee_msat: Some(path_fee),
9676                                                                                 total_msat: path_amt,
9677                                                                                 starting_block_height: best_block_height,
9678                                                                                 remaining_max_total_routing_fee_msat: None, // only used for retries, and we'll never retry on startup
9679                                                                         });
9680                                                                         log_info!(args.logger, "Added a pending payment for {} msat with payment hash {} for path with session priv {}",
9681                                                                                 path_amt, &htlc.payment_hash,  log_bytes!(session_priv_bytes));
9682                                                                 }
9683                                                         }
9684                                                 }
9685                                         }
9686                                         for (htlc_source, (htlc, preimage_opt)) in monitor.get_all_current_outbound_htlcs() {
9687                                                 match htlc_source {
9688                                                         HTLCSource::PreviousHopData(prev_hop_data) => {
9689                                                                 let pending_forward_matches_htlc = |info: &PendingAddHTLCInfo| {
9690                                                                         info.prev_funding_outpoint == prev_hop_data.outpoint &&
9691                                                                                 info.prev_htlc_id == prev_hop_data.htlc_id
9692                                                                 };
9693                                                                 // The ChannelMonitor is now responsible for this HTLC's
9694                                                                 // failure/success and will let us know what its outcome is. If we
9695                                                                 // still have an entry for this HTLC in `forward_htlcs` or
9696                                                                 // `pending_intercepted_htlcs`, we were apparently not persisted after
9697                                                                 // the monitor was when forwarding the payment.
9698                                                                 forward_htlcs.retain(|_, forwards| {
9699                                                                         forwards.retain(|forward| {
9700                                                                                 if let HTLCForwardInfo::AddHTLC(htlc_info) = forward {
9701                                                                                         if pending_forward_matches_htlc(&htlc_info) {
9702                                                                                                 log_info!(args.logger, "Removing pending to-forward HTLC with hash {} as it was forwarded to the closed channel {}",
9703                                                                                                         &htlc.payment_hash, &monitor.get_funding_txo().0.to_channel_id());
9704                                                                                                 false
9705                                                                                         } else { true }
9706                                                                                 } else { true }
9707                                                                         });
9708                                                                         !forwards.is_empty()
9709                                                                 });
9710                                                                 pending_intercepted_htlcs.as_mut().unwrap().retain(|intercepted_id, htlc_info| {
9711                                                                         if pending_forward_matches_htlc(&htlc_info) {
9712                                                                                 log_info!(args.logger, "Removing pending intercepted HTLC with hash {} as it was forwarded to the closed channel {}",
9713                                                                                         &htlc.payment_hash, &monitor.get_funding_txo().0.to_channel_id());
9714                                                                                 pending_events_read.retain(|(event, _)| {
9715                                                                                         if let Event::HTLCIntercepted { intercept_id: ev_id, .. } = event {
9716                                                                                                 intercepted_id != ev_id
9717                                                                                         } else { true }
9718                                                                                 });
9719                                                                                 false
9720                                                                         } else { true }
9721                                                                 });
9722                                                         },
9723                                                         HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } => {
9724                                                                 if let Some(preimage) = preimage_opt {
9725                                                                         let pending_events = Mutex::new(pending_events_read);
9726                                                                         // Note that we set `from_onchain` to "false" here,
9727                                                                         // deliberately keeping the pending payment around forever.
9728                                                                         // Given it should only occur when we have a channel we're
9729                                                                         // force-closing for being stale that's okay.
9730                                                                         // The alternative would be to wipe the state when claiming,
9731                                                                         // generating a `PaymentPathSuccessful` event but regenerating
9732                                                                         // it and the `PaymentSent` on every restart until the
9733                                                                         // `ChannelMonitor` is removed.
9734                                                                         let compl_action =
9735                                                                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
9736                                                                                         channel_funding_outpoint: monitor.get_funding_txo().0,
9737                                                                                         counterparty_node_id: path.hops[0].pubkey,
9738                                                                                 };
9739                                                                         pending_outbounds.claim_htlc(payment_id, preimage, session_priv,
9740                                                                                 path, false, compl_action, &pending_events, &args.logger);
9741                                                                         pending_events_read = pending_events.into_inner().unwrap();
9742                                                                 }
9743                                                         },
9744                                                 }
9745                                         }
9746                                 }
9747
9748                                 // Whether the downstream channel was closed or not, try to re-apply any payment
9749                                 // preimages from it which may be needed in upstream channels for forwarded
9750                                 // payments.
9751                                 let outbound_claimed_htlcs_iter = monitor.get_all_current_outbound_htlcs()
9752                                         .into_iter()
9753                                         .filter_map(|(htlc_source, (htlc, preimage_opt))| {
9754                                                 if let HTLCSource::PreviousHopData(_) = htlc_source {
9755                                                         if let Some(payment_preimage) = preimage_opt {
9756                                                                 Some((htlc_source, payment_preimage, htlc.amount_msat,
9757                                                                         // Check if `counterparty_opt.is_none()` to see if the
9758                                                                         // downstream chan is closed (because we don't have a
9759                                                                         // channel_id -> peer map entry).
9760                                                                         counterparty_opt.is_none(),
9761                                                                         counterparty_opt.cloned().or(monitor.get_counterparty_node_id()),
9762                                                                         monitor.get_funding_txo().0))
9763                                                         } else { None }
9764                                                 } else {
9765                                                         // If it was an outbound payment, we've handled it above - if a preimage
9766                                                         // came in and we persisted the `ChannelManager` we either handled it and
9767                                                         // are good to go or the channel force-closed - we don't have to handle the
9768                                                         // channel still live case here.
9769                                                         None
9770                                                 }
9771                                         });
9772                                 for tuple in outbound_claimed_htlcs_iter {
9773                                         pending_claims_to_replay.push(tuple);
9774                                 }
9775                         }
9776                 }
9777
9778                 if !forward_htlcs.is_empty() || pending_outbounds.needs_abandon() {
9779                         // If we have pending HTLCs to forward, assume we either dropped a
9780                         // `PendingHTLCsForwardable` or the user received it but never processed it as they
9781                         // shut down before the timer hit. Either way, set the time_forwardable to a small
9782                         // constant as enough time has likely passed that we should simply handle the forwards
9783                         // now, or at least after the user gets a chance to reconnect to our peers.
9784                         pending_events_read.push_back((events::Event::PendingHTLCsForwardable {
9785                                 time_forwardable: Duration::from_secs(2),
9786                         }, None));
9787                 }
9788
9789                 let inbound_pmt_key_material = args.node_signer.get_inbound_payment_key_material();
9790                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
9791
9792                 let mut claimable_payments = HashMap::with_capacity(claimable_htlcs_list.len());
9793                 if let Some(purposes) = claimable_htlc_purposes {
9794                         if purposes.len() != claimable_htlcs_list.len() {
9795                                 return Err(DecodeError::InvalidValue);
9796                         }
9797                         if let Some(onion_fields) = claimable_htlc_onion_fields {
9798                                 if onion_fields.len() != claimable_htlcs_list.len() {
9799                                         return Err(DecodeError::InvalidValue);
9800                                 }
9801                                 for (purpose, (onion, (payment_hash, htlcs))) in
9802                                         purposes.into_iter().zip(onion_fields.into_iter().zip(claimable_htlcs_list.into_iter()))
9803                                 {
9804                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
9805                                                 purpose, htlcs, onion_fields: onion,
9806                                         });
9807                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
9808                                 }
9809                         } else {
9810                                 for (purpose, (payment_hash, htlcs)) in purposes.into_iter().zip(claimable_htlcs_list.into_iter()) {
9811                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
9812                                                 purpose, htlcs, onion_fields: None,
9813                                         });
9814                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
9815                                 }
9816                         }
9817                 } else {
9818                         // LDK versions prior to 0.0.107 did not write a `pending_htlc_purposes`, but do
9819                         // include a `_legacy_hop_data` in the `OnionPayload`.
9820                         for (payment_hash, htlcs) in claimable_htlcs_list.drain(..) {
9821                                 if htlcs.is_empty() {
9822                                         return Err(DecodeError::InvalidValue);
9823                                 }
9824                                 let purpose = match &htlcs[0].onion_payload {
9825                                         OnionPayload::Invoice { _legacy_hop_data } => {
9826                                                 if let Some(hop_data) = _legacy_hop_data {
9827                                                         events::PaymentPurpose::InvoicePayment {
9828                                                                 payment_preimage: match pending_inbound_payments.get(&payment_hash) {
9829                                                                         Some(inbound_payment) => inbound_payment.payment_preimage,
9830                                                                         None => match inbound_payment::verify(payment_hash, &hop_data, 0, &expanded_inbound_key, &args.logger) {
9831                                                                                 Ok((payment_preimage, _)) => payment_preimage,
9832                                                                                 Err(()) => {
9833                                                                                         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);
9834                                                                                         return Err(DecodeError::InvalidValue);
9835                                                                                 }
9836                                                                         }
9837                                                                 },
9838                                                                 payment_secret: hop_data.payment_secret,
9839                                                         }
9840                                                 } else { return Err(DecodeError::InvalidValue); }
9841                                         },
9842                                         OnionPayload::Spontaneous(payment_preimage) =>
9843                                                 events::PaymentPurpose::SpontaneousPayment(*payment_preimage),
9844                                 };
9845                                 claimable_payments.insert(payment_hash, ClaimablePayment {
9846                                         purpose, htlcs, onion_fields: None,
9847                                 });
9848                         }
9849                 }
9850
9851                 let mut secp_ctx = Secp256k1::new();
9852                 secp_ctx.seeded_randomize(&args.entropy_source.get_secure_random_bytes());
9853
9854                 let our_network_pubkey = match args.node_signer.get_node_id(Recipient::Node) {
9855                         Ok(key) => key,
9856                         Err(()) => return Err(DecodeError::InvalidValue)
9857                 };
9858                 if let Some(network_pubkey) = received_network_pubkey {
9859                         if network_pubkey != our_network_pubkey {
9860                                 log_error!(args.logger, "Key that was generated does not match the existing key.");
9861                                 return Err(DecodeError::InvalidValue);
9862                         }
9863                 }
9864
9865                 let mut outbound_scid_aliases = HashSet::new();
9866                 for (_peer_node_id, peer_state_mutex) in per_peer_state.iter_mut() {
9867                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9868                         let peer_state = &mut *peer_state_lock;
9869                         for (chan_id, phase) in peer_state.channel_by_id.iter_mut() {
9870                                 if let ChannelPhase::Funded(chan) = phase {
9871                                         if chan.context.outbound_scid_alias() == 0 {
9872                                                 let mut outbound_scid_alias;
9873                                                 loop {
9874                                                         outbound_scid_alias = fake_scid::Namespace::OutboundAlias
9875                                                                 .get_fake_scid(best_block_height, &genesis_hash, fake_scid_rand_bytes.as_ref().unwrap(), &args.entropy_source);
9876                                                         if outbound_scid_aliases.insert(outbound_scid_alias) { break; }
9877                                                 }
9878                                                 chan.context.set_outbound_scid_alias(outbound_scid_alias);
9879                                         } else if !outbound_scid_aliases.insert(chan.context.outbound_scid_alias()) {
9880                                                 // Note that in rare cases its possible to hit this while reading an older
9881                                                 // channel if we just happened to pick a colliding outbound alias above.
9882                                                 log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
9883                                                 return Err(DecodeError::InvalidValue);
9884                                         }
9885                                         if chan.context.is_usable() {
9886                                                 if short_to_chan_info.insert(chan.context.outbound_scid_alias(), (chan.context.get_counterparty_node_id(), *chan_id)).is_some() {
9887                                                         // Note that in rare cases its possible to hit this while reading an older
9888                                                         // channel if we just happened to pick a colliding outbound alias above.
9889                                                         log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
9890                                                         return Err(DecodeError::InvalidValue);
9891                                                 }
9892                                         }
9893                                 } else {
9894                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
9895                                         // created in this `channel_by_id` map.
9896                                         debug_assert!(false);
9897                                         return Err(DecodeError::InvalidValue);
9898                                 }
9899                         }
9900                 }
9901
9902                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(args.fee_estimator);
9903
9904                 for (_, monitor) in args.channel_monitors.iter() {
9905                         for (payment_hash, payment_preimage) in monitor.get_stored_preimages() {
9906                                 if let Some(payment) = claimable_payments.remove(&payment_hash) {
9907                                         log_info!(args.logger, "Re-claiming HTLCs with payment hash {} as we've released the preimage to a ChannelMonitor!", &payment_hash);
9908                                         let mut claimable_amt_msat = 0;
9909                                         let mut receiver_node_id = Some(our_network_pubkey);
9910                                         let phantom_shared_secret = payment.htlcs[0].prev_hop.phantom_shared_secret;
9911                                         if phantom_shared_secret.is_some() {
9912                                                 let phantom_pubkey = args.node_signer.get_node_id(Recipient::PhantomNode)
9913                                                         .expect("Failed to get node_id for phantom node recipient");
9914                                                 receiver_node_id = Some(phantom_pubkey)
9915                                         }
9916                                         for claimable_htlc in &payment.htlcs {
9917                                                 claimable_amt_msat += claimable_htlc.value;
9918
9919                                                 // Add a holding-cell claim of the payment to the Channel, which should be
9920                                                 // applied ~immediately on peer reconnection. Because it won't generate a
9921                                                 // new commitment transaction we can just provide the payment preimage to
9922                                                 // the corresponding ChannelMonitor and nothing else.
9923                                                 //
9924                                                 // We do so directly instead of via the normal ChannelMonitor update
9925                                                 // procedure as the ChainMonitor hasn't yet been initialized, implying
9926                                                 // we're not allowed to call it directly yet. Further, we do the update
9927                                                 // without incrementing the ChannelMonitor update ID as there isn't any
9928                                                 // reason to.
9929                                                 // If we were to generate a new ChannelMonitor update ID here and then
9930                                                 // crash before the user finishes block connect we'd end up force-closing
9931                                                 // this channel as well. On the flip side, there's no harm in restarting
9932                                                 // without the new monitor persisted - we'll end up right back here on
9933                                                 // restart.
9934                                                 let previous_channel_id = claimable_htlc.prev_hop.outpoint.to_channel_id();
9935                                                 if let Some(peer_node_id) = id_to_peer.get(&previous_channel_id){
9936                                                         let peer_state_mutex = per_peer_state.get(peer_node_id).unwrap();
9937                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9938                                                         let peer_state = &mut *peer_state_lock;
9939                                                         if let Some(ChannelPhase::Funded(channel)) = peer_state.channel_by_id.get_mut(&previous_channel_id) {
9940                                                                 channel.claim_htlc_while_disconnected_dropping_mon_update(claimable_htlc.prev_hop.htlc_id, payment_preimage, &args.logger);
9941                                                         }
9942                                                 }
9943                                                 if let Some(previous_hop_monitor) = args.channel_monitors.get(&claimable_htlc.prev_hop.outpoint) {
9944                                                         previous_hop_monitor.provide_payment_preimage(&payment_hash, &payment_preimage, &args.tx_broadcaster, &bounded_fee_estimator, &args.logger);
9945                                                 }
9946                                         }
9947                                         pending_events_read.push_back((events::Event::PaymentClaimed {
9948                                                 receiver_node_id,
9949                                                 payment_hash,
9950                                                 purpose: payment.purpose,
9951                                                 amount_msat: claimable_amt_msat,
9952                                                 htlcs: payment.htlcs.iter().map(events::ClaimedHTLC::from).collect(),
9953                                                 sender_intended_total_msat: payment.htlcs.first().map(|htlc| htlc.total_msat),
9954                                         }, None));
9955                                 }
9956                         }
9957                 }
9958
9959                 for (node_id, monitor_update_blocked_actions) in monitor_update_blocked_actions_per_peer.unwrap() {
9960                         if let Some(peer_state) = per_peer_state.get(&node_id) {
9961                                 for (_, actions) in monitor_update_blocked_actions.iter() {
9962                                         for action in actions.iter() {
9963                                                 if let MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
9964                                                         downstream_counterparty_and_funding_outpoint:
9965                                                                 Some((blocked_node_id, blocked_channel_outpoint, blocking_action)), ..
9966                                                 } = action {
9967                                                         if let Some(blocked_peer_state) = per_peer_state.get(&blocked_node_id) {
9968                                                                 blocked_peer_state.lock().unwrap().actions_blocking_raa_monitor_updates
9969                                                                         .entry(blocked_channel_outpoint.to_channel_id())
9970                                                                         .or_insert_with(Vec::new).push(blocking_action.clone());
9971                                                         } else {
9972                                                                 // If the channel we were blocking has closed, we don't need to
9973                                                                 // worry about it - the blocked monitor update should never have
9974                                                                 // been released from the `Channel` object so it can't have
9975                                                                 // completed, and if the channel closed there's no reason to bother
9976                                                                 // anymore.
9977                                                         }
9978                                                 }
9979                                         }
9980                                 }
9981                                 peer_state.lock().unwrap().monitor_update_blocked_actions = monitor_update_blocked_actions;
9982                         } else {
9983                                 log_error!(args.logger, "Got blocked actions without a per-peer-state for {}", node_id);
9984                                 return Err(DecodeError::InvalidValue);
9985                         }
9986                 }
9987
9988                 let channel_manager = ChannelManager {
9989                         genesis_hash,
9990                         fee_estimator: bounded_fee_estimator,
9991                         chain_monitor: args.chain_monitor,
9992                         tx_broadcaster: args.tx_broadcaster,
9993                         router: args.router,
9994
9995                         best_block: RwLock::new(BestBlock::new(best_block_hash, best_block_height)),
9996
9997                         inbound_payment_key: expanded_inbound_key,
9998                         pending_inbound_payments: Mutex::new(pending_inbound_payments),
9999                         pending_outbound_payments: pending_outbounds,
10000                         pending_intercepted_htlcs: Mutex::new(pending_intercepted_htlcs.unwrap()),
10001
10002                         forward_htlcs: Mutex::new(forward_htlcs),
10003                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments, pending_claiming_payments: pending_claiming_payments.unwrap() }),
10004                         outbound_scid_aliases: Mutex::new(outbound_scid_aliases),
10005                         id_to_peer: Mutex::new(id_to_peer),
10006                         short_to_chan_info: FairRwLock::new(short_to_chan_info),
10007                         fake_scid_rand_bytes: fake_scid_rand_bytes.unwrap(),
10008
10009                         probing_cookie_secret: probing_cookie_secret.unwrap(),
10010
10011                         our_network_pubkey,
10012                         secp_ctx,
10013
10014                         highest_seen_timestamp: AtomicUsize::new(highest_seen_timestamp as usize),
10015
10016                         per_peer_state: FairRwLock::new(per_peer_state),
10017
10018                         pending_events: Mutex::new(pending_events_read),
10019                         pending_events_processor: AtomicBool::new(false),
10020                         pending_background_events: Mutex::new(pending_background_events),
10021                         total_consistency_lock: RwLock::new(()),
10022                         background_events_processed_since_startup: AtomicBool::new(false),
10023
10024                         event_persist_notifier: Notifier::new(),
10025                         needs_persist_flag: AtomicBool::new(false),
10026
10027                         funding_batch_states: Mutex::new(BTreeMap::new()),
10028
10029                         entropy_source: args.entropy_source,
10030                         node_signer: args.node_signer,
10031                         signer_provider: args.signer_provider,
10032
10033                         logger: args.logger,
10034                         default_configuration: args.default_config,
10035                 };
10036
10037                 for htlc_source in failed_htlcs.drain(..) {
10038                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
10039                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
10040                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
10041                         channel_manager.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
10042                 }
10043
10044                 for (source, preimage, downstream_value, downstream_closed, downstream_node_id, downstream_funding) in pending_claims_to_replay {
10045                         // We use `downstream_closed` in place of `from_onchain` here just as a guess - we
10046                         // don't remember in the `ChannelMonitor` where we got a preimage from, but if the
10047                         // channel is closed we just assume that it probably came from an on-chain claim.
10048                         channel_manager.claim_funds_internal(source, preimage, Some(downstream_value),
10049                                 downstream_closed, downstream_node_id, downstream_funding);
10050                 }
10051
10052                 //TODO: Broadcast channel update for closed channels, but only after we've made a
10053                 //connection or two.
10054
10055                 Ok((best_block_hash.clone(), channel_manager))
10056         }
10057 }
10058
10059 #[cfg(test)]
10060 mod tests {
10061         use bitcoin::hashes::Hash;
10062         use bitcoin::hashes::sha256::Hash as Sha256;
10063         use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
10064         use core::sync::atomic::Ordering;
10065         use crate::events::{Event, HTLCDestination, MessageSendEvent, MessageSendEventsProvider, ClosureReason};
10066         use crate::ln::{PaymentPreimage, PaymentHash, PaymentSecret};
10067         use crate::ln::ChannelId;
10068         use crate::ln::channelmanager::{inbound_payment, PaymentId, PaymentSendFailure, RecipientOnionFields, InterceptId};
10069         use crate::ln::functional_test_utils::*;
10070         use crate::ln::msgs::{self, ErrorAction};
10071         use crate::ln::msgs::ChannelMessageHandler;
10072         use crate::routing::router::{PaymentParameters, RouteParameters, find_route};
10073         use crate::util::errors::APIError;
10074         use crate::util::test_utils;
10075         use crate::util::config::{ChannelConfig, ChannelConfigUpdate};
10076         use crate::sign::EntropySource;
10077
10078         #[test]
10079         fn test_notify_limits() {
10080                 // Check that a few cases which don't require the persistence of a new ChannelManager,
10081                 // indeed, do not cause the persistence of a new ChannelManager.
10082                 let chanmon_cfgs = create_chanmon_cfgs(3);
10083                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
10084                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
10085                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
10086
10087                 // All nodes start with a persistable update pending as `create_network` connects each node
10088                 // with all other nodes to make most tests simpler.
10089                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
10090                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
10091                 assert!(nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
10092
10093                 let mut chan = create_announced_chan_between_nodes(&nodes, 0, 1);
10094
10095                 // We check that the channel info nodes have doesn't change too early, even though we try
10096                 // to connect messages with new values
10097                 chan.0.contents.fee_base_msat *= 2;
10098                 chan.1.contents.fee_base_msat *= 2;
10099                 let node_a_chan_info = nodes[0].node.list_channels_with_counterparty(
10100                         &nodes[1].node.get_our_node_id()).pop().unwrap();
10101                 let node_b_chan_info = nodes[1].node.list_channels_with_counterparty(
10102                         &nodes[0].node.get_our_node_id()).pop().unwrap();
10103
10104                 // The first two nodes (which opened a channel) should now require fresh persistence
10105                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
10106                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
10107                 // ... but the last node should not.
10108                 assert!(!nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
10109                 // After persisting the first two nodes they should no longer need fresh persistence.
10110                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
10111                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
10112
10113                 // Node 3, unrelated to the only channel, shouldn't care if it receives a channel_update
10114                 // about the channel.
10115                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.0);
10116                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.1);
10117                 assert!(!nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
10118
10119                 // The nodes which are a party to the channel should also ignore messages from unrelated
10120                 // parties.
10121                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
10122                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
10123                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
10124                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
10125                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
10126                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
10127
10128                 // At this point the channel info given by peers should still be the same.
10129                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
10130                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
10131
10132                 // An earlier version of handle_channel_update didn't check the directionality of the
10133                 // update message and would always update the local fee info, even if our peer was
10134                 // (spuriously) forwarding us our own channel_update.
10135                 let as_node_one = nodes[0].node.get_our_node_id().serialize()[..] < nodes[1].node.get_our_node_id().serialize()[..];
10136                 let as_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.0 } else { &chan.1 };
10137                 let bs_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.1 } else { &chan.0 };
10138
10139                 // First deliver each peers' own message, checking that the node doesn't need to be
10140                 // persisted and that its channel info remains the same.
10141                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &as_update);
10142                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &bs_update);
10143                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
10144                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
10145                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
10146                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
10147
10148                 // Finally, deliver the other peers' message, ensuring each node needs to be persisted and
10149                 // the channel info has updated.
10150                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &bs_update);
10151                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &as_update);
10152                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
10153                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
10154                 assert_ne!(nodes[0].node.list_channels()[0], node_a_chan_info);
10155                 assert_ne!(nodes[1].node.list_channels()[0], node_b_chan_info);
10156         }
10157
10158         #[test]
10159         fn test_keysend_dup_hash_partial_mpp() {
10160                 // Test that a keysend payment with a duplicate hash to an existing partial MPP payment fails as
10161                 // expected.
10162                 let chanmon_cfgs = create_chanmon_cfgs(2);
10163                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10164                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10165                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10166                 create_announced_chan_between_nodes(&nodes, 0, 1);
10167
10168                 // First, send a partial MPP payment.
10169                 let (route, our_payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100_000);
10170                 let mut mpp_route = route.clone();
10171                 mpp_route.paths.push(mpp_route.paths[0].clone());
10172
10173                 let payment_id = PaymentId([42; 32]);
10174                 // Use the utility function send_payment_along_path to send the payment with MPP data which
10175                 // indicates there are more HTLCs coming.
10176                 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.
10177                 let session_privs = nodes[0].node.test_add_new_pending_payment(our_payment_hash,
10178                         RecipientOnionFields::secret_only(payment_secret), payment_id, &mpp_route).unwrap();
10179                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[0], &our_payment_hash,
10180                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[0]).unwrap();
10181                 check_added_monitors!(nodes[0], 1);
10182                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10183                 assert_eq!(events.len(), 1);
10184                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), false, None);
10185
10186                 // Next, send a keysend payment with the same payment_hash and make sure it fails.
10187                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10188                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
10189                 check_added_monitors!(nodes[0], 1);
10190                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10191                 assert_eq!(events.len(), 1);
10192                 let ev = events.drain(..).next().unwrap();
10193                 let payment_event = SendEvent::from_event(ev);
10194                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
10195                 check_added_monitors!(nodes[1], 0);
10196                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
10197                 expect_pending_htlcs_forwardable!(nodes[1]);
10198                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
10199                 check_added_monitors!(nodes[1], 1);
10200                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10201                 assert!(updates.update_add_htlcs.is_empty());
10202                 assert!(updates.update_fulfill_htlcs.is_empty());
10203                 assert_eq!(updates.update_fail_htlcs.len(), 1);
10204                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10205                 assert!(updates.update_fee.is_none());
10206                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
10207                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
10208                 expect_payment_failed!(nodes[0], our_payment_hash, true);
10209
10210                 // Send the second half of the original MPP payment.
10211                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[1], &our_payment_hash,
10212                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[1]).unwrap();
10213                 check_added_monitors!(nodes[0], 1);
10214                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10215                 assert_eq!(events.len(), 1);
10216                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), true, None);
10217
10218                 // Claim the full MPP payment. Note that we can't use a test utility like
10219                 // claim_funds_along_route because the ordering of the messages causes the second half of the
10220                 // payment to be put in the holding cell, which confuses the test utilities. So we exchange the
10221                 // lightning messages manually.
10222                 nodes[1].node.claim_funds(payment_preimage);
10223                 expect_payment_claimed!(nodes[1], our_payment_hash, 200_000);
10224                 check_added_monitors!(nodes[1], 2);
10225
10226                 let bs_first_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10227                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_first_updates.update_fulfill_htlcs[0]);
10228                 expect_payment_sent(&nodes[0], payment_preimage, None, false, false);
10229                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_first_updates.commitment_signed);
10230                 check_added_monitors!(nodes[0], 1);
10231                 let (as_first_raa, as_first_cs) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10232                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_first_raa);
10233                 check_added_monitors!(nodes[1], 1);
10234                 let bs_second_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10235                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_first_cs);
10236                 check_added_monitors!(nodes[1], 1);
10237                 let bs_first_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
10238                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_second_updates.update_fulfill_htlcs[0]);
10239                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_second_updates.commitment_signed);
10240                 check_added_monitors!(nodes[0], 1);
10241                 let as_second_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
10242                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_first_raa);
10243                 let as_second_updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10244                 check_added_monitors!(nodes[0], 1);
10245                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_second_raa);
10246                 check_added_monitors!(nodes[1], 1);
10247                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_second_updates.commitment_signed);
10248                 check_added_monitors!(nodes[1], 1);
10249                 let bs_third_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
10250                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_third_raa);
10251                 check_added_monitors!(nodes[0], 1);
10252
10253                 // Note that successful MPP payments will generate a single PaymentSent event upon the first
10254                 // path's success and a PaymentPathSuccessful event for each path's success.
10255                 let events = nodes[0].node.get_and_clear_pending_events();
10256                 assert_eq!(events.len(), 2);
10257                 match events[0] {
10258                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
10259                                 assert_eq!(payment_id, *actual_payment_id);
10260                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
10261                                 assert_eq!(route.paths[0], *path);
10262                         },
10263                         _ => panic!("Unexpected event"),
10264                 }
10265                 match events[1] {
10266                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
10267                                 assert_eq!(payment_id, *actual_payment_id);
10268                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
10269                                 assert_eq!(route.paths[0], *path);
10270                         },
10271                         _ => panic!("Unexpected event"),
10272                 }
10273         }
10274
10275         #[test]
10276         fn test_keysend_dup_payment_hash() {
10277                 do_test_keysend_dup_payment_hash(false);
10278                 do_test_keysend_dup_payment_hash(true);
10279         }
10280
10281         fn do_test_keysend_dup_payment_hash(accept_mpp_keysend: bool) {
10282                 // (1): Test that a keysend payment with a duplicate payment hash to an existing pending
10283                 //      outbound regular payment fails as expected.
10284                 // (2): Test that a regular payment with a duplicate payment hash to an existing keysend payment
10285                 //      fails as expected.
10286                 // (3): Test that a keysend payment with a duplicate payment hash to an existing keysend
10287                 //      payment fails as expected. When `accept_mpp_keysend` is false, this tests that we
10288                 //      reject MPP keysend payments, since in this case where the payment has no payment
10289                 //      secret, a keysend payment with a duplicate hash is basically an MPP keysend. If
10290                 //      `accept_mpp_keysend` is true, this tests that we only accept MPP keysends with
10291                 //      payment secrets and reject otherwise.
10292                 let chanmon_cfgs = create_chanmon_cfgs(2);
10293                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10294                 let mut mpp_keysend_cfg = test_default_channel_config();
10295                 mpp_keysend_cfg.accept_mpp_keysend = accept_mpp_keysend;
10296                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(mpp_keysend_cfg)]);
10297                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10298                 create_announced_chan_between_nodes(&nodes, 0, 1);
10299                 let scorer = test_utils::TestScorer::new();
10300                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
10301
10302                 // To start (1), send a regular payment but don't claim it.
10303                 let expected_route = [&nodes[1]];
10304                 let (payment_preimage, payment_hash, ..) = route_payment(&nodes[0], &expected_route, 100_000);
10305
10306                 // Next, attempt a keysend payment and make sure it fails.
10307                 let route_params = RouteParameters::from_payment_params_and_value(
10308                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(),
10309                         TEST_FINAL_CLTV, false), 100_000);
10310                 let route = find_route(
10311                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
10312                         None, nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
10313                 ).unwrap();
10314                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10315                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
10316                 check_added_monitors!(nodes[0], 1);
10317                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10318                 assert_eq!(events.len(), 1);
10319                 let ev = events.drain(..).next().unwrap();
10320                 let payment_event = SendEvent::from_event(ev);
10321                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
10322                 check_added_monitors!(nodes[1], 0);
10323                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
10324                 // We have to forward pending HTLCs twice - once tries to forward the payment forward (and
10325                 // fails), the second will process the resulting failure and fail the HTLC backward
10326                 expect_pending_htlcs_forwardable!(nodes[1]);
10327                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
10328                 check_added_monitors!(nodes[1], 1);
10329                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10330                 assert!(updates.update_add_htlcs.is_empty());
10331                 assert!(updates.update_fulfill_htlcs.is_empty());
10332                 assert_eq!(updates.update_fail_htlcs.len(), 1);
10333                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10334                 assert!(updates.update_fee.is_none());
10335                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
10336                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
10337                 expect_payment_failed!(nodes[0], payment_hash, true);
10338
10339                 // Finally, claim the original payment.
10340                 claim_payment(&nodes[0], &expected_route, payment_preimage);
10341
10342                 // To start (2), send a keysend payment but don't claim it.
10343                 let payment_preimage = PaymentPreimage([42; 32]);
10344                 let route = find_route(
10345                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
10346                         None, nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
10347                 ).unwrap();
10348                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10349                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
10350                 check_added_monitors!(nodes[0], 1);
10351                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10352                 assert_eq!(events.len(), 1);
10353                 let event = events.pop().unwrap();
10354                 let path = vec![&nodes[1]];
10355                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
10356
10357                 // Next, attempt a regular payment and make sure it fails.
10358                 let payment_secret = PaymentSecret([43; 32]);
10359                 nodes[0].node.send_payment_with_route(&route, payment_hash,
10360                         RecipientOnionFields::secret_only(payment_secret), PaymentId(payment_hash.0)).unwrap();
10361                 check_added_monitors!(nodes[0], 1);
10362                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10363                 assert_eq!(events.len(), 1);
10364                 let ev = events.drain(..).next().unwrap();
10365                 let payment_event = SendEvent::from_event(ev);
10366                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
10367                 check_added_monitors!(nodes[1], 0);
10368                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
10369                 expect_pending_htlcs_forwardable!(nodes[1]);
10370                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
10371                 check_added_monitors!(nodes[1], 1);
10372                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10373                 assert!(updates.update_add_htlcs.is_empty());
10374                 assert!(updates.update_fulfill_htlcs.is_empty());
10375                 assert_eq!(updates.update_fail_htlcs.len(), 1);
10376                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10377                 assert!(updates.update_fee.is_none());
10378                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
10379                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
10380                 expect_payment_failed!(nodes[0], payment_hash, true);
10381
10382                 // Finally, succeed the keysend payment.
10383                 claim_payment(&nodes[0], &expected_route, payment_preimage);
10384
10385                 // To start (3), send a keysend payment but don't claim it.
10386                 let payment_id_1 = PaymentId([44; 32]);
10387                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10388                         RecipientOnionFields::spontaneous_empty(), payment_id_1).unwrap();
10389                 check_added_monitors!(nodes[0], 1);
10390                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10391                 assert_eq!(events.len(), 1);
10392                 let event = events.pop().unwrap();
10393                 let path = vec![&nodes[1]];
10394                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
10395
10396                 // Next, attempt a keysend payment and make sure it fails.
10397                 let route_params = RouteParameters::from_payment_params_and_value(
10398                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(), TEST_FINAL_CLTV, false),
10399                         100_000
10400                 );
10401                 let route = find_route(
10402                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
10403                         None, nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
10404                 ).unwrap();
10405                 let payment_id_2 = PaymentId([45; 32]);
10406                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10407                         RecipientOnionFields::spontaneous_empty(), payment_id_2).unwrap();
10408                 check_added_monitors!(nodes[0], 1);
10409                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10410                 assert_eq!(events.len(), 1);
10411                 let ev = events.drain(..).next().unwrap();
10412                 let payment_event = SendEvent::from_event(ev);
10413                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
10414                 check_added_monitors!(nodes[1], 0);
10415                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
10416                 expect_pending_htlcs_forwardable!(nodes[1]);
10417                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
10418                 check_added_monitors!(nodes[1], 1);
10419                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10420                 assert!(updates.update_add_htlcs.is_empty());
10421                 assert!(updates.update_fulfill_htlcs.is_empty());
10422                 assert_eq!(updates.update_fail_htlcs.len(), 1);
10423                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10424                 assert!(updates.update_fee.is_none());
10425                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
10426                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
10427                 expect_payment_failed!(nodes[0], payment_hash, true);
10428
10429                 // Finally, claim the original payment.
10430                 claim_payment(&nodes[0], &expected_route, payment_preimage);
10431         }
10432
10433         #[test]
10434         fn test_keysend_hash_mismatch() {
10435                 // Test that if we receive a keysend `update_add_htlc` msg, we fail as expected if the keysend
10436                 // preimage doesn't match the msg's payment hash.
10437                 let chanmon_cfgs = create_chanmon_cfgs(2);
10438                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10439                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10440                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10441
10442                 let payer_pubkey = nodes[0].node.get_our_node_id();
10443                 let payee_pubkey = nodes[1].node.get_our_node_id();
10444
10445                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
10446                 let route_params = RouteParameters::from_payment_params_and_value(
10447                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
10448                 let network_graph = nodes[0].network_graph.clone();
10449                 let first_hops = nodes[0].node.list_usable_channels();
10450                 let scorer = test_utils::TestScorer::new();
10451                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
10452                 let route = find_route(
10453                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
10454                         nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
10455                 ).unwrap();
10456
10457                 let test_preimage = PaymentPreimage([42; 32]);
10458                 let mismatch_payment_hash = PaymentHash([43; 32]);
10459                 let session_privs = nodes[0].node.test_add_new_pending_payment(mismatch_payment_hash,
10460                         RecipientOnionFields::spontaneous_empty(), PaymentId(mismatch_payment_hash.0), &route).unwrap();
10461                 nodes[0].node.test_send_payment_internal(&route, mismatch_payment_hash,
10462                         RecipientOnionFields::spontaneous_empty(), Some(test_preimage), PaymentId(mismatch_payment_hash.0), None, session_privs).unwrap();
10463                 check_added_monitors!(nodes[0], 1);
10464
10465                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10466                 assert_eq!(updates.update_add_htlcs.len(), 1);
10467                 assert!(updates.update_fulfill_htlcs.is_empty());
10468                 assert!(updates.update_fail_htlcs.is_empty());
10469                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10470                 assert!(updates.update_fee.is_none());
10471                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
10472
10473                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "Payment preimage didn't match payment hash", 1);
10474         }
10475
10476         #[test]
10477         fn test_keysend_msg_with_secret_err() {
10478                 // Test that we error as expected if we receive a keysend payment that includes a payment
10479                 // secret when we don't support MPP keysend.
10480                 let mut reject_mpp_keysend_cfg = test_default_channel_config();
10481                 reject_mpp_keysend_cfg.accept_mpp_keysend = false;
10482                 let chanmon_cfgs = create_chanmon_cfgs(2);
10483                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10484                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(reject_mpp_keysend_cfg)]);
10485                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10486
10487                 let payer_pubkey = nodes[0].node.get_our_node_id();
10488                 let payee_pubkey = nodes[1].node.get_our_node_id();
10489
10490                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
10491                 let route_params = RouteParameters::from_payment_params_and_value(
10492                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
10493                 let network_graph = nodes[0].network_graph.clone();
10494                 let first_hops = nodes[0].node.list_usable_channels();
10495                 let scorer = test_utils::TestScorer::new();
10496                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
10497                 let route = find_route(
10498                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
10499                         nodes[0].logger, &scorer, &Default::default(), &random_seed_bytes
10500                 ).unwrap();
10501
10502                 let test_preimage = PaymentPreimage([42; 32]);
10503                 let test_secret = PaymentSecret([43; 32]);
10504                 let payment_hash = PaymentHash(Sha256::hash(&test_preimage.0).into_inner());
10505                 let session_privs = nodes[0].node.test_add_new_pending_payment(payment_hash,
10506                         RecipientOnionFields::secret_only(test_secret), PaymentId(payment_hash.0), &route).unwrap();
10507                 nodes[0].node.test_send_payment_internal(&route, payment_hash,
10508                         RecipientOnionFields::secret_only(test_secret), Some(test_preimage),
10509                         PaymentId(payment_hash.0), None, session_privs).unwrap();
10510                 check_added_monitors!(nodes[0], 1);
10511
10512                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10513                 assert_eq!(updates.update_add_htlcs.len(), 1);
10514                 assert!(updates.update_fulfill_htlcs.is_empty());
10515                 assert!(updates.update_fail_htlcs.is_empty());
10516                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10517                 assert!(updates.update_fee.is_none());
10518                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
10519
10520                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "We don't support MPP keysend payments", 1);
10521         }
10522
10523         #[test]
10524         fn test_multi_hop_missing_secret() {
10525                 let chanmon_cfgs = create_chanmon_cfgs(4);
10526                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
10527                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
10528                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
10529
10530                 let chan_1_id = create_announced_chan_between_nodes(&nodes, 0, 1).0.contents.short_channel_id;
10531                 let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2).0.contents.short_channel_id;
10532                 let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3).0.contents.short_channel_id;
10533                 let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3).0.contents.short_channel_id;
10534
10535                 // Marshall an MPP route.
10536                 let (mut route, payment_hash, _, _) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
10537                 let path = route.paths[0].clone();
10538                 route.paths.push(path);
10539                 route.paths[0].hops[0].pubkey = nodes[1].node.get_our_node_id();
10540                 route.paths[0].hops[0].short_channel_id = chan_1_id;
10541                 route.paths[0].hops[1].short_channel_id = chan_3_id;
10542                 route.paths[1].hops[0].pubkey = nodes[2].node.get_our_node_id();
10543                 route.paths[1].hops[0].short_channel_id = chan_2_id;
10544                 route.paths[1].hops[1].short_channel_id = chan_4_id;
10545
10546                 match nodes[0].node.send_payment_with_route(&route, payment_hash,
10547                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_hash.0))
10548                 .unwrap_err() {
10549                         PaymentSendFailure::ParameterError(APIError::APIMisuseError { ref err }) => {
10550                                 assert!(regex::Regex::new(r"Payment secret is required for multi-path payments").unwrap().is_match(err))
10551                         },
10552                         _ => panic!("unexpected error")
10553                 }
10554         }
10555
10556         #[test]
10557         fn test_drop_disconnected_peers_when_removing_channels() {
10558                 let chanmon_cfgs = create_chanmon_cfgs(2);
10559                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10560                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10561                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10562
10563                 let chan = create_announced_chan_between_nodes(&nodes, 0, 1);
10564
10565                 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
10566                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10567
10568                 nodes[0].node.force_close_broadcasting_latest_txn(&chan.2, &nodes[1].node.get_our_node_id()).unwrap();
10569                 check_closed_broadcast!(nodes[0], true);
10570                 check_added_monitors!(nodes[0], 1);
10571                 check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed, [nodes[1].node.get_our_node_id()], 100000);
10572
10573                 {
10574                         // Assert that nodes[1] is awaiting removal for nodes[0] once nodes[1] has been
10575                         // disconnected and the channel between has been force closed.
10576                         let nodes_0_per_peer_state = nodes[0].node.per_peer_state.read().unwrap();
10577                         // Assert that nodes[1] isn't removed before `timer_tick_occurred` has been executed.
10578                         assert_eq!(nodes_0_per_peer_state.len(), 1);
10579                         assert!(nodes_0_per_peer_state.get(&nodes[1].node.get_our_node_id()).is_some());
10580                 }
10581
10582                 nodes[0].node.timer_tick_occurred();
10583
10584                 {
10585                         // Assert that nodes[1] has now been removed.
10586                         assert_eq!(nodes[0].node.per_peer_state.read().unwrap().len(), 0);
10587                 }
10588         }
10589
10590         #[test]
10591         fn bad_inbound_payment_hash() {
10592                 // Add coverage for checking that a user-provided payment hash matches the payment secret.
10593                 let chanmon_cfgs = create_chanmon_cfgs(2);
10594                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10595                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10596                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10597
10598                 let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[0]);
10599                 let payment_data = msgs::FinalOnionHopData {
10600                         payment_secret,
10601                         total_msat: 100_000,
10602                 };
10603
10604                 // Ensure that if the payment hash given to `inbound_payment::verify` differs from the original,
10605                 // payment verification fails as expected.
10606                 let mut bad_payment_hash = payment_hash.clone();
10607                 bad_payment_hash.0[0] += 1;
10608                 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) {
10609                         Ok(_) => panic!("Unexpected ok"),
10610                         Err(()) => {
10611                                 nodes[0].logger.assert_log_contains("lightning::ln::inbound_payment", "Failing HTLC with user-generated payment_hash", 1);
10612                         }
10613                 }
10614
10615                 // Check that using the original payment hash succeeds.
10616                 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());
10617         }
10618
10619         #[test]
10620         fn test_id_to_peer_coverage() {
10621                 // Test that the `ChannelManager:id_to_peer` contains channels which have been assigned
10622                 // a `channel_id` (i.e. have had the funding tx created), and that they are removed once
10623                 // the channel is successfully closed.
10624                 let chanmon_cfgs = create_chanmon_cfgs(2);
10625                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10626                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10627                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10628
10629                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1_000_000, 500_000_000, 42, None).unwrap();
10630                 let open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10631                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel);
10632                 let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10633                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
10634
10635                 let (temporary_channel_id, tx, _funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 1_000_000, 42);
10636                 let channel_id = ChannelId::from_bytes(tx.txid().into_inner());
10637                 {
10638                         // Ensure that the `id_to_peer` map is empty until either party has received the
10639                         // funding transaction, and have the real `channel_id`.
10640                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
10641                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10642                 }
10643
10644                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
10645                 {
10646                         // Assert that `nodes[0]`'s `id_to_peer` map is populated with the channel as soon as
10647                         // as it has the funding transaction.
10648                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10649                         assert_eq!(nodes_0_lock.len(), 1);
10650                         assert!(nodes_0_lock.contains_key(&channel_id));
10651                 }
10652
10653                 assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10654
10655                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
10656
10657                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
10658                 {
10659                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10660                         assert_eq!(nodes_0_lock.len(), 1);
10661                         assert!(nodes_0_lock.contains_key(&channel_id));
10662                 }
10663                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
10664
10665                 {
10666                         // Assert that `nodes[1]`'s `id_to_peer` map is populated with the channel as soon as
10667                         // as it has the funding transaction.
10668                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10669                         assert_eq!(nodes_1_lock.len(), 1);
10670                         assert!(nodes_1_lock.contains_key(&channel_id));
10671                 }
10672                 check_added_monitors!(nodes[1], 1);
10673                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
10674                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
10675                 check_added_monitors!(nodes[0], 1);
10676                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
10677                 let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
10678                 let (announcement, nodes_0_update, nodes_1_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
10679                 update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &nodes_0_update, &nodes_1_update);
10680
10681                 nodes[0].node.close_channel(&channel_id, &nodes[1].node.get_our_node_id()).unwrap();
10682                 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()));
10683                 let nodes_1_shutdown = get_event_msg!(nodes[1], MessageSendEvent::SendShutdown, nodes[0].node.get_our_node_id());
10684                 nodes[0].node.handle_shutdown(&nodes[1].node.get_our_node_id(), &nodes_1_shutdown);
10685
10686                 let closing_signed_node_0 = get_event_msg!(nodes[0], MessageSendEvent::SendClosingSigned, nodes[1].node.get_our_node_id());
10687                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0);
10688                 {
10689                         // Assert that the channel is kept in the `id_to_peer` map for both nodes until the
10690                         // channel can be fully closed by both parties (i.e. no outstanding htlcs exists, the
10691                         // fee for the closing transaction has been negotiated and the parties has the other
10692                         // party's signature for the fee negotiated closing transaction.)
10693                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10694                         assert_eq!(nodes_0_lock.len(), 1);
10695                         assert!(nodes_0_lock.contains_key(&channel_id));
10696                 }
10697
10698                 {
10699                         // At this stage, `nodes[1]` has proposed a fee for the closing transaction in the
10700                         // `handle_closing_signed` call above. As `nodes[1]` has not yet received the signature
10701                         // from `nodes[0]` for the closing transaction with the proposed fee, the channel is
10702                         // kept in the `nodes[1]`'s `id_to_peer` map.
10703                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10704                         assert_eq!(nodes_1_lock.len(), 1);
10705                         assert!(nodes_1_lock.contains_key(&channel_id));
10706                 }
10707
10708                 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()));
10709                 {
10710                         // `nodes[0]` accepts `nodes[1]`'s proposed fee for the closing transaction, and
10711                         // therefore has all it needs to fully close the channel (both signatures for the
10712                         // closing transaction).
10713                         // Assert that the channel is removed from `nodes[0]`'s `id_to_peer` map as it can be
10714                         // fully closed by `nodes[0]`.
10715                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
10716
10717                         // Assert that the channel is still in `nodes[1]`'s  `id_to_peer` map, as `nodes[1]`
10718                         // doesn't have `nodes[0]`'s signature for the closing transaction yet.
10719                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10720                         assert_eq!(nodes_1_lock.len(), 1);
10721                         assert!(nodes_1_lock.contains_key(&channel_id));
10722                 }
10723
10724                 let (_nodes_0_update, closing_signed_node_0) = get_closing_signed_broadcast!(nodes[0].node, nodes[1].node.get_our_node_id());
10725
10726                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0.unwrap());
10727                 {
10728                         // Assert that the channel has now been removed from both parties `id_to_peer` map once
10729                         // they both have everything required to fully close the channel.
10730                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10731                 }
10732                 let (_nodes_1_update, _none) = get_closing_signed_broadcast!(nodes[1].node, nodes[0].node.get_our_node_id());
10733
10734                 check_closed_event!(nodes[0], 1, ClosureReason::CooperativeClosure, [nodes[1].node.get_our_node_id()], 1000000);
10735                 check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure, [nodes[0].node.get_our_node_id()], 1000000);
10736         }
10737
10738         fn check_not_connected_to_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
10739                 let expected_message = format!("Not connected to node: {}", expected_public_key);
10740                 check_api_error_message(expected_message, res_err)
10741         }
10742
10743         fn check_unkown_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
10744                 let expected_message = format!("Can't find a peer matching the passed counterparty node_id {}", expected_public_key);
10745                 check_api_error_message(expected_message, res_err)
10746         }
10747
10748         fn check_api_error_message<T>(expected_err_message: String, res_err: Result<T, APIError>) {
10749                 match res_err {
10750                         Err(APIError::APIMisuseError { err }) => {
10751                                 assert_eq!(err, expected_err_message);
10752                         },
10753                         Err(APIError::ChannelUnavailable { err }) => {
10754                                 assert_eq!(err, expected_err_message);
10755                         },
10756                         Ok(_) => panic!("Unexpected Ok"),
10757                         Err(_) => panic!("Unexpected Error"),
10758                 }
10759         }
10760
10761         #[test]
10762         fn test_api_calls_with_unkown_counterparty_node() {
10763                 // Tests that our API functions that expects a `counterparty_node_id` as input, behaves as
10764                 // expected if the `counterparty_node_id` is an unkown peer in the
10765                 // `ChannelManager::per_peer_state` map.
10766                 let chanmon_cfg = create_chanmon_cfgs(2);
10767                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
10768                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[None, None]);
10769                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
10770
10771                 // Dummy values
10772                 let channel_id = ChannelId::from_bytes([4; 32]);
10773                 let unkown_public_key = PublicKey::from_secret_key(&Secp256k1::signing_only(), &SecretKey::from_slice(&[42; 32]).unwrap());
10774                 let intercept_id = InterceptId([0; 32]);
10775
10776                 // Test the API functions.
10777                 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);
10778
10779                 check_unkown_peer_error(nodes[0].node.accept_inbound_channel(&channel_id, &unkown_public_key, 42), unkown_public_key);
10780
10781                 check_unkown_peer_error(nodes[0].node.close_channel(&channel_id, &unkown_public_key), unkown_public_key);
10782
10783                 check_unkown_peer_error(nodes[0].node.force_close_broadcasting_latest_txn(&channel_id, &unkown_public_key), unkown_public_key);
10784
10785                 check_unkown_peer_error(nodes[0].node.force_close_without_broadcasting_txn(&channel_id, &unkown_public_key), unkown_public_key);
10786
10787                 check_unkown_peer_error(nodes[0].node.forward_intercepted_htlc(intercept_id, &channel_id, unkown_public_key, 1_000_000), unkown_public_key);
10788
10789                 check_unkown_peer_error(nodes[0].node.update_channel_config(&unkown_public_key, &[channel_id], &ChannelConfig::default()), unkown_public_key);
10790         }
10791
10792         #[test]
10793         fn test_connection_limiting() {
10794                 // Test that we limit un-channel'd peers and un-funded channels properly.
10795                 let chanmon_cfgs = create_chanmon_cfgs(2);
10796                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10797                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10798                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10799
10800                 // Note that create_network connects the nodes together for us
10801
10802                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10803                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10804
10805                 let mut funding_tx = None;
10806                 for idx in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
10807                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10808                         let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10809
10810                         if idx == 0 {
10811                                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
10812                                 let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100_000, 42);
10813                                 funding_tx = Some(tx.clone());
10814                                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx).unwrap();
10815                                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
10816
10817                                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
10818                                 check_added_monitors!(nodes[1], 1);
10819                                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
10820
10821                                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
10822
10823                                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
10824                                 check_added_monitors!(nodes[0], 1);
10825                                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
10826                         }
10827                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10828                 }
10829
10830                 // A MAX_UNFUNDED_CHANS_PER_PEER + 1 channel will be summarily rejected
10831                 open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10832                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10833                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10834                         open_channel_msg.temporary_channel_id);
10835
10836                 // Further, because all of our channels with nodes[0] are inbound, and none of them funded,
10837                 // it doesn't count as a "protected" peer, i.e. it counts towards the MAX_NO_CHANNEL_PEERS
10838                 // limit.
10839                 let mut peer_pks = Vec::with_capacity(super::MAX_NO_CHANNEL_PEERS);
10840                 for _ in 1..super::MAX_NO_CHANNEL_PEERS {
10841                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10842                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10843                         peer_pks.push(random_pk);
10844                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
10845                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10846                         }, true).unwrap();
10847                 }
10848                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10849                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10850                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10851                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10852                 }, true).unwrap_err();
10853
10854                 // Also importantly, because nodes[0] isn't "protected", we will refuse a reconnection from
10855                 // them if we have too many un-channel'd peers.
10856                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10857                 let chan_closed_events = nodes[1].node.get_and_clear_pending_events();
10858                 assert_eq!(chan_closed_events.len(), super::MAX_UNFUNDED_CHANS_PER_PEER - 1);
10859                 for ev in chan_closed_events {
10860                         if let Event::ChannelClosed { .. } = ev { } else { panic!(); }
10861                 }
10862                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10863                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10864                 }, true).unwrap();
10865                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10866                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10867                 }, true).unwrap_err();
10868
10869                 // but of course if the connection is outbound its allowed...
10870                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10871                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10872                 }, false).unwrap();
10873                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10874
10875                 // Now nodes[0] is disconnected but still has a pending, un-funded channel lying around.
10876                 // Even though we accept one more connection from new peers, we won't actually let them
10877                 // open channels.
10878                 assert!(peer_pks.len() > super::MAX_UNFUNDED_CHANNEL_PEERS - 1);
10879                 for i in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
10880                         nodes[1].node.handle_open_channel(&peer_pks[i], &open_channel_msg);
10881                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, peer_pks[i]);
10882                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10883                 }
10884                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10885                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
10886                         open_channel_msg.temporary_channel_id);
10887
10888                 // Of course, however, outbound channels are always allowed
10889                 nodes[1].node.create_channel(last_random_pk, 100_000, 0, 42, None).unwrap();
10890                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, last_random_pk);
10891
10892                 // If we fund the first channel, nodes[0] has a live on-chain channel with us, it is now
10893                 // "protected" and can connect again.
10894                 mine_transaction(&nodes[1], funding_tx.as_ref().unwrap());
10895                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10896                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10897                 }, true).unwrap();
10898                 get_event_msg!(nodes[1], MessageSendEvent::SendChannelReestablish, nodes[0].node.get_our_node_id());
10899
10900                 // Further, because the first channel was funded, we can open another channel with
10901                 // last_random_pk.
10902                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10903                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
10904         }
10905
10906         #[test]
10907         fn test_outbound_chans_unlimited() {
10908                 // Test that we never refuse an outbound channel even if a peer is unfuned-channel-limited
10909                 let chanmon_cfgs = create_chanmon_cfgs(2);
10910                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10911                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10912                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10913
10914                 // Note that create_network connects the nodes together for us
10915
10916                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10917                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10918
10919                 for _ in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
10920                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10921                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10922                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10923                 }
10924
10925                 // Once we have MAX_UNFUNDED_CHANS_PER_PEER unfunded channels, new inbound channels will be
10926                 // rejected.
10927                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10928                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10929                         open_channel_msg.temporary_channel_id);
10930
10931                 // but we can still open an outbound channel.
10932                 nodes[1].node.create_channel(nodes[0].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10933                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
10934
10935                 // but even with such an outbound channel, additional inbound channels will still fail.
10936                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10937                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10938                         open_channel_msg.temporary_channel_id);
10939         }
10940
10941         #[test]
10942         fn test_0conf_limiting() {
10943                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
10944                 // flag set and (sometimes) accept channels as 0conf.
10945                 let chanmon_cfgs = create_chanmon_cfgs(2);
10946                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10947                 let mut settings = test_default_channel_config();
10948                 settings.manually_accept_inbound_channels = true;
10949                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(settings)]);
10950                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10951
10952                 // Note that create_network connects the nodes together for us
10953
10954                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10955                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10956
10957                 // First, get us up to MAX_UNFUNDED_CHANNEL_PEERS so we can test at the edge
10958                 for _ in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
10959                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10960                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10961                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
10962                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10963                         }, true).unwrap();
10964
10965                         nodes[1].node.handle_open_channel(&random_pk, &open_channel_msg);
10966                         let events = nodes[1].node.get_and_clear_pending_events();
10967                         match events[0] {
10968                                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
10969                                         nodes[1].node.accept_inbound_channel(&temporary_channel_id, &random_pk, 23).unwrap();
10970                                 }
10971                                 _ => panic!("Unexpected event"),
10972                         }
10973                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, random_pk);
10974                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10975                 }
10976
10977                 // If we try to accept a channel from another peer non-0conf it will fail.
10978                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10979                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10980                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10981                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10982                 }, true).unwrap();
10983                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10984                 let events = nodes[1].node.get_and_clear_pending_events();
10985                 match events[0] {
10986                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10987                                 match nodes[1].node.accept_inbound_channel(&temporary_channel_id, &last_random_pk, 23) {
10988                                         Err(APIError::APIMisuseError { err }) =>
10989                                                 assert_eq!(err, "Too many peers with unfunded channels, refusing to accept new ones"),
10990                                         _ => panic!(),
10991                                 }
10992                         }
10993                         _ => panic!("Unexpected event"),
10994                 }
10995                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
10996                         open_channel_msg.temporary_channel_id);
10997
10998                 // ...however if we accept the same channel 0conf it should work just fine.
10999                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
11000                 let events = nodes[1].node.get_and_clear_pending_events();
11001                 match events[0] {
11002                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
11003                                 nodes[1].node.accept_inbound_channel_from_trusted_peer_0conf(&temporary_channel_id, &last_random_pk, 23).unwrap();
11004                         }
11005                         _ => panic!("Unexpected event"),
11006                 }
11007                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
11008         }
11009
11010         #[test]
11011         fn reject_excessively_underpaying_htlcs() {
11012                 let chanmon_cfg = create_chanmon_cfgs(1);
11013                 let node_cfg = create_node_cfgs(1, &chanmon_cfg);
11014                 let node_chanmgr = create_node_chanmgrs(1, &node_cfg, &[None]);
11015                 let node = create_network(1, &node_cfg, &node_chanmgr);
11016                 let sender_intended_amt_msat = 100;
11017                 let extra_fee_msat = 10;
11018                 let hop_data = msgs::InboundOnionPayload::Receive {
11019                         amt_msat: 100,
11020                         outgoing_cltv_value: 42,
11021                         payment_metadata: None,
11022                         keysend_preimage: None,
11023                         payment_data: Some(msgs::FinalOnionHopData {
11024                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
11025                         }),
11026                         custom_tlvs: Vec::new(),
11027                 };
11028                 // Check that if the amount we received + the penultimate hop extra fee is less than the sender
11029                 // intended amount, we fail the payment.
11030                 if let Err(crate::ln::channelmanager::InboundOnionErr { err_code, .. }) =
11031                         node[0].node.construct_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
11032                                 sender_intended_amt_msat - extra_fee_msat - 1, 42, None, true, Some(extra_fee_msat))
11033                 {
11034                         assert_eq!(err_code, 19);
11035                 } else { panic!(); }
11036
11037                 // If amt_received + extra_fee is equal to the sender intended amount, we're fine.
11038                 let hop_data = msgs::InboundOnionPayload::Receive { // This is the same payload as above, InboundOnionPayload doesn't implement Clone
11039                         amt_msat: 100,
11040                         outgoing_cltv_value: 42,
11041                         payment_metadata: None,
11042                         keysend_preimage: None,
11043                         payment_data: Some(msgs::FinalOnionHopData {
11044                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
11045                         }),
11046                         custom_tlvs: Vec::new(),
11047                 };
11048                 assert!(node[0].node.construct_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
11049                         sender_intended_amt_msat - extra_fee_msat, 42, None, true, Some(extra_fee_msat)).is_ok());
11050         }
11051
11052         #[test]
11053         fn test_inbound_anchors_manual_acceptance() {
11054                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
11055                 // flag set and (sometimes) accept channels as 0conf.
11056                 let mut anchors_cfg = test_default_channel_config();
11057                 anchors_cfg.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
11058
11059                 let mut anchors_manual_accept_cfg = anchors_cfg.clone();
11060                 anchors_manual_accept_cfg.manually_accept_inbound_channels = true;
11061
11062                 let chanmon_cfgs = create_chanmon_cfgs(3);
11063                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
11064                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs,
11065                         &[Some(anchors_cfg.clone()), Some(anchors_cfg.clone()), Some(anchors_manual_accept_cfg.clone())]);
11066                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
11067
11068                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
11069                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
11070
11071                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
11072                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
11073                 let msg_events = nodes[1].node.get_and_clear_pending_msg_events();
11074                 match &msg_events[0] {
11075                         MessageSendEvent::HandleError { node_id, action } => {
11076                                 assert_eq!(*node_id, nodes[0].node.get_our_node_id());
11077                                 match action {
11078                                         ErrorAction::SendErrorMessage { msg } =>
11079                                                 assert_eq!(msg.data, "No channels with anchor outputs accepted".to_owned()),
11080                                         _ => panic!("Unexpected error action"),
11081                                 }
11082                         }
11083                         _ => panic!("Unexpected event"),
11084                 }
11085
11086                 nodes[2].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
11087                 let events = nodes[2].node.get_and_clear_pending_events();
11088                 match events[0] {
11089                         Event::OpenChannelRequest { temporary_channel_id, .. } =>
11090                                 nodes[2].node.accept_inbound_channel(&temporary_channel_id, &nodes[0].node.get_our_node_id(), 23).unwrap(),
11091                         _ => panic!("Unexpected event"),
11092                 }
11093                 get_event_msg!(nodes[2], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
11094         }
11095
11096         #[test]
11097         fn test_anchors_zero_fee_htlc_tx_fallback() {
11098                 // Tests that if both nodes support anchors, but the remote node does not want to accept
11099                 // anchor channels at the moment, an error it sent to the local node such that it can retry
11100                 // the channel without the anchors feature.
11101                 let chanmon_cfgs = create_chanmon_cfgs(2);
11102                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
11103                 let mut anchors_config = test_default_channel_config();
11104                 anchors_config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
11105                 anchors_config.manually_accept_inbound_channels = true;
11106                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(anchors_config.clone()), Some(anchors_config.clone())]);
11107                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
11108
11109                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 0, None).unwrap();
11110                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
11111                 assert!(open_channel_msg.channel_type.as_ref().unwrap().supports_anchors_zero_fee_htlc_tx());
11112
11113                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
11114                 let events = nodes[1].node.get_and_clear_pending_events();
11115                 match events[0] {
11116                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
11117                                 nodes[1].node.force_close_broadcasting_latest_txn(&temporary_channel_id, &nodes[0].node.get_our_node_id()).unwrap();
11118                         }
11119                         _ => panic!("Unexpected event"),
11120                 }
11121
11122                 let error_msg = get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id());
11123                 nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &error_msg);
11124
11125                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
11126                 assert!(!open_channel_msg.channel_type.unwrap().supports_anchors_zero_fee_htlc_tx());
11127
11128                 // Since nodes[1] should not have accepted the channel, it should
11129                 // not have generated any events.
11130                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
11131         }
11132
11133         #[test]
11134         fn test_update_channel_config() {
11135                 let chanmon_cfg = create_chanmon_cfgs(2);
11136                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
11137                 let mut user_config = test_default_channel_config();
11138                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config), Some(user_config)]);
11139                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
11140                 let _ = create_announced_chan_between_nodes(&nodes, 0, 1);
11141                 let channel = &nodes[0].node.list_channels()[0];
11142
11143                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
11144                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11145                 assert_eq!(events.len(), 0);
11146
11147                 user_config.channel_config.forwarding_fee_base_msat += 10;
11148                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
11149                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_base_msat, user_config.channel_config.forwarding_fee_base_msat);
11150                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11151                 assert_eq!(events.len(), 1);
11152                 match &events[0] {
11153                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
11154                         _ => panic!("expected BroadcastChannelUpdate event"),
11155                 }
11156
11157                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate::default()).unwrap();
11158                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11159                 assert_eq!(events.len(), 0);
11160
11161                 let new_cltv_expiry_delta = user_config.channel_config.cltv_expiry_delta + 6;
11162                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
11163                         cltv_expiry_delta: Some(new_cltv_expiry_delta),
11164                         ..Default::default()
11165                 }).unwrap();
11166                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
11167                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11168                 assert_eq!(events.len(), 1);
11169                 match &events[0] {
11170                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
11171                         _ => panic!("expected BroadcastChannelUpdate event"),
11172                 }
11173
11174                 let new_fee = user_config.channel_config.forwarding_fee_proportional_millionths + 100;
11175                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
11176                         forwarding_fee_proportional_millionths: Some(new_fee),
11177                         ..Default::default()
11178                 }).unwrap();
11179                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
11180                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, new_fee);
11181                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11182                 assert_eq!(events.len(), 1);
11183                 match &events[0] {
11184                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
11185                         _ => panic!("expected BroadcastChannelUpdate event"),
11186                 }
11187
11188                 // If we provide a channel_id not associated with the peer, we should get an error and no updates
11189                 // should be applied to ensure update atomicity as specified in the API docs.
11190                 let bad_channel_id = ChannelId::v1_from_funding_txid(&[10; 32], 10);
11191                 let current_fee = nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths;
11192                 let new_fee = current_fee + 100;
11193                 assert!(
11194                         matches!(
11195                                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id, bad_channel_id], &ChannelConfigUpdate {
11196                                         forwarding_fee_proportional_millionths: Some(new_fee),
11197                                         ..Default::default()
11198                                 }),
11199                                 Err(APIError::ChannelUnavailable { err: _ }),
11200                         )
11201                 );
11202                 // Check that the fee hasn't changed for the channel that exists.
11203                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, current_fee);
11204                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11205                 assert_eq!(events.len(), 0);
11206         }
11207
11208         #[test]
11209         fn test_payment_display() {
11210                 let payment_id = PaymentId([42; 32]);
11211                 assert_eq!(format!("{}", &payment_id), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
11212                 let payment_hash = PaymentHash([42; 32]);
11213                 assert_eq!(format!("{}", &payment_hash), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
11214                 let payment_preimage = PaymentPreimage([42; 32]);
11215                 assert_eq!(format!("{}", &payment_preimage), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
11216         }
11217 }
11218
11219 #[cfg(ldk_bench)]
11220 pub mod bench {
11221         use crate::chain::Listen;
11222         use crate::chain::chainmonitor::{ChainMonitor, Persist};
11223         use crate::sign::{KeysManager, InMemorySigner};
11224         use crate::events::{Event, MessageSendEvent, MessageSendEventsProvider};
11225         use crate::ln::channelmanager::{BestBlock, ChainParameters, ChannelManager, PaymentHash, PaymentPreimage, PaymentId, RecipientOnionFields, Retry};
11226         use crate::ln::functional_test_utils::*;
11227         use crate::ln::msgs::{ChannelMessageHandler, Init};
11228         use crate::routing::gossip::NetworkGraph;
11229         use crate::routing::router::{PaymentParameters, RouteParameters};
11230         use crate::util::test_utils;
11231         use crate::util::config::{UserConfig, MaxDustHTLCExposure};
11232
11233         use bitcoin::hashes::Hash;
11234         use bitcoin::hashes::sha256::Hash as Sha256;
11235         use bitcoin::{Block, BlockHeader, PackedLockTime, Transaction, TxMerkleNode, TxOut};
11236
11237         use crate::sync::{Arc, Mutex, RwLock};
11238
11239         use criterion::Criterion;
11240
11241         type Manager<'a, P> = ChannelManager<
11242                 &'a ChainMonitor<InMemorySigner, &'a test_utils::TestChainSource,
11243                         &'a test_utils::TestBroadcaster, &'a test_utils::TestFeeEstimator,
11244                         &'a test_utils::TestLogger, &'a P>,
11245                 &'a test_utils::TestBroadcaster, &'a KeysManager, &'a KeysManager, &'a KeysManager,
11246                 &'a test_utils::TestFeeEstimator, &'a test_utils::TestRouter<'a>,
11247                 &'a test_utils::TestLogger>;
11248
11249         struct ANodeHolder<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> {
11250                 node: &'node_cfg Manager<'chan_mon_cfg, P>,
11251         }
11252         impl<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> NodeHolder for ANodeHolder<'node_cfg, 'chan_mon_cfg, P> {
11253                 type CM = Manager<'chan_mon_cfg, P>;
11254                 #[inline]
11255                 fn node(&self) -> &Manager<'chan_mon_cfg, P> { self.node }
11256                 #[inline]
11257                 fn chain_monitor(&self) -> Option<&test_utils::TestChainMonitor> { None }
11258         }
11259
11260         pub fn bench_sends(bench: &mut Criterion) {
11261                 bench_two_sends(bench, "bench_sends", test_utils::TestPersister::new(), test_utils::TestPersister::new());
11262         }
11263
11264         pub fn bench_two_sends<P: Persist<InMemorySigner>>(bench: &mut Criterion, bench_name: &str, persister_a: P, persister_b: P) {
11265                 // Do a simple benchmark of sending a payment back and forth between two nodes.
11266                 // Note that this is unrealistic as each payment send will require at least two fsync
11267                 // calls per node.
11268                 let network = bitcoin::Network::Testnet;
11269                 let genesis_block = bitcoin::blockdata::constants::genesis_block(network);
11270
11271                 let tx_broadcaster = test_utils::TestBroadcaster::new(network);
11272                 let fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
11273                 let logger_a = test_utils::TestLogger::with_id("node a".to_owned());
11274                 let scorer = RwLock::new(test_utils::TestScorer::new());
11275                 let router = test_utils::TestRouter::new(Arc::new(NetworkGraph::new(network, &logger_a)), &scorer);
11276
11277                 let mut config: UserConfig = Default::default();
11278                 config.channel_config.max_dust_htlc_exposure = MaxDustHTLCExposure::FeeRateMultiplier(5_000_000 / 253);
11279                 config.channel_handshake_config.minimum_depth = 1;
11280
11281                 let chain_monitor_a = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_a);
11282                 let seed_a = [1u8; 32];
11283                 let keys_manager_a = KeysManager::new(&seed_a, 42, 42);
11284                 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 {
11285                         network,
11286                         best_block: BestBlock::from_network(network),
11287                 }, genesis_block.header.time);
11288                 let node_a_holder = ANodeHolder { node: &node_a };
11289
11290                 let logger_b = test_utils::TestLogger::with_id("node a".to_owned());
11291                 let chain_monitor_b = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_b);
11292                 let seed_b = [2u8; 32];
11293                 let keys_manager_b = KeysManager::new(&seed_b, 42, 42);
11294                 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 {
11295                         network,
11296                         best_block: BestBlock::from_network(network),
11297                 }, genesis_block.header.time);
11298                 let node_b_holder = ANodeHolder { node: &node_b };
11299
11300                 node_a.peer_connected(&node_b.get_our_node_id(), &Init {
11301                         features: node_b.init_features(), networks: None, remote_network_address: None
11302                 }, true).unwrap();
11303                 node_b.peer_connected(&node_a.get_our_node_id(), &Init {
11304                         features: node_a.init_features(), networks: None, remote_network_address: None
11305                 }, false).unwrap();
11306                 node_a.create_channel(node_b.get_our_node_id(), 8_000_000, 100_000_000, 42, None).unwrap();
11307                 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()));
11308                 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()));
11309
11310                 let tx;
11311                 if let Event::FundingGenerationReady { temporary_channel_id, output_script, .. } = get_event!(node_a_holder, Event::FundingGenerationReady) {
11312                         tx = Transaction { version: 2, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: vec![TxOut {
11313                                 value: 8_000_000, script_pubkey: output_script,
11314                         }]};
11315                         node_a.funding_transaction_generated(&temporary_channel_id, &node_b.get_our_node_id(), tx.clone()).unwrap();
11316                 } else { panic!(); }
11317
11318                 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()));
11319                 let events_b = node_b.get_and_clear_pending_events();
11320                 assert_eq!(events_b.len(), 1);
11321                 match events_b[0] {
11322                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
11323                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
11324                         },
11325                         _ => panic!("Unexpected event"),
11326                 }
11327
11328                 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()));
11329                 let events_a = node_a.get_and_clear_pending_events();
11330                 assert_eq!(events_a.len(), 1);
11331                 match events_a[0] {
11332                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
11333                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
11334                         },
11335                         _ => panic!("Unexpected event"),
11336                 }
11337
11338                 assert_eq!(&tx_broadcaster.txn_broadcasted.lock().unwrap()[..], &[tx.clone()]);
11339
11340                 let block = create_dummy_block(BestBlock::from_network(network).block_hash(), 42, vec![tx]);
11341                 Listen::block_connected(&node_a, &block, 1);
11342                 Listen::block_connected(&node_b, &block, 1);
11343
11344                 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()));
11345                 let msg_events = node_a.get_and_clear_pending_msg_events();
11346                 assert_eq!(msg_events.len(), 2);
11347                 match msg_events[0] {
11348                         MessageSendEvent::SendChannelReady { ref msg, .. } => {
11349                                 node_b.handle_channel_ready(&node_a.get_our_node_id(), msg);
11350                                 get_event_msg!(node_b_holder, MessageSendEvent::SendChannelUpdate, node_a.get_our_node_id());
11351                         },
11352                         _ => panic!(),
11353                 }
11354                 match msg_events[1] {
11355                         MessageSendEvent::SendChannelUpdate { .. } => {},
11356                         _ => panic!(),
11357                 }
11358
11359                 let events_a = node_a.get_and_clear_pending_events();
11360                 assert_eq!(events_a.len(), 1);
11361                 match events_a[0] {
11362                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
11363                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
11364                         },
11365                         _ => panic!("Unexpected event"),
11366                 }
11367
11368                 let events_b = node_b.get_and_clear_pending_events();
11369                 assert_eq!(events_b.len(), 1);
11370                 match events_b[0] {
11371                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
11372                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
11373                         },
11374                         _ => panic!("Unexpected event"),
11375                 }
11376
11377                 let mut payment_count: u64 = 0;
11378                 macro_rules! send_payment {
11379                         ($node_a: expr, $node_b: expr) => {
11380                                 let payment_params = PaymentParameters::from_node_id($node_b.get_our_node_id(), TEST_FINAL_CLTV)
11381                                         .with_bolt11_features($node_b.invoice_features()).unwrap();
11382                                 let mut payment_preimage = PaymentPreimage([0; 32]);
11383                                 payment_preimage.0[0..8].copy_from_slice(&payment_count.to_le_bytes());
11384                                 payment_count += 1;
11385                                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner());
11386                                 let payment_secret = $node_b.create_inbound_payment_for_hash(payment_hash, None, 7200, None).unwrap();
11387
11388                                 $node_a.send_payment(payment_hash, RecipientOnionFields::secret_only(payment_secret),
11389                                         PaymentId(payment_hash.0),
11390                                         RouteParameters::from_payment_params_and_value(payment_params, 10_000),
11391                                         Retry::Attempts(0)).unwrap();
11392                                 let payment_event = SendEvent::from_event($node_a.get_and_clear_pending_msg_events().pop().unwrap());
11393                                 $node_b.handle_update_add_htlc(&$node_a.get_our_node_id(), &payment_event.msgs[0]);
11394                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &payment_event.commitment_msg);
11395                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_b }, &$node_a.get_our_node_id());
11396                                 $node_a.handle_revoke_and_ack(&$node_b.get_our_node_id(), &raa);
11397                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &cs);
11398                                 $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()));
11399
11400                                 expect_pending_htlcs_forwardable!(ANodeHolder { node: &$node_b });
11401                                 expect_payment_claimable!(ANodeHolder { node: &$node_b }, payment_hash, payment_secret, 10_000);
11402                                 $node_b.claim_funds(payment_preimage);
11403                                 expect_payment_claimed!(ANodeHolder { node: &$node_b }, payment_hash, 10_000);
11404
11405                                 match $node_b.get_and_clear_pending_msg_events().pop().unwrap() {
11406                                         MessageSendEvent::UpdateHTLCs { node_id, updates } => {
11407                                                 assert_eq!(node_id, $node_a.get_our_node_id());
11408                                                 $node_a.handle_update_fulfill_htlc(&$node_b.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
11409                                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &updates.commitment_signed);
11410                                         },
11411                                         _ => panic!("Failed to generate claim event"),
11412                                 }
11413
11414                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_a }, &$node_b.get_our_node_id());
11415                                 $node_b.handle_revoke_and_ack(&$node_a.get_our_node_id(), &raa);
11416                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &cs);
11417                                 $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()));
11418
11419                                 expect_payment_sent!(ANodeHolder { node: &$node_a }, payment_preimage);
11420                         }
11421                 }
11422
11423                 bench.bench_function(bench_name, |b| b.iter(|| {
11424                         send_payment!(node_a, node_b);
11425                         send_payment!(node_b, node_a);
11426                 }));
11427         }
11428 }