Merge pull request #2441 from arik-so/2023-07-taproot-signer-wrapped
[rust-lightning] / lightning / src / ln / channelmanager.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
8 // licenses.
9
10 //! The top-level channel management and payment tracking stuff lives here.
11 //!
12 //! The [`ChannelManager`] is the main chunk of logic implementing the lightning protocol and is
13 //! responsible for tracking which channels are open, HTLCs are in flight and reestablishing those
14 //! upon reconnect to the relevant peer(s).
15 //!
16 //! It does not manage routing logic (see [`Router`] for that) nor does it manage constructing
17 //! on-chain transactions (it only monitors the chain to watch for any force-closes that might
18 //! imply it needs to fail HTLCs/payments/channels it manages).
19
20 use bitcoin::blockdata::block::BlockHeader;
21 use bitcoin::blockdata::transaction::Transaction;
22 use bitcoin::blockdata::constants::{genesis_block, ChainHash};
23 use bitcoin::network::constants::Network;
24
25 use bitcoin::hashes::Hash;
26 use bitcoin::hashes::sha256::Hash as Sha256;
27 use bitcoin::hash_types::{BlockHash, Txid};
28
29 use bitcoin::secp256k1::{SecretKey,PublicKey};
30 use bitcoin::secp256k1::Secp256k1;
31 use bitcoin::{LockTime, secp256k1, Sequence};
32
33 use crate::chain;
34 use crate::chain::{Confirm, ChannelMonitorUpdateStatus, Watch, BestBlock};
35 use crate::chain::chaininterface::{BroadcasterInterface, ConfirmationTarget, FeeEstimator, LowerBoundedFeeEstimator};
36 use crate::chain::channelmonitor::{ChannelMonitor, ChannelMonitorUpdate, ChannelMonitorUpdateStep, HTLC_FAIL_BACK_BUFFER, CLTV_CLAIM_BUFFER, LATENCY_GRACE_PERIOD_BLOCKS, ANTI_REORG_DELAY, MonitorEvent, CLOSED_CHANNEL_UPDATE_ID};
37 use crate::chain::transaction::{OutPoint, TransactionData};
38 use crate::events;
39 use crate::events::{Event, EventHandler, EventsProvider, MessageSendEvent, MessageSendEventsProvider, ClosureReason, HTLCDestination, PaymentFailureReason};
40 // Since this struct is returned in `list_channels` methods, expose it here in case users want to
41 // construct one themselves.
42 use crate::ln::{inbound_payment, PaymentHash, PaymentPreimage, PaymentSecret};
43 use crate::ln::channel::{Channel, ChannelContext, ChannelError, ChannelUpdateStatus, ShutdownResult, UnfundedChannelContext, UpdateFulfillCommitFetch, OutboundV1Channel, InboundV1Channel};
44 use crate::ln::features::{ChannelFeatures, ChannelTypeFeatures, InitFeatures, NodeFeatures};
45 #[cfg(any(feature = "_test_utils", test))]
46 use crate::ln::features::Bolt11InvoiceFeatures;
47 use crate::routing::gossip::NetworkGraph;
48 use crate::routing::router::{BlindedTail, DefaultRouter, InFlightHtlcs, Path, Payee, PaymentParameters, Route, RouteParameters, Router};
49 use crate::routing::scoring::{ProbabilisticScorer, ProbabilisticScoringFeeParameters};
50 use crate::ln::msgs;
51 use crate::ln::onion_utils;
52 use crate::ln::onion_utils::HTLCFailReason;
53 use crate::ln::msgs::{ChannelMessageHandler, DecodeError, LightningError};
54 #[cfg(test)]
55 use crate::ln::outbound_payment;
56 use crate::ln::outbound_payment::{OutboundPayments, PaymentAttempts, PendingOutboundPayment, SendAlongPathArgs};
57 use crate::ln::wire::Encode;
58 use crate::sign::{EntropySource, KeysManager, NodeSigner, Recipient, SignerProvider, WriteableEcdsaChannelSigner};
59 use crate::util::config::{UserConfig, ChannelConfig, ChannelConfigUpdate};
60 use crate::util::wakers::{Future, Notifier};
61 use crate::util::scid_utils::fake_scid;
62 use crate::util::string::UntrustedString;
63 use crate::util::ser::{BigSize, FixedLengthReader, Readable, ReadableArgs, MaybeReadable, Writeable, Writer, VecWriter};
64 use crate::util::logger::{Level, Logger};
65 use crate::util::errors::APIError;
66
67 use alloc::collections::BTreeMap;
68
69 use crate::io;
70 use crate::prelude::*;
71 use core::{cmp, mem};
72 use core::cell::RefCell;
73 use crate::io::Read;
74 use crate::sync::{Arc, Mutex, RwLock, RwLockReadGuard, FairRwLock, LockTestExt, LockHeldState};
75 use core::sync::atomic::{AtomicUsize, AtomicBool, Ordering};
76 use core::time::Duration;
77 use core::ops::Deref;
78
79 // Re-export this for use in the public API.
80 pub use crate::ln::outbound_payment::{PaymentSendFailure, 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, 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 payment identifier used to uniquely identify a payment to LDK.
237 ///
238 /// This is not exported to bindings users as we just use [u8; 32] directly
239 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
240 pub struct PaymentId(pub [u8; 32]);
241
242 impl Writeable for PaymentId {
243         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
244                 self.0.write(w)
245         }
246 }
247
248 impl Readable for PaymentId {
249         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
250                 let buf: [u8; 32] = Readable::read(r)?;
251                 Ok(PaymentId(buf))
252         }
253 }
254
255 /// An identifier used to uniquely identify an intercepted HTLC to LDK.
256 ///
257 /// This is not exported to bindings users as we just use [u8; 32] directly
258 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
259 pub struct InterceptId(pub [u8; 32]);
260
261 impl Writeable for InterceptId {
262         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
263                 self.0.write(w)
264         }
265 }
266
267 impl Readable for InterceptId {
268         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
269                 let buf: [u8; 32] = Readable::read(r)?;
270                 Ok(InterceptId(buf))
271         }
272 }
273
274 #[derive(Clone, Copy, PartialEq, Eq, Hash)]
275 /// Uniquely describes an HTLC by its source. Just the guaranteed-unique subset of [`HTLCSource`].
276 pub(crate) enum SentHTLCId {
277         PreviousHopData { short_channel_id: u64, htlc_id: u64 },
278         OutboundRoute { session_priv: SecretKey },
279 }
280 impl SentHTLCId {
281         pub(crate) fn from_source(source: &HTLCSource) -> Self {
282                 match source {
283                         HTLCSource::PreviousHopData(hop_data) => Self::PreviousHopData {
284                                 short_channel_id: hop_data.short_channel_id,
285                                 htlc_id: hop_data.htlc_id,
286                         },
287                         HTLCSource::OutboundRoute { session_priv, .. } =>
288                                 Self::OutboundRoute { session_priv: *session_priv },
289                 }
290         }
291 }
292 impl_writeable_tlv_based_enum!(SentHTLCId,
293         (0, PreviousHopData) => {
294                 (0, short_channel_id, required),
295                 (2, htlc_id, required),
296         },
297         (2, OutboundRoute) => {
298                 (0, session_priv, required),
299         };
300 );
301
302
303 /// Tracks the inbound corresponding to an outbound HTLC
304 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
305 #[derive(Clone, PartialEq, Eq)]
306 pub(crate) enum HTLCSource {
307         PreviousHopData(HTLCPreviousHopData),
308         OutboundRoute {
309                 path: Path,
310                 session_priv: SecretKey,
311                 /// Technically we can recalculate this from the route, but we cache it here to avoid
312                 /// doing a double-pass on route when we get a failure back
313                 first_hop_htlc_msat: u64,
314                 payment_id: PaymentId,
315         },
316 }
317 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
318 impl core::hash::Hash for HTLCSource {
319         fn hash<H: core::hash::Hasher>(&self, hasher: &mut H) {
320                 match self {
321                         HTLCSource::PreviousHopData(prev_hop_data) => {
322                                 0u8.hash(hasher);
323                                 prev_hop_data.hash(hasher);
324                         },
325                         HTLCSource::OutboundRoute { path, session_priv, payment_id, first_hop_htlc_msat } => {
326                                 1u8.hash(hasher);
327                                 path.hash(hasher);
328                                 session_priv[..].hash(hasher);
329                                 payment_id.hash(hasher);
330                                 first_hop_htlc_msat.hash(hasher);
331                         },
332                 }
333         }
334 }
335 impl HTLCSource {
336         #[cfg(all(feature = "_test_vectors", not(feature = "grind_signatures")))]
337         #[cfg(test)]
338         pub fn dummy() -> Self {
339                 HTLCSource::OutboundRoute {
340                         path: Path { hops: Vec::new(), blinded_tail: None },
341                         session_priv: SecretKey::from_slice(&[1; 32]).unwrap(),
342                         first_hop_htlc_msat: 0,
343                         payment_id: PaymentId([2; 32]),
344                 }
345         }
346
347         #[cfg(debug_assertions)]
348         /// Checks whether this HTLCSource could possibly match the given HTLC output in a commitment
349         /// transaction. Useful to ensure different datastructures match up.
350         pub(crate) fn possibly_matches_output(&self, htlc: &super::chan_utils::HTLCOutputInCommitment) -> bool {
351                 if let HTLCSource::OutboundRoute { first_hop_htlc_msat, .. } = self {
352                         *first_hop_htlc_msat == htlc.amount_msat
353                 } else {
354                         // There's nothing we can check for forwarded HTLCs
355                         true
356                 }
357         }
358 }
359
360 struct InboundOnionErr {
361         err_code: u16,
362         err_data: Vec<u8>,
363         msg: &'static str,
364 }
365
366 /// This enum is used to specify which error data to send to peers when failing back an HTLC
367 /// using [`ChannelManager::fail_htlc_backwards_with_reason`].
368 ///
369 /// For more info on failure codes, see <https://github.com/lightning/bolts/blob/master/04-onion-routing.md#failure-messages>.
370 #[derive(Clone, Copy)]
371 pub enum FailureCode {
372         /// We had a temporary error processing the payment. Useful if no other error codes fit
373         /// and you want to indicate that the payer may want to retry.
374         TemporaryNodeFailure,
375         /// We have a required feature which was not in this onion. For example, you may require
376         /// some additional metadata that was not provided with this payment.
377         RequiredNodeFeatureMissing,
378         /// You may wish to use this when a `payment_preimage` is unknown, or the CLTV expiry of
379         /// the HTLC is too close to the current block height for safe handling.
380         /// Using this failure code in [`ChannelManager::fail_htlc_backwards_with_reason`] is
381         /// equivalent to calling [`ChannelManager::fail_htlc_backwards`].
382         IncorrectOrUnknownPaymentDetails,
383         /// We failed to process the payload after the onion was decrypted. You may wish to
384         /// use this when receiving custom HTLC TLVs with even type numbers that you don't recognize.
385         ///
386         /// If available, the tuple data may include the type number and byte offset in the
387         /// decrypted byte stream where the failure occurred.
388         InvalidOnionPayload(Option<(u64, u16)>),
389 }
390
391 impl Into<u16> for FailureCode {
392     fn into(self) -> u16 {
393                 match self {
394                         FailureCode::TemporaryNodeFailure => 0x2000 | 2,
395                         FailureCode::RequiredNodeFeatureMissing => 0x4000 | 0x2000 | 3,
396                         FailureCode::IncorrectOrUnknownPaymentDetails => 0x4000 | 15,
397                         FailureCode::InvalidOnionPayload(_) => 0x4000 | 22,
398                 }
399         }
400 }
401
402 /// Error type returned across the peer_state mutex boundary. When an Err is generated for a
403 /// Channel, we generally end up with a ChannelError::Close for which we have to close the channel
404 /// immediately (ie with no further calls on it made). Thus, this step happens inside a
405 /// peer_state lock. We then return the set of things that need to be done outside the lock in
406 /// this struct and call handle_error!() on it.
407
408 struct MsgHandleErrInternal {
409         err: msgs::LightningError,
410         chan_id: Option<([u8; 32], u128)>, // If Some a channel of ours has been closed
411         shutdown_finish: Option<(ShutdownResult, Option<msgs::ChannelUpdate>)>,
412         channel_capacity: Option<u64>,
413 }
414 impl MsgHandleErrInternal {
415         #[inline]
416         fn send_err_msg_no_close(err: String, channel_id: [u8; 32]) -> Self {
417                 Self {
418                         err: LightningError {
419                                 err: err.clone(),
420                                 action: msgs::ErrorAction::SendErrorMessage {
421                                         msg: msgs::ErrorMessage {
422                                                 channel_id,
423                                                 data: err
424                                         },
425                                 },
426                         },
427                         chan_id: None,
428                         shutdown_finish: None,
429                         channel_capacity: None,
430                 }
431         }
432         #[inline]
433         fn from_no_close(err: msgs::LightningError) -> Self {
434                 Self { err, chan_id: None, shutdown_finish: None, channel_capacity: None }
435         }
436         #[inline]
437         fn from_finish_shutdown(err: String, channel_id: [u8; 32], user_channel_id: u128, shutdown_res: ShutdownResult, channel_update: Option<msgs::ChannelUpdate>, channel_capacity: u64) -> Self {
438                 Self {
439                         err: LightningError {
440                                 err: err.clone(),
441                                 action: msgs::ErrorAction::SendErrorMessage {
442                                         msg: msgs::ErrorMessage {
443                                                 channel_id,
444                                                 data: err
445                                         },
446                                 },
447                         },
448                         chan_id: Some((channel_id, user_channel_id)),
449                         shutdown_finish: Some((shutdown_res, channel_update)),
450                         channel_capacity: Some(channel_capacity)
451                 }
452         }
453         #[inline]
454         fn from_chan_no_close(err: ChannelError, channel_id: [u8; 32]) -> Self {
455                 Self {
456                         err: match err {
457                                 ChannelError::Warn(msg) =>  LightningError {
458                                         err: msg.clone(),
459                                         action: msgs::ErrorAction::SendWarningMessage {
460                                                 msg: msgs::WarningMessage {
461                                                         channel_id,
462                                                         data: msg
463                                                 },
464                                                 log_level: Level::Warn,
465                                         },
466                                 },
467                                 ChannelError::Ignore(msg) => LightningError {
468                                         err: msg,
469                                         action: msgs::ErrorAction::IgnoreError,
470                                 },
471                                 ChannelError::Close(msg) => LightningError {
472                                         err: msg.clone(),
473                                         action: msgs::ErrorAction::SendErrorMessage {
474                                                 msg: msgs::ErrorMessage {
475                                                         channel_id,
476                                                         data: msg
477                                                 },
478                                         },
479                                 },
480                         },
481                         chan_id: None,
482                         shutdown_finish: None,
483                         channel_capacity: None,
484                 }
485         }
486 }
487
488 /// We hold back HTLCs we intend to relay for a random interval greater than this (see
489 /// Event::PendingHTLCsForwardable for the API guidelines indicating how long should be waited).
490 /// This provides some limited amount of privacy. Ideally this would range from somewhere like one
491 /// second to 30 seconds, but people expect lightning to be, you know, kinda fast, sadly.
492 pub(super) const MIN_HTLC_RELAY_HOLDING_CELL_MILLIS: u64 = 100;
493
494 /// For events which result in both a RevokeAndACK and a CommitmentUpdate, by default they should
495 /// be sent in the order they appear in the return value, however sometimes the order needs to be
496 /// variable at runtime (eg Channel::channel_reestablish needs to re-send messages in the order
497 /// they were originally sent). In those cases, this enum is also returned.
498 #[derive(Clone, PartialEq)]
499 pub(super) enum RAACommitmentOrder {
500         /// Send the CommitmentUpdate messages first
501         CommitmentFirst,
502         /// Send the RevokeAndACK message first
503         RevokeAndACKFirst,
504 }
505
506 /// Information about a payment which is currently being claimed.
507 struct ClaimingPayment {
508         amount_msat: u64,
509         payment_purpose: events::PaymentPurpose,
510         receiver_node_id: PublicKey,
511         htlcs: Vec<events::ClaimedHTLC>,
512         sender_intended_value: Option<u64>,
513 }
514 impl_writeable_tlv_based!(ClaimingPayment, {
515         (0, amount_msat, required),
516         (2, payment_purpose, required),
517         (4, receiver_node_id, required),
518         (5, htlcs, optional_vec),
519         (7, sender_intended_value, option),
520 });
521
522 struct ClaimablePayment {
523         purpose: events::PaymentPurpose,
524         onion_fields: Option<RecipientOnionFields>,
525         htlcs: Vec<ClaimableHTLC>,
526 }
527
528 /// Information about claimable or being-claimed payments
529 struct ClaimablePayments {
530         /// Map from payment hash to the payment data and any HTLCs which are to us and can be
531         /// failed/claimed by the user.
532         ///
533         /// Note that, no consistency guarantees are made about the channels given here actually
534         /// existing anymore by the time you go to read them!
535         ///
536         /// When adding to the map, [`Self::pending_claiming_payments`] must also be checked to ensure
537         /// we don't get a duplicate payment.
538         claimable_payments: HashMap<PaymentHash, ClaimablePayment>,
539
540         /// Map from payment hash to the payment data for HTLCs which we have begun claiming, but which
541         /// are waiting on a [`ChannelMonitorUpdate`] to complete in order to be surfaced to the user
542         /// as an [`events::Event::PaymentClaimed`].
543         pending_claiming_payments: HashMap<PaymentHash, ClaimingPayment>,
544 }
545
546 /// Events which we process internally but cannot be processed immediately at the generation site
547 /// usually because we're running pre-full-init. They are handled immediately once we detect we are
548 /// running normally, and specifically must be processed before any other non-background
549 /// [`ChannelMonitorUpdate`]s are applied.
550 enum BackgroundEvent {
551         /// Handle a ChannelMonitorUpdate which closes the channel or for an already-closed channel.
552         /// This is only separated from [`Self::MonitorUpdateRegeneratedOnStartup`] as the
553         /// maybe-non-closing variant needs a public key to handle channel resumption, whereas if the
554         /// channel has been force-closed we do not need the counterparty node_id.
555         ///
556         /// Note that any such events are lost on shutdown, so in general they must be updates which
557         /// are regenerated on startup.
558         ClosedMonitorUpdateRegeneratedOnStartup((OutPoint, ChannelMonitorUpdate)),
559         /// Handle a ChannelMonitorUpdate which may or may not close the channel and may unblock the
560         /// channel to continue normal operation.
561         ///
562         /// In general this should be used rather than
563         /// [`Self::ClosedMonitorUpdateRegeneratedOnStartup`], however in cases where the
564         /// `counterparty_node_id` is not available as the channel has closed from a [`ChannelMonitor`]
565         /// error the other variant is acceptable.
566         ///
567         /// Note that any such events are lost on shutdown, so in general they must be updates which
568         /// are regenerated on startup.
569         MonitorUpdateRegeneratedOnStartup {
570                 counterparty_node_id: PublicKey,
571                 funding_txo: OutPoint,
572                 update: ChannelMonitorUpdate
573         },
574         /// Some [`ChannelMonitorUpdate`] (s) completed before we were serialized but we still have
575         /// them marked pending, thus we need to run any [`MonitorUpdateCompletionAction`] (s) pending
576         /// on a channel.
577         MonitorUpdatesComplete {
578                 counterparty_node_id: PublicKey,
579                 channel_id: [u8; 32],
580         },
581 }
582
583 #[derive(Debug)]
584 pub(crate) enum MonitorUpdateCompletionAction {
585         /// Indicates that a payment ultimately destined for us was claimed and we should emit an
586         /// [`events::Event::PaymentClaimed`] to the user if we haven't yet generated such an event for
587         /// this payment. Note that this is only best-effort. On restart it's possible such a duplicate
588         /// event can be generated.
589         PaymentClaimed { payment_hash: PaymentHash },
590         /// Indicates an [`events::Event`] should be surfaced to the user and possibly resume the
591         /// operation of another channel.
592         ///
593         /// This is usually generated when we've forwarded an HTLC and want to block the outbound edge
594         /// from completing a monitor update which removes the payment preimage until the inbound edge
595         /// completes a monitor update containing the payment preimage. In that case, after the inbound
596         /// edge completes, we will surface an [`Event::PaymentForwarded`] as well as unblock the
597         /// outbound edge.
598         EmitEventAndFreeOtherChannel {
599                 event: events::Event,
600                 downstream_counterparty_and_funding_outpoint: Option<(PublicKey, OutPoint, RAAMonitorUpdateBlockingAction)>,
601         },
602 }
603
604 impl_writeable_tlv_based_enum_upgradable!(MonitorUpdateCompletionAction,
605         (0, PaymentClaimed) => { (0, payment_hash, required) },
606         (2, EmitEventAndFreeOtherChannel) => {
607                 (0, event, upgradable_required),
608                 // LDK prior to 0.0.116 did not have this field as the monitor update application order was
609                 // required by clients. If we downgrade to something prior to 0.0.116 this may result in
610                 // monitor updates which aren't properly blocked or resumed, however that's fine - we don't
611                 // support async monitor updates even in LDK 0.0.116 and once we do we'll require no
612                 // downgrades to prior versions.
613                 (1, downstream_counterparty_and_funding_outpoint, option),
614         },
615 );
616
617 #[derive(Clone, Debug, PartialEq, Eq)]
618 pub(crate) enum EventCompletionAction {
619         ReleaseRAAChannelMonitorUpdate {
620                 counterparty_node_id: PublicKey,
621                 channel_funding_outpoint: OutPoint,
622         },
623 }
624 impl_writeable_tlv_based_enum!(EventCompletionAction,
625         (0, ReleaseRAAChannelMonitorUpdate) => {
626                 (0, channel_funding_outpoint, required),
627                 (2, counterparty_node_id, required),
628         };
629 );
630
631 #[derive(Clone, PartialEq, Eq, Debug)]
632 /// If something is blocked on the completion of an RAA-generated [`ChannelMonitorUpdate`] we track
633 /// the blocked action here. See enum variants for more info.
634 pub(crate) enum RAAMonitorUpdateBlockingAction {
635         /// A forwarded payment was claimed. We block the downstream channel completing its monitor
636         /// update which removes the HTLC preimage until the upstream channel has gotten the preimage
637         /// durably to disk.
638         ForwardedPaymentInboundClaim {
639                 /// The upstream channel ID (i.e. the inbound edge).
640                 channel_id: [u8; 32],
641                 /// The HTLC ID on the inbound edge.
642                 htlc_id: u64,
643         },
644 }
645
646 impl RAAMonitorUpdateBlockingAction {
647         #[allow(unused)]
648         fn from_prev_hop_data(prev_hop: &HTLCPreviousHopData) -> Self {
649                 Self::ForwardedPaymentInboundClaim {
650                         channel_id: prev_hop.outpoint.to_channel_id(),
651                         htlc_id: prev_hop.htlc_id,
652                 }
653         }
654 }
655
656 impl_writeable_tlv_based_enum!(RAAMonitorUpdateBlockingAction,
657         (0, ForwardedPaymentInboundClaim) => { (0, channel_id, required), (2, htlc_id, required) }
658 ;);
659
660
661 /// State we hold per-peer.
662 pub(super) struct PeerState<SP: Deref> where SP::Target: SignerProvider {
663         /// `channel_id` -> `Channel`.
664         ///
665         /// Holds all funded channels where the peer is the counterparty.
666         pub(super) channel_by_id: HashMap<[u8; 32], Channel<SP>>,
667         /// `temporary_channel_id` -> `OutboundV1Channel`.
668         ///
669         /// Holds all outbound V1 channels where the peer is the counterparty. Once an outbound channel has
670         /// been assigned a `channel_id`, the entry in this map is removed and one is created in
671         /// `channel_by_id`.
672         pub(super) outbound_v1_channel_by_id: HashMap<[u8; 32], OutboundV1Channel<SP>>,
673         /// `temporary_channel_id` -> `InboundV1Channel`.
674         ///
675         /// Holds all inbound V1 channels where the peer is the counterparty. Once an inbound channel has
676         /// been assigned a `channel_id`, the entry in this map is removed and one is created in
677         /// `channel_by_id`.
678         pub(super) inbound_v1_channel_by_id: HashMap<[u8; 32], InboundV1Channel<SP>>,
679         /// `temporary_channel_id` -> `InboundChannelRequest`.
680         ///
681         /// When manual channel acceptance is enabled, this holds all unaccepted inbound channels where
682         /// the peer is the counterparty. If the channel is accepted, then the entry in this table is
683         /// removed, and an InboundV1Channel is created and placed in the `inbound_v1_channel_by_id` table. If
684         /// the channel is rejected, then the entry is simply removed.
685         pub(super) inbound_channel_request_by_id: HashMap<[u8; 32], InboundChannelRequest>,
686         /// The latest `InitFeatures` we heard from the peer.
687         latest_features: InitFeatures,
688         /// Messages to send to the peer - pushed to in the same lock that they are generated in (except
689         /// for broadcast messages, where ordering isn't as strict).
690         pub(super) pending_msg_events: Vec<MessageSendEvent>,
691         /// Map from Channel IDs to pending [`ChannelMonitorUpdate`]s which have been passed to the
692         /// user but which have not yet completed.
693         ///
694         /// Note that the channel may no longer exist. For example if the channel was closed but we
695         /// later needed to claim an HTLC which is pending on-chain, we may generate a monitor update
696         /// for a missing channel.
697         in_flight_monitor_updates: BTreeMap<OutPoint, Vec<ChannelMonitorUpdate>>,
698         /// Map from a specific channel to some action(s) that should be taken when all pending
699         /// [`ChannelMonitorUpdate`]s for the channel complete updating.
700         ///
701         /// Note that because we generally only have one entry here a HashMap is pretty overkill. A
702         /// BTreeMap currently stores more than ten elements per leaf node, so even up to a few
703         /// channels with a peer this will just be one allocation and will amount to a linear list of
704         /// channels to walk, avoiding the whole hashing rigmarole.
705         ///
706         /// Note that the channel may no longer exist. For example, if a channel was closed but we
707         /// later needed to claim an HTLC which is pending on-chain, we may generate a monitor update
708         /// for a missing channel. While a malicious peer could construct a second channel with the
709         /// same `temporary_channel_id` (or final `channel_id` in the case of 0conf channels or prior
710         /// to funding appearing on-chain), the downstream `ChannelMonitor` set is required to ensure
711         /// duplicates do not occur, so such channels should fail without a monitor update completing.
712         monitor_update_blocked_actions: BTreeMap<[u8; 32], Vec<MonitorUpdateCompletionAction>>,
713         /// If another channel's [`ChannelMonitorUpdate`] needs to complete before a channel we have
714         /// with this peer can complete an RAA [`ChannelMonitorUpdate`] (e.g. because the RAA update
715         /// will remove a preimage that needs to be durably in an upstream channel first), we put an
716         /// entry here to note that the channel with the key's ID is blocked on a set of actions.
717         actions_blocking_raa_monitor_updates: BTreeMap<[u8; 32], Vec<RAAMonitorUpdateBlockingAction>>,
718         /// The peer is currently connected (i.e. we've seen a
719         /// [`ChannelMessageHandler::peer_connected`] and no corresponding
720         /// [`ChannelMessageHandler::peer_disconnected`].
721         is_connected: bool,
722 }
723
724 impl <SP: Deref> PeerState<SP> where SP::Target: SignerProvider {
725         /// Indicates that a peer meets the criteria where we're ok to remove it from our storage.
726         /// If true is passed for `require_disconnected`, the function will return false if we haven't
727         /// disconnected from the node already, ie. `PeerState::is_connected` is set to `true`.
728         fn ok_to_remove(&self, require_disconnected: bool) -> bool {
729                 if require_disconnected && self.is_connected {
730                         return false
731                 }
732                 self.channel_by_id.is_empty() && self.monitor_update_blocked_actions.is_empty()
733                         && self.in_flight_monitor_updates.is_empty()
734         }
735
736         // Returns a count of all channels we have with this peer, including unfunded channels.
737         fn total_channel_count(&self) -> usize {
738                 self.channel_by_id.len() +
739                         self.outbound_v1_channel_by_id.len() +
740                         self.inbound_v1_channel_by_id.len() +
741                         self.inbound_channel_request_by_id.len()
742         }
743
744         // Returns a bool indicating if the given `channel_id` matches a channel we have with this peer.
745         fn has_channel(&self, channel_id: &[u8; 32]) -> bool {
746                 self.channel_by_id.contains_key(channel_id) ||
747                         self.outbound_v1_channel_by_id.contains_key(channel_id) ||
748                         self.inbound_v1_channel_by_id.contains_key(channel_id) ||
749                         self.inbound_channel_request_by_id.contains_key(channel_id)
750         }
751 }
752
753 /// A not-yet-accepted inbound (from counterparty) channel. Once
754 /// accepted, the parameters will be used to construct a channel.
755 pub(super) struct InboundChannelRequest {
756         /// The original OpenChannel message.
757         pub open_channel_msg: msgs::OpenChannel,
758         /// The number of ticks remaining before the request expires.
759         pub ticks_remaining: i32,
760 }
761
762 /// The number of ticks that may elapse while we're waiting for an unaccepted inbound channel to be
763 /// accepted. An unaccepted channel that exceeds this limit will be abandoned.
764 const UNACCEPTED_INBOUND_CHANNEL_AGE_LIMIT_TICKS: i32 = 2;
765
766 /// Stores a PaymentSecret and any other data we may need to validate an inbound payment is
767 /// actually ours and not some duplicate HTLC sent to us by a node along the route.
768 ///
769 /// For users who don't want to bother doing their own payment preimage storage, we also store that
770 /// here.
771 ///
772 /// Note that this struct will be removed entirely soon, in favor of storing no inbound payment data
773 /// and instead encoding it in the payment secret.
774 struct PendingInboundPayment {
775         /// The payment secret that the sender must use for us to accept this payment
776         payment_secret: PaymentSecret,
777         /// Time at which this HTLC expires - blocks with a header time above this value will result in
778         /// this payment being removed.
779         expiry_time: u64,
780         /// Arbitrary identifier the user specifies (or not)
781         user_payment_id: u64,
782         // Other required attributes of the payment, optionally enforced:
783         payment_preimage: Option<PaymentPreimage>,
784         min_value_msat: Option<u64>,
785 }
786
787 /// [`SimpleArcChannelManager`] is useful when you need a [`ChannelManager`] with a static lifetime, e.g.
788 /// when you're using `lightning-net-tokio` (since `tokio::spawn` requires parameters with static
789 /// lifetimes). Other times you can afford a reference, which is more efficient, in which case
790 /// [`SimpleRefChannelManager`] is the more appropriate type. Defining these type aliases prevents
791 /// issues such as overly long function definitions. Note that the `ChannelManager` can take any type
792 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
793 /// or, respectively, [`Router`] for its router, but this type alias chooses the concrete types
794 /// of [`KeysManager`] and [`DefaultRouter`].
795 ///
796 /// This is not exported to bindings users as Arcs don't make sense in bindings
797 pub type SimpleArcChannelManager<M, T, F, L> = ChannelManager<
798         Arc<M>,
799         Arc<T>,
800         Arc<KeysManager>,
801         Arc<KeysManager>,
802         Arc<KeysManager>,
803         Arc<F>,
804         Arc<DefaultRouter<
805                 Arc<NetworkGraph<Arc<L>>>,
806                 Arc<L>,
807                 Arc<Mutex<ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>>>,
808                 ProbabilisticScoringFeeParameters,
809                 ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>,
810         >>,
811         Arc<L>
812 >;
813
814 /// [`SimpleRefChannelManager`] is a type alias for a ChannelManager reference, and is the reference
815 /// counterpart to the [`SimpleArcChannelManager`] type alias. Use this type by default when you don't
816 /// need a ChannelManager with a static lifetime. You'll need a static lifetime in cases such as
817 /// usage of lightning-net-tokio (since `tokio::spawn` requires parameters with static lifetimes).
818 /// But if this is not necessary, using a reference is more efficient. Defining these type aliases
819 /// issues such as overly long function definitions. Note that the ChannelManager can take any type
820 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
821 /// or, respectively, [`Router`]  for its router, but this type alias chooses the concrete types
822 /// of [`KeysManager`] and [`DefaultRouter`].
823 ///
824 /// This is not exported to bindings users as Arcs don't make sense in bindings
825 pub type SimpleRefChannelManager<'a, 'b, 'c, 'd, 'e, 'f, 'g, 'h, M, T, F, L> =
826         ChannelManager<
827                 &'a M,
828                 &'b T,
829                 &'c KeysManager,
830                 &'c KeysManager,
831                 &'c KeysManager,
832                 &'d F,
833                 &'e DefaultRouter<
834                         &'f NetworkGraph<&'g L>,
835                         &'g L,
836                         &'h Mutex<ProbabilisticScorer<&'f NetworkGraph<&'g L>, &'g L>>,
837                         ProbabilisticScoringFeeParameters,
838                         ProbabilisticScorer<&'f NetworkGraph<&'g L>, &'g L>
839                 >,
840                 &'g L
841         >;
842
843 macro_rules! define_test_pub_trait { ($vis: vis) => {
844 /// A trivial trait which describes any [`ChannelManager`] used in testing.
845 $vis trait AChannelManager {
846         type Watch: chain::Watch<Self::Signer> + ?Sized;
847         type M: Deref<Target = Self::Watch>;
848         type Broadcaster: BroadcasterInterface + ?Sized;
849         type T: Deref<Target = Self::Broadcaster>;
850         type EntropySource: EntropySource + ?Sized;
851         type ES: Deref<Target = Self::EntropySource>;
852         type NodeSigner: NodeSigner + ?Sized;
853         type NS: Deref<Target = Self::NodeSigner>;
854         type Signer: WriteableEcdsaChannelSigner + Sized;
855         type SignerProvider: SignerProvider<Signer = Self::Signer> + ?Sized;
856         type SP: Deref<Target = Self::SignerProvider>;
857         type FeeEstimator: FeeEstimator + ?Sized;
858         type F: Deref<Target = Self::FeeEstimator>;
859         type Router: Router + ?Sized;
860         type R: Deref<Target = Self::Router>;
861         type Logger: Logger + ?Sized;
862         type L: Deref<Target = Self::Logger>;
863         fn get_cm(&self) -> &ChannelManager<Self::M, Self::T, Self::ES, Self::NS, Self::SP, Self::F, Self::R, Self::L>;
864 }
865 } }
866 #[cfg(any(test, feature = "_test_utils"))]
867 define_test_pub_trait!(pub);
868 #[cfg(not(any(test, feature = "_test_utils")))]
869 define_test_pub_trait!(pub(crate));
870 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref> AChannelManager
871 for ChannelManager<M, T, ES, NS, SP, F, R, L>
872 where
873         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
874         T::Target: BroadcasterInterface,
875         ES::Target: EntropySource,
876         NS::Target: NodeSigner,
877         SP::Target: SignerProvider,
878         F::Target: FeeEstimator,
879         R::Target: Router,
880         L::Target: Logger,
881 {
882         type Watch = M::Target;
883         type M = M;
884         type Broadcaster = T::Target;
885         type T = T;
886         type EntropySource = ES::Target;
887         type ES = ES;
888         type NodeSigner = NS::Target;
889         type NS = NS;
890         type Signer = <SP::Target as SignerProvider>::Signer;
891         type SignerProvider = SP::Target;
892         type SP = SP;
893         type FeeEstimator = F::Target;
894         type F = F;
895         type Router = R::Target;
896         type R = R;
897         type Logger = L::Target;
898         type L = L;
899         fn get_cm(&self) -> &ChannelManager<M, T, ES, NS, SP, F, R, L> { self }
900 }
901
902 /// Manager which keeps track of a number of channels and sends messages to the appropriate
903 /// channel, also tracking HTLC preimages and forwarding onion packets appropriately.
904 ///
905 /// Implements [`ChannelMessageHandler`], handling the multi-channel parts and passing things through
906 /// to individual Channels.
907 ///
908 /// Implements [`Writeable`] to write out all channel state to disk. Implies [`peer_disconnected`] for
909 /// all peers during write/read (though does not modify this instance, only the instance being
910 /// serialized). This will result in any channels which have not yet exchanged [`funding_created`] (i.e.,
911 /// called [`funding_transaction_generated`] for outbound channels) being closed.
912 ///
913 /// Note that you can be a bit lazier about writing out `ChannelManager` than you can be with
914 /// [`ChannelMonitor`]. With [`ChannelMonitor`] you MUST write each monitor update out to disk before
915 /// returning from [`chain::Watch::watch_channel`]/[`update_channel`], with ChannelManagers, writing updates
916 /// happens out-of-band (and will prevent any other `ChannelManager` operations from occurring during
917 /// the serialization process). If the deserialized version is out-of-date compared to the
918 /// [`ChannelMonitor`] passed by reference to [`read`], those channels will be force-closed based on the
919 /// `ChannelMonitor` state and no funds will be lost (mod on-chain transaction fees).
920 ///
921 /// Note that the deserializer is only implemented for `(`[`BlockHash`]`, `[`ChannelManager`]`)`, which
922 /// tells you the last block hash which was connected. You should get the best block tip before using the manager.
923 /// See [`chain::Listen`] and [`chain::Confirm`] for more details.
924 ///
925 /// Note that `ChannelManager` is responsible for tracking liveness of its channels and generating
926 /// [`ChannelUpdate`] messages informing peers that the channel is temporarily disabled. To avoid
927 /// spam due to quick disconnection/reconnection, updates are not sent until the channel has been
928 /// offline for a full minute. In order to track this, you must call
929 /// [`timer_tick_occurred`] roughly once per minute, though it doesn't have to be perfect.
930 ///
931 /// To avoid trivial DoS issues, `ChannelManager` limits the number of inbound connections and
932 /// inbound channels without confirmed funding transactions. This may result in nodes which we do
933 /// not have a channel with being unable to connect to us or open new channels with us if we have
934 /// many peers with unfunded channels.
935 ///
936 /// Because it is an indication of trust, inbound channels which we've accepted as 0conf are
937 /// exempted from the count of unfunded channels. Similarly, outbound channels and connections are
938 /// never limited. Please ensure you limit the count of such channels yourself.
939 ///
940 /// Rather than using a plain `ChannelManager`, it is preferable to use either a [`SimpleArcChannelManager`]
941 /// a [`SimpleRefChannelManager`], for conciseness. See their documentation for more details, but
942 /// essentially you should default to using a [`SimpleRefChannelManager`], and use a
943 /// [`SimpleArcChannelManager`] when you require a `ChannelManager` with a static lifetime, such as when
944 /// you're using lightning-net-tokio.
945 ///
946 /// [`peer_disconnected`]: msgs::ChannelMessageHandler::peer_disconnected
947 /// [`funding_created`]: msgs::FundingCreated
948 /// [`funding_transaction_generated`]: Self::funding_transaction_generated
949 /// [`BlockHash`]: bitcoin::hash_types::BlockHash
950 /// [`update_channel`]: chain::Watch::update_channel
951 /// [`ChannelUpdate`]: msgs::ChannelUpdate
952 /// [`timer_tick_occurred`]: Self::timer_tick_occurred
953 /// [`read`]: ReadableArgs::read
954 //
955 // Lock order:
956 // The tree structure below illustrates the lock order requirements for the different locks of the
957 // `ChannelManager`. Locks can be held at the same time if they are on the same branch in the tree,
958 // and should then be taken in the order of the lowest to the highest level in the tree.
959 // Note that locks on different branches shall not be taken at the same time, as doing so will
960 // create a new lock order for those specific locks in the order they were taken.
961 //
962 // Lock order tree:
963 //
964 // `total_consistency_lock`
965 //  |
966 //  |__`forward_htlcs`
967 //  |   |
968 //  |   |__`pending_intercepted_htlcs`
969 //  |
970 //  |__`per_peer_state`
971 //  |   |
972 //  |   |__`pending_inbound_payments`
973 //  |       |
974 //  |       |__`claimable_payments`
975 //  |       |
976 //  |       |__`pending_outbound_payments` // This field's struct contains a map of pending outbounds
977 //  |           |
978 //  |           |__`peer_state`
979 //  |               |
980 //  |               |__`id_to_peer`
981 //  |               |
982 //  |               |__`short_to_chan_info`
983 //  |               |
984 //  |               |__`outbound_scid_aliases`
985 //  |               |
986 //  |               |__`best_block`
987 //  |               |
988 //  |               |__`pending_events`
989 //  |                   |
990 //  |                   |__`pending_background_events`
991 //
992 pub struct ChannelManager<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
993 where
994         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
995         T::Target: BroadcasterInterface,
996         ES::Target: EntropySource,
997         NS::Target: NodeSigner,
998         SP::Target: SignerProvider,
999         F::Target: FeeEstimator,
1000         R::Target: Router,
1001         L::Target: Logger,
1002 {
1003         default_configuration: UserConfig,
1004         genesis_hash: BlockHash,
1005         fee_estimator: LowerBoundedFeeEstimator<F>,
1006         chain_monitor: M,
1007         tx_broadcaster: T,
1008         #[allow(unused)]
1009         router: R,
1010
1011         /// See `ChannelManager` struct-level documentation for lock order requirements.
1012         #[cfg(test)]
1013         pub(super) best_block: RwLock<BestBlock>,
1014         #[cfg(not(test))]
1015         best_block: RwLock<BestBlock>,
1016         secp_ctx: Secp256k1<secp256k1::All>,
1017
1018         /// Storage for PaymentSecrets and any requirements on future inbound payments before we will
1019         /// expose them to users via a PaymentClaimable event. HTLCs which do not meet the requirements
1020         /// here are failed when we process them as pending-forwardable-HTLCs, and entries are removed
1021         /// after we generate a PaymentClaimable upon receipt of all MPP parts or when they time out.
1022         ///
1023         /// See `ChannelManager` struct-level documentation for lock order requirements.
1024         pending_inbound_payments: Mutex<HashMap<PaymentHash, PendingInboundPayment>>,
1025
1026         /// The session_priv bytes and retry metadata of outbound payments which are pending resolution.
1027         /// The authoritative state of these HTLCs resides either within Channels or ChannelMonitors
1028         /// (if the channel has been force-closed), however we track them here to prevent duplicative
1029         /// PaymentSent/PaymentPathFailed events. Specifically, in the case of a duplicative
1030         /// update_fulfill_htlc message after a reconnect, we may "claim" a payment twice.
1031         /// Additionally, because ChannelMonitors are often not re-serialized after connecting block(s)
1032         /// which may generate a claim event, we may receive similar duplicate claim/fail MonitorEvents
1033         /// after reloading from disk while replaying blocks against ChannelMonitors.
1034         ///
1035         /// See `PendingOutboundPayment` documentation for more info.
1036         ///
1037         /// See `ChannelManager` struct-level documentation for lock order requirements.
1038         pending_outbound_payments: OutboundPayments,
1039
1040         /// SCID/SCID Alias -> forward infos. Key of 0 means payments received.
1041         ///
1042         /// Note that because we may have an SCID Alias as the key we can have two entries per channel,
1043         /// though in practice we probably won't be receiving HTLCs for a channel both via the alias
1044         /// and via the classic SCID.
1045         ///
1046         /// Note that no consistency guarantees are made about the existence of a channel with the
1047         /// `short_channel_id` here, nor the `short_channel_id` in the `PendingHTLCInfo`!
1048         ///
1049         /// See `ChannelManager` struct-level documentation for lock order requirements.
1050         #[cfg(test)]
1051         pub(super) forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
1052         #[cfg(not(test))]
1053         forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
1054         /// Storage for HTLCs that have been intercepted and bubbled up to the user. We hold them here
1055         /// until the user tells us what we should do with them.
1056         ///
1057         /// See `ChannelManager` struct-level documentation for lock order requirements.
1058         pending_intercepted_htlcs: Mutex<HashMap<InterceptId, PendingAddHTLCInfo>>,
1059
1060         /// The sets of payments which are claimable or currently being claimed. See
1061         /// [`ClaimablePayments`]' individual field docs for more info.
1062         ///
1063         /// See `ChannelManager` struct-level documentation for lock order requirements.
1064         claimable_payments: Mutex<ClaimablePayments>,
1065
1066         /// The set of outbound SCID aliases across all our channels, including unconfirmed channels
1067         /// and some closed channels which reached a usable state prior to being closed. This is used
1068         /// only to avoid duplicates, and is not persisted explicitly to disk, but rebuilt from the
1069         /// active channel list on load.
1070         ///
1071         /// See `ChannelManager` struct-level documentation for lock order requirements.
1072         outbound_scid_aliases: Mutex<HashSet<u64>>,
1073
1074         /// `channel_id` -> `counterparty_node_id`.
1075         ///
1076         /// Only `channel_id`s are allowed as keys in this map, and not `temporary_channel_id`s. As
1077         /// multiple channels with the same `temporary_channel_id` to different peers can exist,
1078         /// allowing `temporary_channel_id`s in this map would cause collisions for such channels.
1079         ///
1080         /// Note that this map should only be used for `MonitorEvent` handling, to be able to access
1081         /// the corresponding channel for the event, as we only have access to the `channel_id` during
1082         /// the handling of the events.
1083         ///
1084         /// Note that no consistency guarantees are made about the existence of a peer with the
1085         /// `counterparty_node_id` in our other maps.
1086         ///
1087         /// TODO:
1088         /// The `counterparty_node_id` isn't passed with `MonitorEvent`s currently. To pass it, we need
1089         /// to make `counterparty_node_id`'s a required field in `ChannelMonitor`s, which unfortunately
1090         /// would break backwards compatability.
1091         /// We should add `counterparty_node_id`s to `MonitorEvent`s, and eventually rely on it in the
1092         /// future. That would make this map redundant, as only the `ChannelManager::per_peer_state` is
1093         /// required to access the channel with the `counterparty_node_id`.
1094         ///
1095         /// See `ChannelManager` struct-level documentation for lock order requirements.
1096         id_to_peer: Mutex<HashMap<[u8; 32], PublicKey>>,
1097
1098         /// SCIDs (and outbound SCID aliases) -> `counterparty_node_id`s and `channel_id`s.
1099         ///
1100         /// Outbound SCID aliases are added here once the channel is available for normal use, with
1101         /// SCIDs being added once the funding transaction is confirmed at the channel's required
1102         /// confirmation depth.
1103         ///
1104         /// Note that while this holds `counterparty_node_id`s and `channel_id`s, no consistency
1105         /// guarantees are made about the existence of a peer with the `counterparty_node_id` nor a
1106         /// channel with the `channel_id` in our other maps.
1107         ///
1108         /// See `ChannelManager` struct-level documentation for lock order requirements.
1109         #[cfg(test)]
1110         pub(super) short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, [u8; 32])>>,
1111         #[cfg(not(test))]
1112         short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, [u8; 32])>>,
1113
1114         our_network_pubkey: PublicKey,
1115
1116         inbound_payment_key: inbound_payment::ExpandedKey,
1117
1118         /// LDK puts the [fake scids] that it generates into namespaces, to identify the type of an
1119         /// incoming payment. To make it harder for a third-party to identify the type of a payment,
1120         /// we encrypt the namespace identifier using these bytes.
1121         ///
1122         /// [fake scids]: crate::util::scid_utils::fake_scid
1123         fake_scid_rand_bytes: [u8; 32],
1124
1125         /// When we send payment probes, we generate the [`PaymentHash`] based on this cookie secret
1126         /// and a random [`PaymentId`]. This allows us to discern probes from real payments, without
1127         /// keeping additional state.
1128         probing_cookie_secret: [u8; 32],
1129
1130         /// The highest block timestamp we've seen, which is usually a good guess at the current time.
1131         /// Assuming most miners are generating blocks with reasonable timestamps, this shouldn't be
1132         /// very far in the past, and can only ever be up to two hours in the future.
1133         highest_seen_timestamp: AtomicUsize,
1134
1135         /// The bulk of our storage. Currently the `per_peer_state` stores our channels on a per-peer
1136         /// basis, as well as the peer's latest features.
1137         ///
1138         /// If we are connected to a peer we always at least have an entry here, even if no channels
1139         /// are currently open with that peer.
1140         ///
1141         /// Because adding or removing an entry is rare, we usually take an outer read lock and then
1142         /// operate on the inner value freely. This opens up for parallel per-peer operation for
1143         /// channels.
1144         ///
1145         /// Note that the same thread must never acquire two inner `PeerState` locks at the same time.
1146         ///
1147         /// See `ChannelManager` struct-level documentation for lock order requirements.
1148         #[cfg(not(any(test, feature = "_test_utils")))]
1149         per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<SP>>>>,
1150         #[cfg(any(test, feature = "_test_utils"))]
1151         pub(super) per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<SP>>>>,
1152
1153         /// The set of events which we need to give to the user to handle. In some cases an event may
1154         /// require some further action after the user handles it (currently only blocking a monitor
1155         /// update from being handed to the user to ensure the included changes to the channel state
1156         /// are handled by the user before they're persisted durably to disk). In that case, the second
1157         /// element in the tuple is set to `Some` with further details of the action.
1158         ///
1159         /// Note that events MUST NOT be removed from pending_events after deserialization, as they
1160         /// could be in the middle of being processed without the direct mutex held.
1161         ///
1162         /// See `ChannelManager` struct-level documentation for lock order requirements.
1163         #[cfg(not(any(test, feature = "_test_utils")))]
1164         pending_events: Mutex<VecDeque<(events::Event, Option<EventCompletionAction>)>>,
1165         #[cfg(any(test, feature = "_test_utils"))]
1166         pub(crate) pending_events: Mutex<VecDeque<(events::Event, Option<EventCompletionAction>)>>,
1167
1168         /// A simple atomic flag to ensure only one task at a time can be processing events asynchronously.
1169         pending_events_processor: AtomicBool,
1170
1171         /// If we are running during init (either directly during the deserialization method or in
1172         /// block connection methods which run after deserialization but before normal operation) we
1173         /// cannot provide the user with [`ChannelMonitorUpdate`]s through the normal update flow -
1174         /// prior to normal operation the user may not have loaded the [`ChannelMonitor`]s into their
1175         /// [`ChainMonitor`] and thus attempting to update it will fail or panic.
1176         ///
1177         /// Thus, we place them here to be handled as soon as possible once we are running normally.
1178         ///
1179         /// See `ChannelManager` struct-level documentation for lock order requirements.
1180         ///
1181         /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
1182         pending_background_events: Mutex<Vec<BackgroundEvent>>,
1183         /// Used when we have to take a BIG lock to make sure everything is self-consistent.
1184         /// Essentially just when we're serializing ourselves out.
1185         /// Taken first everywhere where we are making changes before any other locks.
1186         /// When acquiring this lock in read mode, rather than acquiring it directly, call
1187         /// `PersistenceNotifierGuard::notify_on_drop(..)` and pass the lock to it, to ensure the
1188         /// Notifier the lock contains sends out a notification when the lock is released.
1189         total_consistency_lock: RwLock<()>,
1190
1191         background_events_processed_since_startup: AtomicBool,
1192
1193         persistence_notifier: Notifier,
1194
1195         entropy_source: ES,
1196         node_signer: NS,
1197         signer_provider: SP,
1198
1199         logger: L,
1200 }
1201
1202 /// Chain-related parameters used to construct a new `ChannelManager`.
1203 ///
1204 /// Typically, the block-specific parameters are derived from the best block hash for the network,
1205 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
1206 /// are not needed when deserializing a previously constructed `ChannelManager`.
1207 #[derive(Clone, Copy, PartialEq)]
1208 pub struct ChainParameters {
1209         /// The network for determining the `chain_hash` in Lightning messages.
1210         pub network: Network,
1211
1212         /// The hash and height of the latest block successfully connected.
1213         ///
1214         /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
1215         pub best_block: BestBlock,
1216 }
1217
1218 #[derive(Copy, Clone, PartialEq)]
1219 #[must_use]
1220 enum NotifyOption {
1221         DoPersist,
1222         SkipPersist,
1223 }
1224
1225 /// Whenever we release the `ChannelManager`'s `total_consistency_lock`, from read mode, it is
1226 /// desirable to notify any listeners on `await_persistable_update_timeout`/
1227 /// `await_persistable_update` when new updates are available for persistence. Therefore, this
1228 /// struct is responsible for locking the total consistency lock and, upon going out of scope,
1229 /// sending the aforementioned notification (since the lock being released indicates that the
1230 /// updates are ready for persistence).
1231 ///
1232 /// We allow callers to either always notify by constructing with `notify_on_drop` or choose to
1233 /// notify or not based on whether relevant changes have been made, providing a closure to
1234 /// `optionally_notify` which returns a `NotifyOption`.
1235 struct PersistenceNotifierGuard<'a, F: Fn() -> NotifyOption> {
1236         persistence_notifier: &'a Notifier,
1237         should_persist: F,
1238         // We hold onto this result so the lock doesn't get released immediately.
1239         _read_guard: RwLockReadGuard<'a, ()>,
1240 }
1241
1242 impl<'a> PersistenceNotifierGuard<'a, fn() -> NotifyOption> { // We don't care what the concrete F is here, it's unused
1243         fn notify_on_drop<C: AChannelManager>(cm: &'a C) -> PersistenceNotifierGuard<'a, impl Fn() -> NotifyOption> {
1244                 let read_guard = cm.get_cm().total_consistency_lock.read().unwrap();
1245                 let _ = cm.get_cm().process_background_events(); // We always persist
1246
1247                 PersistenceNotifierGuard {
1248                         persistence_notifier: &cm.get_cm().persistence_notifier,
1249                         should_persist: || -> NotifyOption { NotifyOption::DoPersist },
1250                         _read_guard: read_guard,
1251                 }
1252
1253         }
1254
1255         /// Note that if any [`ChannelMonitorUpdate`]s are possibly generated,
1256         /// [`ChannelManager::process_background_events`] MUST be called first.
1257         fn optionally_notify<F: Fn() -> NotifyOption>(lock: &'a RwLock<()>, notifier: &'a Notifier, persist_check: F) -> PersistenceNotifierGuard<'a, F> {
1258                 let read_guard = lock.read().unwrap();
1259
1260                 PersistenceNotifierGuard {
1261                         persistence_notifier: notifier,
1262                         should_persist: persist_check,
1263                         _read_guard: read_guard,
1264                 }
1265         }
1266 }
1267
1268 impl<'a, F: Fn() -> NotifyOption> Drop for PersistenceNotifierGuard<'a, F> {
1269         fn drop(&mut self) {
1270                 if (self.should_persist)() == NotifyOption::DoPersist {
1271                         self.persistence_notifier.notify();
1272                 }
1273         }
1274 }
1275
1276 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
1277 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
1278 ///
1279 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
1280 ///
1281 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
1282 pub const BREAKDOWN_TIMEOUT: u16 = 6 * 24;
1283 /// The amount of time in blocks we're willing to wait to claim money back to us. This matches
1284 /// the maximum required amount in lnd as of March 2021.
1285 pub(crate) const MAX_LOCAL_BREAKDOWN_TIMEOUT: u16 = 2 * 6 * 24 * 7;
1286
1287 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
1288 /// HTLC's CLTV. The current default represents roughly seven hours of blocks at six blocks/hour.
1289 ///
1290 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
1291 ///
1292 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
1293 // This should always be a few blocks greater than channelmonitor::CLTV_CLAIM_BUFFER,
1294 // i.e. the node we forwarded the payment on to should always have enough room to reliably time out
1295 // the HTLC via a full update_fail_htlc/commitment_signed dance before we hit the
1296 // CLTV_CLAIM_BUFFER point (we static assert that it's at least 3 blocks more).
1297 pub const MIN_CLTV_EXPIRY_DELTA: u16 = 6*7;
1298 // This should be long enough to allow a payment path drawn across multiple routing hops with substantial
1299 // `cltv_expiry_delta`. Indeed, the length of those values is the reaction delay offered to a routing node
1300 // in case of HTLC on-chain settlement. While appearing less competitive, a node operator could decide to
1301 // scale them up to suit its security policy. At the network-level, we shouldn't constrain them too much,
1302 // while avoiding to introduce a DoS vector. Further, a low CTLV_FAR_FAR_AWAY could be a source of
1303 // routing failure for any HTLC sender picking up an LDK node among the first hops.
1304 pub(super) const CLTV_FAR_FAR_AWAY: u32 = 14 * 24 * 6;
1305
1306 /// Minimum CLTV difference between the current block height and received inbound payments.
1307 /// Invoices generated for payment to us must set their `min_final_cltv_expiry_delta` field to at least
1308 /// this value.
1309 // Note that we fail if exactly HTLC_FAIL_BACK_BUFFER + 1 was used, so we need to add one for
1310 // any payments to succeed. Further, we don't want payments to fail if a block was found while
1311 // a payment was being routed, so we add an extra block to be safe.
1312 pub const MIN_FINAL_CLTV_EXPIRY_DELTA: u16 = HTLC_FAIL_BACK_BUFFER as u16 + 3;
1313
1314 // Check that our CLTV_EXPIRY is at least CLTV_CLAIM_BUFFER + ANTI_REORG_DELAY + LATENCY_GRACE_PERIOD_BLOCKS,
1315 // ie that if the next-hop peer fails the HTLC within
1316 // LATENCY_GRACE_PERIOD_BLOCKS then we'll still have CLTV_CLAIM_BUFFER left to timeout it onchain,
1317 // then waiting ANTI_REORG_DELAY to be reorg-safe on the outbound HLTC and
1318 // failing the corresponding htlc backward, and us now seeing the last block of ANTI_REORG_DELAY before
1319 // LATENCY_GRACE_PERIOD_BLOCKS.
1320 #[deny(const_err)]
1321 #[allow(dead_code)]
1322 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;
1323
1324 // Check for ability of an attacker to make us fail on-chain by delaying an HTLC claim. See
1325 // ChannelMonitor::should_broadcast_holder_commitment_txn for a description of why this is needed.
1326 #[deny(const_err)]
1327 #[allow(dead_code)]
1328 const CHECK_CLTV_EXPIRY_SANITY_2: u32 = MIN_CLTV_EXPIRY_DELTA as u32 - LATENCY_GRACE_PERIOD_BLOCKS - 2*CLTV_CLAIM_BUFFER;
1329
1330 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until expiry of incomplete MPPs
1331 pub(crate) const MPP_TIMEOUT_TICKS: u8 = 3;
1332
1333 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until we time-out the
1334 /// idempotency of payments by [`PaymentId`]. See
1335 /// [`OutboundPayments::remove_stale_resolved_payments`].
1336 pub(crate) const IDEMPOTENCY_TIMEOUT_TICKS: u8 = 7;
1337
1338 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is disconnected
1339 /// until we mark the channel disabled and gossip the update.
1340 pub(crate) const DISABLE_GOSSIP_TICKS: u8 = 10;
1341
1342 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is connected until
1343 /// we mark the channel enabled and gossip the update.
1344 pub(crate) const ENABLE_GOSSIP_TICKS: u8 = 5;
1345
1346 /// The maximum number of unfunded channels we can have per-peer before we start rejecting new
1347 /// (inbound) ones. The number of peers with unfunded channels is limited separately in
1348 /// [`MAX_UNFUNDED_CHANNEL_PEERS`].
1349 const MAX_UNFUNDED_CHANS_PER_PEER: usize = 4;
1350
1351 /// The maximum number of peers from which we will allow pending unfunded channels. Once we reach
1352 /// this many peers we reject new (inbound) channels from peers with which we don't have a channel.
1353 const MAX_UNFUNDED_CHANNEL_PEERS: usize = 50;
1354
1355 /// The maximum number of peers which we do not have a (funded) channel with. Once we reach this
1356 /// many peers we reject new (inbound) connections.
1357 const MAX_NO_CHANNEL_PEERS: usize = 250;
1358
1359 /// Information needed for constructing an invoice route hint for this channel.
1360 #[derive(Clone, Debug, PartialEq)]
1361 pub struct CounterpartyForwardingInfo {
1362         /// Base routing fee in millisatoshis.
1363         pub fee_base_msat: u32,
1364         /// Amount in millionths of a satoshi the channel will charge per transferred satoshi.
1365         pub fee_proportional_millionths: u32,
1366         /// The minimum difference in cltv_expiry between an ingoing HTLC and its outgoing counterpart,
1367         /// such that the outgoing HTLC is forwardable to this counterparty. See `msgs::ChannelUpdate`'s
1368         /// `cltv_expiry_delta` for more details.
1369         pub cltv_expiry_delta: u16,
1370 }
1371
1372 /// Channel parameters which apply to our counterparty. These are split out from [`ChannelDetails`]
1373 /// to better separate parameters.
1374 #[derive(Clone, Debug, PartialEq)]
1375 pub struct ChannelCounterparty {
1376         /// The node_id of our counterparty
1377         pub node_id: PublicKey,
1378         /// The Features the channel counterparty provided upon last connection.
1379         /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
1380         /// many routing-relevant features are present in the init context.
1381         pub features: InitFeatures,
1382         /// The value, in satoshis, that must always be held in the channel for our counterparty. This
1383         /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
1384         /// claiming at least this value on chain.
1385         ///
1386         /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
1387         ///
1388         /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
1389         pub unspendable_punishment_reserve: u64,
1390         /// Information on the fees and requirements that the counterparty requires when forwarding
1391         /// payments to us through this channel.
1392         pub forwarding_info: Option<CounterpartyForwardingInfo>,
1393         /// The smallest value HTLC (in msat) the remote peer will accept, for this channel. This field
1394         /// is only `None` before we have received either the `OpenChannel` or `AcceptChannel` message
1395         /// from the remote peer, or for `ChannelCounterparty` objects serialized prior to LDK 0.0.107.
1396         pub outbound_htlc_minimum_msat: Option<u64>,
1397         /// The largest value HTLC (in msat) the remote peer currently will accept, for this channel.
1398         pub outbound_htlc_maximum_msat: Option<u64>,
1399 }
1400
1401 /// Details of a channel, as returned by [`ChannelManager::list_channels`] and [`ChannelManager::list_usable_channels`]
1402 ///
1403 /// Balances of a channel are available through [`ChainMonitor::get_claimable_balances`] and
1404 /// [`ChannelMonitor::get_claimable_balances`], calculated with respect to the corresponding on-chain
1405 /// transactions.
1406 ///
1407 /// [`ChainMonitor::get_claimable_balances`]: crate::chain::chainmonitor::ChainMonitor::get_claimable_balances
1408 #[derive(Clone, Debug, PartialEq)]
1409 pub struct ChannelDetails {
1410         /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
1411         /// thereafter this is the txid of the funding transaction xor the funding transaction output).
1412         /// Note that this means this value is *not* persistent - it can change once during the
1413         /// lifetime of the channel.
1414         pub channel_id: [u8; 32],
1415         /// Parameters which apply to our counterparty. See individual fields for more information.
1416         pub counterparty: ChannelCounterparty,
1417         /// The Channel's funding transaction output, if we've negotiated the funding transaction with
1418         /// our counterparty already.
1419         ///
1420         /// Note that, if this has been set, `channel_id` will be equivalent to
1421         /// `funding_txo.unwrap().to_channel_id()`.
1422         pub funding_txo: Option<OutPoint>,
1423         /// The features which this channel operates with. See individual features for more info.
1424         ///
1425         /// `None` until negotiation completes and the channel type is finalized.
1426         pub channel_type: Option<ChannelTypeFeatures>,
1427         /// The position of the funding transaction in the chain. None if the funding transaction has
1428         /// not yet been confirmed and the channel fully opened.
1429         ///
1430         /// Note that if [`inbound_scid_alias`] is set, it must be used for invoices and inbound
1431         /// payments instead of this. See [`get_inbound_payment_scid`].
1432         ///
1433         /// For channels with [`confirmations_required`] set to `Some(0)`, [`outbound_scid_alias`] may
1434         /// be used in place of this in outbound routes. See [`get_outbound_payment_scid`].
1435         ///
1436         /// [`inbound_scid_alias`]: Self::inbound_scid_alias
1437         /// [`outbound_scid_alias`]: Self::outbound_scid_alias
1438         /// [`get_inbound_payment_scid`]: Self::get_inbound_payment_scid
1439         /// [`get_outbound_payment_scid`]: Self::get_outbound_payment_scid
1440         /// [`confirmations_required`]: Self::confirmations_required
1441         pub short_channel_id: Option<u64>,
1442         /// An optional [`short_channel_id`] alias for this channel, randomly generated by us and
1443         /// usable in place of [`short_channel_id`] to reference the channel in outbound routes when
1444         /// the channel has not yet been confirmed (as long as [`confirmations_required`] is
1445         /// `Some(0)`).
1446         ///
1447         /// This will be `None` as long as the channel is not available for routing outbound payments.
1448         ///
1449         /// [`short_channel_id`]: Self::short_channel_id
1450         /// [`confirmations_required`]: Self::confirmations_required
1451         pub outbound_scid_alias: Option<u64>,
1452         /// An optional [`short_channel_id`] alias for this channel, randomly generated by our
1453         /// counterparty and usable in place of [`short_channel_id`] in invoice route hints. Our
1454         /// counterparty will recognize the alias provided here in place of the [`short_channel_id`]
1455         /// when they see a payment to be routed to us.
1456         ///
1457         /// Our counterparty may choose to rotate this value at any time, though will always recognize
1458         /// previous values for inbound payment forwarding.
1459         ///
1460         /// [`short_channel_id`]: Self::short_channel_id
1461         pub inbound_scid_alias: Option<u64>,
1462         /// The value, in satoshis, of this channel as appears in the funding output
1463         pub channel_value_satoshis: u64,
1464         /// The value, in satoshis, that must always be held in the channel for us. This value ensures
1465         /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
1466         /// this value on chain.
1467         ///
1468         /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
1469         ///
1470         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1471         ///
1472         /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
1473         pub unspendable_punishment_reserve: Option<u64>,
1474         /// The `user_channel_id` value passed in to [`ChannelManager::create_channel`] for outbound
1475         /// channels, or to [`ChannelManager::accept_inbound_channel`] for inbound channels if
1476         /// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true. Otherwise
1477         /// `user_channel_id` will be randomized for an inbound channel.  This may be zero for objects
1478         /// serialized with LDK versions prior to 0.0.113.
1479         ///
1480         /// [`ChannelManager::create_channel`]: crate::ln::channelmanager::ChannelManager::create_channel
1481         /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
1482         /// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
1483         pub user_channel_id: u128,
1484         /// The currently negotiated fee rate denominated in satoshi per 1000 weight units,
1485         /// which is applied to commitment and HTLC transactions.
1486         ///
1487         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.115.
1488         pub feerate_sat_per_1000_weight: Option<u32>,
1489         /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
1490         /// any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1491         /// available for inclusion in new outbound HTLCs). This further does not include any pending
1492         /// outgoing HTLCs which are awaiting some other resolution to be sent.
1493         ///
1494         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1495         /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
1496         /// should be able to spend nearly this amount.
1497         pub outbound_capacity_msat: u64,
1498         /// The available outbound capacity for sending a single HTLC to the remote peer. This is
1499         /// similar to [`ChannelDetails::outbound_capacity_msat`] but it may be further restricted by
1500         /// the current state and per-HTLC limit(s). This is intended for use when routing, allowing us
1501         /// to use a limit as close as possible to the HTLC limit we can currently send.
1502         ///
1503         /// See also [`ChannelDetails::next_outbound_htlc_minimum_msat`] and
1504         /// [`ChannelDetails::outbound_capacity_msat`].
1505         pub next_outbound_htlc_limit_msat: u64,
1506         /// The minimum value for sending a single HTLC to the remote peer. This is the equivalent of
1507         /// [`ChannelDetails::next_outbound_htlc_limit_msat`] but represents a lower-bound, rather than
1508         /// an upper-bound. This is intended for use when routing, allowing us to ensure we pick a
1509         /// route which is valid.
1510         pub next_outbound_htlc_minimum_msat: u64,
1511         /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
1512         /// include any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1513         /// available for inclusion in new inbound HTLCs).
1514         /// Note that there are some corner cases not fully handled here, so the actual available
1515         /// inbound capacity may be slightly higher than this.
1516         ///
1517         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1518         /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
1519         /// However, our counterparty should be able to spend nearly this amount.
1520         pub inbound_capacity_msat: u64,
1521         /// The number of required confirmations on the funding transaction before the funding will be
1522         /// considered "locked". This number is selected by the channel fundee (i.e. us if
1523         /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
1524         /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
1525         /// [`ChannelHandshakeLimits::max_minimum_depth`].
1526         ///
1527         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1528         ///
1529         /// [`is_outbound`]: ChannelDetails::is_outbound
1530         /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
1531         /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
1532         pub confirmations_required: Option<u32>,
1533         /// The current number of confirmations on the funding transaction.
1534         ///
1535         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.113.
1536         pub confirmations: Option<u32>,
1537         /// The number of blocks (after our commitment transaction confirms) that we will need to wait
1538         /// until we can claim our funds after we force-close the channel. During this time our
1539         /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
1540         /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
1541         /// time to claim our non-HTLC-encumbered funds.
1542         ///
1543         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1544         pub force_close_spend_delay: Option<u16>,
1545         /// True if the channel was initiated (and thus funded) by us.
1546         pub is_outbound: bool,
1547         /// True if the channel is confirmed, channel_ready messages have been exchanged, and the
1548         /// channel is not currently being shut down. `channel_ready` message exchange implies the
1549         /// required confirmation count has been reached (and we were connected to the peer at some
1550         /// point after the funding transaction received enough confirmations). The required
1551         /// confirmation count is provided in [`confirmations_required`].
1552         ///
1553         /// [`confirmations_required`]: ChannelDetails::confirmations_required
1554         pub is_channel_ready: bool,
1555         /// The stage of the channel's shutdown.
1556         /// `None` for `ChannelDetails` serialized on LDK versions prior to 0.0.116.
1557         pub channel_shutdown_state: Option<ChannelShutdownState>,
1558         /// True if the channel is (a) confirmed and channel_ready messages have been exchanged, (b)
1559         /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
1560         ///
1561         /// This is a strict superset of `is_channel_ready`.
1562         pub is_usable: bool,
1563         /// True if this channel is (or will be) publicly-announced.
1564         pub is_public: bool,
1565         /// The smallest value HTLC (in msat) we will accept, for this channel. This field
1566         /// is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.107
1567         pub inbound_htlc_minimum_msat: Option<u64>,
1568         /// The largest value HTLC (in msat) we currently will accept, for this channel.
1569         pub inbound_htlc_maximum_msat: Option<u64>,
1570         /// Set of configurable parameters that affect channel operation.
1571         ///
1572         /// This field is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.109.
1573         pub config: Option<ChannelConfig>,
1574 }
1575
1576 impl ChannelDetails {
1577         /// Gets the current SCID which should be used to identify this channel for inbound payments.
1578         /// This should be used for providing invoice hints or in any other context where our
1579         /// counterparty will forward a payment to us.
1580         ///
1581         /// This is either the [`ChannelDetails::inbound_scid_alias`], if set, or the
1582         /// [`ChannelDetails::short_channel_id`]. See those for more information.
1583         pub fn get_inbound_payment_scid(&self) -> Option<u64> {
1584                 self.inbound_scid_alias.or(self.short_channel_id)
1585         }
1586
1587         /// Gets the current SCID which should be used to identify this channel for outbound payments.
1588         /// This should be used in [`Route`]s to describe the first hop or in other contexts where
1589         /// we're sending or forwarding a payment outbound over this channel.
1590         ///
1591         /// This is either the [`ChannelDetails::short_channel_id`], if set, or the
1592         /// [`ChannelDetails::outbound_scid_alias`]. See those for more information.
1593         pub fn get_outbound_payment_scid(&self) -> Option<u64> {
1594                 self.short_channel_id.or(self.outbound_scid_alias)
1595         }
1596
1597         fn from_channel_context<SP: Deref, F: Deref>(
1598                 context: &ChannelContext<SP>, best_block_height: u32, latest_features: InitFeatures,
1599                 fee_estimator: &LowerBoundedFeeEstimator<F>
1600         ) -> Self
1601         where
1602                 SP::Target: SignerProvider,
1603                 F::Target: FeeEstimator
1604         {
1605                 let balance = context.get_available_balances(fee_estimator);
1606                 let (to_remote_reserve_satoshis, to_self_reserve_satoshis) =
1607                         context.get_holder_counterparty_selected_channel_reserve_satoshis();
1608                 ChannelDetails {
1609                         channel_id: context.channel_id(),
1610                         counterparty: ChannelCounterparty {
1611                                 node_id: context.get_counterparty_node_id(),
1612                                 features: latest_features,
1613                                 unspendable_punishment_reserve: to_remote_reserve_satoshis,
1614                                 forwarding_info: context.counterparty_forwarding_info(),
1615                                 // Ensures that we have actually received the `htlc_minimum_msat` value
1616                                 // from the counterparty through the `OpenChannel` or `AcceptChannel`
1617                                 // message (as they are always the first message from the counterparty).
1618                                 // Else `Channel::get_counterparty_htlc_minimum_msat` could return the
1619                                 // default `0` value set by `Channel::new_outbound`.
1620                                 outbound_htlc_minimum_msat: if context.have_received_message() {
1621                                         Some(context.get_counterparty_htlc_minimum_msat()) } else { None },
1622                                 outbound_htlc_maximum_msat: context.get_counterparty_htlc_maximum_msat(),
1623                         },
1624                         funding_txo: context.get_funding_txo(),
1625                         // Note that accept_channel (or open_channel) is always the first message, so
1626                         // `have_received_message` indicates that type negotiation has completed.
1627                         channel_type: if context.have_received_message() { Some(context.get_channel_type().clone()) } else { None },
1628                         short_channel_id: context.get_short_channel_id(),
1629                         outbound_scid_alias: if context.is_usable() { Some(context.outbound_scid_alias()) } else { None },
1630                         inbound_scid_alias: context.latest_inbound_scid_alias(),
1631                         channel_value_satoshis: context.get_value_satoshis(),
1632                         feerate_sat_per_1000_weight: Some(context.get_feerate_sat_per_1000_weight()),
1633                         unspendable_punishment_reserve: to_self_reserve_satoshis,
1634                         inbound_capacity_msat: balance.inbound_capacity_msat,
1635                         outbound_capacity_msat: balance.outbound_capacity_msat,
1636                         next_outbound_htlc_limit_msat: balance.next_outbound_htlc_limit_msat,
1637                         next_outbound_htlc_minimum_msat: balance.next_outbound_htlc_minimum_msat,
1638                         user_channel_id: context.get_user_id(),
1639                         confirmations_required: context.minimum_depth(),
1640                         confirmations: Some(context.get_funding_tx_confirmations(best_block_height)),
1641                         force_close_spend_delay: context.get_counterparty_selected_contest_delay(),
1642                         is_outbound: context.is_outbound(),
1643                         is_channel_ready: context.is_usable(),
1644                         is_usable: context.is_live(),
1645                         is_public: context.should_announce(),
1646                         inbound_htlc_minimum_msat: Some(context.get_holder_htlc_minimum_msat()),
1647                         inbound_htlc_maximum_msat: context.get_holder_htlc_maximum_msat(),
1648                         config: Some(context.config()),
1649                         channel_shutdown_state: Some(context.shutdown_state()),
1650                 }
1651         }
1652 }
1653
1654 #[derive(Clone, Copy, Debug, PartialEq, Eq)]
1655 /// Further information on the details of the channel shutdown.
1656 /// Upon channels being forced closed (i.e. commitment transaction confirmation detected
1657 /// by `ChainMonitor`), ChannelShutdownState will be set to `ShutdownComplete` or
1658 /// the channel will be removed shortly.
1659 /// Also note, that in normal operation, peers could disconnect at any of these states
1660 /// and require peer re-connection before making progress onto other states
1661 pub enum ChannelShutdownState {
1662         /// Channel has not sent or received a shutdown message.
1663         NotShuttingDown,
1664         /// Local node has sent a shutdown message for this channel.
1665         ShutdownInitiated,
1666         /// Shutdown message exchanges have concluded and the channels are in the midst of
1667         /// resolving all existing open HTLCs before closing can continue.
1668         ResolvingHTLCs,
1669         /// All HTLCs have been resolved, nodes are currently negotiating channel close onchain fee rates.
1670         NegotiatingClosingFee,
1671         /// We've successfully negotiated a closing_signed dance. At this point `ChannelManager` is about
1672         /// to drop the channel.
1673         ShutdownComplete,
1674 }
1675
1676 /// Used by [`ChannelManager::list_recent_payments`] to express the status of recent payments.
1677 /// These include payments that have yet to find a successful path, or have unresolved HTLCs.
1678 #[derive(Debug, PartialEq)]
1679 pub enum RecentPaymentDetails {
1680         /// When a payment is still being sent and awaiting successful delivery.
1681         Pending {
1682                 /// Hash of the payment that is currently being sent but has yet to be fulfilled or
1683                 /// abandoned.
1684                 payment_hash: PaymentHash,
1685                 /// Total amount (in msat, excluding fees) across all paths for this payment,
1686                 /// not just the amount currently inflight.
1687                 total_msat: u64,
1688         },
1689         /// When a pending payment is fulfilled, we continue tracking it until all pending HTLCs have
1690         /// been resolved. Upon receiving [`Event::PaymentSent`], we delay for a few minutes before the
1691         /// payment is removed from tracking.
1692         Fulfilled {
1693                 /// Hash of the payment that was claimed. `None` for serializations of [`ChannelManager`]
1694                 /// made before LDK version 0.0.104.
1695                 payment_hash: Option<PaymentHash>,
1696         },
1697         /// After a payment's retries are exhausted per the provided [`Retry`], or it is explicitly
1698         /// abandoned via [`ChannelManager::abandon_payment`], it is marked as abandoned until all
1699         /// pending HTLCs for this payment resolve and an [`Event::PaymentFailed`] is generated.
1700         Abandoned {
1701                 /// Hash of the payment that we have given up trying to send.
1702                 payment_hash: PaymentHash,
1703         },
1704 }
1705
1706 /// Route hints used in constructing invoices for [phantom node payents].
1707 ///
1708 /// [phantom node payments]: crate::sign::PhantomKeysManager
1709 #[derive(Clone)]
1710 pub struct PhantomRouteHints {
1711         /// The list of channels to be included in the invoice route hints.
1712         pub channels: Vec<ChannelDetails>,
1713         /// A fake scid used for representing the phantom node's fake channel in generating the invoice
1714         /// route hints.
1715         pub phantom_scid: u64,
1716         /// The pubkey of the real backing node that would ultimately receive the payment.
1717         pub real_node_pubkey: PublicKey,
1718 }
1719
1720 macro_rules! handle_error {
1721         ($self: ident, $internal: expr, $counterparty_node_id: expr) => { {
1722                 // In testing, ensure there are no deadlocks where the lock is already held upon
1723                 // entering the macro.
1724                 debug_assert_ne!($self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
1725                 debug_assert_ne!($self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
1726
1727                 match $internal {
1728                         Ok(msg) => Ok(msg),
1729                         Err(MsgHandleErrInternal { err, chan_id, shutdown_finish, channel_capacity }) => {
1730                                 let mut msg_events = Vec::with_capacity(2);
1731
1732                                 if let Some((shutdown_res, update_option)) = shutdown_finish {
1733                                         $self.finish_force_close_channel(shutdown_res);
1734                                         if let Some(update) = update_option {
1735                                                 msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
1736                                                         msg: update
1737                                                 });
1738                                         }
1739                                         if let Some((channel_id, user_channel_id)) = chan_id {
1740                                                 $self.pending_events.lock().unwrap().push_back((events::Event::ChannelClosed {
1741                                                         channel_id, user_channel_id,
1742                                                         reason: ClosureReason::ProcessingError { err: err.err.clone() },
1743                                                         counterparty_node_id: Some($counterparty_node_id),
1744                                                         channel_capacity_sats: channel_capacity,
1745                                                 }, None));
1746                                         }
1747                                 }
1748
1749                                 log_error!($self.logger, "{}", err.err);
1750                                 if let msgs::ErrorAction::IgnoreError = err.action {
1751                                 } else {
1752                                         msg_events.push(events::MessageSendEvent::HandleError {
1753                                                 node_id: $counterparty_node_id,
1754                                                 action: err.action.clone()
1755                                         });
1756                                 }
1757
1758                                 if !msg_events.is_empty() {
1759                                         let per_peer_state = $self.per_peer_state.read().unwrap();
1760                                         if let Some(peer_state_mutex) = per_peer_state.get(&$counterparty_node_id) {
1761                                                 let mut peer_state = peer_state_mutex.lock().unwrap();
1762                                                 peer_state.pending_msg_events.append(&mut msg_events);
1763                                         }
1764                                 }
1765
1766                                 // Return error in case higher-API need one
1767                                 Err(err)
1768                         },
1769                 }
1770         } };
1771         ($self: ident, $internal: expr) => {
1772                 match $internal {
1773                         Ok(res) => Ok(res),
1774                         Err((chan, msg_handle_err)) => {
1775                                 let counterparty_node_id = chan.get_counterparty_node_id();
1776                                 handle_error!($self, Err(msg_handle_err), counterparty_node_id).map_err(|err| (chan, err))
1777                         },
1778                 }
1779         };
1780 }
1781
1782 macro_rules! update_maps_on_chan_removal {
1783         ($self: expr, $channel_context: expr) => {{
1784                 $self.id_to_peer.lock().unwrap().remove(&$channel_context.channel_id());
1785                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1786                 if let Some(short_id) = $channel_context.get_short_channel_id() {
1787                         short_to_chan_info.remove(&short_id);
1788                 } else {
1789                         // If the channel was never confirmed on-chain prior to its closure, remove the
1790                         // outbound SCID alias we used for it from the collision-prevention set. While we
1791                         // generally want to avoid ever re-using an outbound SCID alias across all channels, we
1792                         // also don't want a counterparty to be able to trivially cause a memory leak by simply
1793                         // opening a million channels with us which are closed before we ever reach the funding
1794                         // stage.
1795                         let alias_removed = $self.outbound_scid_aliases.lock().unwrap().remove(&$channel_context.outbound_scid_alias());
1796                         debug_assert!(alias_removed);
1797                 }
1798                 short_to_chan_info.remove(&$channel_context.outbound_scid_alias());
1799         }}
1800 }
1801
1802 /// Returns (boolean indicating if we should remove the Channel object from memory, a mapped error)
1803 macro_rules! convert_chan_err {
1804         ($self: ident, $err: expr, $channel: expr, $channel_id: expr) => {
1805                 match $err {
1806                         ChannelError::Warn(msg) => {
1807                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Warn(msg), $channel_id.clone()))
1808                         },
1809                         ChannelError::Ignore(msg) => {
1810                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore(msg), $channel_id.clone()))
1811                         },
1812                         ChannelError::Close(msg) => {
1813                                 log_error!($self.logger, "Closing channel {} due to close-required error: {}", log_bytes!($channel_id[..]), msg);
1814                                 update_maps_on_chan_removal!($self, &$channel.context);
1815                                 let shutdown_res = $channel.context.force_shutdown(true);
1816                                 (true, MsgHandleErrInternal::from_finish_shutdown(msg, *$channel_id, $channel.context.get_user_id(),
1817                                         shutdown_res, $self.get_channel_update_for_broadcast(&$channel).ok(), $channel.context.get_value_satoshis()))
1818                         },
1819                 }
1820         };
1821         ($self: ident, $err: expr, $channel_context: expr, $channel_id: expr, UNFUNDED) => {
1822                 match $err {
1823                         // We should only ever have `ChannelError::Close` when unfunded channels error.
1824                         // In any case, just close the channel.
1825                         ChannelError::Warn(msg) | ChannelError::Ignore(msg) | ChannelError::Close(msg) => {
1826                                 log_error!($self.logger, "Closing unfunded channel {} due to an error: {}", log_bytes!($channel_id[..]), msg);
1827                                 update_maps_on_chan_removal!($self, &$channel_context);
1828                                 let shutdown_res = $channel_context.force_shutdown(false);
1829                                 (true, MsgHandleErrInternal::from_finish_shutdown(msg, *$channel_id, $channel_context.get_user_id(),
1830                                         shutdown_res, None, $channel_context.get_value_satoshis()))
1831                         },
1832                 }
1833         }
1834 }
1835
1836 macro_rules! break_chan_entry {
1837         ($self: ident, $res: expr, $entry: expr) => {
1838                 match $res {
1839                         Ok(res) => res,
1840                         Err(e) => {
1841                                 let (drop, res) = convert_chan_err!($self, e, $entry.get_mut(), $entry.key());
1842                                 if drop {
1843                                         $entry.remove_entry();
1844                                 }
1845                                 break Err(res);
1846                         }
1847                 }
1848         }
1849 }
1850
1851 macro_rules! try_v1_outbound_chan_entry {
1852         ($self: ident, $res: expr, $entry: expr) => {
1853                 match $res {
1854                         Ok(res) => res,
1855                         Err(e) => {
1856                                 let (drop, res) = convert_chan_err!($self, e, $entry.get_mut().context, $entry.key(), UNFUNDED);
1857                                 if drop {
1858                                         $entry.remove_entry();
1859                                 }
1860                                 return Err(res);
1861                         }
1862                 }
1863         }
1864 }
1865
1866 macro_rules! try_chan_entry {
1867         ($self: ident, $res: expr, $entry: expr) => {
1868                 match $res {
1869                         Ok(res) => res,
1870                         Err(e) => {
1871                                 let (drop, res) = convert_chan_err!($self, e, $entry.get_mut(), $entry.key());
1872                                 if drop {
1873                                         $entry.remove_entry();
1874                                 }
1875                                 return Err(res);
1876                         }
1877                 }
1878         }
1879 }
1880
1881 macro_rules! remove_channel {
1882         ($self: expr, $entry: expr) => {
1883                 {
1884                         let channel = $entry.remove_entry().1;
1885                         update_maps_on_chan_removal!($self, &channel.context);
1886                         channel
1887                 }
1888         }
1889 }
1890
1891 macro_rules! send_channel_ready {
1892         ($self: ident, $pending_msg_events: expr, $channel: expr, $channel_ready_msg: expr) => {{
1893                 $pending_msg_events.push(events::MessageSendEvent::SendChannelReady {
1894                         node_id: $channel.context.get_counterparty_node_id(),
1895                         msg: $channel_ready_msg,
1896                 });
1897                 // Note that we may send a `channel_ready` multiple times for a channel if we reconnect, so
1898                 // we allow collisions, but we shouldn't ever be updating the channel ID pointed to.
1899                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1900                 let outbound_alias_insert = short_to_chan_info.insert($channel.context.outbound_scid_alias(), ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
1901                 assert!(outbound_alias_insert.is_none() || outbound_alias_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
1902                         "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1903                 if let Some(real_scid) = $channel.context.get_short_channel_id() {
1904                         let scid_insert = short_to_chan_info.insert(real_scid, ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
1905                         assert!(scid_insert.is_none() || scid_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
1906                                 "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1907                 }
1908         }}
1909 }
1910
1911 macro_rules! emit_channel_pending_event {
1912         ($locked_events: expr, $channel: expr) => {
1913                 if $channel.context.should_emit_channel_pending_event() {
1914                         $locked_events.push_back((events::Event::ChannelPending {
1915                                 channel_id: $channel.context.channel_id(),
1916                                 former_temporary_channel_id: $channel.context.temporary_channel_id(),
1917                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
1918                                 user_channel_id: $channel.context.get_user_id(),
1919                                 funding_txo: $channel.context.get_funding_txo().unwrap().into_bitcoin_outpoint(),
1920                         }, None));
1921                         $channel.context.set_channel_pending_event_emitted();
1922                 }
1923         }
1924 }
1925
1926 macro_rules! emit_channel_ready_event {
1927         ($locked_events: expr, $channel: expr) => {
1928                 if $channel.context.should_emit_channel_ready_event() {
1929                         debug_assert!($channel.context.channel_pending_event_emitted());
1930                         $locked_events.push_back((events::Event::ChannelReady {
1931                                 channel_id: $channel.context.channel_id(),
1932                                 user_channel_id: $channel.context.get_user_id(),
1933                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
1934                                 channel_type: $channel.context.get_channel_type().clone(),
1935                         }, None));
1936                         $channel.context.set_channel_ready_event_emitted();
1937                 }
1938         }
1939 }
1940
1941 macro_rules! handle_monitor_update_completion {
1942         ($self: ident, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr) => { {
1943                 let mut updates = $chan.monitor_updating_restored(&$self.logger,
1944                         &$self.node_signer, $self.genesis_hash, &$self.default_configuration,
1945                         $self.best_block.read().unwrap().height());
1946                 let counterparty_node_id = $chan.context.get_counterparty_node_id();
1947                 let channel_update = if updates.channel_ready.is_some() && $chan.context.is_usable() {
1948                         // We only send a channel_update in the case where we are just now sending a
1949                         // channel_ready and the channel is in a usable state. We may re-send a
1950                         // channel_update later through the announcement_signatures process for public
1951                         // channels, but there's no reason not to just inform our counterparty of our fees
1952                         // now.
1953                         if let Ok(msg) = $self.get_channel_update_for_unicast($chan) {
1954                                 Some(events::MessageSendEvent::SendChannelUpdate {
1955                                         node_id: counterparty_node_id,
1956                                         msg,
1957                                 })
1958                         } else { None }
1959                 } else { None };
1960
1961                 let update_actions = $peer_state.monitor_update_blocked_actions
1962                         .remove(&$chan.context.channel_id()).unwrap_or(Vec::new());
1963
1964                 let htlc_forwards = $self.handle_channel_resumption(
1965                         &mut $peer_state.pending_msg_events, $chan, updates.raa,
1966                         updates.commitment_update, updates.order, updates.accepted_htlcs,
1967                         updates.funding_broadcastable, updates.channel_ready,
1968                         updates.announcement_sigs);
1969                 if let Some(upd) = channel_update {
1970                         $peer_state.pending_msg_events.push(upd);
1971                 }
1972
1973                 let channel_id = $chan.context.channel_id();
1974                 core::mem::drop($peer_state_lock);
1975                 core::mem::drop($per_peer_state_lock);
1976
1977                 $self.handle_monitor_update_completion_actions(update_actions);
1978
1979                 if let Some(forwards) = htlc_forwards {
1980                         $self.forward_htlcs(&mut [forwards][..]);
1981                 }
1982                 $self.finalize_claims(updates.finalized_claimed_htlcs);
1983                 for failure in updates.failed_htlcs.drain(..) {
1984                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
1985                         $self.fail_htlc_backwards_internal(&failure.0, &failure.1, &failure.2, receiver);
1986                 }
1987         } }
1988 }
1989
1990 macro_rules! handle_new_monitor_update {
1991         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr, _internal, $remove: expr, $completed: expr) => { {
1992                 // update_maps_on_chan_removal needs to be able to take id_to_peer, so make sure we can in
1993                 // any case so that it won't deadlock.
1994                 debug_assert_ne!($self.id_to_peer.held_by_thread(), LockHeldState::HeldByThread);
1995                 debug_assert!($self.background_events_processed_since_startup.load(Ordering::Acquire));
1996                 match $update_res {
1997                         ChannelMonitorUpdateStatus::InProgress => {
1998                                 log_debug!($self.logger, "ChannelMonitor update for {} in flight, holding messages until the update completes.",
1999                                         log_bytes!($chan.context.channel_id()[..]));
2000                                 Ok(false)
2001                         },
2002                         ChannelMonitorUpdateStatus::PermanentFailure => {
2003                                 log_error!($self.logger, "Closing channel {} due to monitor update ChannelMonitorUpdateStatus::PermanentFailure",
2004                                         log_bytes!($chan.context.channel_id()[..]));
2005                                 update_maps_on_chan_removal!($self, &$chan.context);
2006                                 let res = Err(MsgHandleErrInternal::from_finish_shutdown(
2007                                         "ChannelMonitor storage failure".to_owned(), $chan.context.channel_id(),
2008                                         $chan.context.get_user_id(), $chan.context.force_shutdown(false),
2009                                         $self.get_channel_update_for_broadcast(&$chan).ok(), $chan.context.get_value_satoshis()));
2010                                 $remove;
2011                                 res
2012                         },
2013                         ChannelMonitorUpdateStatus::Completed => {
2014                                 $completed;
2015                                 Ok(true)
2016                         },
2017                 }
2018         } };
2019         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr, MANUALLY_REMOVING_INITIAL_MONITOR, $remove: expr) => {
2020                 handle_new_monitor_update!($self, $update_res, $peer_state_lock, $peer_state,
2021                         $per_peer_state_lock, $chan, _internal, $remove,
2022                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan))
2023         };
2024         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan_entry: expr, INITIAL_MONITOR) => {
2025                 handle_new_monitor_update!($self, $update_res, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan_entry.get_mut(), MANUALLY_REMOVING_INITIAL_MONITOR, $chan_entry.remove_entry())
2026         };
2027         ($self: ident, $funding_txo: expr, $update: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr, MANUALLY_REMOVING, $remove: expr) => { {
2028                 let in_flight_updates = $peer_state.in_flight_monitor_updates.entry($funding_txo)
2029                         .or_insert_with(Vec::new);
2030                 // During startup, we push monitor updates as background events through to here in
2031                 // order to replay updates that were in-flight when we shut down. Thus, we have to
2032                 // filter for uniqueness here.
2033                 let idx = in_flight_updates.iter().position(|upd| upd == &$update)
2034                         .unwrap_or_else(|| {
2035                                 in_flight_updates.push($update);
2036                                 in_flight_updates.len() - 1
2037                         });
2038                 let update_res = $self.chain_monitor.update_channel($funding_txo, &in_flight_updates[idx]);
2039                 handle_new_monitor_update!($self, update_res, $peer_state_lock, $peer_state,
2040                         $per_peer_state_lock, $chan, _internal, $remove,
2041                         {
2042                                 let _ = in_flight_updates.remove(idx);
2043                                 if in_flight_updates.is_empty() && $chan.blocked_monitor_updates_pending() == 0 {
2044                                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan);
2045                                 }
2046                         })
2047         } };
2048         ($self: ident, $funding_txo: expr, $update: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan_entry: expr) => {
2049                 handle_new_monitor_update!($self, $funding_txo, $update, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan_entry.get_mut(), MANUALLY_REMOVING, $chan_entry.remove_entry())
2050         }
2051 }
2052
2053 macro_rules! process_events_body {
2054         ($self: expr, $event_to_handle: expr, $handle_event: expr) => {
2055                 let mut processed_all_events = false;
2056                 while !processed_all_events {
2057                         if $self.pending_events_processor.compare_exchange(false, true, Ordering::Acquire, Ordering::Relaxed).is_err() {
2058                                 return;
2059                         }
2060
2061                         let mut result = NotifyOption::SkipPersist;
2062
2063                         {
2064                                 // We'll acquire our total consistency lock so that we can be sure no other
2065                                 // persists happen while processing monitor events.
2066                                 let _read_guard = $self.total_consistency_lock.read().unwrap();
2067
2068                                 // Because `handle_post_event_actions` may send `ChannelMonitorUpdate`s to the user we must
2069                                 // ensure any startup-generated background events are handled first.
2070                                 if $self.process_background_events() == NotifyOption::DoPersist { result = NotifyOption::DoPersist; }
2071
2072                                 // TODO: This behavior should be documented. It's unintuitive that we query
2073                                 // ChannelMonitors when clearing other events.
2074                                 if $self.process_pending_monitor_events() {
2075                                         result = NotifyOption::DoPersist;
2076                                 }
2077                         }
2078
2079                         let pending_events = $self.pending_events.lock().unwrap().clone();
2080                         let num_events = pending_events.len();
2081                         if !pending_events.is_empty() {
2082                                 result = NotifyOption::DoPersist;
2083                         }
2084
2085                         let mut post_event_actions = Vec::new();
2086
2087                         for (event, action_opt) in pending_events {
2088                                 $event_to_handle = event;
2089                                 $handle_event;
2090                                 if let Some(action) = action_opt {
2091                                         post_event_actions.push(action);
2092                                 }
2093                         }
2094
2095                         {
2096                                 let mut pending_events = $self.pending_events.lock().unwrap();
2097                                 pending_events.drain(..num_events);
2098                                 processed_all_events = pending_events.is_empty();
2099                                 // Note that `push_pending_forwards_ev` relies on `pending_events_processor` being
2100                                 // updated here with the `pending_events` lock acquired.
2101                                 $self.pending_events_processor.store(false, Ordering::Release);
2102                         }
2103
2104                         if !post_event_actions.is_empty() {
2105                                 $self.handle_post_event_actions(post_event_actions);
2106                                 // If we had some actions, go around again as we may have more events now
2107                                 processed_all_events = false;
2108                         }
2109
2110                         if result == NotifyOption::DoPersist {
2111                                 $self.persistence_notifier.notify();
2112                         }
2113                 }
2114         }
2115 }
2116
2117 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>
2118 where
2119         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
2120         T::Target: BroadcasterInterface,
2121         ES::Target: EntropySource,
2122         NS::Target: NodeSigner,
2123         SP::Target: SignerProvider,
2124         F::Target: FeeEstimator,
2125         R::Target: Router,
2126         L::Target: Logger,
2127 {
2128         /// Constructs a new `ChannelManager` to hold several channels and route between them.
2129         ///
2130         /// The current time or latest block header time can be provided as the `current_timestamp`.
2131         ///
2132         /// This is the main "logic hub" for all channel-related actions, and implements
2133         /// [`ChannelMessageHandler`].
2134         ///
2135         /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
2136         ///
2137         /// Users need to notify the new `ChannelManager` when a new block is connected or
2138         /// disconnected using its [`block_connected`] and [`block_disconnected`] methods, starting
2139         /// from after [`params.best_block.block_hash`]. See [`chain::Listen`] and [`chain::Confirm`] for
2140         /// more details.
2141         ///
2142         /// [`block_connected`]: chain::Listen::block_connected
2143         /// [`block_disconnected`]: chain::Listen::block_disconnected
2144         /// [`params.best_block.block_hash`]: chain::BestBlock::block_hash
2145         pub fn new(
2146                 fee_est: F, chain_monitor: M, tx_broadcaster: T, router: R, logger: L, entropy_source: ES,
2147                 node_signer: NS, signer_provider: SP, config: UserConfig, params: ChainParameters,
2148                 current_timestamp: u32,
2149         ) -> Self {
2150                 let mut secp_ctx = Secp256k1::new();
2151                 secp_ctx.seeded_randomize(&entropy_source.get_secure_random_bytes());
2152                 let inbound_pmt_key_material = node_signer.get_inbound_payment_key_material();
2153                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
2154                 ChannelManager {
2155                         default_configuration: config.clone(),
2156                         genesis_hash: genesis_block(params.network).header.block_hash(),
2157                         fee_estimator: LowerBoundedFeeEstimator::new(fee_est),
2158                         chain_monitor,
2159                         tx_broadcaster,
2160                         router,
2161
2162                         best_block: RwLock::new(params.best_block),
2163
2164                         outbound_scid_aliases: Mutex::new(HashSet::new()),
2165                         pending_inbound_payments: Mutex::new(HashMap::new()),
2166                         pending_outbound_payments: OutboundPayments::new(),
2167                         forward_htlcs: Mutex::new(HashMap::new()),
2168                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments: HashMap::new(), pending_claiming_payments: HashMap::new() }),
2169                         pending_intercepted_htlcs: Mutex::new(HashMap::new()),
2170                         id_to_peer: Mutex::new(HashMap::new()),
2171                         short_to_chan_info: FairRwLock::new(HashMap::new()),
2172
2173                         our_network_pubkey: node_signer.get_node_id(Recipient::Node).unwrap(),
2174                         secp_ctx,
2175
2176                         inbound_payment_key: expanded_inbound_key,
2177                         fake_scid_rand_bytes: entropy_source.get_secure_random_bytes(),
2178
2179                         probing_cookie_secret: entropy_source.get_secure_random_bytes(),
2180
2181                         highest_seen_timestamp: AtomicUsize::new(current_timestamp as usize),
2182
2183                         per_peer_state: FairRwLock::new(HashMap::new()),
2184
2185                         pending_events: Mutex::new(VecDeque::new()),
2186                         pending_events_processor: AtomicBool::new(false),
2187                         pending_background_events: Mutex::new(Vec::new()),
2188                         total_consistency_lock: RwLock::new(()),
2189                         background_events_processed_since_startup: AtomicBool::new(false),
2190                         persistence_notifier: Notifier::new(),
2191
2192                         entropy_source,
2193                         node_signer,
2194                         signer_provider,
2195
2196                         logger,
2197                 }
2198         }
2199
2200         /// Gets the current configuration applied to all new channels.
2201         pub fn get_current_default_configuration(&self) -> &UserConfig {
2202                 &self.default_configuration
2203         }
2204
2205         fn create_and_insert_outbound_scid_alias(&self) -> u64 {
2206                 let height = self.best_block.read().unwrap().height();
2207                 let mut outbound_scid_alias = 0;
2208                 let mut i = 0;
2209                 loop {
2210                         if cfg!(fuzzing) { // fuzzing chacha20 doesn't use the key at all so we always get the same alias
2211                                 outbound_scid_alias += 1;
2212                         } else {
2213                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias.get_fake_scid(height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
2214                         }
2215                         if outbound_scid_alias != 0 && self.outbound_scid_aliases.lock().unwrap().insert(outbound_scid_alias) {
2216                                 break;
2217                         }
2218                         i += 1;
2219                         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"); }
2220                 }
2221                 outbound_scid_alias
2222         }
2223
2224         /// Creates a new outbound channel to the given remote node and with the given value.
2225         ///
2226         /// `user_channel_id` will be provided back as in
2227         /// [`Event::FundingGenerationReady::user_channel_id`] to allow tracking of which events
2228         /// correspond with which `create_channel` call. Note that the `user_channel_id` defaults to a
2229         /// randomized value for inbound channels. `user_channel_id` has no meaning inside of LDK, it
2230         /// is simply copied to events and otherwise ignored.
2231         ///
2232         /// Raises [`APIError::APIMisuseError`] when `channel_value_satoshis` > 2**24 or `push_msat` is
2233         /// greater than `channel_value_satoshis * 1k` or `channel_value_satoshis < 1000`.
2234         ///
2235         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be opened due to failing to
2236         /// generate a shutdown scriptpubkey or destination script set by
2237         /// [`SignerProvider::get_shutdown_scriptpubkey`] or [`SignerProvider::get_destination_script`].
2238         ///
2239         /// Note that we do not check if you are currently connected to the given peer. If no
2240         /// connection is available, the outbound `open_channel` message may fail to send, resulting in
2241         /// the channel eventually being silently forgotten (dropped on reload).
2242         ///
2243         /// Returns the new Channel's temporary `channel_id`. This ID will appear as
2244         /// [`Event::FundingGenerationReady::temporary_channel_id`] and in
2245         /// [`ChannelDetails::channel_id`] until after
2246         /// [`ChannelManager::funding_transaction_generated`] is called, swapping the Channel's ID for
2247         /// one derived from the funding transaction's TXID. If the counterparty rejects the channel
2248         /// immediately, this temporary ID will appear in [`Event::ChannelClosed::channel_id`].
2249         ///
2250         /// [`Event::FundingGenerationReady::user_channel_id`]: events::Event::FundingGenerationReady::user_channel_id
2251         /// [`Event::FundingGenerationReady::temporary_channel_id`]: events::Event::FundingGenerationReady::temporary_channel_id
2252         /// [`Event::ChannelClosed::channel_id`]: events::Event::ChannelClosed::channel_id
2253         pub fn create_channel(&self, their_network_key: PublicKey, channel_value_satoshis: u64, push_msat: u64, user_channel_id: u128, override_config: Option<UserConfig>) -> Result<[u8; 32], APIError> {
2254                 if channel_value_satoshis < 1000 {
2255                         return Err(APIError::APIMisuseError { err: format!("Channel value must be at least 1000 satoshis. It was {}", channel_value_satoshis) });
2256                 }
2257
2258                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2259                 // We want to make sure the lock is actually acquired by PersistenceNotifierGuard.
2260                 debug_assert!(&self.total_consistency_lock.try_write().is_err());
2261
2262                 let per_peer_state = self.per_peer_state.read().unwrap();
2263
2264                 let peer_state_mutex = per_peer_state.get(&their_network_key)
2265                         .ok_or_else(|| APIError::APIMisuseError{ err: format!("Not connected to node: {}", their_network_key) })?;
2266
2267                 let mut peer_state = peer_state_mutex.lock().unwrap();
2268                 let channel = {
2269                         let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
2270                         let their_features = &peer_state.latest_features;
2271                         let config = if override_config.is_some() { override_config.as_ref().unwrap() } else { &self.default_configuration };
2272                         match OutboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider, their_network_key,
2273                                 their_features, channel_value_satoshis, push_msat, user_channel_id, config,
2274                                 self.best_block.read().unwrap().height(), outbound_scid_alias)
2275                         {
2276                                 Ok(res) => res,
2277                                 Err(e) => {
2278                                         self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
2279                                         return Err(e);
2280                                 },
2281                         }
2282                 };
2283                 let res = channel.get_open_channel(self.genesis_hash.clone());
2284
2285                 let temporary_channel_id = channel.context.channel_id();
2286                 match peer_state.outbound_v1_channel_by_id.entry(temporary_channel_id) {
2287                         hash_map::Entry::Occupied(_) => {
2288                                 if cfg!(fuzzing) {
2289                                         return Err(APIError::APIMisuseError { err: "Fuzzy bad RNG".to_owned() });
2290                                 } else {
2291                                         panic!("RNG is bad???");
2292                                 }
2293                         },
2294                         hash_map::Entry::Vacant(entry) => { entry.insert(channel); }
2295                 }
2296
2297                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
2298                         node_id: their_network_key,
2299                         msg: res,
2300                 });
2301                 Ok(temporary_channel_id)
2302         }
2303
2304         fn list_funded_channels_with_filter<Fn: FnMut(&(&[u8; 32], &Channel<SP>)) -> bool + Copy>(&self, f: Fn) -> Vec<ChannelDetails> {
2305                 // Allocate our best estimate of the number of channels we have in the `res`
2306                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2307                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2308                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2309                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2310                 // the same channel.
2311                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2312                 {
2313                         let best_block_height = self.best_block.read().unwrap().height();
2314                         let per_peer_state = self.per_peer_state.read().unwrap();
2315                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2316                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2317                                 let peer_state = &mut *peer_state_lock;
2318                                 // Only `Channels` in the channel_by_id map can be considered funded.
2319                                 for (_channel_id, channel) in peer_state.channel_by_id.iter().filter(f) {
2320                                         let details = ChannelDetails::from_channel_context(&channel.context, best_block_height,
2321                                                 peer_state.latest_features.clone(), &self.fee_estimator);
2322                                         res.push(details);
2323                                 }
2324                         }
2325                 }
2326                 res
2327         }
2328
2329         /// Gets the list of open channels, in random order. See [`ChannelDetails`] field documentation for
2330         /// more information.
2331         pub fn list_channels(&self) -> Vec<ChannelDetails> {
2332                 // Allocate our best estimate of the number of channels we have in the `res`
2333                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2334                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2335                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2336                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2337                 // the same channel.
2338                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2339                 {
2340                         let best_block_height = self.best_block.read().unwrap().height();
2341                         let per_peer_state = self.per_peer_state.read().unwrap();
2342                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2343                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2344                                 let peer_state = &mut *peer_state_lock;
2345                                 for (_channel_id, channel) in peer_state.channel_by_id.iter() {
2346                                         let details = ChannelDetails::from_channel_context(&channel.context, best_block_height,
2347                                                 peer_state.latest_features.clone(), &self.fee_estimator);
2348                                         res.push(details);
2349                                 }
2350                                 for (_channel_id, channel) in peer_state.inbound_v1_channel_by_id.iter() {
2351                                         let details = ChannelDetails::from_channel_context(&channel.context, best_block_height,
2352                                                 peer_state.latest_features.clone(), &self.fee_estimator);
2353                                         res.push(details);
2354                                 }
2355                                 for (_channel_id, channel) in peer_state.outbound_v1_channel_by_id.iter() {
2356                                         let details = ChannelDetails::from_channel_context(&channel.context, best_block_height,
2357                                                 peer_state.latest_features.clone(), &self.fee_estimator);
2358                                         res.push(details);
2359                                 }
2360                         }
2361                 }
2362                 res
2363         }
2364
2365         /// Gets the list of usable channels, in random order. Useful as an argument to
2366         /// [`Router::find_route`] to ensure non-announced channels are used.
2367         ///
2368         /// These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
2369         /// documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
2370         /// are.
2371         pub fn list_usable_channels(&self) -> Vec<ChannelDetails> {
2372                 // Note we use is_live here instead of usable which leads to somewhat confused
2373                 // internal/external nomenclature, but that's ok cause that's probably what the user
2374                 // really wanted anyway.
2375                 self.list_funded_channels_with_filter(|&(_, ref channel)| channel.context.is_live())
2376         }
2377
2378         /// Gets the list of channels we have with a given counterparty, in random order.
2379         pub fn list_channels_with_counterparty(&self, counterparty_node_id: &PublicKey) -> Vec<ChannelDetails> {
2380                 let best_block_height = self.best_block.read().unwrap().height();
2381                 let per_peer_state = self.per_peer_state.read().unwrap();
2382
2383                 if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
2384                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2385                         let peer_state = &mut *peer_state_lock;
2386                         let features = &peer_state.latest_features;
2387                         let chan_context_to_details = |context| {
2388                                 ChannelDetails::from_channel_context(context, best_block_height, features.clone(), &self.fee_estimator)
2389                         };
2390                         return peer_state.channel_by_id
2391                                 .iter()
2392                                 .map(|(_, channel)| &channel.context)
2393                                 .chain(peer_state.outbound_v1_channel_by_id.iter().map(|(_, channel)| &channel.context))
2394                                 .chain(peer_state.inbound_v1_channel_by_id.iter().map(|(_, channel)| &channel.context))
2395                                 .map(chan_context_to_details)
2396                                 .collect();
2397                 }
2398                 vec![]
2399         }
2400
2401         /// Returns in an undefined order recent payments that -- if not fulfilled -- have yet to find a
2402         /// successful path, or have unresolved HTLCs.
2403         ///
2404         /// This can be useful for payments that may have been prepared, but ultimately not sent, as a
2405         /// result of a crash. If such a payment exists, is not listed here, and an
2406         /// [`Event::PaymentSent`] has not been received, you may consider resending the payment.
2407         ///
2408         /// [`Event::PaymentSent`]: events::Event::PaymentSent
2409         pub fn list_recent_payments(&self) -> Vec<RecentPaymentDetails> {
2410                 self.pending_outbound_payments.pending_outbound_payments.lock().unwrap().iter()
2411                         .filter_map(|(_, pending_outbound_payment)| match pending_outbound_payment {
2412                                 PendingOutboundPayment::Retryable { payment_hash, total_msat, .. } => {
2413                                         Some(RecentPaymentDetails::Pending {
2414                                                 payment_hash: *payment_hash,
2415                                                 total_msat: *total_msat,
2416                                         })
2417                                 },
2418                                 PendingOutboundPayment::Abandoned { payment_hash, .. } => {
2419                                         Some(RecentPaymentDetails::Abandoned { payment_hash: *payment_hash })
2420                                 },
2421                                 PendingOutboundPayment::Fulfilled { payment_hash, .. } => {
2422                                         Some(RecentPaymentDetails::Fulfilled { payment_hash: *payment_hash })
2423                                 },
2424                                 PendingOutboundPayment::Legacy { .. } => None
2425                         })
2426                         .collect()
2427         }
2428
2429         /// Helper function that issues the channel close events
2430         fn issue_channel_close_events(&self, context: &ChannelContext<SP>, closure_reason: ClosureReason) {
2431                 let mut pending_events_lock = self.pending_events.lock().unwrap();
2432                 match context.unbroadcasted_funding() {
2433                         Some(transaction) => {
2434                                 pending_events_lock.push_back((events::Event::DiscardFunding {
2435                                         channel_id: context.channel_id(), transaction
2436                                 }, None));
2437                         },
2438                         None => {},
2439                 }
2440                 pending_events_lock.push_back((events::Event::ChannelClosed {
2441                         channel_id: context.channel_id(),
2442                         user_channel_id: context.get_user_id(),
2443                         reason: closure_reason,
2444                         counterparty_node_id: Some(context.get_counterparty_node_id()),
2445                         channel_capacity_sats: Some(context.get_value_satoshis()),
2446                 }, None));
2447         }
2448
2449         fn close_channel_internal(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey, target_feerate_sats_per_1000_weight: Option<u32>, override_shutdown_script: Option<ShutdownScript>) -> Result<(), APIError> {
2450                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2451
2452                 let mut failed_htlcs: Vec<(HTLCSource, PaymentHash)>;
2453                 let result: Result<(), _> = loop {
2454                         {
2455                                 let per_peer_state = self.per_peer_state.read().unwrap();
2456
2457                                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
2458                                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
2459
2460                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2461                                 let peer_state = &mut *peer_state_lock;
2462
2463                                 match peer_state.channel_by_id.entry(channel_id.clone()) {
2464                                         hash_map::Entry::Occupied(mut chan_entry) => {
2465                                                 let funding_txo_opt = chan_entry.get().context.get_funding_txo();
2466                                                 let their_features = &peer_state.latest_features;
2467                                                 let (shutdown_msg, mut monitor_update_opt, htlcs) = chan_entry.get_mut()
2468                                                         .get_shutdown(&self.signer_provider, their_features, target_feerate_sats_per_1000_weight, override_shutdown_script)?;
2469                                                 failed_htlcs = htlcs;
2470
2471                                                 // We can send the `shutdown` message before updating the `ChannelMonitor`
2472                                                 // here as we don't need the monitor update to complete until we send a
2473                                                 // `shutdown_signed`, which we'll delay if we're pending a monitor update.
2474                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
2475                                                         node_id: *counterparty_node_id,
2476                                                         msg: shutdown_msg,
2477                                                 });
2478
2479                                                 // Update the monitor with the shutdown script if necessary.
2480                                                 if let Some(monitor_update) = monitor_update_opt.take() {
2481                                                         break handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
2482                                                                 peer_state_lock, peer_state, per_peer_state, chan_entry).map(|_| ());
2483                                                 }
2484
2485                                                 if chan_entry.get().is_shutdown() {
2486                                                         let channel = remove_channel!(self, chan_entry);
2487                                                         if let Ok(channel_update) = self.get_channel_update_for_broadcast(&channel) {
2488                                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2489                                                                         msg: channel_update
2490                                                                 });
2491                                                         }
2492                                                         self.issue_channel_close_events(&channel.context, ClosureReason::HolderForceClosed);
2493                                                 }
2494                                                 break Ok(());
2495                                         },
2496                                         hash_map::Entry::Vacant(_) => (),
2497                                 }
2498                         }
2499                         // If we reach this point, it means that the channel_id either refers to an unfunded channel or
2500                         // it does not exist for this peer. Either way, we can attempt to force-close it.
2501                         //
2502                         // An appropriate error will be returned for non-existence of the channel if that's the case.
2503                         return self.force_close_channel_with_peer(&channel_id, counterparty_node_id, None, false).map(|_| ())
2504                         // TODO(dunxen): This is still not ideal as we're doing some extra lookups.
2505                         // Fix this with https://github.com/lightningdevkit/rust-lightning/issues/2422
2506                 };
2507
2508                 for htlc_source in failed_htlcs.drain(..) {
2509                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2510                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(*counterparty_node_id), channel_id: *channel_id };
2511                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
2512                 }
2513
2514                 let _ = handle_error!(self, result, *counterparty_node_id);
2515                 Ok(())
2516         }
2517
2518         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2519         /// will be accepted on the given channel, and after additional timeout/the closing of all
2520         /// pending HTLCs, the channel will be closed on chain.
2521         ///
2522         ///  * If we are the channel initiator, we will pay between our [`Background`] and
2523         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2524         ///    estimate.
2525         ///  * If our counterparty is the channel initiator, we will require a channel closing
2526         ///    transaction feerate of at least our [`Background`] feerate or the feerate which
2527         ///    would appear on a force-closure transaction, whichever is lower. We will allow our
2528         ///    counterparty to pay as much fee as they'd like, however.
2529         ///
2530         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2531         ///
2532         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2533         /// generate a shutdown scriptpubkey or destination script set by
2534         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2535         /// channel.
2536         ///
2537         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2538         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2539         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2540         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2541         pub fn close_channel(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey) -> Result<(), APIError> {
2542                 self.close_channel_internal(channel_id, counterparty_node_id, None, None)
2543         }
2544
2545         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2546         /// will be accepted on the given channel, and after additional timeout/the closing of all
2547         /// pending HTLCs, the channel will be closed on chain.
2548         ///
2549         /// `target_feerate_sat_per_1000_weight` has different meanings depending on if we initiated
2550         /// the channel being closed or not:
2551         ///  * If we are the channel initiator, we will pay at least this feerate on the closing
2552         ///    transaction. The upper-bound is set by
2553         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2554         ///    estimate (or `target_feerate_sat_per_1000_weight`, if it is greater).
2555         ///  * If our counterparty is the channel initiator, we will refuse to accept a channel closure
2556         ///    transaction feerate below `target_feerate_sat_per_1000_weight` (or the feerate which
2557         ///    will appear on a force-closure transaction, whichever is lower).
2558         ///
2559         /// The `shutdown_script` provided  will be used as the `scriptPubKey` for the closing transaction.
2560         /// Will fail if a shutdown script has already been set for this channel by
2561         /// ['ChannelHandshakeConfig::commit_upfront_shutdown_pubkey`]. The given shutdown script must
2562         /// also be compatible with our and the counterparty's features.
2563         ///
2564         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2565         ///
2566         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2567         /// generate a shutdown scriptpubkey or destination script set by
2568         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2569         /// channel.
2570         ///
2571         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2572         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2573         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2574         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2575         pub fn close_channel_with_feerate_and_script(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey, target_feerate_sats_per_1000_weight: Option<u32>, shutdown_script: Option<ShutdownScript>) -> Result<(), APIError> {
2576                 self.close_channel_internal(channel_id, counterparty_node_id, target_feerate_sats_per_1000_weight, shutdown_script)
2577         }
2578
2579         #[inline]
2580         fn finish_force_close_channel(&self, shutdown_res: ShutdownResult) {
2581                 let (monitor_update_option, mut failed_htlcs) = shutdown_res;
2582                 log_debug!(self.logger, "Finishing force-closure of channel with {} HTLCs to fail", failed_htlcs.len());
2583                 for htlc_source in failed_htlcs.drain(..) {
2584                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
2585                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2586                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2587                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
2588                 }
2589                 if let Some((_, funding_txo, monitor_update)) = monitor_update_option {
2590                         // There isn't anything we can do if we get an update failure - we're already
2591                         // force-closing. The monitor update on the required in-memory copy should broadcast
2592                         // the latest local state, which is the best we can do anyway. Thus, it is safe to
2593                         // ignore the result here.
2594                         let _ = self.chain_monitor.update_channel(funding_txo, &monitor_update);
2595                 }
2596         }
2597
2598         /// `peer_msg` should be set when we receive a message from a peer, but not set when the
2599         /// user closes, which will be re-exposed as the `ChannelClosed` reason.
2600         fn force_close_channel_with_peer(&self, channel_id: &[u8; 32], peer_node_id: &PublicKey, peer_msg: Option<&String>, broadcast: bool)
2601         -> Result<PublicKey, APIError> {
2602                 let per_peer_state = self.per_peer_state.read().unwrap();
2603                 let peer_state_mutex = per_peer_state.get(peer_node_id)
2604                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", peer_node_id) })?;
2605                 let (update_opt, counterparty_node_id) = {
2606                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2607                         let peer_state = &mut *peer_state_lock;
2608                         let closure_reason = if let Some(peer_msg) = peer_msg {
2609                                 ClosureReason::CounterpartyForceClosed { peer_msg: UntrustedString(peer_msg.to_string()) }
2610                         } else {
2611                                 ClosureReason::HolderForceClosed
2612                         };
2613                         if let hash_map::Entry::Occupied(chan) = peer_state.channel_by_id.entry(channel_id.clone()) {
2614                                 log_error!(self.logger, "Force-closing channel {}", log_bytes!(channel_id[..]));
2615                                 self.issue_channel_close_events(&chan.get().context, closure_reason);
2616                                 let mut chan = remove_channel!(self, chan);
2617                                 self.finish_force_close_channel(chan.context.force_shutdown(broadcast));
2618                                 (self.get_channel_update_for_broadcast(&chan).ok(), chan.context.get_counterparty_node_id())
2619                         } else if let hash_map::Entry::Occupied(chan) = peer_state.outbound_v1_channel_by_id.entry(channel_id.clone()) {
2620                                 log_error!(self.logger, "Force-closing channel {}", log_bytes!(channel_id[..]));
2621                                 self.issue_channel_close_events(&chan.get().context, closure_reason);
2622                                 let mut chan = remove_channel!(self, chan);
2623                                 self.finish_force_close_channel(chan.context.force_shutdown(false));
2624                                 // Unfunded channel has no update
2625                                 (None, chan.context.get_counterparty_node_id())
2626                         } else if let hash_map::Entry::Occupied(chan) = peer_state.inbound_v1_channel_by_id.entry(channel_id.clone()) {
2627                                 log_error!(self.logger, "Force-closing channel {}", log_bytes!(channel_id[..]));
2628                                 self.issue_channel_close_events(&chan.get().context, closure_reason);
2629                                 let mut chan = remove_channel!(self, chan);
2630                                 self.finish_force_close_channel(chan.context.force_shutdown(false));
2631                                 // Unfunded channel has no update
2632                                 (None, chan.context.get_counterparty_node_id())
2633                         } else if peer_state.inbound_channel_request_by_id.remove(channel_id).is_some() {
2634                                 log_error!(self.logger, "Force-closing channel {}", log_bytes!(channel_id[..]));
2635                                 // N.B. that we don't send any channel close event here: we
2636                                 // don't have a user_channel_id, and we never sent any opening
2637                                 // events anyway.
2638                                 (None, *peer_node_id)
2639                         } else {
2640                                 return Err(APIError::ChannelUnavailable{ err: format!("Channel with id {} not found for the passed counterparty node_id {}", log_bytes!(*channel_id), peer_node_id) });
2641                         }
2642                 };
2643                 if let Some(update) = update_opt {
2644                         let mut peer_state = peer_state_mutex.lock().unwrap();
2645                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2646                                 msg: update
2647                         });
2648                 }
2649
2650                 Ok(counterparty_node_id)
2651         }
2652
2653         fn force_close_sending_error(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey, broadcast: bool) -> Result<(), APIError> {
2654                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2655                 match self.force_close_channel_with_peer(channel_id, counterparty_node_id, None, broadcast) {
2656                         Ok(counterparty_node_id) => {
2657                                 let per_peer_state = self.per_peer_state.read().unwrap();
2658                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2659                                         let mut peer_state = peer_state_mutex.lock().unwrap();
2660                                         peer_state.pending_msg_events.push(
2661                                                 events::MessageSendEvent::HandleError {
2662                                                         node_id: counterparty_node_id,
2663                                                         action: msgs::ErrorAction::SendErrorMessage {
2664                                                                 msg: msgs::ErrorMessage { channel_id: *channel_id, data: "Channel force-closed".to_owned() }
2665                                                         },
2666                                                 }
2667                                         );
2668                                 }
2669                                 Ok(())
2670                         },
2671                         Err(e) => Err(e)
2672                 }
2673         }
2674
2675         /// Force closes a channel, immediately broadcasting the latest local transaction(s) and
2676         /// rejecting new HTLCs on the given channel. Fails if `channel_id` is unknown to
2677         /// the manager, or if the `counterparty_node_id` isn't the counterparty of the corresponding
2678         /// channel.
2679         pub fn force_close_broadcasting_latest_txn(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey)
2680         -> Result<(), APIError> {
2681                 self.force_close_sending_error(channel_id, counterparty_node_id, true)
2682         }
2683
2684         /// Force closes a channel, rejecting new HTLCs on the given channel but skips broadcasting
2685         /// the latest local transaction(s). Fails if `channel_id` is unknown to the manager, or if the
2686         /// `counterparty_node_id` isn't the counterparty of the corresponding channel.
2687         ///
2688         /// You can always get the latest local transaction(s) to broadcast from
2689         /// [`ChannelMonitor::get_latest_holder_commitment_txn`].
2690         pub fn force_close_without_broadcasting_txn(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey)
2691         -> Result<(), APIError> {
2692                 self.force_close_sending_error(channel_id, counterparty_node_id, false)
2693         }
2694
2695         /// Force close all channels, immediately broadcasting the latest local commitment transaction
2696         /// for each to the chain and rejecting new HTLCs on each.
2697         pub fn force_close_all_channels_broadcasting_latest_txn(&self) {
2698                 for chan in self.list_channels() {
2699                         let _ = self.force_close_broadcasting_latest_txn(&chan.channel_id, &chan.counterparty.node_id);
2700                 }
2701         }
2702
2703         /// Force close all channels rejecting new HTLCs on each but without broadcasting the latest
2704         /// local transaction(s).
2705         pub fn force_close_all_channels_without_broadcasting_txn(&self) {
2706                 for chan in self.list_channels() {
2707                         let _ = self.force_close_without_broadcasting_txn(&chan.channel_id, &chan.counterparty.node_id);
2708                 }
2709         }
2710
2711         fn construct_fwd_pending_htlc_info(
2712                 &self, msg: &msgs::UpdateAddHTLC, hop_data: msgs::InboundOnionPayload, hop_hmac: [u8; 32],
2713                 new_packet_bytes: [u8; onion_utils::ONION_DATA_LEN], shared_secret: [u8; 32],
2714                 next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>
2715         ) -> Result<PendingHTLCInfo, InboundOnionErr> {
2716                 debug_assert!(next_packet_pubkey_opt.is_some());
2717                 let outgoing_packet = msgs::OnionPacket {
2718                         version: 0,
2719                         public_key: next_packet_pubkey_opt.unwrap_or(Err(secp256k1::Error::InvalidPublicKey)),
2720                         hop_data: new_packet_bytes,
2721                         hmac: hop_hmac,
2722                 };
2723
2724                 let (short_channel_id, amt_to_forward, outgoing_cltv_value) = match hop_data {
2725                         msgs::InboundOnionPayload::Forward { short_channel_id, amt_to_forward, outgoing_cltv_value } =>
2726                                 (short_channel_id, amt_to_forward, outgoing_cltv_value),
2727                         msgs::InboundOnionPayload::Receive { .. } =>
2728                                 return Err(InboundOnionErr {
2729                                         msg: "Final Node OnionHopData provided for us as an intermediary node",
2730                                         err_code: 0x4000 | 22,
2731                                         err_data: Vec::new(),
2732                                 }),
2733                 };
2734
2735                 Ok(PendingHTLCInfo {
2736                         routing: PendingHTLCRouting::Forward {
2737                                 onion_packet: outgoing_packet,
2738                                 short_channel_id,
2739                         },
2740                         payment_hash: msg.payment_hash,
2741                         incoming_shared_secret: shared_secret,
2742                         incoming_amt_msat: Some(msg.amount_msat),
2743                         outgoing_amt_msat: amt_to_forward,
2744                         outgoing_cltv_value,
2745                         skimmed_fee_msat: None,
2746                 })
2747         }
2748
2749         fn construct_recv_pending_htlc_info(
2750                 &self, hop_data: msgs::InboundOnionPayload, shared_secret: [u8; 32], payment_hash: PaymentHash,
2751                 amt_msat: u64, cltv_expiry: u32, phantom_shared_secret: Option<[u8; 32]>, allow_underpay: bool,
2752                 counterparty_skimmed_fee_msat: Option<u64>,
2753         ) -> Result<PendingHTLCInfo, InboundOnionErr> {
2754                 let (payment_data, keysend_preimage, custom_tlvs, onion_amt_msat, outgoing_cltv_value, payment_metadata) = match hop_data {
2755                         msgs::InboundOnionPayload::Receive {
2756                                 payment_data, keysend_preimage, custom_tlvs, amt_msat, outgoing_cltv_value, payment_metadata, ..
2757                         } =>
2758                                 (payment_data, keysend_preimage, custom_tlvs, amt_msat, outgoing_cltv_value, payment_metadata),
2759                         _ =>
2760                                 return Err(InboundOnionErr {
2761                                         err_code: 0x4000|22,
2762                                         err_data: Vec::new(),
2763                                         msg: "Got non final data with an HMAC of 0",
2764                                 }),
2765                 };
2766                 // final_incorrect_cltv_expiry
2767                 if outgoing_cltv_value > cltv_expiry {
2768                         return Err(InboundOnionErr {
2769                                 msg: "Upstream node set CLTV to less than the CLTV set by the sender",
2770                                 err_code: 18,
2771                                 err_data: cltv_expiry.to_be_bytes().to_vec()
2772                         })
2773                 }
2774                 // final_expiry_too_soon
2775                 // We have to have some headroom to broadcast on chain if we have the preimage, so make sure
2776                 // we have at least HTLC_FAIL_BACK_BUFFER blocks to go.
2777                 //
2778                 // Also, ensure that, in the case of an unknown preimage for the received payment hash, our
2779                 // payment logic has enough time to fail the HTLC backward before our onchain logic triggers a
2780                 // channel closure (see HTLC_FAIL_BACK_BUFFER rationale).
2781                 let current_height: u32 = self.best_block.read().unwrap().height();
2782                 if (outgoing_cltv_value as u64) <= current_height as u64 + HTLC_FAIL_BACK_BUFFER as u64 + 1 {
2783                         let mut err_data = Vec::with_capacity(12);
2784                         err_data.extend_from_slice(&amt_msat.to_be_bytes());
2785                         err_data.extend_from_slice(&current_height.to_be_bytes());
2786                         return Err(InboundOnionErr {
2787                                 err_code: 0x4000 | 15, err_data,
2788                                 msg: "The final CLTV expiry is too soon to handle",
2789                         });
2790                 }
2791                 if (!allow_underpay && onion_amt_msat > amt_msat) ||
2792                         (allow_underpay && onion_amt_msat >
2793                          amt_msat.saturating_add(counterparty_skimmed_fee_msat.unwrap_or(0)))
2794                 {
2795                         return Err(InboundOnionErr {
2796                                 err_code: 19,
2797                                 err_data: amt_msat.to_be_bytes().to_vec(),
2798                                 msg: "Upstream node sent less than we were supposed to receive in payment",
2799                         });
2800                 }
2801
2802                 let routing = if let Some(payment_preimage) = keysend_preimage {
2803                         // We need to check that the sender knows the keysend preimage before processing this
2804                         // payment further. Otherwise, an intermediary routing hop forwarding non-keysend-HTLC X
2805                         // could discover the final destination of X, by probing the adjacent nodes on the route
2806                         // with a keysend payment of identical payment hash to X and observing the processing
2807                         // time discrepancies due to a hash collision with X.
2808                         let hashed_preimage = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
2809                         if hashed_preimage != payment_hash {
2810                                 return Err(InboundOnionErr {
2811                                         err_code: 0x4000|22,
2812                                         err_data: Vec::new(),
2813                                         msg: "Payment preimage didn't match payment hash",
2814                                 });
2815                         }
2816                         if !self.default_configuration.accept_mpp_keysend && payment_data.is_some() {
2817                                 return Err(InboundOnionErr {
2818                                         err_code: 0x4000|22,
2819                                         err_data: Vec::new(),
2820                                         msg: "We don't support MPP keysend payments",
2821                                 });
2822                         }
2823                         PendingHTLCRouting::ReceiveKeysend {
2824                                 payment_data,
2825                                 payment_preimage,
2826                                 payment_metadata,
2827                                 incoming_cltv_expiry: outgoing_cltv_value,
2828                                 custom_tlvs,
2829                         }
2830                 } else if let Some(data) = payment_data {
2831                         PendingHTLCRouting::Receive {
2832                                 payment_data: data,
2833                                 payment_metadata,
2834                                 incoming_cltv_expiry: outgoing_cltv_value,
2835                                 phantom_shared_secret,
2836                                 custom_tlvs,
2837                         }
2838                 } else {
2839                         return Err(InboundOnionErr {
2840                                 err_code: 0x4000|0x2000|3,
2841                                 err_data: Vec::new(),
2842                                 msg: "We require payment_secrets",
2843                         });
2844                 };
2845                 Ok(PendingHTLCInfo {
2846                         routing,
2847                         payment_hash,
2848                         incoming_shared_secret: shared_secret,
2849                         incoming_amt_msat: Some(amt_msat),
2850                         outgoing_amt_msat: onion_amt_msat,
2851                         outgoing_cltv_value,
2852                         skimmed_fee_msat: counterparty_skimmed_fee_msat,
2853                 })
2854         }
2855
2856         fn decode_update_add_htlc_onion(
2857                 &self, msg: &msgs::UpdateAddHTLC
2858         ) -> Result<(onion_utils::Hop, [u8; 32], Option<Result<PublicKey, secp256k1::Error>>), HTLCFailureMsg> {
2859                 macro_rules! return_malformed_err {
2860                         ($msg: expr, $err_code: expr) => {
2861                                 {
2862                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2863                                         return Err(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
2864                                                 channel_id: msg.channel_id,
2865                                                 htlc_id: msg.htlc_id,
2866                                                 sha256_of_onion: Sha256::hash(&msg.onion_routing_packet.hop_data).into_inner(),
2867                                                 failure_code: $err_code,
2868                                         }));
2869                                 }
2870                         }
2871                 }
2872
2873                 if let Err(_) = msg.onion_routing_packet.public_key {
2874                         return_malformed_err!("invalid ephemeral pubkey", 0x8000 | 0x4000 | 6);
2875                 }
2876
2877                 let shared_secret = self.node_signer.ecdh(
2878                         Recipient::Node, &msg.onion_routing_packet.public_key.unwrap(), None
2879                 ).unwrap().secret_bytes();
2880
2881                 if msg.onion_routing_packet.version != 0 {
2882                         //TODO: Spec doesn't indicate if we should only hash hop_data here (and in other
2883                         //sha256_of_onion error data packets), or the entire onion_routing_packet. Either way,
2884                         //the hash doesn't really serve any purpose - in the case of hashing all data, the
2885                         //receiving node would have to brute force to figure out which version was put in the
2886                         //packet by the node that send us the message, in the case of hashing the hop_data, the
2887                         //node knows the HMAC matched, so they already know what is there...
2888                         return_malformed_err!("Unknown onion packet version", 0x8000 | 0x4000 | 4);
2889                 }
2890                 macro_rules! return_err {
2891                         ($msg: expr, $err_code: expr, $data: expr) => {
2892                                 {
2893                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2894                                         return Err(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
2895                                                 channel_id: msg.channel_id,
2896                                                 htlc_id: msg.htlc_id,
2897                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
2898                                                         .get_encrypted_failure_packet(&shared_secret, &None),
2899                                         }));
2900                                 }
2901                         }
2902                 }
2903
2904                 let next_hop = match onion_utils::decode_next_payment_hop(shared_secret, &msg.onion_routing_packet.hop_data[..], msg.onion_routing_packet.hmac, msg.payment_hash) {
2905                         Ok(res) => res,
2906                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
2907                                 return_malformed_err!(err_msg, err_code);
2908                         },
2909                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
2910                                 return_err!(err_msg, err_code, &[0; 0]);
2911                         },
2912                 };
2913                 let (outgoing_scid, outgoing_amt_msat, outgoing_cltv_value, next_packet_pk_opt) = match next_hop {
2914                         onion_utils::Hop::Forward {
2915                                 next_hop_data: msgs::InboundOnionPayload::Forward {
2916                                         short_channel_id, amt_to_forward, outgoing_cltv_value
2917                                 }, ..
2918                         } => {
2919                                 let next_packet_pk = onion_utils::next_hop_pubkey(&self.secp_ctx,
2920                                         msg.onion_routing_packet.public_key.unwrap(), &shared_secret);
2921                                 (short_channel_id, amt_to_forward, outgoing_cltv_value, Some(next_packet_pk))
2922                         },
2923                         // We'll do receive checks in [`Self::construct_pending_htlc_info`] so we have access to the
2924                         // inbound channel's state.
2925                         onion_utils::Hop::Receive { .. } => return Ok((next_hop, shared_secret, None)),
2926                         onion_utils::Hop::Forward { next_hop_data: msgs::InboundOnionPayload::Receive { .. }, .. } => {
2927                                 return_err!("Final Node OnionHopData provided for us as an intermediary node", 0x4000 | 22, &[0; 0]);
2928                         }
2929                 };
2930
2931                 // Perform outbound checks here instead of in [`Self::construct_pending_htlc_info`] because we
2932                 // can't hold the outbound peer state lock at the same time as the inbound peer state lock.
2933                 if let Some((err, mut code, chan_update)) = loop {
2934                         let id_option = self.short_to_chan_info.read().unwrap().get(&outgoing_scid).cloned();
2935                         let forwarding_chan_info_opt = match id_option {
2936                                 None => { // unknown_next_peer
2937                                         // Note that this is likely a timing oracle for detecting whether an scid is a
2938                                         // phantom or an intercept.
2939                                         if (self.default_configuration.accept_intercept_htlcs &&
2940                                                 fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, outgoing_scid, &self.genesis_hash)) ||
2941                                                 fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, outgoing_scid, &self.genesis_hash)
2942                                         {
2943                                                 None
2944                                         } else {
2945                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2946                                         }
2947                                 },
2948                                 Some((cp_id, id)) => Some((cp_id.clone(), id.clone())),
2949                         };
2950                         let chan_update_opt = if let Some((counterparty_node_id, forwarding_id)) = forwarding_chan_info_opt {
2951                                 let per_peer_state = self.per_peer_state.read().unwrap();
2952                                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
2953                                 if peer_state_mutex_opt.is_none() {
2954                                         break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2955                                 }
2956                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
2957                                 let peer_state = &mut *peer_state_lock;
2958                                 let chan = match peer_state.channel_by_id.get_mut(&forwarding_id) {
2959                                         None => {
2960                                                 // Channel was removed. The short_to_chan_info and channel_by_id maps
2961                                                 // have no consistency guarantees.
2962                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2963                                         },
2964                                         Some(chan) => chan
2965                                 };
2966                                 if !chan.context.should_announce() && !self.default_configuration.accept_forwards_to_priv_channels {
2967                                         // Note that the behavior here should be identical to the above block - we
2968                                         // should NOT reveal the existence or non-existence of a private channel if
2969                                         // we don't allow forwards outbound over them.
2970                                         break Some(("Refusing to forward to a private channel based on our config.", 0x4000 | 10, None));
2971                                 }
2972                                 if chan.context.get_channel_type().supports_scid_privacy() && outgoing_scid != chan.context.outbound_scid_alias() {
2973                                         // `option_scid_alias` (referred to in LDK as `scid_privacy`) means
2974                                         // "refuse to forward unless the SCID alias was used", so we pretend
2975                                         // we don't have the channel here.
2976                                         break Some(("Refusing to forward over real channel SCID as our counterparty requested.", 0x4000 | 10, None));
2977                                 }
2978                                 let chan_update_opt = self.get_channel_update_for_onion(outgoing_scid, chan).ok();
2979
2980                                 // Note that we could technically not return an error yet here and just hope
2981                                 // that the connection is reestablished or monitor updated by the time we get
2982                                 // around to doing the actual forward, but better to fail early if we can and
2983                                 // hopefully an attacker trying to path-trace payments cannot make this occur
2984                                 // on a small/per-node/per-channel scale.
2985                                 if !chan.context.is_live() { // channel_disabled
2986                                         // If the channel_update we're going to return is disabled (i.e. the
2987                                         // peer has been disabled for some time), return `channel_disabled`,
2988                                         // otherwise return `temporary_channel_failure`.
2989                                         if chan_update_opt.as_ref().map(|u| u.contents.flags & 2 == 2).unwrap_or(false) {
2990                                                 break Some(("Forwarding channel has been disconnected for some time.", 0x1000 | 20, chan_update_opt));
2991                                         } else {
2992                                                 break Some(("Forwarding channel is not in a ready state.", 0x1000 | 7, chan_update_opt));
2993                                         }
2994                                 }
2995                                 if outgoing_amt_msat < chan.context.get_counterparty_htlc_minimum_msat() { // amount_below_minimum
2996                                         break Some(("HTLC amount was below the htlc_minimum_msat", 0x1000 | 11, chan_update_opt));
2997                                 }
2998                                 if let Err((err, code)) = chan.htlc_satisfies_config(&msg, outgoing_amt_msat, outgoing_cltv_value) {
2999                                         break Some((err, code, chan_update_opt));
3000                                 }
3001                                 chan_update_opt
3002                         } else {
3003                                 if (msg.cltv_expiry as u64) < (outgoing_cltv_value) as u64 + MIN_CLTV_EXPIRY_DELTA as u64 {
3004                                         // We really should set `incorrect_cltv_expiry` here but as we're not
3005                                         // forwarding over a real channel we can't generate a channel_update
3006                                         // for it. Instead we just return a generic temporary_node_failure.
3007                                         break Some((
3008                                                         "Forwarding node has tampered with the intended HTLC values or origin node has an obsolete cltv_expiry_delta",
3009                                                         0x2000 | 2, None,
3010                                         ));
3011                                 }
3012                                 None
3013                         };
3014
3015                         let cur_height = self.best_block.read().unwrap().height() + 1;
3016                         // Theoretically, channel counterparty shouldn't send us a HTLC expiring now,
3017                         // but we want to be robust wrt to counterparty packet sanitization (see
3018                         // HTLC_FAIL_BACK_BUFFER rationale).
3019                         if msg.cltv_expiry <= cur_height + HTLC_FAIL_BACK_BUFFER as u32 { // expiry_too_soon
3020                                 break Some(("CLTV expiry is too close", 0x1000 | 14, chan_update_opt));
3021                         }
3022                         if msg.cltv_expiry > cur_height + CLTV_FAR_FAR_AWAY as u32 { // expiry_too_far
3023                                 break Some(("CLTV expiry is too far in the future", 21, None));
3024                         }
3025                         // If the HTLC expires ~now, don't bother trying to forward it to our
3026                         // counterparty. They should fail it anyway, but we don't want to bother with
3027                         // the round-trips or risk them deciding they definitely want the HTLC and
3028                         // force-closing to ensure they get it if we're offline.
3029                         // We previously had a much more aggressive check here which tried to ensure
3030                         // our counterparty receives an HTLC which has *our* risk threshold met on it,
3031                         // but there is no need to do that, and since we're a bit conservative with our
3032                         // risk threshold it just results in failing to forward payments.
3033                         if (outgoing_cltv_value) as u64 <= (cur_height + LATENCY_GRACE_PERIOD_BLOCKS) as u64 {
3034                                 break Some(("Outgoing CLTV value is too soon", 0x1000 | 14, chan_update_opt));
3035                         }
3036
3037                         break None;
3038                 }
3039                 {
3040                         let mut res = VecWriter(Vec::with_capacity(chan_update.serialized_length() + 2 + 8 + 2));
3041                         if let Some(chan_update) = chan_update {
3042                                 if code == 0x1000 | 11 || code == 0x1000 | 12 {
3043                                         msg.amount_msat.write(&mut res).expect("Writes cannot fail");
3044                                 }
3045                                 else if code == 0x1000 | 13 {
3046                                         msg.cltv_expiry.write(&mut res).expect("Writes cannot fail");
3047                                 }
3048                                 else if code == 0x1000 | 20 {
3049                                         // TODO: underspecified, follow https://github.com/lightning/bolts/issues/791
3050                                         0u16.write(&mut res).expect("Writes cannot fail");
3051                                 }
3052                                 (chan_update.serialized_length() as u16 + 2).write(&mut res).expect("Writes cannot fail");
3053                                 msgs::ChannelUpdate::TYPE.write(&mut res).expect("Writes cannot fail");
3054                                 chan_update.write(&mut res).expect("Writes cannot fail");
3055                         } else if code & 0x1000 == 0x1000 {
3056                                 // If we're trying to return an error that requires a `channel_update` but
3057                                 // we're forwarding to a phantom or intercept "channel" (i.e. cannot
3058                                 // generate an update), just use the generic "temporary_node_failure"
3059                                 // instead.
3060                                 code = 0x2000 | 2;
3061                         }
3062                         return_err!(err, code, &res.0[..]);
3063                 }
3064                 Ok((next_hop, shared_secret, next_packet_pk_opt))
3065         }
3066
3067         fn construct_pending_htlc_status<'a>(
3068                 &self, msg: &msgs::UpdateAddHTLC, shared_secret: [u8; 32], decoded_hop: onion_utils::Hop,
3069                 allow_underpay: bool, next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>
3070         ) -> PendingHTLCStatus {
3071                 macro_rules! return_err {
3072                         ($msg: expr, $err_code: expr, $data: expr) => {
3073                                 {
3074                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3075                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
3076                                                 channel_id: msg.channel_id,
3077                                                 htlc_id: msg.htlc_id,
3078                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
3079                                                         .get_encrypted_failure_packet(&shared_secret, &None),
3080                                         }));
3081                                 }
3082                         }
3083                 }
3084                 match decoded_hop {
3085                         onion_utils::Hop::Receive(next_hop_data) => {
3086                                 // OUR PAYMENT!
3087                                 match self.construct_recv_pending_htlc_info(next_hop_data, shared_secret, msg.payment_hash,
3088                                         msg.amount_msat, msg.cltv_expiry, None, allow_underpay, msg.skimmed_fee_msat)
3089                                 {
3090                                         Ok(info) => {
3091                                                 // Note that we could obviously respond immediately with an update_fulfill_htlc
3092                                                 // message, however that would leak that we are the recipient of this payment, so
3093                                                 // instead we stay symmetric with the forwarding case, only responding (after a
3094                                                 // delay) once they've send us a commitment_signed!
3095                                                 PendingHTLCStatus::Forward(info)
3096                                         },
3097                                         Err(InboundOnionErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3098                                 }
3099                         },
3100                         onion_utils::Hop::Forward { next_hop_data, next_hop_hmac, new_packet_bytes } => {
3101                                 match self.construct_fwd_pending_htlc_info(msg, next_hop_data, next_hop_hmac,
3102                                         new_packet_bytes, shared_secret, next_packet_pubkey_opt) {
3103                                         Ok(info) => PendingHTLCStatus::Forward(info),
3104                                         Err(InboundOnionErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3105                                 }
3106                         }
3107                 }
3108         }
3109
3110         /// Gets the current [`channel_update`] for the given channel. This first checks if the channel is
3111         /// public, and thus should be called whenever the result is going to be passed out in a
3112         /// [`MessageSendEvent::BroadcastChannelUpdate`] event.
3113         ///
3114         /// Note that in [`internal_closing_signed`], this function is called without the `peer_state`
3115         /// corresponding to the channel's counterparty locked, as the channel been removed from the
3116         /// storage and the `peer_state` lock has been dropped.
3117         ///
3118         /// [`channel_update`]: msgs::ChannelUpdate
3119         /// [`internal_closing_signed`]: Self::internal_closing_signed
3120         fn get_channel_update_for_broadcast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3121                 if !chan.context.should_announce() {
3122                         return Err(LightningError {
3123                                 err: "Cannot broadcast a channel_update for a private channel".to_owned(),
3124                                 action: msgs::ErrorAction::IgnoreError
3125                         });
3126                 }
3127                 if chan.context.get_short_channel_id().is_none() {
3128                         return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError});
3129                 }
3130                 log_trace!(self.logger, "Attempting to generate broadcast channel update for channel {}", log_bytes!(chan.context.channel_id()));
3131                 self.get_channel_update_for_unicast(chan)
3132         }
3133
3134         /// Gets the current [`channel_update`] for the given channel. This does not check if the channel
3135         /// is public (only returning an `Err` if the channel does not yet have an assigned SCID),
3136         /// and thus MUST NOT be called unless the recipient of the resulting message has already
3137         /// provided evidence that they know about the existence of the channel.
3138         ///
3139         /// Note that through [`internal_closing_signed`], this function is called without the
3140         /// `peer_state`  corresponding to the channel's counterparty locked, as the channel been
3141         /// removed from the storage and the `peer_state` lock has been dropped.
3142         ///
3143         /// [`channel_update`]: msgs::ChannelUpdate
3144         /// [`internal_closing_signed`]: Self::internal_closing_signed
3145         fn get_channel_update_for_unicast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3146                 log_trace!(self.logger, "Attempting to generate channel update for channel {}", log_bytes!(chan.context.channel_id()));
3147                 let short_channel_id = match chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias()) {
3148                         None => return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError}),
3149                         Some(id) => id,
3150                 };
3151
3152                 self.get_channel_update_for_onion(short_channel_id, chan)
3153         }
3154
3155         fn get_channel_update_for_onion(&self, short_channel_id: u64, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3156                 log_trace!(self.logger, "Generating channel update for channel {}", log_bytes!(chan.context.channel_id()));
3157                 let were_node_one = self.our_network_pubkey.serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
3158
3159                 let enabled = chan.context.is_usable() && match chan.channel_update_status() {
3160                         ChannelUpdateStatus::Enabled => true,
3161                         ChannelUpdateStatus::DisabledStaged(_) => true,
3162                         ChannelUpdateStatus::Disabled => false,
3163                         ChannelUpdateStatus::EnabledStaged(_) => false,
3164                 };
3165
3166                 let unsigned = msgs::UnsignedChannelUpdate {
3167                         chain_hash: self.genesis_hash,
3168                         short_channel_id,
3169                         timestamp: chan.context.get_update_time_counter(),
3170                         flags: (!were_node_one) as u8 | ((!enabled as u8) << 1),
3171                         cltv_expiry_delta: chan.context.get_cltv_expiry_delta(),
3172                         htlc_minimum_msat: chan.context.get_counterparty_htlc_minimum_msat(),
3173                         htlc_maximum_msat: chan.context.get_announced_htlc_max_msat(),
3174                         fee_base_msat: chan.context.get_outbound_forwarding_fee_base_msat(),
3175                         fee_proportional_millionths: chan.context.get_fee_proportional_millionths(),
3176                         excess_data: Vec::new(),
3177                 };
3178                 // Panic on failure to signal LDK should be restarted to retry signing the `ChannelUpdate`.
3179                 // If we returned an error and the `node_signer` cannot provide a signature for whatever
3180                 // reason`, we wouldn't be able to receive inbound payments through the corresponding
3181                 // channel.
3182                 let sig = self.node_signer.sign_gossip_message(msgs::UnsignedGossipMessage::ChannelUpdate(&unsigned)).unwrap();
3183
3184                 Ok(msgs::ChannelUpdate {
3185                         signature: sig,
3186                         contents: unsigned
3187                 })
3188         }
3189
3190         #[cfg(test)]
3191         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> {
3192                 let _lck = self.total_consistency_lock.read().unwrap();
3193                 self.send_payment_along_path(SendAlongPathArgs {
3194                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
3195                         session_priv_bytes
3196                 })
3197         }
3198
3199         fn send_payment_along_path(&self, args: SendAlongPathArgs) -> Result<(), APIError> {
3200                 let SendAlongPathArgs {
3201                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
3202                         session_priv_bytes
3203                 } = args;
3204                 // The top-level caller should hold the total_consistency_lock read lock.
3205                 debug_assert!(self.total_consistency_lock.try_write().is_err());
3206
3207                 log_trace!(self.logger, "Attempting to send payment for path with next hop {}", path.hops.first().unwrap().short_channel_id);
3208                 let prng_seed = self.entropy_source.get_secure_random_bytes();
3209                 let session_priv = SecretKey::from_slice(&session_priv_bytes[..]).expect("RNG is busted");
3210
3211                 let onion_keys = onion_utils::construct_onion_keys(&self.secp_ctx, &path, &session_priv)
3212                         .map_err(|_| APIError::InvalidRoute{err: "Pubkey along hop was maliciously selected".to_owned()})?;
3213                 let (onion_payloads, htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(path, total_value, recipient_onion, cur_height, keysend_preimage)?;
3214
3215                 let onion_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, prng_seed, payment_hash)
3216                         .map_err(|_| APIError::InvalidRoute { err: "Route size too large considering onion data".to_owned()})?;
3217
3218                 let err: Result<(), _> = loop {
3219                         let (counterparty_node_id, id) = match self.short_to_chan_info.read().unwrap().get(&path.hops.first().unwrap().short_channel_id) {
3220                                 None => return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()}),
3221                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
3222                         };
3223
3224                         let per_peer_state = self.per_peer_state.read().unwrap();
3225                         let peer_state_mutex = per_peer_state.get(&counterparty_node_id)
3226                                 .ok_or_else(|| APIError::ChannelUnavailable{err: "No peer matching the path's first hop found!".to_owned() })?;
3227                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3228                         let peer_state = &mut *peer_state_lock;
3229                         if let hash_map::Entry::Occupied(mut chan) = peer_state.channel_by_id.entry(id) {
3230                                 if !chan.get().context.is_live() {
3231                                         return Err(APIError::ChannelUnavailable{err: "Peer for first hop currently disconnected".to_owned()});
3232                                 }
3233                                 let funding_txo = chan.get().context.get_funding_txo().unwrap();
3234                                 let send_res = chan.get_mut().send_htlc_and_commit(htlc_msat, payment_hash.clone(),
3235                                         htlc_cltv, HTLCSource::OutboundRoute {
3236                                                 path: path.clone(),
3237                                                 session_priv: session_priv.clone(),
3238                                                 first_hop_htlc_msat: htlc_msat,
3239                                                 payment_id,
3240                                         }, onion_packet, None, &self.fee_estimator, &self.logger);
3241                                 match break_chan_entry!(self, send_res, chan) {
3242                                         Some(monitor_update) => {
3243                                                 match handle_new_monitor_update!(self, funding_txo, monitor_update, peer_state_lock, peer_state, per_peer_state, chan) {
3244                                                         Err(e) => break Err(e),
3245                                                         Ok(false) => {
3246                                                                 // Note that MonitorUpdateInProgress here indicates (per function
3247                                                                 // docs) that we will resend the commitment update once monitor
3248                                                                 // updating completes. Therefore, we must return an error
3249                                                                 // indicating that it is unsafe to retry the payment wholesale,
3250                                                                 // which we do in the send_payment check for
3251                                                                 // MonitorUpdateInProgress, below.
3252                                                                 return Err(APIError::MonitorUpdateInProgress);
3253                                                         },
3254                                                         Ok(true) => {},
3255                                                 }
3256                                         },
3257                                         None => { },
3258                                 }
3259                         } else {
3260                                 // The channel was likely removed after we fetched the id from the
3261                                 // `short_to_chan_info` map, but before we successfully locked the
3262                                 // `channel_by_id` map.
3263                                 // This can occur as no consistency guarantees exists between the two maps.
3264                                 return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()});
3265                         }
3266                         return Ok(());
3267                 };
3268
3269                 match handle_error!(self, err, path.hops.first().unwrap().pubkey) {
3270                         Ok(_) => unreachable!(),
3271                         Err(e) => {
3272                                 Err(APIError::ChannelUnavailable { err: e.err })
3273                         },
3274                 }
3275         }
3276
3277         /// Sends a payment along a given route.
3278         ///
3279         /// Value parameters are provided via the last hop in route, see documentation for [`RouteHop`]
3280         /// fields for more info.
3281         ///
3282         /// May generate [`UpdateHTLCs`] message(s) event on success, which should be relayed (e.g. via
3283         /// [`PeerManager::process_events`]).
3284         ///
3285         /// # Avoiding Duplicate Payments
3286         ///
3287         /// If a pending payment is currently in-flight with the same [`PaymentId`] provided, this
3288         /// method will error with an [`APIError::InvalidRoute`]. Note, however, that once a payment
3289         /// is no longer pending (either via [`ChannelManager::abandon_payment`], or handling of an
3290         /// [`Event::PaymentSent`] or [`Event::PaymentFailed`]) LDK will not stop you from sending a
3291         /// second payment with the same [`PaymentId`].
3292         ///
3293         /// Thus, in order to ensure duplicate payments are not sent, you should implement your own
3294         /// tracking of payments, including state to indicate once a payment has completed. Because you
3295         /// should also ensure that [`PaymentHash`]es are not re-used, for simplicity, you should
3296         /// consider using the [`PaymentHash`] as the key for tracking payments. In that case, the
3297         /// [`PaymentId`] should be a copy of the [`PaymentHash`] bytes.
3298         ///
3299         /// Additionally, in the scenario where we begin the process of sending a payment, but crash
3300         /// before `send_payment` returns (or prior to [`ChannelMonitorUpdate`] persistence if you're
3301         /// using [`ChannelMonitorUpdateStatus::InProgress`]), the payment may be lost on restart. See
3302         /// [`ChannelManager::list_recent_payments`] for more information.
3303         ///
3304         /// # Possible Error States on [`PaymentSendFailure`]
3305         ///
3306         /// Each path may have a different return value, and [`PaymentSendFailure`] may return a `Vec` with
3307         /// each entry matching the corresponding-index entry in the route paths, see
3308         /// [`PaymentSendFailure`] for more info.
3309         ///
3310         /// In general, a path may raise:
3311         ///  * [`APIError::InvalidRoute`] when an invalid route or forwarding parameter (cltv_delta, fee,
3312         ///    node public key) is specified.
3313         ///  * [`APIError::ChannelUnavailable`] if the next-hop channel is not available for updates
3314         ///    (including due to previous monitor update failure or new permanent monitor update
3315         ///    failure).
3316         ///  * [`APIError::MonitorUpdateInProgress`] if a new monitor update failure prevented sending the
3317         ///    relevant updates.
3318         ///
3319         /// Note that depending on the type of the [`PaymentSendFailure`] the HTLC may have been
3320         /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
3321         /// different route unless you intend to pay twice!
3322         ///
3323         /// [`RouteHop`]: crate::routing::router::RouteHop
3324         /// [`Event::PaymentSent`]: events::Event::PaymentSent
3325         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
3326         /// [`UpdateHTLCs`]: events::MessageSendEvent::UpdateHTLCs
3327         /// [`PeerManager::process_events`]: crate::ln::peer_handler::PeerManager::process_events
3328         /// [`ChannelMonitorUpdateStatus::InProgress`]: crate::chain::ChannelMonitorUpdateStatus::InProgress
3329         pub fn send_payment_with_route(&self, route: &Route, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<(), PaymentSendFailure> {
3330                 let best_block_height = self.best_block.read().unwrap().height();
3331                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3332                 self.pending_outbound_payments
3333                         .send_payment_with_route(route, payment_hash, recipient_onion, payment_id,
3334                                 &self.entropy_source, &self.node_signer, best_block_height,
3335                                 |args| self.send_payment_along_path(args))
3336         }
3337
3338         /// Similar to [`ChannelManager::send_payment_with_route`], but will automatically find a route based on
3339         /// `route_params` and retry failed payment paths based on `retry_strategy`.
3340         pub fn send_payment(&self, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId, route_params: RouteParameters, retry_strategy: Retry) -> Result<(), RetryableSendFailure> {
3341                 let best_block_height = self.best_block.read().unwrap().height();
3342                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3343                 self.pending_outbound_payments
3344                         .send_payment(payment_hash, recipient_onion, payment_id, retry_strategy, route_params,
3345                                 &self.router, self.list_usable_channels(), || self.compute_inflight_htlcs(),
3346                                 &self.entropy_source, &self.node_signer, best_block_height, &self.logger,
3347                                 &self.pending_events, |args| self.send_payment_along_path(args))
3348         }
3349
3350         #[cfg(test)]
3351         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> {
3352                 let best_block_height = self.best_block.read().unwrap().height();
3353                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3354                 self.pending_outbound_payments.test_send_payment_internal(route, payment_hash, recipient_onion,
3355                         keysend_preimage, payment_id, recv_value_msat, onion_session_privs, &self.node_signer,
3356                         best_block_height, |args| self.send_payment_along_path(args))
3357         }
3358
3359         #[cfg(test)]
3360         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> {
3361                 let best_block_height = self.best_block.read().unwrap().height();
3362                 self.pending_outbound_payments.test_add_new_pending_payment(payment_hash, recipient_onion, payment_id, route, None, &self.entropy_source, best_block_height)
3363         }
3364
3365         #[cfg(test)]
3366         pub(crate) fn test_set_payment_metadata(&self, payment_id: PaymentId, new_payment_metadata: Option<Vec<u8>>) {
3367                 self.pending_outbound_payments.test_set_payment_metadata(payment_id, new_payment_metadata);
3368         }
3369
3370
3371         /// Signals that no further retries for the given payment should occur. Useful if you have a
3372         /// pending outbound payment with retries remaining, but wish to stop retrying the payment before
3373         /// retries are exhausted.
3374         ///
3375         /// If no [`Event::PaymentFailed`] event had been generated before, one will be generated as soon
3376         /// as there are no remaining pending HTLCs for this payment.
3377         ///
3378         /// Note that calling this method does *not* prevent a payment from succeeding. You must still
3379         /// wait until you receive either a [`Event::PaymentFailed`] or [`Event::PaymentSent`] event to
3380         /// determine the ultimate status of a payment.
3381         ///
3382         /// If an [`Event::PaymentFailed`] event is generated and we restart without this
3383         /// [`ChannelManager`] having been persisted, another [`Event::PaymentFailed`] may be generated.
3384         ///
3385         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
3386         /// [`Event::PaymentSent`]: events::Event::PaymentSent
3387         pub fn abandon_payment(&self, payment_id: PaymentId) {
3388                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3389                 self.pending_outbound_payments.abandon_payment(payment_id, PaymentFailureReason::UserAbandoned, &self.pending_events);
3390         }
3391
3392         /// Send a spontaneous payment, which is a payment that does not require the recipient to have
3393         /// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
3394         /// the preimage, it must be a cryptographically secure random value that no intermediate node
3395         /// would be able to guess -- otherwise, an intermediate node may claim the payment and it will
3396         /// never reach the recipient.
3397         ///
3398         /// See [`send_payment`] documentation for more details on the return value of this function
3399         /// and idempotency guarantees provided by the [`PaymentId`] key.
3400         ///
3401         /// Similar to regular payments, you MUST NOT reuse a `payment_preimage` value. See
3402         /// [`send_payment`] for more information about the risks of duplicate preimage usage.
3403         ///
3404         /// [`send_payment`]: Self::send_payment
3405         pub fn send_spontaneous_payment(&self, route: &Route, payment_preimage: Option<PaymentPreimage>, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<PaymentHash, PaymentSendFailure> {
3406                 let best_block_height = self.best_block.read().unwrap().height();
3407                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3408                 self.pending_outbound_payments.send_spontaneous_payment_with_route(
3409                         route, payment_preimage, recipient_onion, payment_id, &self.entropy_source,
3410                         &self.node_signer, best_block_height, |args| self.send_payment_along_path(args))
3411         }
3412
3413         /// Similar to [`ChannelManager::send_spontaneous_payment`], but will automatically find a route
3414         /// based on `route_params` and retry failed payment paths based on `retry_strategy`.
3415         ///
3416         /// See [`PaymentParameters::for_keysend`] for help in constructing `route_params` for spontaneous
3417         /// payments.
3418         ///
3419         /// [`PaymentParameters::for_keysend`]: crate::routing::router::PaymentParameters::for_keysend
3420         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> {
3421                 let best_block_height = self.best_block.read().unwrap().height();
3422                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3423                 self.pending_outbound_payments.send_spontaneous_payment(payment_preimage, recipient_onion,
3424                         payment_id, retry_strategy, route_params, &self.router, self.list_usable_channels(),
3425                         || self.compute_inflight_htlcs(),  &self.entropy_source, &self.node_signer, best_block_height,
3426                         &self.logger, &self.pending_events, |args| self.send_payment_along_path(args))
3427         }
3428
3429         /// Send a payment that is probing the given route for liquidity. We calculate the
3430         /// [`PaymentHash`] of probes based on a static secret and a random [`PaymentId`], which allows
3431         /// us to easily discern them from real payments.
3432         pub fn send_probe(&self, path: Path) -> Result<(PaymentHash, PaymentId), PaymentSendFailure> {
3433                 let best_block_height = self.best_block.read().unwrap().height();
3434                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3435                 self.pending_outbound_payments.send_probe(path, self.probing_cookie_secret,
3436                         &self.entropy_source, &self.node_signer, best_block_height,
3437                         |args| self.send_payment_along_path(args))
3438         }
3439
3440         /// Returns whether a payment with the given [`PaymentHash`] and [`PaymentId`] is, in fact, a
3441         /// payment probe.
3442         #[cfg(test)]
3443         pub(crate) fn payment_is_probe(&self, payment_hash: &PaymentHash, payment_id: &PaymentId) -> bool {
3444                 outbound_payment::payment_is_probe(payment_hash, payment_id, self.probing_cookie_secret)
3445         }
3446
3447         /// Handles the generation of a funding transaction, optionally (for tests) with a function
3448         /// which checks the correctness of the funding transaction given the associated channel.
3449         fn funding_transaction_generated_intern<FundingOutput: Fn(&OutboundV1Channel<SP>, &Transaction) -> Result<OutPoint, APIError>>(
3450                 &self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, funding_transaction: Transaction, find_funding_output: FundingOutput
3451         ) -> Result<(), APIError> {
3452                 let per_peer_state = self.per_peer_state.read().unwrap();
3453                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3454                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3455
3456                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3457                 let peer_state = &mut *peer_state_lock;
3458                 let (chan, msg) = match peer_state.outbound_v1_channel_by_id.remove(temporary_channel_id) {
3459                         Some(chan) => {
3460                                 let funding_txo = find_funding_output(&chan, &funding_transaction)?;
3461
3462                                 let funding_res = chan.get_funding_created(funding_transaction, funding_txo, &self.logger)
3463                                         .map_err(|(mut chan, e)| if let ChannelError::Close(msg) = e {
3464                                                 let channel_id = chan.context.channel_id();
3465                                                 let user_id = chan.context.get_user_id();
3466                                                 let shutdown_res = chan.context.force_shutdown(false);
3467                                                 let channel_capacity = chan.context.get_value_satoshis();
3468                                                 (chan, MsgHandleErrInternal::from_finish_shutdown(msg, channel_id, user_id, shutdown_res, None, channel_capacity))
3469                                         } else { unreachable!(); });
3470                                 match funding_res {
3471                                         Ok((chan, funding_msg)) => (chan, funding_msg),
3472                                         Err((chan, err)) => {
3473                                                 mem::drop(peer_state_lock);
3474                                                 mem::drop(per_peer_state);
3475
3476                                                 let _: Result<(), _> = handle_error!(self, Err(err), chan.context.get_counterparty_node_id());
3477                                                 return Err(APIError::ChannelUnavailable {
3478                                                         err: "Signer refused to sign the initial commitment transaction".to_owned()
3479                                                 });
3480                                         },
3481                                 }
3482                         },
3483                         None => {
3484                                 return Err(APIError::ChannelUnavailable {
3485                                         err: format!(
3486                                                 "Channel with id {} not found for the passed counterparty node_id {}",
3487                                                 log_bytes!(*temporary_channel_id), counterparty_node_id),
3488                                 })
3489                         },
3490                 };
3491
3492                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
3493                         node_id: chan.context.get_counterparty_node_id(),
3494                         msg,
3495                 });
3496                 match peer_state.channel_by_id.entry(chan.context.channel_id()) {
3497                         hash_map::Entry::Occupied(_) => {
3498                                 panic!("Generated duplicate funding txid?");
3499                         },
3500                         hash_map::Entry::Vacant(e) => {
3501                                 let mut id_to_peer = self.id_to_peer.lock().unwrap();
3502                                 if id_to_peer.insert(chan.context.channel_id(), chan.context.get_counterparty_node_id()).is_some() {
3503                                         panic!("id_to_peer map already contained funding txid, which shouldn't be possible");
3504                                 }
3505                                 e.insert(chan);
3506                         }
3507                 }
3508                 Ok(())
3509         }
3510
3511         #[cfg(test)]
3512         pub(crate) fn funding_transaction_generated_unchecked(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, funding_transaction: Transaction, output_index: u16) -> Result<(), APIError> {
3513                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |_, tx| {
3514                         Ok(OutPoint { txid: tx.txid(), index: output_index })
3515                 })
3516         }
3517
3518         /// Call this upon creation of a funding transaction for the given channel.
3519         ///
3520         /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
3521         /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
3522         ///
3523         /// Returns [`APIError::APIMisuseError`] if the funding transaction is not final for propagation
3524         /// across the p2p network.
3525         ///
3526         /// Returns [`APIError::ChannelUnavailable`] if a funding transaction has already been provided
3527         /// for the channel or if the channel has been closed as indicated by [`Event::ChannelClosed`].
3528         ///
3529         /// May panic if the output found in the funding transaction is duplicative with some other
3530         /// channel (note that this should be trivially prevented by using unique funding transaction
3531         /// keys per-channel).
3532         ///
3533         /// Do NOT broadcast the funding transaction yourself. When we have safely received our
3534         /// counterparty's signature the funding transaction will automatically be broadcast via the
3535         /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
3536         ///
3537         /// Note that this includes RBF or similar transaction replacement strategies - lightning does
3538         /// not currently support replacing a funding transaction on an existing channel. Instead,
3539         /// create a new channel with a conflicting funding transaction.
3540         ///
3541         /// Note to keep the miner incentives aligned in moving the blockchain forward, we recommend
3542         /// the wallet software generating the funding transaction to apply anti-fee sniping as
3543         /// implemented by Bitcoin Core wallet. See <https://bitcoinops.org/en/topics/fee-sniping/>
3544         /// for more details.
3545         ///
3546         /// [`Event::FundingGenerationReady`]: crate::events::Event::FundingGenerationReady
3547         /// [`Event::ChannelClosed`]: crate::events::Event::ChannelClosed
3548         pub fn funding_transaction_generated(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, funding_transaction: Transaction) -> Result<(), APIError> {
3549                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3550
3551                 for inp in funding_transaction.input.iter() {
3552                         if inp.witness.is_empty() {
3553                                 return Err(APIError::APIMisuseError {
3554                                         err: "Funding transaction must be fully signed and spend Segwit outputs".to_owned()
3555                                 });
3556                         }
3557                 }
3558                 {
3559                         let height = self.best_block.read().unwrap().height();
3560                         // Transactions are evaluated as final by network mempools if their locktime is strictly
3561                         // lower than the next block height. However, the modules constituting our Lightning
3562                         // node might not have perfect sync about their blockchain views. Thus, if the wallet
3563                         // module is ahead of LDK, only allow one more block of headroom.
3564                         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 {
3565                                 return Err(APIError::APIMisuseError {
3566                                         err: "Funding transaction absolute timelock is non-final".to_owned()
3567                                 });
3568                         }
3569                 }
3570                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |chan, tx| {
3571                         if tx.output.len() > u16::max_value() as usize {
3572                                 return Err(APIError::APIMisuseError {
3573                                         err: "Transaction had more than 2^16 outputs, which is not supported".to_owned()
3574                                 });
3575                         }
3576
3577                         let mut output_index = None;
3578                         let expected_spk = chan.context.get_funding_redeemscript().to_v0_p2wsh();
3579                         for (idx, outp) in tx.output.iter().enumerate() {
3580                                 if outp.script_pubkey == expected_spk && outp.value == chan.context.get_value_satoshis() {
3581                                         if output_index.is_some() {
3582                                                 return Err(APIError::APIMisuseError {
3583                                                         err: "Multiple outputs matched the expected script and value".to_owned()
3584                                                 });
3585                                         }
3586                                         output_index = Some(idx as u16);
3587                                 }
3588                         }
3589                         if output_index.is_none() {
3590                                 return Err(APIError::APIMisuseError {
3591                                         err: "No output matched the script_pubkey and value in the FundingGenerationReady event".to_owned()
3592                                 });
3593                         }
3594                         Ok(OutPoint { txid: tx.txid(), index: output_index.unwrap() })
3595                 })
3596         }
3597
3598         /// Atomically applies partial updates to the [`ChannelConfig`] of the given channels.
3599         ///
3600         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3601         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3602         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3603         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3604         ///
3605         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3606         /// `counterparty_node_id` is provided.
3607         ///
3608         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3609         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3610         ///
3611         /// If an error is returned, none of the updates should be considered applied.
3612         ///
3613         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3614         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3615         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3616         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3617         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3618         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3619         /// [`APIMisuseError`]: APIError::APIMisuseError
3620         pub fn update_partial_channel_config(
3621                 &self, counterparty_node_id: &PublicKey, channel_ids: &[[u8; 32]], config_update: &ChannelConfigUpdate,
3622         ) -> Result<(), APIError> {
3623                 if config_update.cltv_expiry_delta.map(|delta| delta < MIN_CLTV_EXPIRY_DELTA).unwrap_or(false) {
3624                         return Err(APIError::APIMisuseError {
3625                                 err: format!("The chosen CLTV expiry delta is below the minimum of {}", MIN_CLTV_EXPIRY_DELTA),
3626                         });
3627                 }
3628
3629                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3630                 let per_peer_state = self.per_peer_state.read().unwrap();
3631                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3632                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3633                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3634                 let peer_state = &mut *peer_state_lock;
3635                 for channel_id in channel_ids {
3636                         if !peer_state.has_channel(channel_id) {
3637                                 return Err(APIError::ChannelUnavailable {
3638                                         err: format!("Channel with ID {} was not found for the passed counterparty_node_id {}", log_bytes!(*channel_id), counterparty_node_id),
3639                                 });
3640                         };
3641                 }
3642                 for channel_id in channel_ids {
3643                         if let Some(channel) = peer_state.channel_by_id.get_mut(channel_id) {
3644                                 let mut config = channel.context.config();
3645                                 config.apply(config_update);
3646                                 if !channel.context.update_config(&config) {
3647                                         continue;
3648                                 }
3649                                 if let Ok(msg) = self.get_channel_update_for_broadcast(channel) {
3650                                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate { msg });
3651                                 } else if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
3652                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
3653                                                 node_id: channel.context.get_counterparty_node_id(),
3654                                                 msg,
3655                                         });
3656                                 }
3657                                 continue;
3658                         }
3659
3660                         let context = if let Some(channel) = peer_state.inbound_v1_channel_by_id.get_mut(channel_id) {
3661                                 &mut channel.context
3662                         } else if let Some(channel) = peer_state.outbound_v1_channel_by_id.get_mut(channel_id) {
3663                                 &mut channel.context
3664                         } else {
3665                                 // This should not be reachable as we've already checked for non-existence in the previous channel_id loop.
3666                                 debug_assert!(false);
3667                                 return Err(APIError::ChannelUnavailable {
3668                                         err: format!(
3669                                                 "Channel with ID {} for passed counterparty_node_id {} disappeared after we confirmed its existence - this should not be reachable!",
3670                                                 log_bytes!(*channel_id), counterparty_node_id),
3671                                 });
3672                         };
3673                         let mut config = context.config();
3674                         config.apply(config_update);
3675                         // We update the config, but we MUST NOT broadcast a `channel_update` before `channel_ready`
3676                         // which would be the case for pending inbound/outbound channels.
3677                         context.update_config(&config);
3678                 }
3679                 Ok(())
3680         }
3681
3682         /// Atomically updates the [`ChannelConfig`] for the given channels.
3683         ///
3684         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3685         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3686         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3687         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3688         ///
3689         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3690         /// `counterparty_node_id` is provided.
3691         ///
3692         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3693         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3694         ///
3695         /// If an error is returned, none of the updates should be considered applied.
3696         ///
3697         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3698         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3699         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3700         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3701         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3702         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3703         /// [`APIMisuseError`]: APIError::APIMisuseError
3704         pub fn update_channel_config(
3705                 &self, counterparty_node_id: &PublicKey, channel_ids: &[[u8; 32]], config: &ChannelConfig,
3706         ) -> Result<(), APIError> {
3707                 return self.update_partial_channel_config(counterparty_node_id, channel_ids, &(*config).into());
3708         }
3709
3710         /// Attempts to forward an intercepted HTLC over the provided channel id and with the provided
3711         /// amount to forward. Should only be called in response to an [`HTLCIntercepted`] event.
3712         ///
3713         /// Intercepted HTLCs can be useful for Lightning Service Providers (LSPs) to open a just-in-time
3714         /// channel to a receiving node if the node lacks sufficient inbound liquidity.
3715         ///
3716         /// To make use of intercepted HTLCs, set [`UserConfig::accept_intercept_htlcs`] and use
3717         /// [`ChannelManager::get_intercept_scid`] to generate short channel id(s) to put in the
3718         /// receiver's invoice route hints. These route hints will signal to LDK to generate an
3719         /// [`HTLCIntercepted`] event when it receives the forwarded HTLC, and this method or
3720         /// [`ChannelManager::fail_intercepted_htlc`] MUST be called in response to the event.
3721         ///
3722         /// Note that LDK does not enforce fee requirements in `amt_to_forward_msat`, and will not stop
3723         /// you from forwarding more than you received. See
3724         /// [`HTLCIntercepted::expected_outbound_amount_msat`] for more on forwarding a different amount
3725         /// than expected.
3726         ///
3727         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
3728         /// backwards.
3729         ///
3730         /// [`UserConfig::accept_intercept_htlcs`]: crate::util::config::UserConfig::accept_intercept_htlcs
3731         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
3732         /// [`HTLCIntercepted::expected_outbound_amount_msat`]: events::Event::HTLCIntercepted::expected_outbound_amount_msat
3733         // TODO: when we move to deciding the best outbound channel at forward time, only take
3734         // `next_node_id` and not `next_hop_channel_id`
3735         pub fn forward_intercepted_htlc(&self, intercept_id: InterceptId, next_hop_channel_id: &[u8; 32], next_node_id: PublicKey, amt_to_forward_msat: u64) -> Result<(), APIError> {
3736                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3737
3738                 let next_hop_scid = {
3739                         let peer_state_lock = self.per_peer_state.read().unwrap();
3740                         let peer_state_mutex = peer_state_lock.get(&next_node_id)
3741                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", next_node_id) })?;
3742                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3743                         let peer_state = &mut *peer_state_lock;
3744                         match peer_state.channel_by_id.get(next_hop_channel_id) {
3745                                 Some(chan) => {
3746                                         if !chan.context.is_usable() {
3747                                                 return Err(APIError::ChannelUnavailable {
3748                                                         err: format!("Channel with id {} not fully established", log_bytes!(*next_hop_channel_id))
3749                                                 })
3750                                         }
3751                                         chan.context.get_short_channel_id().unwrap_or(chan.context.outbound_scid_alias())
3752                                 },
3753                                 None => return Err(APIError::ChannelUnavailable {
3754                                         err: format!("Funded channel with id {} not found for the passed counterparty node_id {}. Channel may still be opening.",
3755                                                 log_bytes!(*next_hop_channel_id), next_node_id)
3756                                 })
3757                         }
3758                 };
3759
3760                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
3761                         .ok_or_else(|| APIError::APIMisuseError {
3762                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
3763                         })?;
3764
3765                 let routing = match payment.forward_info.routing {
3766                         PendingHTLCRouting::Forward { onion_packet, .. } => {
3767                                 PendingHTLCRouting::Forward { onion_packet, short_channel_id: next_hop_scid }
3768                         },
3769                         _ => unreachable!() // Only `PendingHTLCRouting::Forward`s are intercepted
3770                 };
3771                 let skimmed_fee_msat =
3772                         payment.forward_info.outgoing_amt_msat.saturating_sub(amt_to_forward_msat);
3773                 let pending_htlc_info = PendingHTLCInfo {
3774                         skimmed_fee_msat: if skimmed_fee_msat == 0 { None } else { Some(skimmed_fee_msat) },
3775                         outgoing_amt_msat: amt_to_forward_msat, routing, ..payment.forward_info
3776                 };
3777
3778                 let mut per_source_pending_forward = [(
3779                         payment.prev_short_channel_id,
3780                         payment.prev_funding_outpoint,
3781                         payment.prev_user_channel_id,
3782                         vec![(pending_htlc_info, payment.prev_htlc_id)]
3783                 )];
3784                 self.forward_htlcs(&mut per_source_pending_forward);
3785                 Ok(())
3786         }
3787
3788         /// Fails the intercepted HTLC indicated by intercept_id. Should only be called in response to
3789         /// an [`HTLCIntercepted`] event. See [`ChannelManager::forward_intercepted_htlc`].
3790         ///
3791         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
3792         /// backwards.
3793         ///
3794         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
3795         pub fn fail_intercepted_htlc(&self, intercept_id: InterceptId) -> Result<(), APIError> {
3796                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3797
3798                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
3799                         .ok_or_else(|| APIError::APIMisuseError {
3800                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
3801                         })?;
3802
3803                 if let PendingHTLCRouting::Forward { short_channel_id, .. } = payment.forward_info.routing {
3804                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3805                                 short_channel_id: payment.prev_short_channel_id,
3806                                 user_channel_id: Some(payment.prev_user_channel_id),
3807                                 outpoint: payment.prev_funding_outpoint,
3808                                 htlc_id: payment.prev_htlc_id,
3809                                 incoming_packet_shared_secret: payment.forward_info.incoming_shared_secret,
3810                                 phantom_shared_secret: None,
3811                         });
3812
3813                         let failure_reason = HTLCFailReason::from_failure_code(0x4000 | 10);
3814                         let destination = HTLCDestination::UnknownNextHop { requested_forward_scid: short_channel_id };
3815                         self.fail_htlc_backwards_internal(&htlc_source, &payment.forward_info.payment_hash, &failure_reason, destination);
3816                 } else { unreachable!() } // Only `PendingHTLCRouting::Forward`s are intercepted
3817
3818                 Ok(())
3819         }
3820
3821         /// Processes HTLCs which are pending waiting on random forward delay.
3822         ///
3823         /// Should only really ever be called in response to a PendingHTLCsForwardable event.
3824         /// Will likely generate further events.
3825         pub fn process_pending_htlc_forwards(&self) {
3826                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3827
3828                 let mut new_events = VecDeque::new();
3829                 let mut failed_forwards = Vec::new();
3830                 let mut phantom_receives: Vec<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> = Vec::new();
3831                 {
3832                         let mut forward_htlcs = HashMap::new();
3833                         mem::swap(&mut forward_htlcs, &mut self.forward_htlcs.lock().unwrap());
3834
3835                         for (short_chan_id, mut pending_forwards) in forward_htlcs {
3836                                 if short_chan_id != 0 {
3837                                         macro_rules! forwarding_channel_not_found {
3838                                                 () => {
3839                                                         for forward_info in pending_forwards.drain(..) {
3840                                                                 match forward_info {
3841                                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
3842                                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
3843                                                                                 forward_info: PendingHTLCInfo {
3844                                                                                         routing, incoming_shared_secret, payment_hash, outgoing_amt_msat,
3845                                                                                         outgoing_cltv_value, ..
3846                                                                                 }
3847                                                                         }) => {
3848                                                                                 macro_rules! failure_handler {
3849                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr, $next_hop_unknown: expr) => {
3850                                                                                                 log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3851
3852                                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3853                                                                                                         short_channel_id: prev_short_channel_id,
3854                                                                                                         user_channel_id: Some(prev_user_channel_id),
3855                                                                                                         outpoint: prev_funding_outpoint,
3856                                                                                                         htlc_id: prev_htlc_id,
3857                                                                                                         incoming_packet_shared_secret: incoming_shared_secret,
3858                                                                                                         phantom_shared_secret: $phantom_ss,
3859                                                                                                 });
3860
3861                                                                                                 let reason = if $next_hop_unknown {
3862                                                                                                         HTLCDestination::UnknownNextHop { requested_forward_scid: short_chan_id }
3863                                                                                                 } else {
3864                                                                                                         HTLCDestination::FailedPayment{ payment_hash }
3865                                                                                                 };
3866
3867                                                                                                 failed_forwards.push((htlc_source, payment_hash,
3868                                                                                                         HTLCFailReason::reason($err_code, $err_data),
3869                                                                                                         reason
3870                                                                                                 ));
3871                                                                                                 continue;
3872                                                                                         }
3873                                                                                 }
3874                                                                                 macro_rules! fail_forward {
3875                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
3876                                                                                                 {
3877                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, true);
3878                                                                                                 }
3879                                                                                         }
3880                                                                                 }
3881                                                                                 macro_rules! failed_payment {
3882                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
3883                                                                                                 {
3884                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, false);
3885                                                                                                 }
3886                                                                                         }
3887                                                                                 }
3888                                                                                 if let PendingHTLCRouting::Forward { onion_packet, .. } = routing {
3889                                                                                         let phantom_pubkey_res = self.node_signer.get_node_id(Recipient::PhantomNode);
3890                                                                                         if phantom_pubkey_res.is_ok() && fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, short_chan_id, &self.genesis_hash) {
3891                                                                                                 let phantom_shared_secret = self.node_signer.ecdh(Recipient::PhantomNode, &onion_packet.public_key.unwrap(), None).unwrap().secret_bytes();
3892                                                                                                 let next_hop = match onion_utils::decode_next_payment_hop(phantom_shared_secret, &onion_packet.hop_data, onion_packet.hmac, payment_hash) {
3893                                                                                                         Ok(res) => res,
3894                                                                                                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
3895                                                                                                                 let sha256_of_onion = Sha256::hash(&onion_packet.hop_data).into_inner();
3896                                                                                                                 // In this scenario, the phantom would have sent us an
3897                                                                                                                 // `update_fail_malformed_htlc`, meaning here we encrypt the error as
3898                                                                                                                 // if it came from us (the second-to-last hop) but contains the sha256
3899                                                                                                                 // of the onion.
3900                                                                                                                 failed_payment!(err_msg, err_code, sha256_of_onion.to_vec(), None);
3901                                                                                                         },
3902                                                                                                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
3903                                                                                                                 failed_payment!(err_msg, err_code, Vec::new(), Some(phantom_shared_secret));
3904                                                                                                         },
3905                                                                                                 };
3906                                                                                                 match next_hop {
3907                                                                                                         onion_utils::Hop::Receive(hop_data) => {
3908                                                                                                                 match self.construct_recv_pending_htlc_info(hop_data,
3909                                                                                                                         incoming_shared_secret, payment_hash, outgoing_amt_msat,
3910                                                                                                                         outgoing_cltv_value, Some(phantom_shared_secret), false, None)
3911                                                                                                                 {
3912                                                                                                                         Ok(info) => phantom_receives.push((prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, vec![(info, prev_htlc_id)])),
3913                                                                                                                         Err(InboundOnionErr { err_code, err_data, msg }) => failed_payment!(msg, err_code, err_data, Some(phantom_shared_secret))
3914                                                                                                                 }
3915                                                                                                         },
3916                                                                                                         _ => panic!(),
3917                                                                                                 }
3918                                                                                         } else {
3919                                                                                                 fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
3920                                                                                         }
3921                                                                                 } else {
3922                                                                                         fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
3923                                                                                 }
3924                                                                         },
3925                                                                         HTLCForwardInfo::FailHTLC { .. } => {
3926                                                                                 // Channel went away before we could fail it. This implies
3927                                                                                 // the channel is now on chain and our counterparty is
3928                                                                                 // trying to broadcast the HTLC-Timeout, but that's their
3929                                                                                 // problem, not ours.
3930                                                                         }
3931                                                                 }
3932                                                         }
3933                                                 }
3934                                         }
3935                                         let (counterparty_node_id, forward_chan_id) = match self.short_to_chan_info.read().unwrap().get(&short_chan_id) {
3936                                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
3937                                                 None => {
3938                                                         forwarding_channel_not_found!();
3939                                                         continue;
3940                                                 }
3941                                         };
3942                                         let per_peer_state = self.per_peer_state.read().unwrap();
3943                                         let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
3944                                         if peer_state_mutex_opt.is_none() {
3945                                                 forwarding_channel_not_found!();
3946                                                 continue;
3947                                         }
3948                                         let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
3949                                         let peer_state = &mut *peer_state_lock;
3950                                         match peer_state.channel_by_id.entry(forward_chan_id) {
3951                                                 hash_map::Entry::Vacant(_) => {
3952                                                         forwarding_channel_not_found!();
3953                                                         continue;
3954                                                 },
3955                                                 hash_map::Entry::Occupied(mut chan) => {
3956                                                         for forward_info in pending_forwards.drain(..) {
3957                                                                 match forward_info {
3958                                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
3959                                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
3960                                                                                 forward_info: PendingHTLCInfo {
3961                                                                                         incoming_shared_secret, payment_hash, outgoing_amt_msat, outgoing_cltv_value,
3962                                                                                         routing: PendingHTLCRouting::Forward { onion_packet, .. }, skimmed_fee_msat, ..
3963                                                                                 },
3964                                                                         }) => {
3965                                                                                 log_trace!(self.logger, "Adding HTLC from short id {} with payment_hash {} to channel with short id {} after delay", prev_short_channel_id, log_bytes!(payment_hash.0), short_chan_id);
3966                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3967                                                                                         short_channel_id: prev_short_channel_id,
3968                                                                                         user_channel_id: Some(prev_user_channel_id),
3969                                                                                         outpoint: prev_funding_outpoint,
3970                                                                                         htlc_id: prev_htlc_id,
3971                                                                                         incoming_packet_shared_secret: incoming_shared_secret,
3972                                                                                         // Phantom payments are only PendingHTLCRouting::Receive.
3973                                                                                         phantom_shared_secret: None,
3974                                                                                 });
3975                                                                                 if let Err(e) = chan.get_mut().queue_add_htlc(outgoing_amt_msat,
3976                                                                                         payment_hash, outgoing_cltv_value, htlc_source.clone(),
3977                                                                                         onion_packet, skimmed_fee_msat, &self.fee_estimator,
3978                                                                                         &self.logger)
3979                                                                                 {
3980                                                                                         if let ChannelError::Ignore(msg) = e {
3981                                                                                                 log_trace!(self.logger, "Failed to forward HTLC with payment_hash {}: {}", log_bytes!(payment_hash.0), msg);
3982                                                                                         } else {
3983                                                                                                 panic!("Stated return value requirements in send_htlc() were not met");
3984                                                                                         }
3985                                                                                         let (failure_code, data) = self.get_htlc_temp_fail_err_and_data(0x1000|7, short_chan_id, chan.get());
3986                                                                                         failed_forwards.push((htlc_source, payment_hash,
3987                                                                                                 HTLCFailReason::reason(failure_code, data),
3988                                                                                                 HTLCDestination::NextHopChannel { node_id: Some(chan.get().context.get_counterparty_node_id()), channel_id: forward_chan_id }
3989                                                                                         ));
3990                                                                                         continue;
3991                                                                                 }
3992                                                                         },
3993                                                                         HTLCForwardInfo::AddHTLC { .. } => {
3994                                                                                 panic!("short_channel_id != 0 should imply any pending_forward entries are of type Forward");
3995                                                                         },
3996                                                                         HTLCForwardInfo::FailHTLC { htlc_id, err_packet } => {
3997                                                                                 log_trace!(self.logger, "Failing HTLC back to channel with short id {} (backward HTLC ID {}) after delay", short_chan_id, htlc_id);
3998                                                                                 if let Err(e) = chan.get_mut().queue_fail_htlc(
3999                                                                                         htlc_id, err_packet, &self.logger
4000                                                                                 ) {
4001                                                                                         if let ChannelError::Ignore(msg) = e {
4002                                                                                                 log_trace!(self.logger, "Failed to fail HTLC with ID {} backwards to short_id {}: {}", htlc_id, short_chan_id, msg);
4003                                                                                         } else {
4004                                                                                                 panic!("Stated return value requirements in queue_fail_htlc() were not met");
4005                                                                                         }
4006                                                                                         // fail-backs are best-effort, we probably already have one
4007                                                                                         // pending, and if not that's OK, if not, the channel is on
4008                                                                                         // the chain and sending the HTLC-Timeout is their problem.
4009                                                                                         continue;
4010                                                                                 }
4011                                                                         },
4012                                                                 }
4013                                                         }
4014                                                 }
4015                                         }
4016                                 } else {
4017                                         'next_forwardable_htlc: for forward_info in pending_forwards.drain(..) {
4018                                                 match forward_info {
4019                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4020                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4021                                                                 forward_info: PendingHTLCInfo {
4022                                                                         routing, incoming_shared_secret, payment_hash, incoming_amt_msat, outgoing_amt_msat,
4023                                                                         skimmed_fee_msat, ..
4024                                                                 }
4025                                                         }) => {
4026                                                                 let (cltv_expiry, onion_payload, payment_data, phantom_shared_secret, mut onion_fields) = match routing {
4027                                                                         PendingHTLCRouting::Receive { payment_data, payment_metadata, incoming_cltv_expiry, phantom_shared_secret, custom_tlvs } => {
4028                                                                                 let _legacy_hop_data = Some(payment_data.clone());
4029                                                                                 let onion_fields = RecipientOnionFields { payment_secret: Some(payment_data.payment_secret),
4030                                                                                                 payment_metadata, custom_tlvs };
4031                                                                                 (incoming_cltv_expiry, OnionPayload::Invoice { _legacy_hop_data },
4032                                                                                         Some(payment_data), phantom_shared_secret, onion_fields)
4033                                                                         },
4034                                                                         PendingHTLCRouting::ReceiveKeysend { payment_data, payment_preimage, payment_metadata, incoming_cltv_expiry, custom_tlvs } => {
4035                                                                                 let onion_fields = RecipientOnionFields {
4036                                                                                         payment_secret: payment_data.as_ref().map(|data| data.payment_secret),
4037                                                                                         payment_metadata,
4038                                                                                         custom_tlvs,
4039                                                                                 };
4040                                                                                 (incoming_cltv_expiry, OnionPayload::Spontaneous(payment_preimage),
4041                                                                                         payment_data, None, onion_fields)
4042                                                                         },
4043                                                                         _ => {
4044                                                                                 panic!("short_channel_id == 0 should imply any pending_forward entries are of type Receive");
4045                                                                         }
4046                                                                 };
4047                                                                 let claimable_htlc = ClaimableHTLC {
4048                                                                         prev_hop: HTLCPreviousHopData {
4049                                                                                 short_channel_id: prev_short_channel_id,
4050                                                                                 user_channel_id: Some(prev_user_channel_id),
4051                                                                                 outpoint: prev_funding_outpoint,
4052                                                                                 htlc_id: prev_htlc_id,
4053                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
4054                                                                                 phantom_shared_secret,
4055                                                                         },
4056                                                                         // We differentiate the received value from the sender intended value
4057                                                                         // if possible so that we don't prematurely mark MPP payments complete
4058                                                                         // if routing nodes overpay
4059                                                                         value: incoming_amt_msat.unwrap_or(outgoing_amt_msat),
4060                                                                         sender_intended_value: outgoing_amt_msat,
4061                                                                         timer_ticks: 0,
4062                                                                         total_value_received: None,
4063                                                                         total_msat: if let Some(data) = &payment_data { data.total_msat } else { outgoing_amt_msat },
4064                                                                         cltv_expiry,
4065                                                                         onion_payload,
4066                                                                         counterparty_skimmed_fee_msat: skimmed_fee_msat,
4067                                                                 };
4068
4069                                                                 let mut committed_to_claimable = false;
4070
4071                                                                 macro_rules! fail_htlc {
4072                                                                         ($htlc: expr, $payment_hash: expr) => {
4073                                                                                 debug_assert!(!committed_to_claimable);
4074                                                                                 let mut htlc_msat_height_data = $htlc.value.to_be_bytes().to_vec();
4075                                                                                 htlc_msat_height_data.extend_from_slice(
4076                                                                                         &self.best_block.read().unwrap().height().to_be_bytes(),
4077                                                                                 );
4078                                                                                 failed_forwards.push((HTLCSource::PreviousHopData(HTLCPreviousHopData {
4079                                                                                                 short_channel_id: $htlc.prev_hop.short_channel_id,
4080                                                                                                 user_channel_id: $htlc.prev_hop.user_channel_id,
4081                                                                                                 outpoint: prev_funding_outpoint,
4082                                                                                                 htlc_id: $htlc.prev_hop.htlc_id,
4083                                                                                                 incoming_packet_shared_secret: $htlc.prev_hop.incoming_packet_shared_secret,
4084                                                                                                 phantom_shared_secret,
4085                                                                                         }), payment_hash,
4086                                                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
4087                                                                                         HTLCDestination::FailedPayment { payment_hash: $payment_hash },
4088                                                                                 ));
4089                                                                                 continue 'next_forwardable_htlc;
4090                                                                         }
4091                                                                 }
4092                                                                 let phantom_shared_secret = claimable_htlc.prev_hop.phantom_shared_secret;
4093                                                                 let mut receiver_node_id = self.our_network_pubkey;
4094                                                                 if phantom_shared_secret.is_some() {
4095                                                                         receiver_node_id = self.node_signer.get_node_id(Recipient::PhantomNode)
4096                                                                                 .expect("Failed to get node_id for phantom node recipient");
4097                                                                 }
4098
4099                                                                 macro_rules! check_total_value {
4100                                                                         ($purpose: expr) => {{
4101                                                                                 let mut payment_claimable_generated = false;
4102                                                                                 let is_keysend = match $purpose {
4103                                                                                         events::PaymentPurpose::SpontaneousPayment(_) => true,
4104                                                                                         events::PaymentPurpose::InvoicePayment { .. } => false,
4105                                                                                 };
4106                                                                                 let mut claimable_payments = self.claimable_payments.lock().unwrap();
4107                                                                                 if claimable_payments.pending_claiming_payments.contains_key(&payment_hash) {
4108                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4109                                                                                 }
4110                                                                                 let ref mut claimable_payment = claimable_payments.claimable_payments
4111                                                                                         .entry(payment_hash)
4112                                                                                         // Note that if we insert here we MUST NOT fail_htlc!()
4113                                                                                         .or_insert_with(|| {
4114                                                                                                 committed_to_claimable = true;
4115                                                                                                 ClaimablePayment {
4116                                                                                                         purpose: $purpose.clone(), htlcs: Vec::new(), onion_fields: None,
4117                                                                                                 }
4118                                                                                         });
4119                                                                                 if $purpose != claimable_payment.purpose {
4120                                                                                         let log_keysend = |keysend| if keysend { "keysend" } else { "non-keysend" };
4121                                                                                         log_trace!(self.logger, "Failing new {} HTLC with payment_hash {} as we already had an existing {} HTLC with the same payment hash", log_keysend(is_keysend), log_bytes!(payment_hash.0), log_keysend(!is_keysend));
4122                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4123                                                                                 }
4124                                                                                 if !self.default_configuration.accept_mpp_keysend && is_keysend && !claimable_payment.htlcs.is_empty() {
4125                                                                                         log_trace!(self.logger, "Failing new keysend HTLC with payment_hash {} as we already had an existing keysend HTLC with the same payment hash and our config states we don't accept MPP keysend", log_bytes!(payment_hash.0));
4126                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4127                                                                                 }
4128                                                                                 if let Some(earlier_fields) = &mut claimable_payment.onion_fields {
4129                                                                                         if earlier_fields.check_merge(&mut onion_fields).is_err() {
4130                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4131                                                                                         }
4132                                                                                 } else {
4133                                                                                         claimable_payment.onion_fields = Some(onion_fields);
4134                                                                                 }
4135                                                                                 let ref mut htlcs = &mut claimable_payment.htlcs;
4136                                                                                 let mut total_value = claimable_htlc.sender_intended_value;
4137                                                                                 let mut earliest_expiry = claimable_htlc.cltv_expiry;
4138                                                                                 for htlc in htlcs.iter() {
4139                                                                                         total_value += htlc.sender_intended_value;
4140                                                                                         earliest_expiry = cmp::min(earliest_expiry, htlc.cltv_expiry);
4141                                                                                         if htlc.total_msat != claimable_htlc.total_msat {
4142                                                                                                 log_trace!(self.logger, "Failing HTLCs with payment_hash {} as the HTLCs had inconsistent total values (eg {} and {})",
4143                                                                                                         log_bytes!(payment_hash.0), claimable_htlc.total_msat, htlc.total_msat);
4144                                                                                                 total_value = msgs::MAX_VALUE_MSAT;
4145                                                                                         }
4146                                                                                         if total_value >= msgs::MAX_VALUE_MSAT { break; }
4147                                                                                 }
4148                                                                                 // The condition determining whether an MPP is complete must
4149                                                                                 // match exactly the condition used in `timer_tick_occurred`
4150                                                                                 if total_value >= msgs::MAX_VALUE_MSAT {
4151                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4152                                                                                 } else if total_value - claimable_htlc.sender_intended_value >= claimable_htlc.total_msat {
4153                                                                                         log_trace!(self.logger, "Failing HTLC with payment_hash {} as payment is already claimable",
4154                                                                                                 log_bytes!(payment_hash.0));
4155                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4156                                                                                 } else if total_value >= claimable_htlc.total_msat {
4157                                                                                         #[allow(unused_assignments)] {
4158                                                                                                 committed_to_claimable = true;
4159                                                                                         }
4160                                                                                         let prev_channel_id = prev_funding_outpoint.to_channel_id();
4161                                                                                         htlcs.push(claimable_htlc);
4162                                                                                         let amount_msat = htlcs.iter().map(|htlc| htlc.value).sum();
4163                                                                                         htlcs.iter_mut().for_each(|htlc| htlc.total_value_received = Some(amount_msat));
4164                                                                                         let counterparty_skimmed_fee_msat = htlcs.iter()
4165                                                                                                 .map(|htlc| htlc.counterparty_skimmed_fee_msat.unwrap_or(0)).sum();
4166                                                                                         debug_assert!(total_value.saturating_sub(amount_msat) <=
4167                                                                                                 counterparty_skimmed_fee_msat);
4168                                                                                         new_events.push_back((events::Event::PaymentClaimable {
4169                                                                                                 receiver_node_id: Some(receiver_node_id),
4170                                                                                                 payment_hash,
4171                                                                                                 purpose: $purpose,
4172                                                                                                 amount_msat,
4173                                                                                                 counterparty_skimmed_fee_msat,
4174                                                                                                 via_channel_id: Some(prev_channel_id),
4175                                                                                                 via_user_channel_id: Some(prev_user_channel_id),
4176                                                                                                 claim_deadline: Some(earliest_expiry - HTLC_FAIL_BACK_BUFFER),
4177                                                                                                 onion_fields: claimable_payment.onion_fields.clone(),
4178                                                                                         }, None));
4179                                                                                         payment_claimable_generated = true;
4180                                                                                 } else {
4181                                                                                         // Nothing to do - we haven't reached the total
4182                                                                                         // payment value yet, wait until we receive more
4183                                                                                         // MPP parts.
4184                                                                                         htlcs.push(claimable_htlc);
4185                                                                                         #[allow(unused_assignments)] {
4186                                                                                                 committed_to_claimable = true;
4187                                                                                         }
4188                                                                                 }
4189                                                                                 payment_claimable_generated
4190                                                                         }}
4191                                                                 }
4192
4193                                                                 // Check that the payment hash and secret are known. Note that we
4194                                                                 // MUST take care to handle the "unknown payment hash" and
4195                                                                 // "incorrect payment secret" cases here identically or we'd expose
4196                                                                 // that we are the ultimate recipient of the given payment hash.
4197                                                                 // Further, we must not expose whether we have any other HTLCs
4198                                                                 // associated with the same payment_hash pending or not.
4199                                                                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
4200                                                                 match payment_secrets.entry(payment_hash) {
4201                                                                         hash_map::Entry::Vacant(_) => {
4202                                                                                 match claimable_htlc.onion_payload {
4203                                                                                         OnionPayload::Invoice { .. } => {
4204                                                                                                 let payment_data = payment_data.unwrap();
4205                                                                                                 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) {
4206                                                                                                         Ok(result) => result,
4207                                                                                                         Err(()) => {
4208                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as payment verification failed", log_bytes!(payment_hash.0));
4209                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4210                                                                                                         }
4211                                                                                                 };
4212                                                                                                 if let Some(min_final_cltv_expiry_delta) = min_final_cltv_expiry_delta {
4213                                                                                                         let expected_min_expiry_height = (self.current_best_block().height() + min_final_cltv_expiry_delta as u32) as u64;
4214                                                                                                         if (cltv_expiry as u64) < expected_min_expiry_height {
4215                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as its CLTV expiry was too soon (had {}, earliest expected {})",
4216                                                                                                                         log_bytes!(payment_hash.0), cltv_expiry, expected_min_expiry_height);
4217                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4218                                                                                                         }
4219                                                                                                 }
4220                                                                                                 let purpose = events::PaymentPurpose::InvoicePayment {
4221                                                                                                         payment_preimage: payment_preimage.clone(),
4222                                                                                                         payment_secret: payment_data.payment_secret,
4223                                                                                                 };
4224                                                                                                 check_total_value!(purpose);
4225                                                                                         },
4226                                                                                         OnionPayload::Spontaneous(preimage) => {
4227                                                                                                 let purpose = events::PaymentPurpose::SpontaneousPayment(preimage);
4228                                                                                                 check_total_value!(purpose);
4229                                                                                         }
4230                                                                                 }
4231                                                                         },
4232                                                                         hash_map::Entry::Occupied(inbound_payment) => {
4233                                                                                 if let OnionPayload::Spontaneous(_) = claimable_htlc.onion_payload {
4234                                                                                         log_trace!(self.logger, "Failing new keysend HTLC with payment_hash {} because we already have an inbound payment with the same payment hash", log_bytes!(payment_hash.0));
4235                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4236                                                                                 }
4237                                                                                 let payment_data = payment_data.unwrap();
4238                                                                                 if inbound_payment.get().payment_secret != payment_data.payment_secret {
4239                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our expected payment secret.", log_bytes!(payment_hash.0));
4240                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4241                                                                                 } else if inbound_payment.get().min_value_msat.is_some() && payment_data.total_msat < inbound_payment.get().min_value_msat.unwrap() {
4242                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our minimum value (had {}, needed {}).",
4243                                                                                                 log_bytes!(payment_hash.0), payment_data.total_msat, inbound_payment.get().min_value_msat.unwrap());
4244                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4245                                                                                 } else {
4246                                                                                         let purpose = events::PaymentPurpose::InvoicePayment {
4247                                                                                                 payment_preimage: inbound_payment.get().payment_preimage,
4248                                                                                                 payment_secret: payment_data.payment_secret,
4249                                                                                         };
4250                                                                                         let payment_claimable_generated = check_total_value!(purpose);
4251                                                                                         if payment_claimable_generated {
4252                                                                                                 inbound_payment.remove_entry();
4253                                                                                         }
4254                                                                                 }
4255                                                                         },
4256                                                                 };
4257                                                         },
4258                                                         HTLCForwardInfo::FailHTLC { .. } => {
4259                                                                 panic!("Got pending fail of our own HTLC");
4260                                                         }
4261                                                 }
4262                                         }
4263                                 }
4264                         }
4265                 }
4266
4267                 let best_block_height = self.best_block.read().unwrap().height();
4268                 self.pending_outbound_payments.check_retry_payments(&self.router, || self.list_usable_channels(),
4269                         || self.compute_inflight_htlcs(), &self.entropy_source, &self.node_signer, best_block_height,
4270                         &self.pending_events, &self.logger, |args| self.send_payment_along_path(args));
4271
4272                 for (htlc_source, payment_hash, failure_reason, destination) in failed_forwards.drain(..) {
4273                         self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
4274                 }
4275                 self.forward_htlcs(&mut phantom_receives);
4276
4277                 // Freeing the holding cell here is relatively redundant - in practice we'll do it when we
4278                 // next get a `get_and_clear_pending_msg_events` call, but some tests rely on it, and it's
4279                 // nice to do the work now if we can rather than while we're trying to get messages in the
4280                 // network stack.
4281                 self.check_free_holding_cells();
4282
4283                 if new_events.is_empty() { return }
4284                 let mut events = self.pending_events.lock().unwrap();
4285                 events.append(&mut new_events);
4286         }
4287
4288         /// Free the background events, generally called from [`PersistenceNotifierGuard`] constructors.
4289         ///
4290         /// Expects the caller to have a total_consistency_lock read lock.
4291         fn process_background_events(&self) -> NotifyOption {
4292                 debug_assert_ne!(self.total_consistency_lock.held_by_thread(), LockHeldState::NotHeldByThread);
4293
4294                 self.background_events_processed_since_startup.store(true, Ordering::Release);
4295
4296                 let mut background_events = Vec::new();
4297                 mem::swap(&mut *self.pending_background_events.lock().unwrap(), &mut background_events);
4298                 if background_events.is_empty() {
4299                         return NotifyOption::SkipPersist;
4300                 }
4301
4302                 for event in background_events.drain(..) {
4303                         match event {
4304                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((funding_txo, update)) => {
4305                                         // The channel has already been closed, so no use bothering to care about the
4306                                         // monitor updating completing.
4307                                         let _ = self.chain_monitor.update_channel(funding_txo, &update);
4308                                 },
4309                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup { counterparty_node_id, funding_txo, update } => {
4310                                         let mut updated_chan = false;
4311                                         let res = {
4312                                                 let per_peer_state = self.per_peer_state.read().unwrap();
4313                                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
4314                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4315                                                         let peer_state = &mut *peer_state_lock;
4316                                                         match peer_state.channel_by_id.entry(funding_txo.to_channel_id()) {
4317                                                                 hash_map::Entry::Occupied(mut chan) => {
4318                                                                         updated_chan = true;
4319                                                                         handle_new_monitor_update!(self, funding_txo, update.clone(),
4320                                                                                 peer_state_lock, peer_state, per_peer_state, chan).map(|_| ())
4321                                                                 },
4322                                                                 hash_map::Entry::Vacant(_) => Ok(()),
4323                                                         }
4324                                                 } else { Ok(()) }
4325                                         };
4326                                         if !updated_chan {
4327                                                 // TODO: Track this as in-flight even though the channel is closed.
4328                                                 let _ = self.chain_monitor.update_channel(funding_txo, &update);
4329                                         }
4330                                         // TODO: If this channel has since closed, we're likely providing a payment
4331                                         // preimage update, which we must ensure is durable! We currently don't,
4332                                         // however, ensure that.
4333                                         if res.is_err() {
4334                                                 log_error!(self.logger,
4335                                                         "Failed to provide ChannelMonitorUpdate to closed channel! This likely lost us a payment preimage!");
4336                                         }
4337                                         let _ = handle_error!(self, res, counterparty_node_id);
4338                                 },
4339                                 BackgroundEvent::MonitorUpdatesComplete { counterparty_node_id, channel_id } => {
4340                                         let per_peer_state = self.per_peer_state.read().unwrap();
4341                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
4342                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4343                                                 let peer_state = &mut *peer_state_lock;
4344                                                 if let Some(chan) = peer_state.channel_by_id.get_mut(&channel_id) {
4345                                                         handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, chan);
4346                                                 } else {
4347                                                         let update_actions = peer_state.monitor_update_blocked_actions
4348                                                                 .remove(&channel_id).unwrap_or(Vec::new());
4349                                                         mem::drop(peer_state_lock);
4350                                                         mem::drop(per_peer_state);
4351                                                         self.handle_monitor_update_completion_actions(update_actions);
4352                                                 }
4353                                         }
4354                                 },
4355                         }
4356                 }
4357                 NotifyOption::DoPersist
4358         }
4359
4360         #[cfg(any(test, feature = "_test_utils"))]
4361         /// Process background events, for functional testing
4362         pub fn test_process_background_events(&self) {
4363                 let _lck = self.total_consistency_lock.read().unwrap();
4364                 let _ = self.process_background_events();
4365         }
4366
4367         fn update_channel_fee(&self, chan_id: &[u8; 32], chan: &mut Channel<SP>, new_feerate: u32) -> NotifyOption {
4368                 if !chan.context.is_outbound() { return NotifyOption::SkipPersist; }
4369                 // If the feerate has decreased by less than half, don't bother
4370                 if new_feerate <= chan.context.get_feerate_sat_per_1000_weight() && new_feerate * 2 > chan.context.get_feerate_sat_per_1000_weight() {
4371                         log_trace!(self.logger, "Channel {} does not qualify for a feerate change from {} to {}.",
4372                                 log_bytes!(chan_id[..]), chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4373                         return NotifyOption::SkipPersist;
4374                 }
4375                 if !chan.context.is_live() {
4376                         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).",
4377                                 log_bytes!(chan_id[..]), chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4378                         return NotifyOption::SkipPersist;
4379                 }
4380                 log_trace!(self.logger, "Channel {} qualifies for a feerate change from {} to {}.",
4381                         log_bytes!(chan_id[..]), chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4382
4383                 chan.queue_update_fee(new_feerate, &self.fee_estimator, &self.logger);
4384                 NotifyOption::DoPersist
4385         }
4386
4387         #[cfg(fuzzing)]
4388         /// In chanmon_consistency we want to sometimes do the channel fee updates done in
4389         /// timer_tick_occurred, but we can't generate the disabled channel updates as it considers
4390         /// these a fuzz failure (as they usually indicate a channel force-close, which is exactly what
4391         /// it wants to detect). Thus, we have a variant exposed here for its benefit.
4392         pub fn maybe_update_chan_fees(&self) {
4393                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
4394                         let mut should_persist = self.process_background_events();
4395
4396                         let normal_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
4397                         let min_mempool_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::MempoolMinimum);
4398
4399                         let per_peer_state = self.per_peer_state.read().unwrap();
4400                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
4401                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4402                                 let peer_state = &mut *peer_state_lock;
4403                                 for (chan_id, chan) in peer_state.channel_by_id.iter_mut() {
4404                                         let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
4405                                                 min_mempool_feerate
4406                                         } else {
4407                                                 normal_feerate
4408                                         };
4409                                         let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4410                                         if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4411                                 }
4412                         }
4413
4414                         should_persist
4415                 });
4416         }
4417
4418         /// Performs actions which should happen on startup and roughly once per minute thereafter.
4419         ///
4420         /// This currently includes:
4421         ///  * Increasing or decreasing the on-chain feerate estimates for our outbound channels,
4422         ///  * Broadcasting [`ChannelUpdate`] messages if we've been disconnected from our peer for more
4423         ///    than a minute, informing the network that they should no longer attempt to route over
4424         ///    the channel.
4425         ///  * Expiring a channel's previous [`ChannelConfig`] if necessary to only allow forwarding HTLCs
4426         ///    with the current [`ChannelConfig`].
4427         ///  * Removing peers which have disconnected but and no longer have any channels.
4428         ///  * Force-closing and removing channels which have not completed establishment in a timely manner.
4429         ///
4430         /// Note that this may cause reentrancy through [`chain::Watch::update_channel`] calls or feerate
4431         /// estimate fetches.
4432         ///
4433         /// [`ChannelUpdate`]: msgs::ChannelUpdate
4434         /// [`ChannelConfig`]: crate::util::config::ChannelConfig
4435         pub fn timer_tick_occurred(&self) {
4436                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
4437                         let mut should_persist = self.process_background_events();
4438
4439                         let normal_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
4440                         let min_mempool_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::MempoolMinimum);
4441
4442                         let mut handle_errors: Vec<(Result<(), _>, _)> = Vec::new();
4443                         let mut timed_out_mpp_htlcs = Vec::new();
4444                         let mut pending_peers_awaiting_removal = Vec::new();
4445                         {
4446                                 let per_peer_state = self.per_peer_state.read().unwrap();
4447                                 for (counterparty_node_id, peer_state_mutex) in per_peer_state.iter() {
4448                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4449                                         let peer_state = &mut *peer_state_lock;
4450                                         let pending_msg_events = &mut peer_state.pending_msg_events;
4451                                         let counterparty_node_id = *counterparty_node_id;
4452                                         peer_state.channel_by_id.retain(|chan_id, chan| {
4453                                                 let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
4454                                                         min_mempool_feerate
4455                                                 } else {
4456                                                         normal_feerate
4457                                                 };
4458                                                 let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4459                                                 if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4460
4461                                                 if let Err(e) = chan.timer_check_closing_negotiation_progress() {
4462                                                         let (needs_close, err) = convert_chan_err!(self, e, chan, chan_id);
4463                                                         handle_errors.push((Err(err), counterparty_node_id));
4464                                                         if needs_close { return false; }
4465                                                 }
4466
4467                                                 match chan.channel_update_status() {
4468                                                         ChannelUpdateStatus::Enabled if !chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(0)),
4469                                                         ChannelUpdateStatus::Disabled if chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(0)),
4470                                                         ChannelUpdateStatus::DisabledStaged(_) if chan.context.is_live()
4471                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Enabled),
4472                                                         ChannelUpdateStatus::EnabledStaged(_) if !chan.context.is_live()
4473                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Disabled),
4474                                                         ChannelUpdateStatus::DisabledStaged(mut n) if !chan.context.is_live() => {
4475                                                                 n += 1;
4476                                                                 if n >= DISABLE_GOSSIP_TICKS {
4477                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Disabled);
4478                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4479                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4480                                                                                         msg: update
4481                                                                                 });
4482                                                                         }
4483                                                                         should_persist = NotifyOption::DoPersist;
4484                                                                 } else {
4485                                                                         chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(n));
4486                                                                 }
4487                                                         },
4488                                                         ChannelUpdateStatus::EnabledStaged(mut n) if chan.context.is_live() => {
4489                                                                 n += 1;
4490                                                                 if n >= ENABLE_GOSSIP_TICKS {
4491                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Enabled);
4492                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4493                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4494                                                                                         msg: update
4495                                                                                 });
4496                                                                         }
4497                                                                         should_persist = NotifyOption::DoPersist;
4498                                                                 } else {
4499                                                                         chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(n));
4500                                                                 }
4501                                                         },
4502                                                         _ => {},
4503                                                 }
4504
4505                                                 chan.context.maybe_expire_prev_config();
4506
4507                                                 if chan.should_disconnect_peer_awaiting_response() {
4508                                                         log_debug!(self.logger, "Disconnecting peer {} due to not making any progress on channel {}",
4509                                                                         counterparty_node_id, log_bytes!(*chan_id));
4510                                                         pending_msg_events.push(MessageSendEvent::HandleError {
4511                                                                 node_id: counterparty_node_id,
4512                                                                 action: msgs::ErrorAction::DisconnectPeerWithWarning {
4513                                                                         msg: msgs::WarningMessage {
4514                                                                                 channel_id: *chan_id,
4515                                                                                 data: "Disconnecting due to timeout awaiting response".to_owned(),
4516                                                                         },
4517                                                                 },
4518                                                         });
4519                                                 }
4520
4521                                                 true
4522                                         });
4523
4524                                         let process_unfunded_channel_tick = |
4525                                                 chan_id: &[u8; 32],
4526                                                 chan_context: &mut ChannelContext<SP>,
4527                                                 unfunded_chan_context: &mut UnfundedChannelContext,
4528                                                 pending_msg_events: &mut Vec<MessageSendEvent>,
4529                                         | {
4530                                                 chan_context.maybe_expire_prev_config();
4531                                                 if unfunded_chan_context.should_expire_unfunded_channel() {
4532                                                         log_error!(self.logger,
4533                                                                 "Force-closing pending channel with ID {} for not establishing in a timely manner",
4534                                                                 log_bytes!(&chan_id[..]));
4535                                                         update_maps_on_chan_removal!(self, &chan_context);
4536                                                         self.issue_channel_close_events(&chan_context, ClosureReason::HolderForceClosed);
4537                                                         self.finish_force_close_channel(chan_context.force_shutdown(false));
4538                                                         pending_msg_events.push(MessageSendEvent::HandleError {
4539                                                                 node_id: counterparty_node_id,
4540                                                                 action: msgs::ErrorAction::SendErrorMessage {
4541                                                                         msg: msgs::ErrorMessage {
4542                                                                                 channel_id: *chan_id,
4543                                                                                 data: "Force-closing pending channel due to timeout awaiting establishment handshake".to_owned(),
4544                                                                         },
4545                                                                 },
4546                                                         });
4547                                                         false
4548                                                 } else {
4549                                                         true
4550                                                 }
4551                                         };
4552                                         peer_state.outbound_v1_channel_by_id.retain(|chan_id, chan| process_unfunded_channel_tick(
4553                                                 chan_id, &mut chan.context, &mut chan.unfunded_context, pending_msg_events));
4554                                         peer_state.inbound_v1_channel_by_id.retain(|chan_id, chan| process_unfunded_channel_tick(
4555                                                 chan_id, &mut chan.context, &mut chan.unfunded_context, pending_msg_events));
4556
4557                                         for (chan_id, req) in peer_state.inbound_channel_request_by_id.iter_mut() {
4558                                                 if { req.ticks_remaining -= 1 ; req.ticks_remaining } <= 0 {
4559                                                         log_error!(self.logger, "Force-closing unaccepted inbound channel {} for not accepting in a timely manner", log_bytes!(&chan_id[..]));
4560                                                         peer_state.pending_msg_events.push(
4561                                                                 events::MessageSendEvent::HandleError {
4562                                                                         node_id: counterparty_node_id,
4563                                                                         action: msgs::ErrorAction::SendErrorMessage {
4564                                                                                 msg: msgs::ErrorMessage { channel_id: chan_id.clone(), data: "Channel force-closed".to_owned() }
4565                                                                         },
4566                                                                 }
4567                                                         );
4568                                                 }
4569                                         }
4570                                         peer_state.inbound_channel_request_by_id.retain(|_, req| req.ticks_remaining > 0);
4571
4572                                         if peer_state.ok_to_remove(true) {
4573                                                 pending_peers_awaiting_removal.push(counterparty_node_id);
4574                                         }
4575                                 }
4576                         }
4577
4578                         // When a peer disconnects but still has channels, the peer's `peer_state` entry in the
4579                         // `per_peer_state` is not removed by the `peer_disconnected` function. If the channels
4580                         // of to that peer is later closed while still being disconnected (i.e. force closed),
4581                         // we therefore need to remove the peer from `peer_state` separately.
4582                         // To avoid having to take the `per_peer_state` `write` lock once the channels are
4583                         // closed, we instead remove such peers awaiting removal here on a timer, to limit the
4584                         // negative effects on parallelism as much as possible.
4585                         if pending_peers_awaiting_removal.len() > 0 {
4586                                 let mut per_peer_state = self.per_peer_state.write().unwrap();
4587                                 for counterparty_node_id in pending_peers_awaiting_removal {
4588                                         match per_peer_state.entry(counterparty_node_id) {
4589                                                 hash_map::Entry::Occupied(entry) => {
4590                                                         // Remove the entry if the peer is still disconnected and we still
4591                                                         // have no channels to the peer.
4592                                                         let remove_entry = {
4593                                                                 let peer_state = entry.get().lock().unwrap();
4594                                                                 peer_state.ok_to_remove(true)
4595                                                         };
4596                                                         if remove_entry {
4597                                                                 entry.remove_entry();
4598                                                         }
4599                                                 },
4600                                                 hash_map::Entry::Vacant(_) => { /* The PeerState has already been removed */ }
4601                                         }
4602                                 }
4603                         }
4604
4605                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
4606                                 if payment.htlcs.is_empty() {
4607                                         // This should be unreachable
4608                                         debug_assert!(false);
4609                                         return false;
4610                                 }
4611                                 if let OnionPayload::Invoice { .. } = payment.htlcs[0].onion_payload {
4612                                         // Check if we've received all the parts we need for an MPP (the value of the parts adds to total_msat).
4613                                         // In this case we're not going to handle any timeouts of the parts here.
4614                                         // This condition determining whether the MPP is complete here must match
4615                                         // exactly the condition used in `process_pending_htlc_forwards`.
4616                                         if payment.htlcs[0].total_msat <= payment.htlcs.iter()
4617                                                 .fold(0, |total, htlc| total + htlc.sender_intended_value)
4618                                         {
4619                                                 return true;
4620                                         } else if payment.htlcs.iter_mut().any(|htlc| {
4621                                                 htlc.timer_ticks += 1;
4622                                                 return htlc.timer_ticks >= MPP_TIMEOUT_TICKS
4623                                         }) {
4624                                                 timed_out_mpp_htlcs.extend(payment.htlcs.drain(..)
4625                                                         .map(|htlc: ClaimableHTLC| (htlc.prev_hop, *payment_hash)));
4626                                                 return false;
4627                                         }
4628                                 }
4629                                 true
4630                         });
4631
4632                         for htlc_source in timed_out_mpp_htlcs.drain(..) {
4633                                 let source = HTLCSource::PreviousHopData(htlc_source.0.clone());
4634                                 let reason = HTLCFailReason::from_failure_code(23);
4635                                 let receiver = HTLCDestination::FailedPayment { payment_hash: htlc_source.1 };
4636                                 self.fail_htlc_backwards_internal(&source, &htlc_source.1, &reason, receiver);
4637                         }
4638
4639                         for (err, counterparty_node_id) in handle_errors.drain(..) {
4640                                 let _ = handle_error!(self, err, counterparty_node_id);
4641                         }
4642
4643                         self.pending_outbound_payments.remove_stale_resolved_payments(&self.pending_events);
4644
4645                         // Technically we don't need to do this here, but if we have holding cell entries in a
4646                         // channel that need freeing, it's better to do that here and block a background task
4647                         // than block the message queueing pipeline.
4648                         if self.check_free_holding_cells() {
4649                                 should_persist = NotifyOption::DoPersist;
4650                         }
4651
4652                         should_persist
4653                 });
4654         }
4655
4656         /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
4657         /// after a PaymentClaimable event, failing the HTLC back to its origin and freeing resources
4658         /// along the path (including in our own channel on which we received it).
4659         ///
4660         /// Note that in some cases around unclean shutdown, it is possible the payment may have
4661         /// already been claimed by you via [`ChannelManager::claim_funds`] prior to you seeing (a
4662         /// second copy of) the [`events::Event::PaymentClaimable`] event. Alternatively, the payment
4663         /// may have already been failed automatically by LDK if it was nearing its expiration time.
4664         ///
4665         /// While LDK will never claim a payment automatically on your behalf (i.e. without you calling
4666         /// [`ChannelManager::claim_funds`]), you should still monitor for
4667         /// [`events::Event::PaymentClaimed`] events even for payments you intend to fail, especially on
4668         /// startup during which time claims that were in-progress at shutdown may be replayed.
4669         pub fn fail_htlc_backwards(&self, payment_hash: &PaymentHash) {
4670                 self.fail_htlc_backwards_with_reason(payment_hash, FailureCode::IncorrectOrUnknownPaymentDetails);
4671         }
4672
4673         /// This is a variant of [`ChannelManager::fail_htlc_backwards`] that allows you to specify the
4674         /// reason for the failure.
4675         ///
4676         /// See [`FailureCode`] for valid failure codes.
4677         pub fn fail_htlc_backwards_with_reason(&self, payment_hash: &PaymentHash, failure_code: FailureCode) {
4678                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4679
4680                 let removed_source = self.claimable_payments.lock().unwrap().claimable_payments.remove(payment_hash);
4681                 if let Some(payment) = removed_source {
4682                         for htlc in payment.htlcs {
4683                                 let reason = self.get_htlc_fail_reason_from_failure_code(failure_code, &htlc);
4684                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
4685                                 let receiver = HTLCDestination::FailedPayment { payment_hash: *payment_hash };
4686                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
4687                         }
4688                 }
4689         }
4690
4691         /// Gets error data to form an [`HTLCFailReason`] given a [`FailureCode`] and [`ClaimableHTLC`].
4692         fn get_htlc_fail_reason_from_failure_code(&self, failure_code: FailureCode, htlc: &ClaimableHTLC) -> HTLCFailReason {
4693                 match failure_code {
4694                         FailureCode::TemporaryNodeFailure => HTLCFailReason::from_failure_code(failure_code.into()),
4695                         FailureCode::RequiredNodeFeatureMissing => HTLCFailReason::from_failure_code(failure_code.into()),
4696                         FailureCode::IncorrectOrUnknownPaymentDetails => {
4697                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
4698                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
4699                                 HTLCFailReason::reason(failure_code.into(), htlc_msat_height_data)
4700                         },
4701                         FailureCode::InvalidOnionPayload(data) => {
4702                                 let fail_data = match data {
4703                                         Some((typ, offset)) => [BigSize(typ).encode(), offset.encode()].concat(),
4704                                         None => Vec::new(),
4705                                 };
4706                                 HTLCFailReason::reason(failure_code.into(), fail_data)
4707                         }
4708                 }
4709         }
4710
4711         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
4712         /// that we want to return and a channel.
4713         ///
4714         /// This is for failures on the channel on which the HTLC was *received*, not failures
4715         /// forwarding
4716         fn get_htlc_inbound_temp_fail_err_and_data(&self, desired_err_code: u16, chan: &Channel<SP>) -> (u16, Vec<u8>) {
4717                 // We can't be sure what SCID was used when relaying inbound towards us, so we have to
4718                 // guess somewhat. If its a public channel, we figure best to just use the real SCID (as
4719                 // we're not leaking that we have a channel with the counterparty), otherwise we try to use
4720                 // an inbound SCID alias before the real SCID.
4721                 let scid_pref = if chan.context.should_announce() {
4722                         chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias())
4723                 } else {
4724                         chan.context.latest_inbound_scid_alias().or(chan.context.get_short_channel_id())
4725                 };
4726                 if let Some(scid) = scid_pref {
4727                         self.get_htlc_temp_fail_err_and_data(desired_err_code, scid, chan)
4728                 } else {
4729                         (0x4000|10, Vec::new())
4730                 }
4731         }
4732
4733
4734         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
4735         /// that we want to return and a channel.
4736         fn get_htlc_temp_fail_err_and_data(&self, desired_err_code: u16, scid: u64, chan: &Channel<SP>) -> (u16, Vec<u8>) {
4737                 debug_assert_eq!(desired_err_code & 0x1000, 0x1000);
4738                 if let Ok(upd) = self.get_channel_update_for_onion(scid, chan) {
4739                         let mut enc = VecWriter(Vec::with_capacity(upd.serialized_length() + 6));
4740                         if desired_err_code == 0x1000 | 20 {
4741                                 // No flags for `disabled_flags` are currently defined so they're always two zero bytes.
4742                                 // See https://github.com/lightning/bolts/blob/341ec84/04-onion-routing.md?plain=1#L1008
4743                                 0u16.write(&mut enc).expect("Writes cannot fail");
4744                         }
4745                         (upd.serialized_length() as u16 + 2).write(&mut enc).expect("Writes cannot fail");
4746                         msgs::ChannelUpdate::TYPE.write(&mut enc).expect("Writes cannot fail");
4747                         upd.write(&mut enc).expect("Writes cannot fail");
4748                         (desired_err_code, enc.0)
4749                 } else {
4750                         // If we fail to get a unicast channel_update, it implies we don't yet have an SCID,
4751                         // which means we really shouldn't have gotten a payment to be forwarded over this
4752                         // channel yet, or if we did it's from a route hint. Either way, returning an error of
4753                         // PERM|no_such_channel should be fine.
4754                         (0x4000|10, Vec::new())
4755                 }
4756         }
4757
4758         // Fail a list of HTLCs that were just freed from the holding cell. The HTLCs need to be
4759         // failed backwards or, if they were one of our outgoing HTLCs, then their failure needs to
4760         // be surfaced to the user.
4761         fn fail_holding_cell_htlcs(
4762                 &self, mut htlcs_to_fail: Vec<(HTLCSource, PaymentHash)>, channel_id: [u8; 32],
4763                 counterparty_node_id: &PublicKey
4764         ) {
4765                 let (failure_code, onion_failure_data) = {
4766                         let per_peer_state = self.per_peer_state.read().unwrap();
4767                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
4768                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4769                                 let peer_state = &mut *peer_state_lock;
4770                                 match peer_state.channel_by_id.entry(channel_id) {
4771                                         hash_map::Entry::Occupied(chan_entry) => {
4772                                                 self.get_htlc_inbound_temp_fail_err_and_data(0x1000|7, &chan_entry.get())
4773                                         },
4774                                         hash_map::Entry::Vacant(_) => (0x4000|10, Vec::new())
4775                                 }
4776                         } else { (0x4000|10, Vec::new()) }
4777                 };
4778
4779                 for (htlc_src, payment_hash) in htlcs_to_fail.drain(..) {
4780                         let reason = HTLCFailReason::reason(failure_code, onion_failure_data.clone());
4781                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id };
4782                         self.fail_htlc_backwards_internal(&htlc_src, &payment_hash, &reason, receiver);
4783                 }
4784         }
4785
4786         /// Fails an HTLC backwards to the sender of it to us.
4787         /// Note that we do not assume that channels corresponding to failed HTLCs are still available.
4788         fn fail_htlc_backwards_internal(&self, source: &HTLCSource, payment_hash: &PaymentHash, onion_error: &HTLCFailReason, destination: HTLCDestination) {
4789                 // Ensure that no peer state channel storage lock is held when calling this function.
4790                 // This ensures that future code doesn't introduce a lock-order requirement for
4791                 // `forward_htlcs` to be locked after the `per_peer_state` peer locks, which calling
4792                 // this function with any `per_peer_state` peer lock acquired would.
4793                 for (_, peer) in self.per_peer_state.read().unwrap().iter() {
4794                         debug_assert_ne!(peer.held_by_thread(), LockHeldState::HeldByThread);
4795                 }
4796
4797                 //TODO: There is a timing attack here where if a node fails an HTLC back to us they can
4798                 //identify whether we sent it or not based on the (I presume) very different runtime
4799                 //between the branches here. We should make this async and move it into the forward HTLCs
4800                 //timer handling.
4801
4802                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
4803                 // from block_connected which may run during initialization prior to the chain_monitor
4804                 // being fully configured. See the docs for `ChannelManagerReadArgs` for more.
4805                 match source {
4806                         HTLCSource::OutboundRoute { ref path, ref session_priv, ref payment_id, .. } => {
4807                                 if self.pending_outbound_payments.fail_htlc(source, payment_hash, onion_error, path,
4808                                         session_priv, payment_id, self.probing_cookie_secret, &self.secp_ctx,
4809                                         &self.pending_events, &self.logger)
4810                                 { self.push_pending_forwards_ev(); }
4811                         },
4812                         HTLCSource::PreviousHopData(HTLCPreviousHopData { ref short_channel_id, ref htlc_id, ref incoming_packet_shared_secret, ref phantom_shared_secret, ref outpoint, .. }) => {
4813                                 log_trace!(self.logger, "Failing HTLC with payment_hash {} backwards from us with {:?}", log_bytes!(payment_hash.0), onion_error);
4814                                 let err_packet = onion_error.get_encrypted_failure_packet(incoming_packet_shared_secret, phantom_shared_secret);
4815
4816                                 let mut push_forward_ev = false;
4817                                 let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
4818                                 if forward_htlcs.is_empty() {
4819                                         push_forward_ev = true;
4820                                 }
4821                                 match forward_htlcs.entry(*short_channel_id) {
4822                                         hash_map::Entry::Occupied(mut entry) => {
4823                                                 entry.get_mut().push(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet });
4824                                         },
4825                                         hash_map::Entry::Vacant(entry) => {
4826                                                 entry.insert(vec!(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet }));
4827                                         }
4828                                 }
4829                                 mem::drop(forward_htlcs);
4830                                 if push_forward_ev { self.push_pending_forwards_ev(); }
4831                                 let mut pending_events = self.pending_events.lock().unwrap();
4832                                 pending_events.push_back((events::Event::HTLCHandlingFailed {
4833                                         prev_channel_id: outpoint.to_channel_id(),
4834                                         failed_next_destination: destination,
4835                                 }, None));
4836                         },
4837                 }
4838         }
4839
4840         /// Provides a payment preimage in response to [`Event::PaymentClaimable`], generating any
4841         /// [`MessageSendEvent`]s needed to claim the payment.
4842         ///
4843         /// This method is guaranteed to ensure the payment has been claimed but only if the current
4844         /// height is strictly below [`Event::PaymentClaimable::claim_deadline`]. To avoid race
4845         /// conditions, you should wait for an [`Event::PaymentClaimed`] before considering the payment
4846         /// successful. It will generally be available in the next [`process_pending_events`] call.
4847         ///
4848         /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
4849         /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentClaimable`
4850         /// event matches your expectation. If you fail to do so and call this method, you may provide
4851         /// the sender "proof-of-payment" when they did not fulfill the full expected payment.
4852         ///
4853         /// This function will fail the payment if it has custom TLVs with even type numbers, as we
4854         /// will assume they are unknown. If you intend to accept even custom TLVs, you should use
4855         /// [`claim_funds_with_known_custom_tlvs`].
4856         ///
4857         /// [`Event::PaymentClaimable`]: crate::events::Event::PaymentClaimable
4858         /// [`Event::PaymentClaimable::claim_deadline`]: crate::events::Event::PaymentClaimable::claim_deadline
4859         /// [`Event::PaymentClaimed`]: crate::events::Event::PaymentClaimed
4860         /// [`process_pending_events`]: EventsProvider::process_pending_events
4861         /// [`create_inbound_payment`]: Self::create_inbound_payment
4862         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
4863         /// [`claim_funds_with_known_custom_tlvs`]: Self::claim_funds_with_known_custom_tlvs
4864         pub fn claim_funds(&self, payment_preimage: PaymentPreimage) {
4865                 self.claim_payment_internal(payment_preimage, false);
4866         }
4867
4868         /// This is a variant of [`claim_funds`] that allows accepting a payment with custom TLVs with
4869         /// even type numbers.
4870         ///
4871         /// # Note
4872         ///
4873         /// You MUST check you've understood all even TLVs before using this to
4874         /// claim, otherwise you may unintentionally agree to some protocol you do not understand.
4875         ///
4876         /// [`claim_funds`]: Self::claim_funds
4877         pub fn claim_funds_with_known_custom_tlvs(&self, payment_preimage: PaymentPreimage) {
4878                 self.claim_payment_internal(payment_preimage, true);
4879         }
4880
4881         fn claim_payment_internal(&self, payment_preimage: PaymentPreimage, custom_tlvs_known: bool) {
4882                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
4883
4884                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4885
4886                 let mut sources = {
4887                         let mut claimable_payments = self.claimable_payments.lock().unwrap();
4888                         if let Some(payment) = claimable_payments.claimable_payments.remove(&payment_hash) {
4889                                 let mut receiver_node_id = self.our_network_pubkey;
4890                                 for htlc in payment.htlcs.iter() {
4891                                         if htlc.prev_hop.phantom_shared_secret.is_some() {
4892                                                 let phantom_pubkey = self.node_signer.get_node_id(Recipient::PhantomNode)
4893                                                         .expect("Failed to get node_id for phantom node recipient");
4894                                                 receiver_node_id = phantom_pubkey;
4895                                                 break;
4896                                         }
4897                                 }
4898
4899                                 let htlcs = payment.htlcs.iter().map(events::ClaimedHTLC::from).collect();
4900                                 let sender_intended_value = payment.htlcs.first().map(|htlc| htlc.total_msat);
4901                                 let dup_purpose = claimable_payments.pending_claiming_payments.insert(payment_hash,
4902                                         ClaimingPayment { amount_msat: payment.htlcs.iter().map(|source| source.value).sum(),
4903                                         payment_purpose: payment.purpose, receiver_node_id, htlcs, sender_intended_value
4904                                 });
4905                                 if dup_purpose.is_some() {
4906                                         debug_assert!(false, "Shouldn't get a duplicate pending claim event ever");
4907                                         log_error!(self.logger, "Got a duplicate pending claimable event on payment hash {}! Please report this bug",
4908                                                 log_bytes!(payment_hash.0));
4909                                 }
4910
4911                                 if let Some(RecipientOnionFields { ref custom_tlvs, .. }) = payment.onion_fields {
4912                                         if !custom_tlvs_known && custom_tlvs.iter().any(|(typ, _)| typ % 2 == 0) {
4913                                                 log_info!(self.logger, "Rejecting payment with payment hash {} as we cannot accept payment with unknown even TLVs: {}",
4914                                                         log_bytes!(payment_hash.0), log_iter!(custom_tlvs.iter().map(|(typ, _)| typ).filter(|typ| *typ % 2 == 0)));
4915                                                 claimable_payments.pending_claiming_payments.remove(&payment_hash);
4916                                                 mem::drop(claimable_payments);
4917                                                 for htlc in payment.htlcs {
4918                                                         let reason = self.get_htlc_fail_reason_from_failure_code(FailureCode::InvalidOnionPayload(None), &htlc);
4919                                                         let source = HTLCSource::PreviousHopData(htlc.prev_hop);
4920                                                         let receiver = HTLCDestination::FailedPayment { payment_hash };
4921                                                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
4922                                                 }
4923                                                 return;
4924                                         }
4925                                 }
4926
4927                                 payment.htlcs
4928                         } else { return; }
4929                 };
4930                 debug_assert!(!sources.is_empty());
4931
4932                 // Just in case one HTLC has been failed between when we generated the `PaymentClaimable`
4933                 // and when we got here we need to check that the amount we're about to claim matches the
4934                 // amount we told the user in the last `PaymentClaimable`. We also do a sanity-check that
4935                 // the MPP parts all have the same `total_msat`.
4936                 let mut claimable_amt_msat = 0;
4937                 let mut prev_total_msat = None;
4938                 let mut expected_amt_msat = None;
4939                 let mut valid_mpp = true;
4940                 let mut errs = Vec::new();
4941                 let per_peer_state = self.per_peer_state.read().unwrap();
4942                 for htlc in sources.iter() {
4943                         if prev_total_msat.is_some() && prev_total_msat != Some(htlc.total_msat) {
4944                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different expected total amounts - this should not be reachable!");
4945                                 debug_assert!(false);
4946                                 valid_mpp = false;
4947                                 break;
4948                         }
4949                         prev_total_msat = Some(htlc.total_msat);
4950
4951                         if expected_amt_msat.is_some() && expected_amt_msat != htlc.total_value_received {
4952                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different received total amounts - this should not be reachable!");
4953                                 debug_assert!(false);
4954                                 valid_mpp = false;
4955                                 break;
4956                         }
4957                         expected_amt_msat = htlc.total_value_received;
4958                         claimable_amt_msat += htlc.value;
4959                 }
4960                 mem::drop(per_peer_state);
4961                 if sources.is_empty() || expected_amt_msat.is_none() {
4962                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
4963                         log_info!(self.logger, "Attempted to claim an incomplete payment which no longer had any available HTLCs!");
4964                         return;
4965                 }
4966                 if claimable_amt_msat != expected_amt_msat.unwrap() {
4967                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
4968                         log_info!(self.logger, "Attempted to claim an incomplete payment, expected {} msat, had {} available to claim.",
4969                                 expected_amt_msat.unwrap(), claimable_amt_msat);
4970                         return;
4971                 }
4972                 if valid_mpp {
4973                         for htlc in sources.drain(..) {
4974                                 if let Err((pk, err)) = self.claim_funds_from_hop(
4975                                         htlc.prev_hop, payment_preimage,
4976                                         |_| Some(MonitorUpdateCompletionAction::PaymentClaimed { payment_hash }))
4977                                 {
4978                                         if let msgs::ErrorAction::IgnoreError = err.err.action {
4979                                                 // We got a temporary failure updating monitor, but will claim the
4980                                                 // HTLC when the monitor updating is restored (or on chain).
4981                                                 log_error!(self.logger, "Temporary failure claiming HTLC, treating as success: {}", err.err.err);
4982                                         } else { errs.push((pk, err)); }
4983                                 }
4984                         }
4985                 }
4986                 if !valid_mpp {
4987                         for htlc in sources.drain(..) {
4988                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
4989                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
4990                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
4991                                 let reason = HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data);
4992                                 let receiver = HTLCDestination::FailedPayment { payment_hash };
4993                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
4994                         }
4995                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
4996                 }
4997
4998                 // Now we can handle any errors which were generated.
4999                 for (counterparty_node_id, err) in errs.drain(..) {
5000                         let res: Result<(), _> = Err(err);
5001                         let _ = handle_error!(self, res, counterparty_node_id);
5002                 }
5003         }
5004
5005         fn claim_funds_from_hop<ComplFunc: FnOnce(Option<u64>) -> Option<MonitorUpdateCompletionAction>>(&self,
5006                 prev_hop: HTLCPreviousHopData, payment_preimage: PaymentPreimage, completion_action: ComplFunc)
5007         -> Result<(), (PublicKey, MsgHandleErrInternal)> {
5008                 //TODO: Delay the claimed_funds relaying just like we do outbound relay!
5009
5010                 // If we haven't yet run background events assume we're still deserializing and shouldn't
5011                 // actually pass `ChannelMonitorUpdate`s to users yet. Instead, queue them up as
5012                 // `BackgroundEvent`s.
5013                 let during_init = !self.background_events_processed_since_startup.load(Ordering::Acquire);
5014
5015                 {
5016                         let per_peer_state = self.per_peer_state.read().unwrap();
5017                         let chan_id = prev_hop.outpoint.to_channel_id();
5018                         let counterparty_node_id_opt = match self.short_to_chan_info.read().unwrap().get(&prev_hop.short_channel_id) {
5019                                 Some((cp_id, _dup_chan_id)) => Some(cp_id.clone()),
5020                                 None => None
5021                         };
5022
5023                         let peer_state_opt = counterparty_node_id_opt.as_ref().map(
5024                                 |counterparty_node_id| per_peer_state.get(counterparty_node_id)
5025                                         .map(|peer_mutex| peer_mutex.lock().unwrap())
5026                         ).unwrap_or(None);
5027
5028                         if peer_state_opt.is_some() {
5029                                 let mut peer_state_lock = peer_state_opt.unwrap();
5030                                 let peer_state = &mut *peer_state_lock;
5031                                 if let hash_map::Entry::Occupied(mut chan) = peer_state.channel_by_id.entry(chan_id) {
5032                                         let counterparty_node_id = chan.get().context.get_counterparty_node_id();
5033                                         let fulfill_res = chan.get_mut().get_update_fulfill_htlc_and_commit(prev_hop.htlc_id, payment_preimage, &self.logger);
5034
5035                                         if let UpdateFulfillCommitFetch::NewClaim { htlc_value_msat, monitor_update } = fulfill_res {
5036                                                 if let Some(action) = completion_action(Some(htlc_value_msat)) {
5037                                                         log_trace!(self.logger, "Tracking monitor update completion action for channel {}: {:?}",
5038                                                                 log_bytes!(chan_id), action);
5039                                                         peer_state.monitor_update_blocked_actions.entry(chan_id).or_insert(Vec::new()).push(action);
5040                                                 }
5041                                                 if !during_init {
5042                                                         let res = handle_new_monitor_update!(self, prev_hop.outpoint, monitor_update, peer_state_lock,
5043                                                                 peer_state, per_peer_state, chan);
5044                                                         if let Err(e) = res {
5045                                                                 // TODO: This is a *critical* error - we probably updated the outbound edge
5046                                                                 // of the HTLC's monitor with a preimage. We should retry this monitor
5047                                                                 // update over and over again until morale improves.
5048                                                                 log_error!(self.logger, "Failed to update channel monitor with preimage {:?}", payment_preimage);
5049                                                                 return Err((counterparty_node_id, e));
5050                                                         }
5051                                                 } else {
5052                                                         // If we're running during init we cannot update a monitor directly -
5053                                                         // they probably haven't actually been loaded yet. Instead, push the
5054                                                         // monitor update as a background event.
5055                                                         self.pending_background_events.lock().unwrap().push(
5056                                                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
5057                                                                         counterparty_node_id,
5058                                                                         funding_txo: prev_hop.outpoint,
5059                                                                         update: monitor_update.clone(),
5060                                                                 });
5061                                                 }
5062                                         }
5063                                         return Ok(());
5064                                 }
5065                         }
5066                 }
5067                 let preimage_update = ChannelMonitorUpdate {
5068                         update_id: CLOSED_CHANNEL_UPDATE_ID,
5069                         updates: vec![ChannelMonitorUpdateStep::PaymentPreimage {
5070                                 payment_preimage,
5071                         }],
5072                 };
5073
5074                 if !during_init {
5075                         // We update the ChannelMonitor on the backward link, after
5076                         // receiving an `update_fulfill_htlc` from the forward link.
5077                         let update_res = self.chain_monitor.update_channel(prev_hop.outpoint, &preimage_update);
5078                         if update_res != ChannelMonitorUpdateStatus::Completed {
5079                                 // TODO: This needs to be handled somehow - if we receive a monitor update
5080                                 // with a preimage we *must* somehow manage to propagate it to the upstream
5081                                 // channel, or we must have an ability to receive the same event and try
5082                                 // again on restart.
5083                                 log_error!(self.logger, "Critical error: failed to update channel monitor with preimage {:?}: {:?}",
5084                                         payment_preimage, update_res);
5085                         }
5086                 } else {
5087                         // If we're running during init we cannot update a monitor directly - they probably
5088                         // haven't actually been loaded yet. Instead, push the monitor update as a background
5089                         // event.
5090                         // Note that while it's safe to use `ClosedMonitorUpdateRegeneratedOnStartup` here (the
5091                         // channel is already closed) we need to ultimately handle the monitor update
5092                         // completion action only after we've completed the monitor update. This is the only
5093                         // way to guarantee this update *will* be regenerated on startup (otherwise if this was
5094                         // from a forwarded HTLC the downstream preimage may be deleted before we claim
5095                         // upstream). Thus, we need to transition to some new `BackgroundEvent` type which will
5096                         // complete the monitor update completion action from `completion_action`.
5097                         self.pending_background_events.lock().unwrap().push(
5098                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((
5099                                         prev_hop.outpoint, preimage_update,
5100                                 )));
5101                 }
5102                 // Note that we do process the completion action here. This totally could be a
5103                 // duplicate claim, but we have no way of knowing without interrogating the
5104                 // `ChannelMonitor` we've provided the above update to. Instead, note that `Event`s are
5105                 // generally always allowed to be duplicative (and it's specifically noted in
5106                 // `PaymentForwarded`).
5107                 self.handle_monitor_update_completion_actions(completion_action(None));
5108                 Ok(())
5109         }
5110
5111         fn finalize_claims(&self, sources: Vec<HTLCSource>) {
5112                 self.pending_outbound_payments.finalize_claims(sources, &self.pending_events);
5113         }
5114
5115         fn claim_funds_internal(&self, source: HTLCSource, payment_preimage: PaymentPreimage, forwarded_htlc_value_msat: Option<u64>, from_onchain: bool, next_channel_outpoint: OutPoint) {
5116                 match source {
5117                         HTLCSource::OutboundRoute { session_priv, payment_id, path, .. } => {
5118                                 debug_assert!(self.background_events_processed_since_startup.load(Ordering::Acquire),
5119                                         "We don't support claim_htlc claims during startup - monitors may not be available yet");
5120                                 let ev_completion_action = EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
5121                                         channel_funding_outpoint: next_channel_outpoint,
5122                                         counterparty_node_id: path.hops[0].pubkey,
5123                                 };
5124                                 self.pending_outbound_payments.claim_htlc(payment_id, payment_preimage,
5125                                         session_priv, path, from_onchain, ev_completion_action, &self.pending_events,
5126                                         &self.logger);
5127                         },
5128                         HTLCSource::PreviousHopData(hop_data) => {
5129                                 let prev_outpoint = hop_data.outpoint;
5130                                 let res = self.claim_funds_from_hop(hop_data, payment_preimage,
5131                                         |htlc_claim_value_msat| {
5132                                                 if let Some(forwarded_htlc_value) = forwarded_htlc_value_msat {
5133                                                         let fee_earned_msat = if let Some(claimed_htlc_value) = htlc_claim_value_msat {
5134                                                                 Some(claimed_htlc_value - forwarded_htlc_value)
5135                                                         } else { None };
5136
5137                                                         Some(MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
5138                                                                 event: events::Event::PaymentForwarded {
5139                                                                         fee_earned_msat,
5140                                                                         claim_from_onchain_tx: from_onchain,
5141                                                                         prev_channel_id: Some(prev_outpoint.to_channel_id()),
5142                                                                         next_channel_id: Some(next_channel_outpoint.to_channel_id()),
5143                                                                         outbound_amount_forwarded_msat: forwarded_htlc_value_msat,
5144                                                                 },
5145                                                                 downstream_counterparty_and_funding_outpoint: None,
5146                                                         })
5147                                                 } else { None }
5148                                         });
5149                                 if let Err((pk, err)) = res {
5150                                         let result: Result<(), _> = Err(err);
5151                                         let _ = handle_error!(self, result, pk);
5152                                 }
5153                         },
5154                 }
5155         }
5156
5157         /// Gets the node_id held by this ChannelManager
5158         pub fn get_our_node_id(&self) -> PublicKey {
5159                 self.our_network_pubkey.clone()
5160         }
5161
5162         fn handle_monitor_update_completion_actions<I: IntoIterator<Item=MonitorUpdateCompletionAction>>(&self, actions: I) {
5163                 for action in actions.into_iter() {
5164                         match action {
5165                                 MonitorUpdateCompletionAction::PaymentClaimed { payment_hash } => {
5166                                         let payment = self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5167                                         if let Some(ClaimingPayment {
5168                                                 amount_msat,
5169                                                 payment_purpose: purpose,
5170                                                 receiver_node_id,
5171                                                 htlcs,
5172                                                 sender_intended_value: sender_intended_total_msat,
5173                                         }) = payment {
5174                                                 self.pending_events.lock().unwrap().push_back((events::Event::PaymentClaimed {
5175                                                         payment_hash,
5176                                                         purpose,
5177                                                         amount_msat,
5178                                                         receiver_node_id: Some(receiver_node_id),
5179                                                         htlcs,
5180                                                         sender_intended_total_msat,
5181                                                 }, None));
5182                                         }
5183                                 },
5184                                 MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
5185                                         event, downstream_counterparty_and_funding_outpoint
5186                                 } => {
5187                                         self.pending_events.lock().unwrap().push_back((event, None));
5188                                         if let Some((node_id, funding_outpoint, blocker)) = downstream_counterparty_and_funding_outpoint {
5189                                                 self.handle_monitor_update_release(node_id, funding_outpoint, Some(blocker));
5190                                         }
5191                                 },
5192                         }
5193                 }
5194         }
5195
5196         /// Handles a channel reentering a functional state, either due to reconnect or a monitor
5197         /// update completion.
5198         fn handle_channel_resumption(&self, pending_msg_events: &mut Vec<MessageSendEvent>,
5199                 channel: &mut Channel<SP>, raa: Option<msgs::RevokeAndACK>,
5200                 commitment_update: Option<msgs::CommitmentUpdate>, order: RAACommitmentOrder,
5201                 pending_forwards: Vec<(PendingHTLCInfo, u64)>, funding_broadcastable: Option<Transaction>,
5202                 channel_ready: Option<msgs::ChannelReady>, announcement_sigs: Option<msgs::AnnouncementSignatures>)
5203         -> Option<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> {
5204                 log_trace!(self.logger, "Handling channel resumption for channel {} with {} RAA, {} commitment update, {} pending forwards, {}broadcasting funding, {} channel ready, {} announcement",
5205                         log_bytes!(channel.context.channel_id()),
5206                         if raa.is_some() { "an" } else { "no" },
5207                         if commitment_update.is_some() { "a" } else { "no" }, pending_forwards.len(),
5208                         if funding_broadcastable.is_some() { "" } else { "not " },
5209                         if channel_ready.is_some() { "sending" } else { "without" },
5210                         if announcement_sigs.is_some() { "sending" } else { "without" });
5211
5212                 let mut htlc_forwards = None;
5213
5214                 let counterparty_node_id = channel.context.get_counterparty_node_id();
5215                 if !pending_forwards.is_empty() {
5216                         htlc_forwards = Some((channel.context.get_short_channel_id().unwrap_or(channel.context.outbound_scid_alias()),
5217                                 channel.context.get_funding_txo().unwrap(), channel.context.get_user_id(), pending_forwards));
5218                 }
5219
5220                 if let Some(msg) = channel_ready {
5221                         send_channel_ready!(self, pending_msg_events, channel, msg);
5222                 }
5223                 if let Some(msg) = announcement_sigs {
5224                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
5225                                 node_id: counterparty_node_id,
5226                                 msg,
5227                         });
5228                 }
5229
5230                 macro_rules! handle_cs { () => {
5231                         if let Some(update) = commitment_update {
5232                                 pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
5233                                         node_id: counterparty_node_id,
5234                                         updates: update,
5235                                 });
5236                         }
5237                 } }
5238                 macro_rules! handle_raa { () => {
5239                         if let Some(revoke_and_ack) = raa {
5240                                 pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
5241                                         node_id: counterparty_node_id,
5242                                         msg: revoke_and_ack,
5243                                 });
5244                         }
5245                 } }
5246                 match order {
5247                         RAACommitmentOrder::CommitmentFirst => {
5248                                 handle_cs!();
5249                                 handle_raa!();
5250                         },
5251                         RAACommitmentOrder::RevokeAndACKFirst => {
5252                                 handle_raa!();
5253                                 handle_cs!();
5254                         },
5255                 }
5256
5257                 if let Some(tx) = funding_broadcastable {
5258                         log_info!(self.logger, "Broadcasting funding transaction with txid {}", tx.txid());
5259                         self.tx_broadcaster.broadcast_transactions(&[&tx]);
5260                 }
5261
5262                 {
5263                         let mut pending_events = self.pending_events.lock().unwrap();
5264                         emit_channel_pending_event!(pending_events, channel);
5265                         emit_channel_ready_event!(pending_events, channel);
5266                 }
5267
5268                 htlc_forwards
5269         }
5270
5271         fn channel_monitor_updated(&self, funding_txo: &OutPoint, highest_applied_update_id: u64, counterparty_node_id: Option<&PublicKey>) {
5272                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
5273
5274                 let counterparty_node_id = match counterparty_node_id {
5275                         Some(cp_id) => cp_id.clone(),
5276                         None => {
5277                                 // TODO: Once we can rely on the counterparty_node_id from the
5278                                 // monitor event, this and the id_to_peer map should be removed.
5279                                 let id_to_peer = self.id_to_peer.lock().unwrap();
5280                                 match id_to_peer.get(&funding_txo.to_channel_id()) {
5281                                         Some(cp_id) => cp_id.clone(),
5282                                         None => return,
5283                                 }
5284                         }
5285                 };
5286                 let per_peer_state = self.per_peer_state.read().unwrap();
5287                 let mut peer_state_lock;
5288                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
5289                 if peer_state_mutex_opt.is_none() { return }
5290                 peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
5291                 let peer_state = &mut *peer_state_lock;
5292                 let channel =
5293                         if let Some(chan) = peer_state.channel_by_id.get_mut(&funding_txo.to_channel_id()) {
5294                                 chan
5295                         } else {
5296                                 let update_actions = peer_state.monitor_update_blocked_actions
5297                                         .remove(&funding_txo.to_channel_id()).unwrap_or(Vec::new());
5298                                 mem::drop(peer_state_lock);
5299                                 mem::drop(per_peer_state);
5300                                 self.handle_monitor_update_completion_actions(update_actions);
5301                                 return;
5302                         };
5303                 let remaining_in_flight =
5304                         if let Some(pending) = peer_state.in_flight_monitor_updates.get_mut(funding_txo) {
5305                                 pending.retain(|upd| upd.update_id > highest_applied_update_id);
5306                                 pending.len()
5307                         } else { 0 };
5308                 log_trace!(self.logger, "ChannelMonitor updated to {}. Current highest is {}. {} pending in-flight updates.",
5309                         highest_applied_update_id, channel.context.get_latest_monitor_update_id(),
5310                         remaining_in_flight);
5311                 if !channel.is_awaiting_monitor_update() || channel.context.get_latest_monitor_update_id() != highest_applied_update_id {
5312                         return;
5313                 }
5314                 handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, channel);
5315         }
5316
5317         /// Accepts a request to open a channel after a [`Event::OpenChannelRequest`].
5318         ///
5319         /// The `temporary_channel_id` parameter indicates which inbound channel should be accepted,
5320         /// and the `counterparty_node_id` parameter is the id of the peer which has requested to open
5321         /// the channel.
5322         ///
5323         /// The `user_channel_id` parameter will be provided back in
5324         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
5325         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
5326         ///
5327         /// Note that this method will return an error and reject the channel, if it requires support
5328         /// for zero confirmations. Instead, `accept_inbound_channel_from_trusted_peer_0conf` must be
5329         /// used to accept such channels.
5330         ///
5331         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
5332         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
5333         pub fn accept_inbound_channel(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
5334                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, false, user_channel_id)
5335         }
5336
5337         /// Accepts a request to open a channel after a [`events::Event::OpenChannelRequest`], treating
5338         /// it as confirmed immediately.
5339         ///
5340         /// The `user_channel_id` parameter will be provided back in
5341         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
5342         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
5343         ///
5344         /// Unlike [`ChannelManager::accept_inbound_channel`], this method accepts the incoming channel
5345         /// and (if the counterparty agrees), enables forwarding of payments immediately.
5346         ///
5347         /// This fully trusts that the counterparty has honestly and correctly constructed the funding
5348         /// transaction and blindly assumes that it will eventually confirm.
5349         ///
5350         /// If it does not confirm before we decide to close the channel, or if the funding transaction
5351         /// does not pay to the correct script the correct amount, *you will lose funds*.
5352         ///
5353         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
5354         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
5355         pub fn accept_inbound_channel_from_trusted_peer_0conf(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
5356                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, true, user_channel_id)
5357         }
5358
5359         fn do_accept_inbound_channel(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, accept_0conf: bool, user_channel_id: u128) -> Result<(), APIError> {
5360                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5361
5362                 let peers_without_funded_channels =
5363                         self.peers_without_funded_channels(|peer| { peer.total_channel_count() > 0 });
5364                 let per_peer_state = self.per_peer_state.read().unwrap();
5365                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5366                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
5367                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5368                 let peer_state = &mut *peer_state_lock;
5369                 let is_only_peer_channel = peer_state.total_channel_count() == 1;
5370
5371                 // Find (and remove) the channel in the unaccepted table. If it's not there, something weird is
5372                 // happening and return an error. N.B. that we create channel with an outbound SCID of zero so
5373                 // that we can delay allocating the SCID until after we're sure that the checks below will
5374                 // succeed.
5375                 let mut channel = match peer_state.inbound_channel_request_by_id.remove(temporary_channel_id) {
5376                         Some(unaccepted_channel) => {
5377                                 let best_block_height = self.best_block.read().unwrap().height();
5378                                 InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
5379                                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features,
5380                                         &unaccepted_channel.open_channel_msg, user_channel_id, &self.default_configuration, best_block_height,
5381                                         &self.logger, accept_0conf).map_err(|e| APIError::ChannelUnavailable { err: e.to_string() })
5382                         }
5383                         _ => Err(APIError::APIMisuseError { err: "No such channel awaiting to be accepted.".to_owned() })
5384                 }?;
5385
5386                 if accept_0conf {
5387                         // This should have been correctly configured by the call to InboundV1Channel::new.
5388                         debug_assert!(channel.context.minimum_depth().unwrap() == 0);
5389                 } else if channel.context.get_channel_type().requires_zero_conf() {
5390                         let send_msg_err_event = events::MessageSendEvent::HandleError {
5391                                 node_id: channel.context.get_counterparty_node_id(),
5392                                 action: msgs::ErrorAction::SendErrorMessage{
5393                                         msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "No zero confirmation channels accepted".to_owned(), }
5394                                 }
5395                         };
5396                         peer_state.pending_msg_events.push(send_msg_err_event);
5397                         return Err(APIError::APIMisuseError { err: "Please use accept_inbound_channel_from_trusted_peer_0conf to accept channels with zero confirmations.".to_owned() });
5398                 } else {
5399                         // If this peer already has some channels, a new channel won't increase our number of peers
5400                         // with unfunded channels, so as long as we aren't over the maximum number of unfunded
5401                         // channels per-peer we can accept channels from a peer with existing ones.
5402                         if is_only_peer_channel && peers_without_funded_channels >= MAX_UNFUNDED_CHANNEL_PEERS {
5403                                 let send_msg_err_event = events::MessageSendEvent::HandleError {
5404                                         node_id: channel.context.get_counterparty_node_id(),
5405                                         action: msgs::ErrorAction::SendErrorMessage{
5406                                                 msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "Have too many peers with unfunded channels, not accepting new ones".to_owned(), }
5407                                         }
5408                                 };
5409                                 peer_state.pending_msg_events.push(send_msg_err_event);
5410                                 return Err(APIError::APIMisuseError { err: "Too many peers with unfunded channels, refusing to accept new ones".to_owned() });
5411                         }
5412                 }
5413
5414                 // Now that we know we have a channel, assign an outbound SCID alias.
5415                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
5416                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
5417
5418                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
5419                         node_id: channel.context.get_counterparty_node_id(),
5420                         msg: channel.accept_inbound_channel(),
5421                 });
5422
5423                 peer_state.inbound_v1_channel_by_id.insert(temporary_channel_id.clone(), channel);
5424
5425                 Ok(())
5426         }
5427
5428         /// Gets the number of peers which match the given filter and do not have any funded, outbound,
5429         /// or 0-conf channels.
5430         ///
5431         /// The filter is called for each peer and provided with the number of unfunded, inbound, and
5432         /// non-0-conf channels we have with the peer.
5433         fn peers_without_funded_channels<Filter>(&self, maybe_count_peer: Filter) -> usize
5434         where Filter: Fn(&PeerState<SP>) -> bool {
5435                 let mut peers_without_funded_channels = 0;
5436                 let best_block_height = self.best_block.read().unwrap().height();
5437                 {
5438                         let peer_state_lock = self.per_peer_state.read().unwrap();
5439                         for (_, peer_mtx) in peer_state_lock.iter() {
5440                                 let peer = peer_mtx.lock().unwrap();
5441                                 if !maybe_count_peer(&*peer) { continue; }
5442                                 let num_unfunded_channels = Self::unfunded_channel_count(&peer, best_block_height);
5443                                 if num_unfunded_channels == peer.total_channel_count() {
5444                                         peers_without_funded_channels += 1;
5445                                 }
5446                         }
5447                 }
5448                 return peers_without_funded_channels;
5449         }
5450
5451         fn unfunded_channel_count(
5452                 peer: &PeerState<SP>, best_block_height: u32
5453         ) -> usize {
5454                 let mut num_unfunded_channels = 0;
5455                 for (_, chan) in peer.channel_by_id.iter() {
5456                         // This covers non-zero-conf inbound `Channel`s that we are currently monitoring, but those
5457                         // which have not yet had any confirmations on-chain.
5458                         if !chan.context.is_outbound() && chan.context.minimum_depth().unwrap_or(1) != 0 &&
5459                                 chan.context.get_funding_tx_confirmations(best_block_height) == 0
5460                         {
5461                                 num_unfunded_channels += 1;
5462                         }
5463                 }
5464                 for (_, chan) in peer.inbound_v1_channel_by_id.iter() {
5465                         if chan.context.minimum_depth().unwrap_or(1) != 0 {
5466                                 num_unfunded_channels += 1;
5467                         }
5468                 }
5469                 num_unfunded_channels + peer.inbound_channel_request_by_id.len()
5470         }
5471
5472         fn internal_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) -> Result<(), MsgHandleErrInternal> {
5473                 if msg.chain_hash != self.genesis_hash {
5474                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Unknown genesis block hash".to_owned(), msg.temporary_channel_id.clone()));
5475                 }
5476
5477                 if !self.default_configuration.accept_inbound_channels {
5478                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No inbound channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5479                 }
5480
5481                 // Get the number of peers with channels, but without funded ones. We don't care too much
5482                 // about peers that never open a channel, so we filter by peers that have at least one
5483                 // channel, and then limit the number of those with unfunded channels.
5484                 let channeled_peers_without_funding =
5485                         self.peers_without_funded_channels(|node| node.total_channel_count() > 0);
5486
5487                 let per_peer_state = self.per_peer_state.read().unwrap();
5488                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5489                     .ok_or_else(|| {
5490                                 debug_assert!(false);
5491                                 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())
5492                         })?;
5493                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5494                 let peer_state = &mut *peer_state_lock;
5495
5496                 // If this peer already has some channels, a new channel won't increase our number of peers
5497                 // with unfunded channels, so as long as we aren't over the maximum number of unfunded
5498                 // channels per-peer we can accept channels from a peer with existing ones.
5499                 if peer_state.total_channel_count() == 0 &&
5500                         channeled_peers_without_funding >= MAX_UNFUNDED_CHANNEL_PEERS &&
5501                         !self.default_configuration.manually_accept_inbound_channels
5502                 {
5503                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5504                                 "Have too many peers with unfunded channels, not accepting new ones".to_owned(),
5505                                 msg.temporary_channel_id.clone()));
5506                 }
5507
5508                 let best_block_height = self.best_block.read().unwrap().height();
5509                 if Self::unfunded_channel_count(peer_state, best_block_height) >= MAX_UNFUNDED_CHANS_PER_PEER {
5510                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5511                                 format!("Refusing more than {} unfunded channels.", MAX_UNFUNDED_CHANS_PER_PEER),
5512                                 msg.temporary_channel_id.clone()));
5513                 }
5514
5515                 let channel_id = msg.temporary_channel_id;
5516                 let channel_exists = peer_state.has_channel(&channel_id);
5517                 if channel_exists {
5518                         return Err(MsgHandleErrInternal::send_err_msg_no_close("temporary_channel_id collision for the same peer!".to_owned(), msg.temporary_channel_id.clone()));
5519                 }
5520
5521                 // If we're doing manual acceptance checks on the channel, then defer creation until we're sure we want to accept.
5522                 if self.default_configuration.manually_accept_inbound_channels {
5523                         let mut pending_events = self.pending_events.lock().unwrap();
5524                         pending_events.push_back((events::Event::OpenChannelRequest {
5525                                 temporary_channel_id: msg.temporary_channel_id.clone(),
5526                                 counterparty_node_id: counterparty_node_id.clone(),
5527                                 funding_satoshis: msg.funding_satoshis,
5528                                 push_msat: msg.push_msat,
5529                                 channel_type: msg.channel_type.clone().unwrap(),
5530                         }, None));
5531                         peer_state.inbound_channel_request_by_id.insert(channel_id, InboundChannelRequest {
5532                                 open_channel_msg: msg.clone(),
5533                                 ticks_remaining: UNACCEPTED_INBOUND_CHANNEL_AGE_LIMIT_TICKS,
5534                         });
5535                         return Ok(());
5536                 }
5537
5538                 // Otherwise create the channel right now.
5539                 let mut random_bytes = [0u8; 16];
5540                 random_bytes.copy_from_slice(&self.entropy_source.get_secure_random_bytes()[..16]);
5541                 let user_channel_id = u128::from_be_bytes(random_bytes);
5542                 let mut channel = match InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
5543                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features, msg, user_channel_id,
5544                         &self.default_configuration, best_block_height, &self.logger, /*is_0conf=*/false)
5545                 {
5546                         Err(e) => {
5547                                 return Err(MsgHandleErrInternal::from_chan_no_close(e, msg.temporary_channel_id));
5548                         },
5549                         Ok(res) => res
5550                 };
5551
5552                 let channel_type = channel.context.get_channel_type();
5553                 if channel_type.requires_zero_conf() {
5554                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No zero confirmation channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5555                 }
5556                 if channel_type.requires_anchors_zero_fee_htlc_tx() {
5557                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No channels with anchor outputs accepted".to_owned(), msg.temporary_channel_id.clone()));
5558                 }
5559
5560                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
5561                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
5562
5563                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
5564                         node_id: counterparty_node_id.clone(),
5565                         msg: channel.accept_inbound_channel(),
5566                 });
5567                 peer_state.inbound_v1_channel_by_id.insert(channel_id, channel);
5568                 Ok(())
5569         }
5570
5571         fn internal_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) -> Result<(), MsgHandleErrInternal> {
5572                 let (value, output_script, user_id) = {
5573                         let per_peer_state = self.per_peer_state.read().unwrap();
5574                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5575                                 .ok_or_else(|| {
5576                                         debug_assert!(false);
5577                                         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)
5578                                 })?;
5579                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5580                         let peer_state = &mut *peer_state_lock;
5581                         match peer_state.outbound_v1_channel_by_id.entry(msg.temporary_channel_id) {
5582                                 hash_map::Entry::Occupied(mut chan) => {
5583                                         try_v1_outbound_chan_entry!(self, chan.get_mut().accept_channel(&msg, &self.default_configuration.channel_handshake_limits, &peer_state.latest_features), chan);
5584                                         (chan.get().context.get_value_satoshis(), chan.get().context.get_funding_redeemscript().to_v0_p2wsh(), chan.get().context.get_user_id())
5585                                 },
5586                                 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))
5587                         }
5588                 };
5589                 let mut pending_events = self.pending_events.lock().unwrap();
5590                 pending_events.push_back((events::Event::FundingGenerationReady {
5591                         temporary_channel_id: msg.temporary_channel_id,
5592                         counterparty_node_id: *counterparty_node_id,
5593                         channel_value_satoshis: value,
5594                         output_script,
5595                         user_channel_id: user_id,
5596                 }, None));
5597                 Ok(())
5598         }
5599
5600         fn internal_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) -> Result<(), MsgHandleErrInternal> {
5601                 let best_block = *self.best_block.read().unwrap();
5602
5603                 let per_peer_state = self.per_peer_state.read().unwrap();
5604                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5605                         .ok_or_else(|| {
5606                                 debug_assert!(false);
5607                                 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)
5608                         })?;
5609
5610                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5611                 let peer_state = &mut *peer_state_lock;
5612                 let (chan, funding_msg, monitor) =
5613                         match peer_state.inbound_v1_channel_by_id.remove(&msg.temporary_channel_id) {
5614                                 Some(inbound_chan) => {
5615                                         match inbound_chan.funding_created(msg, best_block, &self.signer_provider, &self.logger) {
5616                                                 Ok(res) => res,
5617                                                 Err((mut inbound_chan, err)) => {
5618                                                         // We've already removed this inbound channel from the map in `PeerState`
5619                                                         // above so at this point we just need to clean up any lingering entries
5620                                                         // concerning this channel as it is safe to do so.
5621                                                         update_maps_on_chan_removal!(self, &inbound_chan.context);
5622                                                         let user_id = inbound_chan.context.get_user_id();
5623                                                         let shutdown_res = inbound_chan.context.force_shutdown(false);
5624                                                         return Err(MsgHandleErrInternal::from_finish_shutdown(format!("{}", err),
5625                                                                 msg.temporary_channel_id, user_id, shutdown_res, None, inbound_chan.context.get_value_satoshis()));
5626                                                 },
5627                                         }
5628                                 },
5629                                 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))
5630                         };
5631
5632                 match peer_state.channel_by_id.entry(funding_msg.channel_id) {
5633                         hash_map::Entry::Occupied(_) => {
5634                                 Err(MsgHandleErrInternal::send_err_msg_no_close("Already had channel with the new channel_id".to_owned(), funding_msg.channel_id))
5635                         },
5636                         hash_map::Entry::Vacant(e) => {
5637                                 match self.id_to_peer.lock().unwrap().entry(chan.context.channel_id()) {
5638                                         hash_map::Entry::Occupied(_) => {
5639                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close(
5640                                                         "The funding_created message had the same funding_txid as an existing channel - funding is not possible".to_owned(),
5641                                                         funding_msg.channel_id))
5642                                         },
5643                                         hash_map::Entry::Vacant(i_e) => {
5644                                                 i_e.insert(chan.context.get_counterparty_node_id());
5645                                         }
5646                                 }
5647
5648                                 // There's no problem signing a counterparty's funding transaction if our monitor
5649                                 // hasn't persisted to disk yet - we can't lose money on a transaction that we haven't
5650                                 // accepted payment from yet. We do, however, need to wait to send our channel_ready
5651                                 // until we have persisted our monitor.
5652                                 let new_channel_id = funding_msg.channel_id;
5653                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
5654                                         node_id: counterparty_node_id.clone(),
5655                                         msg: funding_msg,
5656                                 });
5657
5658                                 let monitor_res = self.chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor);
5659
5660                                 let chan = e.insert(chan);
5661                                 let mut res = handle_new_monitor_update!(self, monitor_res, peer_state_lock, peer_state,
5662                                         per_peer_state, chan, MANUALLY_REMOVING_INITIAL_MONITOR,
5663                                         { peer_state.channel_by_id.remove(&new_channel_id) });
5664
5665                                 // Note that we reply with the new channel_id in error messages if we gave up on the
5666                                 // channel, not the temporary_channel_id. This is compatible with ourselves, but the
5667                                 // spec is somewhat ambiguous here. Not a huge deal since we'll send error messages for
5668                                 // any messages referencing a previously-closed channel anyway.
5669                                 // We do not propagate the monitor update to the user as it would be for a monitor
5670                                 // that we didn't manage to store (and that we don't care about - we don't respond
5671                                 // with the funding_signed so the channel can never go on chain).
5672                                 if let Err(MsgHandleErrInternal { shutdown_finish: Some((res, _)), .. }) = &mut res {
5673                                         res.0 = None;
5674                                 }
5675                                 res.map(|_| ())
5676                         }
5677                 }
5678         }
5679
5680         fn internal_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) -> Result<(), MsgHandleErrInternal> {
5681                 let best_block = *self.best_block.read().unwrap();
5682                 let per_peer_state = self.per_peer_state.read().unwrap();
5683                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5684                         .ok_or_else(|| {
5685                                 debug_assert!(false);
5686                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5687                         })?;
5688
5689                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5690                 let peer_state = &mut *peer_state_lock;
5691                 match peer_state.channel_by_id.entry(msg.channel_id) {
5692                         hash_map::Entry::Occupied(mut chan) => {
5693                                 let monitor = try_chan_entry!(self,
5694                                         chan.get_mut().funding_signed(&msg, best_block, &self.signer_provider, &self.logger), chan);
5695                                 let update_res = self.chain_monitor.watch_channel(chan.get().context.get_funding_txo().unwrap(), monitor);
5696                                 let mut res = handle_new_monitor_update!(self, update_res, peer_state_lock, peer_state, per_peer_state, chan, INITIAL_MONITOR);
5697                                 if let Err(MsgHandleErrInternal { ref mut shutdown_finish, .. }) = res {
5698                                         // We weren't able to watch the channel to begin with, so no updates should be made on
5699                                         // it. Previously, full_stack_target found an (unreachable) panic when the
5700                                         // monitor update contained within `shutdown_finish` was applied.
5701                                         if let Some((ref mut shutdown_finish, _)) = shutdown_finish {
5702                                                 shutdown_finish.0.take();
5703                                         }
5704                                 }
5705                                 res.map(|_| ())
5706                         },
5707                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
5708                 }
5709         }
5710
5711         fn internal_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) -> Result<(), MsgHandleErrInternal> {
5712                 let per_peer_state = self.per_peer_state.read().unwrap();
5713                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5714                         .ok_or_else(|| {
5715                                 debug_assert!(false);
5716                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5717                         })?;
5718                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5719                 let peer_state = &mut *peer_state_lock;
5720                 match peer_state.channel_by_id.entry(msg.channel_id) {
5721                         hash_map::Entry::Occupied(mut chan) => {
5722                                 let announcement_sigs_opt = try_chan_entry!(self, chan.get_mut().channel_ready(&msg, &self.node_signer,
5723                                         self.genesis_hash.clone(), &self.default_configuration, &self.best_block.read().unwrap(), &self.logger), chan);
5724                                 if let Some(announcement_sigs) = announcement_sigs_opt {
5725                                         log_trace!(self.logger, "Sending announcement_signatures for channel {}", log_bytes!(chan.get().context.channel_id()));
5726                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
5727                                                 node_id: counterparty_node_id.clone(),
5728                                                 msg: announcement_sigs,
5729                                         });
5730                                 } else if chan.get().context.is_usable() {
5731                                         // If we're sending an announcement_signatures, we'll send the (public)
5732                                         // channel_update after sending a channel_announcement when we receive our
5733                                         // counterparty's announcement_signatures. Thus, we only bother to send a
5734                                         // channel_update here if the channel is not public, i.e. we're not sending an
5735                                         // announcement_signatures.
5736                                         log_trace!(self.logger, "Sending private initial channel_update for our counterparty on channel {}", log_bytes!(chan.get().context.channel_id()));
5737                                         if let Ok(msg) = self.get_channel_update_for_unicast(chan.get()) {
5738                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
5739                                                         node_id: counterparty_node_id.clone(),
5740                                                         msg,
5741                                                 });
5742                                         }
5743                                 }
5744
5745                                 {
5746                                         let mut pending_events = self.pending_events.lock().unwrap();
5747                                         emit_channel_ready_event!(pending_events, chan.get_mut());
5748                                 }
5749
5750                                 Ok(())
5751                         },
5752                         hash_map::Entry::Vacant(_) => Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got a message for a channel from the wrong node! No such channel for the passed counterparty_node_id {}", counterparty_node_id), msg.channel_id))
5753                 }
5754         }
5755
5756         fn internal_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) -> Result<(), MsgHandleErrInternal> {
5757                 let mut dropped_htlcs: Vec<(HTLCSource, PaymentHash)>;
5758                 let result: Result<(), _> = loop {
5759                         let per_peer_state = self.per_peer_state.read().unwrap();
5760                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5761                                 .ok_or_else(|| {
5762                                         debug_assert!(false);
5763                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5764                                 })?;
5765                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5766                         let peer_state = &mut *peer_state_lock;
5767                         // TODO(dunxen): Fix this duplication when we switch to a single map with enums as per
5768                         // https://github.com/lightningdevkit/rust-lightning/issues/2422
5769                         if let hash_map::Entry::Occupied(chan_entry) = peer_state.outbound_v1_channel_by_id.entry(msg.channel_id.clone()) {
5770                                 log_error!(self.logger, "Immediately closing unfunded channel {} as peer asked to cooperatively shut it down (which is unnecessary)", log_bytes!(&msg.channel_id[..]));
5771                                 self.issue_channel_close_events(&chan_entry.get().context, ClosureReason::CounterpartyCoopClosedUnfundedChannel);
5772                                 let mut chan = remove_channel!(self, chan_entry);
5773                                 self.finish_force_close_channel(chan.context.force_shutdown(false));
5774                                 return Ok(());
5775                         } else if let hash_map::Entry::Occupied(chan_entry) = peer_state.inbound_v1_channel_by_id.entry(msg.channel_id.clone()) {
5776                                 log_error!(self.logger, "Immediately closing unfunded channel {} as peer asked to cooperatively shut it down (which is unnecessary)", log_bytes!(&msg.channel_id[..]));
5777                                 self.issue_channel_close_events(&chan_entry.get().context, ClosureReason::CounterpartyCoopClosedUnfundedChannel);
5778                                 let mut chan = remove_channel!(self, chan_entry);
5779                                 self.finish_force_close_channel(chan.context.force_shutdown(false));
5780                                 return Ok(());
5781                         } else if let hash_map::Entry::Occupied(mut chan_entry) = peer_state.channel_by_id.entry(msg.channel_id.clone()) {
5782                                 if !chan_entry.get().received_shutdown() {
5783                                         log_info!(self.logger, "Received a shutdown message from our counterparty for channel {}{}.",
5784                                                 log_bytes!(msg.channel_id),
5785                                                 if chan_entry.get().sent_shutdown() { " after we initiated shutdown" } else { "" });
5786                                 }
5787
5788                                 let funding_txo_opt = chan_entry.get().context.get_funding_txo();
5789                                 let (shutdown, monitor_update_opt, htlcs) = try_chan_entry!(self,
5790                                         chan_entry.get_mut().shutdown(&self.signer_provider, &peer_state.latest_features, &msg), chan_entry);
5791                                 dropped_htlcs = htlcs;
5792
5793                                 if let Some(msg) = shutdown {
5794                                         // We can send the `shutdown` message before updating the `ChannelMonitor`
5795                                         // here as we don't need the monitor update to complete until we send a
5796                                         // `shutdown_signed`, which we'll delay if we're pending a monitor update.
5797                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
5798                                                 node_id: *counterparty_node_id,
5799                                                 msg,
5800                                         });
5801                                 }
5802
5803                                 // Update the monitor with the shutdown script if necessary.
5804                                 if let Some(monitor_update) = monitor_update_opt {
5805                                         break handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
5806                                                 peer_state_lock, peer_state, per_peer_state, chan_entry).map(|_| ());
5807                                 }
5808                                 break Ok(());
5809                         } else {
5810                                 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))
5811                         }
5812                 };
5813                 for htlc_source in dropped_htlcs.drain(..) {
5814                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id: msg.channel_id };
5815                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
5816                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
5817                 }
5818
5819                 result
5820         }
5821
5822         fn internal_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) -> Result<(), MsgHandleErrInternal> {
5823                 let per_peer_state = self.per_peer_state.read().unwrap();
5824                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5825                         .ok_or_else(|| {
5826                                 debug_assert!(false);
5827                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5828                         })?;
5829                 let (tx, chan_option) = {
5830                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5831                         let peer_state = &mut *peer_state_lock;
5832                         match peer_state.channel_by_id.entry(msg.channel_id.clone()) {
5833                                 hash_map::Entry::Occupied(mut chan_entry) => {
5834                                         let (closing_signed, tx) = try_chan_entry!(self, chan_entry.get_mut().closing_signed(&self.fee_estimator, &msg), chan_entry);
5835                                         if let Some(msg) = closing_signed {
5836                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
5837                                                         node_id: counterparty_node_id.clone(),
5838                                                         msg,
5839                                                 });
5840                                         }
5841                                         if tx.is_some() {
5842                                                 // We're done with this channel, we've got a signed closing transaction and
5843                                                 // will send the closing_signed back to the remote peer upon return. This
5844                                                 // also implies there are no pending HTLCs left on the channel, so we can
5845                                                 // fully delete it from tracking (the channel monitor is still around to
5846                                                 // watch for old state broadcasts)!
5847                                                 (tx, Some(remove_channel!(self, chan_entry)))
5848                                         } else { (tx, None) }
5849                                 },
5850                                 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))
5851                         }
5852                 };
5853                 if let Some(broadcast_tx) = tx {
5854                         log_info!(self.logger, "Broadcasting {}", log_tx!(broadcast_tx));
5855                         self.tx_broadcaster.broadcast_transactions(&[&broadcast_tx]);
5856                 }
5857                 if let Some(chan) = chan_option {
5858                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5859                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5860                                 let peer_state = &mut *peer_state_lock;
5861                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
5862                                         msg: update
5863                                 });
5864                         }
5865                         self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
5866                 }
5867                 Ok(())
5868         }
5869
5870         fn internal_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) -> Result<(), MsgHandleErrInternal> {
5871                 //TODO: BOLT 4 points out a specific attack where a peer may re-send an onion packet and
5872                 //determine the state of the payment based on our response/if we forward anything/the time
5873                 //we take to respond. We should take care to avoid allowing such an attack.
5874                 //
5875                 //TODO: There exists a further attack where a node may garble the onion data, forward it to
5876                 //us repeatedly garbled in different ways, and compare our error messages, which are
5877                 //encrypted with the same key. It's not immediately obvious how to usefully exploit that,
5878                 //but we should prevent it anyway.
5879
5880                 let decoded_hop_res = self.decode_update_add_htlc_onion(msg);
5881                 let per_peer_state = self.per_peer_state.read().unwrap();
5882                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5883                         .ok_or_else(|| {
5884                                 debug_assert!(false);
5885                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5886                         })?;
5887                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5888                 let peer_state = &mut *peer_state_lock;
5889                 match peer_state.channel_by_id.entry(msg.channel_id) {
5890                         hash_map::Entry::Occupied(mut chan) => {
5891
5892                                 let pending_forward_info = match decoded_hop_res {
5893                                         Ok((next_hop, shared_secret, next_packet_pk_opt)) =>
5894                                                 self.construct_pending_htlc_status(msg, shared_secret, next_hop,
5895                                                         chan.get().context.config().accept_underpaying_htlcs, next_packet_pk_opt),
5896                                         Err(e) => PendingHTLCStatus::Fail(e)
5897                                 };
5898                                 let create_pending_htlc_status = |chan: &Channel<SP>, pending_forward_info: PendingHTLCStatus, error_code: u16| {
5899                                         // If the update_add is completely bogus, the call will Err and we will close,
5900                                         // but if we've sent a shutdown and they haven't acknowledged it yet, we just
5901                                         // want to reject the new HTLC and fail it backwards instead of forwarding.
5902                                         match pending_forward_info {
5903                                                 PendingHTLCStatus::Forward(PendingHTLCInfo { ref incoming_shared_secret, .. }) => {
5904                                                         let reason = if (error_code & 0x1000) != 0 {
5905                                                                 let (real_code, error_data) = self.get_htlc_inbound_temp_fail_err_and_data(error_code, chan);
5906                                                                 HTLCFailReason::reason(real_code, error_data)
5907                                                         } else {
5908                                                                 HTLCFailReason::from_failure_code(error_code)
5909                                                         }.get_encrypted_failure_packet(incoming_shared_secret, &None);
5910                                                         let msg = msgs::UpdateFailHTLC {
5911                                                                 channel_id: msg.channel_id,
5912                                                                 htlc_id: msg.htlc_id,
5913                                                                 reason
5914                                                         };
5915                                                         PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msg))
5916                                                 },
5917                                                 _ => pending_forward_info
5918                                         }
5919                                 };
5920                                 try_chan_entry!(self, chan.get_mut().update_add_htlc(&msg, pending_forward_info, create_pending_htlc_status, &self.fee_estimator, &self.logger), chan);
5921                         },
5922                         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))
5923                 }
5924                 Ok(())
5925         }
5926
5927         fn internal_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) -> Result<(), MsgHandleErrInternal> {
5928                 let funding_txo;
5929                 let (htlc_source, forwarded_htlc_value) = {
5930                         let per_peer_state = self.per_peer_state.read().unwrap();
5931                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5932                                 .ok_or_else(|| {
5933                                         debug_assert!(false);
5934                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5935                                 })?;
5936                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5937                         let peer_state = &mut *peer_state_lock;
5938                         match peer_state.channel_by_id.entry(msg.channel_id) {
5939                                 hash_map::Entry::Occupied(mut chan) => {
5940                                         let res = try_chan_entry!(self, chan.get_mut().update_fulfill_htlc(&msg), chan);
5941                                         funding_txo = chan.get().context.get_funding_txo().expect("We won't accept a fulfill until funded");
5942                                         res
5943                                 },
5944                                 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))
5945                         }
5946                 };
5947                 self.claim_funds_internal(htlc_source, msg.payment_preimage.clone(), Some(forwarded_htlc_value), false, funding_txo);
5948                 Ok(())
5949         }
5950
5951         fn internal_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) -> Result<(), MsgHandleErrInternal> {
5952                 let per_peer_state = self.per_peer_state.read().unwrap();
5953                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5954                         .ok_or_else(|| {
5955                                 debug_assert!(false);
5956                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5957                         })?;
5958                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5959                 let peer_state = &mut *peer_state_lock;
5960                 match peer_state.channel_by_id.entry(msg.channel_id) {
5961                         hash_map::Entry::Occupied(mut chan) => {
5962                                 try_chan_entry!(self, chan.get_mut().update_fail_htlc(&msg, HTLCFailReason::from_msg(msg)), chan);
5963                         },
5964                         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))
5965                 }
5966                 Ok(())
5967         }
5968
5969         fn internal_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) -> Result<(), MsgHandleErrInternal> {
5970                 let per_peer_state = self.per_peer_state.read().unwrap();
5971                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5972                         .ok_or_else(|| {
5973                                 debug_assert!(false);
5974                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5975                         })?;
5976                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5977                 let peer_state = &mut *peer_state_lock;
5978                 match peer_state.channel_by_id.entry(msg.channel_id) {
5979                         hash_map::Entry::Occupied(mut chan) => {
5980                                 if (msg.failure_code & 0x8000) == 0 {
5981                                         let chan_err: ChannelError = ChannelError::Close("Got update_fail_malformed_htlc with BADONION not set".to_owned());
5982                                         try_chan_entry!(self, Err(chan_err), chan);
5983                                 }
5984                                 try_chan_entry!(self, chan.get_mut().update_fail_malformed_htlc(&msg, HTLCFailReason::reason(msg.failure_code, msg.sha256_of_onion.to_vec())), chan);
5985                                 Ok(())
5986                         },
5987                         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))
5988                 }
5989         }
5990
5991         fn internal_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) -> Result<(), MsgHandleErrInternal> {
5992                 let per_peer_state = self.per_peer_state.read().unwrap();
5993                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5994                         .ok_or_else(|| {
5995                                 debug_assert!(false);
5996                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5997                         })?;
5998                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5999                 let peer_state = &mut *peer_state_lock;
6000                 match peer_state.channel_by_id.entry(msg.channel_id) {
6001                         hash_map::Entry::Occupied(mut chan) => {
6002                                 let funding_txo = chan.get().context.get_funding_txo();
6003                                 let monitor_update_opt = try_chan_entry!(self, chan.get_mut().commitment_signed(&msg, &self.logger), chan);
6004                                 if let Some(monitor_update) = monitor_update_opt {
6005                                         handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update, peer_state_lock,
6006                                                 peer_state, per_peer_state, chan).map(|_| ())
6007                                 } else { Ok(()) }
6008                         },
6009                         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))
6010                 }
6011         }
6012
6013         #[inline]
6014         fn forward_htlcs(&self, per_source_pending_forwards: &mut [(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)]) {
6015                 for &mut (prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, ref mut pending_forwards) in per_source_pending_forwards {
6016                         let mut push_forward_event = false;
6017                         let mut new_intercept_events = VecDeque::new();
6018                         let mut failed_intercept_forwards = Vec::new();
6019                         if !pending_forwards.is_empty() {
6020                                 for (forward_info, prev_htlc_id) in pending_forwards.drain(..) {
6021                                         let scid = match forward_info.routing {
6022                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
6023                                                 PendingHTLCRouting::Receive { .. } => 0,
6024                                                 PendingHTLCRouting::ReceiveKeysend { .. } => 0,
6025                                         };
6026                                         // Pull this now to avoid introducing a lock order with `forward_htlcs`.
6027                                         let is_our_scid = self.short_to_chan_info.read().unwrap().contains_key(&scid);
6028
6029                                         let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
6030                                         let forward_htlcs_empty = forward_htlcs.is_empty();
6031                                         match forward_htlcs.entry(scid) {
6032                                                 hash_map::Entry::Occupied(mut entry) => {
6033                                                         entry.get_mut().push(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
6034                                                                 prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info }));
6035                                                 },
6036                                                 hash_map::Entry::Vacant(entry) => {
6037                                                         if !is_our_scid && forward_info.incoming_amt_msat.is_some() &&
6038                                                            fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, scid, &self.genesis_hash)
6039                                                         {
6040                                                                 let intercept_id = InterceptId(Sha256::hash(&forward_info.incoming_shared_secret).into_inner());
6041                                                                 let mut pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
6042                                                                 match pending_intercepts.entry(intercept_id) {
6043                                                                         hash_map::Entry::Vacant(entry) => {
6044                                                                                 new_intercept_events.push_back((events::Event::HTLCIntercepted {
6045                                                                                         requested_next_hop_scid: scid,
6046                                                                                         payment_hash: forward_info.payment_hash,
6047                                                                                         inbound_amount_msat: forward_info.incoming_amt_msat.unwrap(),
6048                                                                                         expected_outbound_amount_msat: forward_info.outgoing_amt_msat,
6049                                                                                         intercept_id
6050                                                                                 }, None));
6051                                                                                 entry.insert(PendingAddHTLCInfo {
6052                                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info });
6053                                                                         },
6054                                                                         hash_map::Entry::Occupied(_) => {
6055                                                                                 log_info!(self.logger, "Failed to forward incoming HTLC: detected duplicate intercepted payment over short channel id {}", scid);
6056                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
6057                                                                                         short_channel_id: prev_short_channel_id,
6058                                                                                         user_channel_id: Some(prev_user_channel_id),
6059                                                                                         outpoint: prev_funding_outpoint,
6060                                                                                         htlc_id: prev_htlc_id,
6061                                                                                         incoming_packet_shared_secret: forward_info.incoming_shared_secret,
6062                                                                                         phantom_shared_secret: None,
6063                                                                                 });
6064
6065                                                                                 failed_intercept_forwards.push((htlc_source, forward_info.payment_hash,
6066                                                                                                 HTLCFailReason::from_failure_code(0x4000 | 10),
6067                                                                                                 HTLCDestination::InvalidForward { requested_forward_scid: scid },
6068                                                                                 ));
6069                                                                         }
6070                                                                 }
6071                                                         } else {
6072                                                                 // We don't want to generate a PendingHTLCsForwardable event if only intercepted
6073                                                                 // payments are being processed.
6074                                                                 if forward_htlcs_empty {
6075                                                                         push_forward_event = true;
6076                                                                 }
6077                                                                 entry.insert(vec!(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
6078                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info })));
6079                                                         }
6080                                                 }
6081                                         }
6082                                 }
6083                         }
6084
6085                         for (htlc_source, payment_hash, failure_reason, destination) in failed_intercept_forwards.drain(..) {
6086                                 self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
6087                         }
6088
6089                         if !new_intercept_events.is_empty() {
6090                                 let mut events = self.pending_events.lock().unwrap();
6091                                 events.append(&mut new_intercept_events);
6092                         }
6093                         if push_forward_event { self.push_pending_forwards_ev() }
6094                 }
6095         }
6096
6097         fn push_pending_forwards_ev(&self) {
6098                 let mut pending_events = self.pending_events.lock().unwrap();
6099                 let is_processing_events = self.pending_events_processor.load(Ordering::Acquire);
6100                 let num_forward_events = pending_events.iter().filter(|(ev, _)|
6101                         if let events::Event::PendingHTLCsForwardable { .. } = ev { true } else { false }
6102                 ).count();
6103                 // We only want to push a PendingHTLCsForwardable event if no others are queued. Processing
6104                 // events is done in batches and they are not removed until we're done processing each
6105                 // batch. Since handling a `PendingHTLCsForwardable` event will call back into the
6106                 // `ChannelManager`, we'll still see the original forwarding event not removed. Phantom
6107                 // payments will need an additional forwarding event before being claimed to make them look
6108                 // real by taking more time.
6109                 if (is_processing_events && num_forward_events <= 1) || num_forward_events < 1 {
6110                         pending_events.push_back((Event::PendingHTLCsForwardable {
6111                                 time_forwardable: Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS),
6112                         }, None));
6113                 }
6114         }
6115
6116         /// Checks whether [`ChannelMonitorUpdate`]s generated by the receipt of a remote
6117         /// [`msgs::RevokeAndACK`] should be held for the given channel until some other action
6118         /// completes. Note that this needs to happen in the same [`PeerState`] mutex as any release of
6119         /// the [`ChannelMonitorUpdate`] in question.
6120         fn raa_monitor_updates_held(&self,
6121                 actions_blocking_raa_monitor_updates: &BTreeMap<[u8; 32], Vec<RAAMonitorUpdateBlockingAction>>,
6122                 channel_funding_outpoint: OutPoint, counterparty_node_id: PublicKey
6123         ) -> bool {
6124                 actions_blocking_raa_monitor_updates
6125                         .get(&channel_funding_outpoint.to_channel_id()).map(|v| !v.is_empty()).unwrap_or(false)
6126                 || self.pending_events.lock().unwrap().iter().any(|(_, action)| {
6127                         action == &Some(EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
6128                                 channel_funding_outpoint,
6129                                 counterparty_node_id,
6130                         })
6131                 })
6132         }
6133
6134         fn internal_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) -> Result<(), MsgHandleErrInternal> {
6135                 let (htlcs_to_fail, res) = {
6136                         let per_peer_state = self.per_peer_state.read().unwrap();
6137                         let mut peer_state_lock = per_peer_state.get(counterparty_node_id)
6138                                 .ok_or_else(|| {
6139                                         debug_assert!(false);
6140                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6141                                 }).map(|mtx| mtx.lock().unwrap())?;
6142                         let peer_state = &mut *peer_state_lock;
6143                         match peer_state.channel_by_id.entry(msg.channel_id) {
6144                                 hash_map::Entry::Occupied(mut chan) => {
6145                                         let funding_txo_opt = chan.get().context.get_funding_txo();
6146                                         let mon_update_blocked = if let Some(funding_txo) = funding_txo_opt {
6147                                                 self.raa_monitor_updates_held(
6148                                                         &peer_state.actions_blocking_raa_monitor_updates, funding_txo,
6149                                                         *counterparty_node_id)
6150                                         } else { false };
6151                                         let (htlcs_to_fail, monitor_update_opt) = try_chan_entry!(self,
6152                                                 chan.get_mut().revoke_and_ack(&msg, &self.fee_estimator, &self.logger, mon_update_blocked), chan);
6153                                         let res = if let Some(monitor_update) = monitor_update_opt {
6154                                                 let funding_txo = funding_txo_opt
6155                                                         .expect("Funding outpoint must have been set for RAA handling to succeed");
6156                                                 handle_new_monitor_update!(self, funding_txo, monitor_update,
6157                                                         peer_state_lock, peer_state, per_peer_state, chan).map(|_| ())
6158                                         } else { Ok(()) };
6159                                         (htlcs_to_fail, res)
6160                                 },
6161                                 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))
6162                         }
6163                 };
6164                 self.fail_holding_cell_htlcs(htlcs_to_fail, msg.channel_id, counterparty_node_id);
6165                 res
6166         }
6167
6168         fn internal_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) -> Result<(), MsgHandleErrInternal> {
6169                 let per_peer_state = self.per_peer_state.read().unwrap();
6170                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6171                         .ok_or_else(|| {
6172                                 debug_assert!(false);
6173                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6174                         })?;
6175                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6176                 let peer_state = &mut *peer_state_lock;
6177                 match peer_state.channel_by_id.entry(msg.channel_id) {
6178                         hash_map::Entry::Occupied(mut chan) => {
6179                                 try_chan_entry!(self, chan.get_mut().update_fee(&self.fee_estimator, &msg, &self.logger), chan);
6180                         },
6181                         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))
6182                 }
6183                 Ok(())
6184         }
6185
6186         fn internal_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) -> Result<(), MsgHandleErrInternal> {
6187                 let per_peer_state = self.per_peer_state.read().unwrap();
6188                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6189                         .ok_or_else(|| {
6190                                 debug_assert!(false);
6191                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6192                         })?;
6193                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6194                 let peer_state = &mut *peer_state_lock;
6195                 match peer_state.channel_by_id.entry(msg.channel_id) {
6196                         hash_map::Entry::Occupied(mut chan) => {
6197                                 if !chan.get().context.is_usable() {
6198                                         return Err(MsgHandleErrInternal::from_no_close(LightningError{err: "Got an announcement_signatures before we were ready for it".to_owned(), action: msgs::ErrorAction::IgnoreError}));
6199                                 }
6200
6201                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
6202                                         msg: try_chan_entry!(self, chan.get_mut().announcement_signatures(
6203                                                 &self.node_signer, self.genesis_hash.clone(), self.best_block.read().unwrap().height(),
6204                                                 msg, &self.default_configuration
6205                                         ), chan),
6206                                         // Note that announcement_signatures fails if the channel cannot be announced,
6207                                         // so get_channel_update_for_broadcast will never fail by the time we get here.
6208                                         update_msg: Some(self.get_channel_update_for_broadcast(chan.get()).unwrap()),
6209                                 });
6210                         },
6211                         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))
6212                 }
6213                 Ok(())
6214         }
6215
6216         /// Returns ShouldPersist if anything changed, otherwise either SkipPersist or an Err.
6217         fn internal_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) -> Result<NotifyOption, MsgHandleErrInternal> {
6218                 let (chan_counterparty_node_id, chan_id) = match self.short_to_chan_info.read().unwrap().get(&msg.contents.short_channel_id) {
6219                         Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
6220                         None => {
6221                                 // It's not a local channel
6222                                 return Ok(NotifyOption::SkipPersist)
6223                         }
6224                 };
6225                 let per_peer_state = self.per_peer_state.read().unwrap();
6226                 let peer_state_mutex_opt = per_peer_state.get(&chan_counterparty_node_id);
6227                 if peer_state_mutex_opt.is_none() {
6228                         return Ok(NotifyOption::SkipPersist)
6229                 }
6230                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
6231                 let peer_state = &mut *peer_state_lock;
6232                 match peer_state.channel_by_id.entry(chan_id) {
6233                         hash_map::Entry::Occupied(mut chan) => {
6234                                 if chan.get().context.get_counterparty_node_id() != *counterparty_node_id {
6235                                         if chan.get().context.should_announce() {
6236                                                 // If the announcement is about a channel of ours which is public, some
6237                                                 // other peer may simply be forwarding all its gossip to us. Don't provide
6238                                                 // a scary-looking error message and return Ok instead.
6239                                                 return Ok(NotifyOption::SkipPersist);
6240                                         }
6241                                         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));
6242                                 }
6243                                 let were_node_one = self.get_our_node_id().serialize()[..] < chan.get().context.get_counterparty_node_id().serialize()[..];
6244                                 let msg_from_node_one = msg.contents.flags & 1 == 0;
6245                                 if were_node_one == msg_from_node_one {
6246                                         return Ok(NotifyOption::SkipPersist);
6247                                 } else {
6248                                         log_debug!(self.logger, "Received channel_update for channel {}.", log_bytes!(chan_id));
6249                                         try_chan_entry!(self, chan.get_mut().channel_update(&msg), chan);
6250                                 }
6251                         },
6252                         hash_map::Entry::Vacant(_) => return Ok(NotifyOption::SkipPersist)
6253                 }
6254                 Ok(NotifyOption::DoPersist)
6255         }
6256
6257         fn internal_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) -> Result<(), MsgHandleErrInternal> {
6258                 let htlc_forwards;
6259                 let need_lnd_workaround = {
6260                         let per_peer_state = self.per_peer_state.read().unwrap();
6261
6262                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6263                                 .ok_or_else(|| {
6264                                         debug_assert!(false);
6265                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6266                                 })?;
6267                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6268                         let peer_state = &mut *peer_state_lock;
6269                         match peer_state.channel_by_id.entry(msg.channel_id) {
6270                                 hash_map::Entry::Occupied(mut chan) => {
6271                                         // Currently, we expect all holding cell update_adds to be dropped on peer
6272                                         // disconnect, so Channel's reestablish will never hand us any holding cell
6273                                         // freed HTLCs to fail backwards. If in the future we no longer drop pending
6274                                         // add-HTLCs on disconnect, we may be handed HTLCs to fail backwards here.
6275                                         let responses = try_chan_entry!(self, chan.get_mut().channel_reestablish(
6276                                                 msg, &self.logger, &self.node_signer, self.genesis_hash,
6277                                                 &self.default_configuration, &*self.best_block.read().unwrap()), chan);
6278                                         let mut channel_update = None;
6279                                         if let Some(msg) = responses.shutdown_msg {
6280                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
6281                                                         node_id: counterparty_node_id.clone(),
6282                                                         msg,
6283                                                 });
6284                                         } else if chan.get().context.is_usable() {
6285                                                 // If the channel is in a usable state (ie the channel is not being shut
6286                                                 // down), send a unicast channel_update to our counterparty to make sure
6287                                                 // they have the latest channel parameters.
6288                                                 if let Ok(msg) = self.get_channel_update_for_unicast(chan.get()) {
6289                                                         channel_update = Some(events::MessageSendEvent::SendChannelUpdate {
6290                                                                 node_id: chan.get().context.get_counterparty_node_id(),
6291                                                                 msg,
6292                                                         });
6293                                                 }
6294                                         }
6295                                         let need_lnd_workaround = chan.get_mut().context.workaround_lnd_bug_4006.take();
6296                                         htlc_forwards = self.handle_channel_resumption(
6297                                                 &mut peer_state.pending_msg_events, chan.get_mut(), responses.raa, responses.commitment_update, responses.order,
6298                                                 Vec::new(), None, responses.channel_ready, responses.announcement_sigs);
6299                                         if let Some(upd) = channel_update {
6300                                                 peer_state.pending_msg_events.push(upd);
6301                                         }
6302                                         need_lnd_workaround
6303                                 },
6304                                 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))
6305                         }
6306                 };
6307
6308                 if let Some(forwards) = htlc_forwards {
6309                         self.forward_htlcs(&mut [forwards][..]);
6310                 }
6311
6312                 if let Some(channel_ready_msg) = need_lnd_workaround {
6313                         self.internal_channel_ready(counterparty_node_id, &channel_ready_msg)?;
6314                 }
6315                 Ok(())
6316         }
6317
6318         /// Process pending events from the [`chain::Watch`], returning whether any events were processed.
6319         fn process_pending_monitor_events(&self) -> bool {
6320                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
6321
6322                 let mut failed_channels = Vec::new();
6323                 let mut pending_monitor_events = self.chain_monitor.release_pending_monitor_events();
6324                 let has_pending_monitor_events = !pending_monitor_events.is_empty();
6325                 for (funding_outpoint, mut monitor_events, counterparty_node_id) in pending_monitor_events.drain(..) {
6326                         for monitor_event in monitor_events.drain(..) {
6327                                 match monitor_event {
6328                                         MonitorEvent::HTLCEvent(htlc_update) => {
6329                                                 if let Some(preimage) = htlc_update.payment_preimage {
6330                                                         log_trace!(self.logger, "Claiming HTLC with preimage {} from our monitor", log_bytes!(preimage.0));
6331                                                         self.claim_funds_internal(htlc_update.source, preimage, htlc_update.htlc_value_satoshis.map(|v| v * 1000), true, funding_outpoint);
6332                                                 } else {
6333                                                         log_trace!(self.logger, "Failing HTLC with hash {} from our monitor", log_bytes!(htlc_update.payment_hash.0));
6334                                                         let receiver = HTLCDestination::NextHopChannel { node_id: counterparty_node_id, channel_id: funding_outpoint.to_channel_id() };
6335                                                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
6336                                                         self.fail_htlc_backwards_internal(&htlc_update.source, &htlc_update.payment_hash, &reason, receiver);
6337                                                 }
6338                                         },
6339                                         MonitorEvent::CommitmentTxConfirmed(funding_outpoint) |
6340                                         MonitorEvent::UpdateFailed(funding_outpoint) => {
6341                                                 let counterparty_node_id_opt = match counterparty_node_id {
6342                                                         Some(cp_id) => Some(cp_id),
6343                                                         None => {
6344                                                                 // TODO: Once we can rely on the counterparty_node_id from the
6345                                                                 // monitor event, this and the id_to_peer map should be removed.
6346                                                                 let id_to_peer = self.id_to_peer.lock().unwrap();
6347                                                                 id_to_peer.get(&funding_outpoint.to_channel_id()).cloned()
6348                                                         }
6349                                                 };
6350                                                 if let Some(counterparty_node_id) = counterparty_node_id_opt {
6351                                                         let per_peer_state = self.per_peer_state.read().unwrap();
6352                                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
6353                                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6354                                                                 let peer_state = &mut *peer_state_lock;
6355                                                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6356                                                                 if let hash_map::Entry::Occupied(chan_entry) = peer_state.channel_by_id.entry(funding_outpoint.to_channel_id()) {
6357                                                                         let mut chan = remove_channel!(self, chan_entry);
6358                                                                         failed_channels.push(chan.context.force_shutdown(false));
6359                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6360                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6361                                                                                         msg: update
6362                                                                                 });
6363                                                                         }
6364                                                                         let reason = if let MonitorEvent::UpdateFailed(_) = monitor_event {
6365                                                                                 ClosureReason::ProcessingError { err: "Failed to persist ChannelMonitor update during chain sync".to_string() }
6366                                                                         } else {
6367                                                                                 ClosureReason::CommitmentTxConfirmed
6368                                                                         };
6369                                                                         self.issue_channel_close_events(&chan.context, reason);
6370                                                                         pending_msg_events.push(events::MessageSendEvent::HandleError {
6371                                                                                 node_id: chan.context.get_counterparty_node_id(),
6372                                                                                 action: msgs::ErrorAction::SendErrorMessage {
6373                                                                                         msg: msgs::ErrorMessage { channel_id: chan.context.channel_id(), data: "Channel force-closed".to_owned() }
6374                                                                                 },
6375                                                                         });
6376                                                                 }
6377                                                         }
6378                                                 }
6379                                         },
6380                                         MonitorEvent::Completed { funding_txo, monitor_update_id } => {
6381                                                 self.channel_monitor_updated(&funding_txo, monitor_update_id, counterparty_node_id.as_ref());
6382                                         },
6383                                 }
6384                         }
6385                 }
6386
6387                 for failure in failed_channels.drain(..) {
6388                         self.finish_force_close_channel(failure);
6389                 }
6390
6391                 has_pending_monitor_events
6392         }
6393
6394         /// In chanmon_consistency_target, we'd like to be able to restore monitor updating without
6395         /// handling all pending events (i.e. not PendingHTLCsForwardable). Thus, we expose monitor
6396         /// update events as a separate process method here.
6397         #[cfg(fuzzing)]
6398         pub fn process_monitor_events(&self) {
6399                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6400                 self.process_pending_monitor_events();
6401         }
6402
6403         /// Check the holding cell in each channel and free any pending HTLCs in them if possible.
6404         /// Returns whether there were any updates such as if pending HTLCs were freed or a monitor
6405         /// update was applied.
6406         fn check_free_holding_cells(&self) -> bool {
6407                 let mut has_monitor_update = false;
6408                 let mut failed_htlcs = Vec::new();
6409                 let mut handle_errors = Vec::new();
6410
6411                 // Walk our list of channels and find any that need to update. Note that when we do find an
6412                 // update, if it includes actions that must be taken afterwards, we have to drop the
6413                 // per-peer state lock as well as the top level per_peer_state lock. Thus, we loop until we
6414                 // manage to go through all our peers without finding a single channel to update.
6415                 'peer_loop: loop {
6416                         let per_peer_state = self.per_peer_state.read().unwrap();
6417                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6418                                 'chan_loop: loop {
6419                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6420                                         let peer_state: &mut PeerState<_> = &mut *peer_state_lock;
6421                                         for (channel_id, chan) in peer_state.channel_by_id.iter_mut() {
6422                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
6423                                                 let funding_txo = chan.context.get_funding_txo();
6424                                                 let (monitor_opt, holding_cell_failed_htlcs) =
6425                                                         chan.maybe_free_holding_cell_htlcs(&self.fee_estimator, &self.logger);
6426                                                 if !holding_cell_failed_htlcs.is_empty() {
6427                                                         failed_htlcs.push((holding_cell_failed_htlcs, *channel_id, counterparty_node_id));
6428                                                 }
6429                                                 if let Some(monitor_update) = monitor_opt {
6430                                                         has_monitor_update = true;
6431
6432                                                         let channel_id: [u8; 32] = *channel_id;
6433                                                         let res = handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update,
6434                                                                 peer_state_lock, peer_state, per_peer_state, chan, MANUALLY_REMOVING,
6435                                                                 peer_state.channel_by_id.remove(&channel_id));
6436                                                         if res.is_err() {
6437                                                                 handle_errors.push((counterparty_node_id, res));
6438                                                         }
6439                                                         continue 'peer_loop;
6440                                                 }
6441                                         }
6442                                         break 'chan_loop;
6443                                 }
6444                         }
6445                         break 'peer_loop;
6446                 }
6447
6448                 let has_update = has_monitor_update || !failed_htlcs.is_empty() || !handle_errors.is_empty();
6449                 for (failures, channel_id, counterparty_node_id) in failed_htlcs.drain(..) {
6450                         self.fail_holding_cell_htlcs(failures, channel_id, &counterparty_node_id);
6451                 }
6452
6453                 for (counterparty_node_id, err) in handle_errors.drain(..) {
6454                         let _ = handle_error!(self, err, counterparty_node_id);
6455                 }
6456
6457                 has_update
6458         }
6459
6460         /// Check whether any channels have finished removing all pending updates after a shutdown
6461         /// exchange and can now send a closing_signed.
6462         /// Returns whether any closing_signed messages were generated.
6463         fn maybe_generate_initial_closing_signed(&self) -> bool {
6464                 let mut handle_errors: Vec<(PublicKey, Result<(), _>)> = Vec::new();
6465                 let mut has_update = false;
6466                 {
6467                         let per_peer_state = self.per_peer_state.read().unwrap();
6468
6469                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6470                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6471                                 let peer_state = &mut *peer_state_lock;
6472                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6473                                 peer_state.channel_by_id.retain(|channel_id, chan| {
6474                                         match chan.maybe_propose_closing_signed(&self.fee_estimator, &self.logger) {
6475                                                 Ok((msg_opt, tx_opt)) => {
6476                                                         if let Some(msg) = msg_opt {
6477                                                                 has_update = true;
6478                                                                 pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
6479                                                                         node_id: chan.context.get_counterparty_node_id(), msg,
6480                                                                 });
6481                                                         }
6482                                                         if let Some(tx) = tx_opt {
6483                                                                 // We're done with this channel. We got a closing_signed and sent back
6484                                                                 // a closing_signed with a closing transaction to broadcast.
6485                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6486                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6487                                                                                 msg: update
6488                                                                         });
6489                                                                 }
6490
6491                                                                 self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
6492
6493                                                                 log_info!(self.logger, "Broadcasting {}", log_tx!(tx));
6494                                                                 self.tx_broadcaster.broadcast_transactions(&[&tx]);
6495                                                                 update_maps_on_chan_removal!(self, &chan.context);
6496                                                                 false
6497                                                         } else { true }
6498                                                 },
6499                                                 Err(e) => {
6500                                                         has_update = true;
6501                                                         let (close_channel, res) = convert_chan_err!(self, e, chan, channel_id);
6502                                                         handle_errors.push((chan.context.get_counterparty_node_id(), Err(res)));
6503                                                         !close_channel
6504                                                 }
6505                                         }
6506                                 });
6507                         }
6508                 }
6509
6510                 for (counterparty_node_id, err) in handle_errors.drain(..) {
6511                         let _ = handle_error!(self, err, counterparty_node_id);
6512                 }
6513
6514                 has_update
6515         }
6516
6517         /// Handle a list of channel failures during a block_connected or block_disconnected call,
6518         /// pushing the channel monitor update (if any) to the background events queue and removing the
6519         /// Channel object.
6520         fn handle_init_event_channel_failures(&self, mut failed_channels: Vec<ShutdownResult>) {
6521                 for mut failure in failed_channels.drain(..) {
6522                         // Either a commitment transactions has been confirmed on-chain or
6523                         // Channel::block_disconnected detected that the funding transaction has been
6524                         // reorganized out of the main chain.
6525                         // We cannot broadcast our latest local state via monitor update (as
6526                         // Channel::force_shutdown tries to make us do) as we may still be in initialization,
6527                         // so we track the update internally and handle it when the user next calls
6528                         // timer_tick_occurred, guaranteeing we're running normally.
6529                         if let Some((counterparty_node_id, funding_txo, update)) = failure.0.take() {
6530                                 assert_eq!(update.updates.len(), 1);
6531                                 if let ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } = update.updates[0] {
6532                                         assert!(should_broadcast);
6533                                 } else { unreachable!(); }
6534                                 self.pending_background_events.lock().unwrap().push(
6535                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
6536                                                 counterparty_node_id, funding_txo, update
6537                                         });
6538                         }
6539                         self.finish_force_close_channel(failure);
6540                 }
6541         }
6542
6543         /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
6544         /// to pay us.
6545         ///
6546         /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
6547         /// [`PaymentHash`] and [`PaymentPreimage`] for you.
6548         ///
6549         /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentClaimable`], which
6550         /// will have the [`PaymentClaimable::purpose`] be [`PaymentPurpose::InvoicePayment`] with
6551         /// its [`PaymentPurpose::InvoicePayment::payment_preimage`] field filled in. That should then be
6552         /// passed directly to [`claim_funds`].
6553         ///
6554         /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
6555         ///
6556         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
6557         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
6558         ///
6559         /// # Note
6560         ///
6561         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
6562         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
6563         ///
6564         /// Errors if `min_value_msat` is greater than total bitcoin supply.
6565         ///
6566         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
6567         /// on versions of LDK prior to 0.0.114.
6568         ///
6569         /// [`claim_funds`]: Self::claim_funds
6570         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
6571         /// [`PaymentClaimable::purpose`]: events::Event::PaymentClaimable::purpose
6572         /// [`PaymentPurpose::InvoicePayment`]: events::PaymentPurpose::InvoicePayment
6573         /// [`PaymentPurpose::InvoicePayment::payment_preimage`]: events::PaymentPurpose::InvoicePayment::payment_preimage
6574         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
6575         pub fn create_inbound_payment(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32,
6576                 min_final_cltv_expiry_delta: Option<u16>) -> Result<(PaymentHash, PaymentSecret), ()> {
6577                 inbound_payment::create(&self.inbound_payment_key, min_value_msat, invoice_expiry_delta_secs,
6578                         &self.entropy_source, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
6579                         min_final_cltv_expiry_delta)
6580         }
6581
6582         /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
6583         /// stored external to LDK.
6584         ///
6585         /// A [`PaymentClaimable`] event will only be generated if the [`PaymentSecret`] matches a
6586         /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
6587         /// the `min_value_msat` provided here, if one is provided.
6588         ///
6589         /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) should be globally unique, though
6590         /// note that LDK will not stop you from registering duplicate payment hashes for inbound
6591         /// payments.
6592         ///
6593         /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
6594         /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
6595         /// before a [`PaymentClaimable`] event will be generated, ensuring that we do not provide the
6596         /// sender "proof-of-payment" unless they have paid the required amount.
6597         ///
6598         /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
6599         /// in excess of the current time. This should roughly match the expiry time set in the invoice.
6600         /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
6601         /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
6602         /// invoices when no timeout is set.
6603         ///
6604         /// Note that we use block header time to time-out pending inbound payments (with some margin
6605         /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
6606         /// accept a payment and generate a [`PaymentClaimable`] event for some time after the expiry.
6607         /// If you need exact expiry semantics, you should enforce them upon receipt of
6608         /// [`PaymentClaimable`].
6609         ///
6610         /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry_delta`
6611         /// set to at least [`MIN_FINAL_CLTV_EXPIRY_DELTA`].
6612         ///
6613         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
6614         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
6615         ///
6616         /// # Note
6617         ///
6618         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
6619         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
6620         ///
6621         /// Errors if `min_value_msat` is greater than total bitcoin supply.
6622         ///
6623         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
6624         /// on versions of LDK prior to 0.0.114.
6625         ///
6626         /// [`create_inbound_payment`]: Self::create_inbound_payment
6627         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
6628         pub fn create_inbound_payment_for_hash(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>,
6629                 invoice_expiry_delta_secs: u32, min_final_cltv_expiry: Option<u16>) -> Result<PaymentSecret, ()> {
6630                 inbound_payment::create_from_hash(&self.inbound_payment_key, min_value_msat, payment_hash,
6631                         invoice_expiry_delta_secs, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
6632                         min_final_cltv_expiry)
6633         }
6634
6635         /// Gets an LDK-generated payment preimage from a payment hash and payment secret that were
6636         /// previously returned from [`create_inbound_payment`].
6637         ///
6638         /// [`create_inbound_payment`]: Self::create_inbound_payment
6639         pub fn get_payment_preimage(&self, payment_hash: PaymentHash, payment_secret: PaymentSecret) -> Result<PaymentPreimage, APIError> {
6640                 inbound_payment::get_payment_preimage(payment_hash, payment_secret, &self.inbound_payment_key)
6641         }
6642
6643         /// Gets a fake short channel id for use in receiving [phantom node payments]. These fake scids
6644         /// are used when constructing the phantom invoice's route hints.
6645         ///
6646         /// [phantom node payments]: crate::sign::PhantomKeysManager
6647         pub fn get_phantom_scid(&self) -> u64 {
6648                 let best_block_height = self.best_block.read().unwrap().height();
6649                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
6650                 loop {
6651                         let scid_candidate = fake_scid::Namespace::Phantom.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
6652                         // Ensure the generated scid doesn't conflict with a real channel.
6653                         match short_to_chan_info.get(&scid_candidate) {
6654                                 Some(_) => continue,
6655                                 None => return scid_candidate
6656                         }
6657                 }
6658         }
6659
6660         /// Gets route hints for use in receiving [phantom node payments].
6661         ///
6662         /// [phantom node payments]: crate::sign::PhantomKeysManager
6663         pub fn get_phantom_route_hints(&self) -> PhantomRouteHints {
6664                 PhantomRouteHints {
6665                         channels: self.list_usable_channels(),
6666                         phantom_scid: self.get_phantom_scid(),
6667                         real_node_pubkey: self.get_our_node_id(),
6668                 }
6669         }
6670
6671         /// Gets a fake short channel id for use in receiving intercepted payments. These fake scids are
6672         /// used when constructing the route hints for HTLCs intended to be intercepted. See
6673         /// [`ChannelManager::forward_intercepted_htlc`].
6674         ///
6675         /// Note that this method is not guaranteed to return unique values, you may need to call it a few
6676         /// times to get a unique scid.
6677         pub fn get_intercept_scid(&self) -> u64 {
6678                 let best_block_height = self.best_block.read().unwrap().height();
6679                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
6680                 loop {
6681                         let scid_candidate = fake_scid::Namespace::Intercept.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
6682                         // Ensure the generated scid doesn't conflict with a real channel.
6683                         if short_to_chan_info.contains_key(&scid_candidate) { continue }
6684                         return scid_candidate
6685                 }
6686         }
6687
6688         /// Gets inflight HTLC information by processing pending outbound payments that are in
6689         /// our channels. May be used during pathfinding to account for in-use channel liquidity.
6690         pub fn compute_inflight_htlcs(&self) -> InFlightHtlcs {
6691                 let mut inflight_htlcs = InFlightHtlcs::new();
6692
6693                 let per_peer_state = self.per_peer_state.read().unwrap();
6694                 for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6695                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6696                         let peer_state = &mut *peer_state_lock;
6697                         for chan in peer_state.channel_by_id.values() {
6698                                 for (htlc_source, _) in chan.inflight_htlc_sources() {
6699                                         if let HTLCSource::OutboundRoute { path, .. } = htlc_source {
6700                                                 inflight_htlcs.process_path(path, self.get_our_node_id());
6701                                         }
6702                                 }
6703                         }
6704                 }
6705
6706                 inflight_htlcs
6707         }
6708
6709         #[cfg(any(test, feature = "_test_utils"))]
6710         pub fn get_and_clear_pending_events(&self) -> Vec<events::Event> {
6711                 let events = core::cell::RefCell::new(Vec::new());
6712                 let event_handler = |event: events::Event| events.borrow_mut().push(event);
6713                 self.process_pending_events(&event_handler);
6714                 events.into_inner()
6715         }
6716
6717         #[cfg(feature = "_test_utils")]
6718         pub fn push_pending_event(&self, event: events::Event) {
6719                 let mut events = self.pending_events.lock().unwrap();
6720                 events.push_back((event, None));
6721         }
6722
6723         #[cfg(test)]
6724         pub fn pop_pending_event(&self) -> Option<events::Event> {
6725                 let mut events = self.pending_events.lock().unwrap();
6726                 events.pop_front().map(|(e, _)| e)
6727         }
6728
6729         #[cfg(test)]
6730         pub fn has_pending_payments(&self) -> bool {
6731                 self.pending_outbound_payments.has_pending_payments()
6732         }
6733
6734         #[cfg(test)]
6735         pub fn clear_pending_payments(&self) {
6736                 self.pending_outbound_payments.clear_pending_payments()
6737         }
6738
6739         /// When something which was blocking a channel from updating its [`ChannelMonitor`] (e.g. an
6740         /// [`Event`] being handled) completes, this should be called to restore the channel to normal
6741         /// operation. It will double-check that nothing *else* is also blocking the same channel from
6742         /// making progress and then let any blocked [`ChannelMonitorUpdate`]s fly.
6743         fn handle_monitor_update_release(&self, counterparty_node_id: PublicKey, channel_funding_outpoint: OutPoint, mut completed_blocker: Option<RAAMonitorUpdateBlockingAction>) {
6744                 let mut errors = Vec::new();
6745                 loop {
6746                         let per_peer_state = self.per_peer_state.read().unwrap();
6747                         if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
6748                                 let mut peer_state_lck = peer_state_mtx.lock().unwrap();
6749                                 let peer_state = &mut *peer_state_lck;
6750
6751                                 if let Some(blocker) = completed_blocker.take() {
6752                                         // Only do this on the first iteration of the loop.
6753                                         if let Some(blockers) = peer_state.actions_blocking_raa_monitor_updates
6754                                                 .get_mut(&channel_funding_outpoint.to_channel_id())
6755                                         {
6756                                                 blockers.retain(|iter| iter != &blocker);
6757                                         }
6758                                 }
6759
6760                                 if self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
6761                                         channel_funding_outpoint, counterparty_node_id) {
6762                                         // Check that, while holding the peer lock, we don't have anything else
6763                                         // blocking monitor updates for this channel. If we do, release the monitor
6764                                         // update(s) when those blockers complete.
6765                                         log_trace!(self.logger, "Delaying monitor unlock for channel {} as another channel's mon update needs to complete first",
6766                                                 log_bytes!(&channel_funding_outpoint.to_channel_id()[..]));
6767                                         break;
6768                                 }
6769
6770                                 if let hash_map::Entry::Occupied(mut chan) = peer_state.channel_by_id.entry(channel_funding_outpoint.to_channel_id()) {
6771                                         debug_assert_eq!(chan.get().context.get_funding_txo().unwrap(), channel_funding_outpoint);
6772                                         if let Some((monitor_update, further_update_exists)) = chan.get_mut().unblock_next_blocked_monitor_update() {
6773                                                 log_debug!(self.logger, "Unlocking monitor updating for channel {} and updating monitor",
6774                                                         log_bytes!(&channel_funding_outpoint.to_channel_id()[..]));
6775                                                 if let Err(e) = handle_new_monitor_update!(self, channel_funding_outpoint, monitor_update,
6776                                                         peer_state_lck, peer_state, per_peer_state, chan)
6777                                                 {
6778                                                         errors.push((e, counterparty_node_id));
6779                                                 }
6780                                                 if further_update_exists {
6781                                                         // If there are more `ChannelMonitorUpdate`s to process, restart at the
6782                                                         // top of the loop.
6783                                                         continue;
6784                                                 }
6785                                         } else {
6786                                                 log_trace!(self.logger, "Unlocked monitor updating for channel {} without monitors to update",
6787                                                         log_bytes!(&channel_funding_outpoint.to_channel_id()[..]));
6788                                         }
6789                                 }
6790                         } else {
6791                                 log_debug!(self.logger,
6792                                         "Got a release post-RAA monitor update for peer {} but the channel is gone",
6793                                         log_pubkey!(counterparty_node_id));
6794                         }
6795                         break;
6796                 }
6797                 for (err, counterparty_node_id) in errors {
6798                         let res = Err::<(), _>(err);
6799                         let _ = handle_error!(self, res, counterparty_node_id);
6800                 }
6801         }
6802
6803         fn handle_post_event_actions(&self, actions: Vec<EventCompletionAction>) {
6804                 for action in actions {
6805                         match action {
6806                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
6807                                         channel_funding_outpoint, counterparty_node_id
6808                                 } => {
6809                                         self.handle_monitor_update_release(counterparty_node_id, channel_funding_outpoint, None);
6810                                 }
6811                         }
6812                 }
6813         }
6814
6815         /// Processes any events asynchronously in the order they were generated since the last call
6816         /// using the given event handler.
6817         ///
6818         /// See the trait-level documentation of [`EventsProvider`] for requirements.
6819         pub async fn process_pending_events_async<Future: core::future::Future, H: Fn(Event) -> Future>(
6820                 &self, handler: H
6821         ) {
6822                 let mut ev;
6823                 process_events_body!(self, ev, { handler(ev).await });
6824         }
6825 }
6826
6827 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>
6828 where
6829         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6830         T::Target: BroadcasterInterface,
6831         ES::Target: EntropySource,
6832         NS::Target: NodeSigner,
6833         SP::Target: SignerProvider,
6834         F::Target: FeeEstimator,
6835         R::Target: Router,
6836         L::Target: Logger,
6837 {
6838         /// Returns `MessageSendEvent`s strictly ordered per-peer, in the order they were generated.
6839         /// The returned array will contain `MessageSendEvent`s for different peers if
6840         /// `MessageSendEvent`s to more than one peer exists, but `MessageSendEvent`s to the same peer
6841         /// is always placed next to each other.
6842         ///
6843         /// Note that that while `MessageSendEvent`s are strictly ordered per-peer, the peer order for
6844         /// the chunks of `MessageSendEvent`s for different peers is random. I.e. if the array contains
6845         /// `MessageSendEvent`s  for both `node_a` and `node_b`, the `MessageSendEvent`s for `node_a`
6846         /// will randomly be placed first or last in the returned array.
6847         ///
6848         /// Note that even though `BroadcastChannelAnnouncement` and `BroadcastChannelUpdate`
6849         /// `MessageSendEvent`s are intended to be broadcasted to all peers, they will be pleaced among
6850         /// the `MessageSendEvent`s to the specific peer they were generated under.
6851         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent> {
6852                 let events = RefCell::new(Vec::new());
6853                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
6854                         let mut result = self.process_background_events();
6855
6856                         // TODO: This behavior should be documented. It's unintuitive that we query
6857                         // ChannelMonitors when clearing other events.
6858                         if self.process_pending_monitor_events() {
6859                                 result = NotifyOption::DoPersist;
6860                         }
6861
6862                         if self.check_free_holding_cells() {
6863                                 result = NotifyOption::DoPersist;
6864                         }
6865                         if self.maybe_generate_initial_closing_signed() {
6866                                 result = NotifyOption::DoPersist;
6867                         }
6868
6869                         let mut pending_events = Vec::new();
6870                         let per_peer_state = self.per_peer_state.read().unwrap();
6871                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6872                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6873                                 let peer_state = &mut *peer_state_lock;
6874                                 if peer_state.pending_msg_events.len() > 0 {
6875                                         pending_events.append(&mut peer_state.pending_msg_events);
6876                                 }
6877                         }
6878
6879                         if !pending_events.is_empty() {
6880                                 events.replace(pending_events);
6881                         }
6882
6883                         result
6884                 });
6885                 events.into_inner()
6886         }
6887 }
6888
6889 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>
6890 where
6891         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6892         T::Target: BroadcasterInterface,
6893         ES::Target: EntropySource,
6894         NS::Target: NodeSigner,
6895         SP::Target: SignerProvider,
6896         F::Target: FeeEstimator,
6897         R::Target: Router,
6898         L::Target: Logger,
6899 {
6900         /// Processes events that must be periodically handled.
6901         ///
6902         /// An [`EventHandler`] may safely call back to the provider in order to handle an event.
6903         /// However, it must not call [`Writeable::write`] as doing so would result in a deadlock.
6904         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler {
6905                 let mut ev;
6906                 process_events_body!(self, ev, handler.handle_event(ev));
6907         }
6908 }
6909
6910 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>
6911 where
6912         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6913         T::Target: BroadcasterInterface,
6914         ES::Target: EntropySource,
6915         NS::Target: NodeSigner,
6916         SP::Target: SignerProvider,
6917         F::Target: FeeEstimator,
6918         R::Target: Router,
6919         L::Target: Logger,
6920 {
6921         fn filtered_block_connected(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
6922                 {
6923                         let best_block = self.best_block.read().unwrap();
6924                         assert_eq!(best_block.block_hash(), header.prev_blockhash,
6925                                 "Blocks must be connected in chain-order - the connected header must build on the last connected header");
6926                         assert_eq!(best_block.height(), height - 1,
6927                                 "Blocks must be connected in chain-order - the connected block height must be one greater than the previous height");
6928                 }
6929
6930                 self.transactions_confirmed(header, txdata, height);
6931                 self.best_block_updated(header, height);
6932         }
6933
6934         fn block_disconnected(&self, header: &BlockHeader, height: u32) {
6935                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
6936                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
6937                 let new_height = height - 1;
6938                 {
6939                         let mut best_block = self.best_block.write().unwrap();
6940                         assert_eq!(best_block.block_hash(), header.block_hash(),
6941                                 "Blocks must be disconnected in chain-order - the disconnected header must be the last connected header");
6942                         assert_eq!(best_block.height(), height,
6943                                 "Blocks must be disconnected in chain-order - the disconnected block must have the correct height");
6944                         *best_block = BestBlock::new(header.prev_blockhash, new_height)
6945                 }
6946
6947                 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));
6948         }
6949 }
6950
6951 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>
6952 where
6953         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6954         T::Target: BroadcasterInterface,
6955         ES::Target: EntropySource,
6956         NS::Target: NodeSigner,
6957         SP::Target: SignerProvider,
6958         F::Target: FeeEstimator,
6959         R::Target: Router,
6960         L::Target: Logger,
6961 {
6962         fn transactions_confirmed(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
6963                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
6964                 // during initialization prior to the chain_monitor being fully configured in some cases.
6965                 // See the docs for `ChannelManagerReadArgs` for more.
6966
6967                 let block_hash = header.block_hash();
6968                 log_trace!(self.logger, "{} transactions included in block {} at height {} provided", txdata.len(), block_hash, height);
6969
6970                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
6971                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
6972                 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)
6973                         .map(|(a, b)| (a, Vec::new(), b)));
6974
6975                 let last_best_block_height = self.best_block.read().unwrap().height();
6976                 if height < last_best_block_height {
6977                         let timestamp = self.highest_seen_timestamp.load(Ordering::Acquire);
6978                         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));
6979                 }
6980         }
6981
6982         fn best_block_updated(&self, header: &BlockHeader, height: u32) {
6983                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
6984                 // during initialization prior to the chain_monitor being fully configured in some cases.
6985                 // See the docs for `ChannelManagerReadArgs` for more.
6986
6987                 let block_hash = header.block_hash();
6988                 log_trace!(self.logger, "New best block: {} at height {}", block_hash, height);
6989
6990                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
6991                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
6992                 *self.best_block.write().unwrap() = BestBlock::new(block_hash, height);
6993
6994                 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));
6995
6996                 macro_rules! max_time {
6997                         ($timestamp: expr) => {
6998                                 loop {
6999                                         // Update $timestamp to be the max of its current value and the block
7000                                         // timestamp. This should keep us close to the current time without relying on
7001                                         // having an explicit local time source.
7002                                         // Just in case we end up in a race, we loop until we either successfully
7003                                         // update $timestamp or decide we don't need to.
7004                                         let old_serial = $timestamp.load(Ordering::Acquire);
7005                                         if old_serial >= header.time as usize { break; }
7006                                         if $timestamp.compare_exchange(old_serial, header.time as usize, Ordering::AcqRel, Ordering::Relaxed).is_ok() {
7007                                                 break;
7008                                         }
7009                                 }
7010                         }
7011                 }
7012                 max_time!(self.highest_seen_timestamp);
7013                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
7014                 payment_secrets.retain(|_, inbound_payment| {
7015                         inbound_payment.expiry_time > header.time as u64
7016                 });
7017         }
7018
7019         fn get_relevant_txids(&self) -> Vec<(Txid, Option<BlockHash>)> {
7020                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
7021                 for (_cp_id, peer_state_mutex) in self.per_peer_state.read().unwrap().iter() {
7022                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7023                         let peer_state = &mut *peer_state_lock;
7024                         for chan in peer_state.channel_by_id.values() {
7025                                 if let (Some(funding_txo), Some(block_hash)) = (chan.context.get_funding_txo(), chan.context.get_funding_tx_confirmed_in()) {
7026                                         res.push((funding_txo.txid, Some(block_hash)));
7027                                 }
7028                         }
7029                 }
7030                 res
7031         }
7032
7033         fn transaction_unconfirmed(&self, txid: &Txid) {
7034                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
7035                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
7036                 self.do_chain_event(None, |channel| {
7037                         if let Some(funding_txo) = channel.context.get_funding_txo() {
7038                                 if funding_txo.txid == *txid {
7039                                         channel.funding_transaction_unconfirmed(&self.logger).map(|()| (None, Vec::new(), None))
7040                                 } else { Ok((None, Vec::new(), None)) }
7041                         } else { Ok((None, Vec::new(), None)) }
7042                 });
7043         }
7044 }
7045
7046 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>
7047 where
7048         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7049         T::Target: BroadcasterInterface,
7050         ES::Target: EntropySource,
7051         NS::Target: NodeSigner,
7052         SP::Target: SignerProvider,
7053         F::Target: FeeEstimator,
7054         R::Target: Router,
7055         L::Target: Logger,
7056 {
7057         /// Calls a function which handles an on-chain event (blocks dis/connected, transactions
7058         /// un/confirmed, etc) on each channel, handling any resulting errors or messages generated by
7059         /// the function.
7060         fn do_chain_event<FN: Fn(&mut Channel<SP>) -> Result<(Option<msgs::ChannelReady>, Vec<(HTLCSource, PaymentHash)>, Option<msgs::AnnouncementSignatures>), ClosureReason>>
7061                         (&self, height_opt: Option<u32>, f: FN) {
7062                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7063                 // during initialization prior to the chain_monitor being fully configured in some cases.
7064                 // See the docs for `ChannelManagerReadArgs` for more.
7065
7066                 let mut failed_channels = Vec::new();
7067                 let mut timed_out_htlcs = Vec::new();
7068                 {
7069                         let per_peer_state = self.per_peer_state.read().unwrap();
7070                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7071                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7072                                 let peer_state = &mut *peer_state_lock;
7073                                 let pending_msg_events = &mut peer_state.pending_msg_events;
7074                                 peer_state.channel_by_id.retain(|_, channel| {
7075                                         let res = f(channel);
7076                                         if let Ok((channel_ready_opt, mut timed_out_pending_htlcs, announcement_sigs)) = res {
7077                                                 for (source, payment_hash) in timed_out_pending_htlcs.drain(..) {
7078                                                         let (failure_code, data) = self.get_htlc_inbound_temp_fail_err_and_data(0x1000|14 /* expiry_too_soon */, &channel);
7079                                                         timed_out_htlcs.push((source, payment_hash, HTLCFailReason::reason(failure_code, data),
7080                                                                 HTLCDestination::NextHopChannel { node_id: Some(channel.context.get_counterparty_node_id()), channel_id: channel.context.channel_id() }));
7081                                                 }
7082                                                 if let Some(channel_ready) = channel_ready_opt {
7083                                                         send_channel_ready!(self, pending_msg_events, channel, channel_ready);
7084                                                         if channel.context.is_usable() {
7085                                                                 log_trace!(self.logger, "Sending channel_ready with private initial channel_update for our counterparty on channel {}", log_bytes!(channel.context.channel_id()));
7086                                                                 if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
7087                                                                         pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
7088                                                                                 node_id: channel.context.get_counterparty_node_id(),
7089                                                                                 msg,
7090                                                                         });
7091                                                                 }
7092                                                         } else {
7093                                                                 log_trace!(self.logger, "Sending channel_ready WITHOUT channel_update for {}", log_bytes!(channel.context.channel_id()));
7094                                                         }
7095                                                 }
7096
7097                                                 {
7098                                                         let mut pending_events = self.pending_events.lock().unwrap();
7099                                                         emit_channel_ready_event!(pending_events, channel);
7100                                                 }
7101
7102                                                 if let Some(announcement_sigs) = announcement_sigs {
7103                                                         log_trace!(self.logger, "Sending announcement_signatures for channel {}", log_bytes!(channel.context.channel_id()));
7104                                                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
7105                                                                 node_id: channel.context.get_counterparty_node_id(),
7106                                                                 msg: announcement_sigs,
7107                                                         });
7108                                                         if let Some(height) = height_opt {
7109                                                                 if let Some(announcement) = channel.get_signed_channel_announcement(&self.node_signer, self.genesis_hash, height, &self.default_configuration) {
7110                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
7111                                                                                 msg: announcement,
7112                                                                                 // Note that announcement_signatures fails if the channel cannot be announced,
7113                                                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
7114                                                                                 update_msg: Some(self.get_channel_update_for_broadcast(channel).unwrap()),
7115                                                                         });
7116                                                                 }
7117                                                         }
7118                                                 }
7119                                                 if channel.is_our_channel_ready() {
7120                                                         if let Some(real_scid) = channel.context.get_short_channel_id() {
7121                                                                 // If we sent a 0conf channel_ready, and now have an SCID, we add it
7122                                                                 // to the short_to_chan_info map here. Note that we check whether we
7123                                                                 // can relay using the real SCID at relay-time (i.e.
7124                                                                 // enforce option_scid_alias then), and if the funding tx is ever
7125                                                                 // un-confirmed we force-close the channel, ensuring short_to_chan_info
7126                                                                 // is always consistent.
7127                                                                 let mut short_to_chan_info = self.short_to_chan_info.write().unwrap();
7128                                                                 let scid_insert = short_to_chan_info.insert(real_scid, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
7129                                                                 assert!(scid_insert.is_none() || scid_insert.unwrap() == (channel.context.get_counterparty_node_id(), channel.context.channel_id()),
7130                                                                         "SCIDs should never collide - ensure you weren't behind by a full {} blocks when creating channels",
7131                                                                         fake_scid::MAX_SCID_BLOCKS_FROM_NOW);
7132                                                         }
7133                                                 }
7134                                         } else if let Err(reason) = res {
7135                                                 update_maps_on_chan_removal!(self, &channel.context);
7136                                                 // It looks like our counterparty went on-chain or funding transaction was
7137                                                 // reorged out of the main chain. Close the channel.
7138                                                 failed_channels.push(channel.context.force_shutdown(true));
7139                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&channel) {
7140                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
7141                                                                 msg: update
7142                                                         });
7143                                                 }
7144                                                 let reason_message = format!("{}", reason);
7145                                                 self.issue_channel_close_events(&channel.context, reason);
7146                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
7147                                                         node_id: channel.context.get_counterparty_node_id(),
7148                                                         action: msgs::ErrorAction::SendErrorMessage { msg: msgs::ErrorMessage {
7149                                                                 channel_id: channel.context.channel_id(),
7150                                                                 data: reason_message,
7151                                                         } },
7152                                                 });
7153                                                 return false;
7154                                         }
7155                                         true
7156                                 });
7157                         }
7158                 }
7159
7160                 if let Some(height) = height_opt {
7161                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
7162                                 payment.htlcs.retain(|htlc| {
7163                                         // If height is approaching the number of blocks we think it takes us to get
7164                                         // our commitment transaction confirmed before the HTLC expires, plus the
7165                                         // number of blocks we generally consider it to take to do a commitment update,
7166                                         // just give up on it and fail the HTLC.
7167                                         if height >= htlc.cltv_expiry - HTLC_FAIL_BACK_BUFFER {
7168                                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
7169                                                 htlc_msat_height_data.extend_from_slice(&height.to_be_bytes());
7170
7171                                                 timed_out_htlcs.push((HTLCSource::PreviousHopData(htlc.prev_hop.clone()), payment_hash.clone(),
7172                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
7173                                                         HTLCDestination::FailedPayment { payment_hash: payment_hash.clone() }));
7174                                                 false
7175                                         } else { true }
7176                                 });
7177                                 !payment.htlcs.is_empty() // Only retain this entry if htlcs has at least one entry.
7178                         });
7179
7180                         let mut intercepted_htlcs = self.pending_intercepted_htlcs.lock().unwrap();
7181                         intercepted_htlcs.retain(|_, htlc| {
7182                                 if height >= htlc.forward_info.outgoing_cltv_value - HTLC_FAIL_BACK_BUFFER {
7183                                         let prev_hop_data = HTLCSource::PreviousHopData(HTLCPreviousHopData {
7184                                                 short_channel_id: htlc.prev_short_channel_id,
7185                                                 user_channel_id: Some(htlc.prev_user_channel_id),
7186                                                 htlc_id: htlc.prev_htlc_id,
7187                                                 incoming_packet_shared_secret: htlc.forward_info.incoming_shared_secret,
7188                                                 phantom_shared_secret: None,
7189                                                 outpoint: htlc.prev_funding_outpoint,
7190                                         });
7191
7192                                         let requested_forward_scid /* intercept scid */ = match htlc.forward_info.routing {
7193                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
7194                                                 _ => unreachable!(),
7195                                         };
7196                                         timed_out_htlcs.push((prev_hop_data, htlc.forward_info.payment_hash,
7197                                                         HTLCFailReason::from_failure_code(0x2000 | 2),
7198                                                         HTLCDestination::InvalidForward { requested_forward_scid }));
7199                                         log_trace!(self.logger, "Timing out intercepted HTLC with requested forward scid {}", requested_forward_scid);
7200                                         false
7201                                 } else { true }
7202                         });
7203                 }
7204
7205                 self.handle_init_event_channel_failures(failed_channels);
7206
7207                 for (source, payment_hash, reason, destination) in timed_out_htlcs.drain(..) {
7208                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, destination);
7209                 }
7210         }
7211
7212         /// Gets a [`Future`] that completes when this [`ChannelManager`] needs to be persisted.
7213         ///
7214         /// Note that callbacks registered on the [`Future`] MUST NOT call back into this
7215         /// [`ChannelManager`] and should instead register actions to be taken later.
7216         ///
7217         pub fn get_persistable_update_future(&self) -> Future {
7218                 self.persistence_notifier.get_future()
7219         }
7220
7221         #[cfg(any(test, feature = "_test_utils"))]
7222         pub fn get_persistence_condvar_value(&self) -> bool {
7223                 self.persistence_notifier.notify_pending()
7224         }
7225
7226         /// Gets the latest best block which was connected either via the [`chain::Listen`] or
7227         /// [`chain::Confirm`] interfaces.
7228         pub fn current_best_block(&self) -> BestBlock {
7229                 self.best_block.read().unwrap().clone()
7230         }
7231
7232         /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
7233         /// [`ChannelManager`].
7234         pub fn node_features(&self) -> NodeFeatures {
7235                 provided_node_features(&self.default_configuration)
7236         }
7237
7238         /// Fetches the set of [`Bolt11InvoiceFeatures`] flags which are provided by or required by
7239         /// [`ChannelManager`].
7240         ///
7241         /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
7242         /// or not. Thus, this method is not public.
7243         #[cfg(any(feature = "_test_utils", test))]
7244         pub fn invoice_features(&self) -> Bolt11InvoiceFeatures {
7245                 provided_invoice_features(&self.default_configuration)
7246         }
7247
7248         /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
7249         /// [`ChannelManager`].
7250         pub fn channel_features(&self) -> ChannelFeatures {
7251                 provided_channel_features(&self.default_configuration)
7252         }
7253
7254         /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
7255         /// [`ChannelManager`].
7256         pub fn channel_type_features(&self) -> ChannelTypeFeatures {
7257                 provided_channel_type_features(&self.default_configuration)
7258         }
7259
7260         /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
7261         /// [`ChannelManager`].
7262         pub fn init_features(&self) -> InitFeatures {
7263                 provided_init_features(&self.default_configuration)
7264         }
7265 }
7266
7267 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
7268         ChannelMessageHandler for ChannelManager<M, T, ES, NS, SP, F, R, L>
7269 where
7270         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7271         T::Target: BroadcasterInterface,
7272         ES::Target: EntropySource,
7273         NS::Target: NodeSigner,
7274         SP::Target: SignerProvider,
7275         F::Target: FeeEstimator,
7276         R::Target: Router,
7277         L::Target: Logger,
7278 {
7279         fn handle_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) {
7280                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7281                 let _ = handle_error!(self, self.internal_open_channel(counterparty_node_id, msg), *counterparty_node_id);
7282         }
7283
7284         fn handle_open_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannelV2) {
7285                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7286                         "Dual-funded channels not supported".to_owned(),
7287                          msg.temporary_channel_id.clone())), *counterparty_node_id);
7288         }
7289
7290         fn handle_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) {
7291                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7292                 let _ = handle_error!(self, self.internal_accept_channel(counterparty_node_id, msg), *counterparty_node_id);
7293         }
7294
7295         fn handle_accept_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannelV2) {
7296                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7297                         "Dual-funded channels not supported".to_owned(),
7298                          msg.temporary_channel_id.clone())), *counterparty_node_id);
7299         }
7300
7301         fn handle_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) {
7302                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7303                 let _ = handle_error!(self, self.internal_funding_created(counterparty_node_id, msg), *counterparty_node_id);
7304         }
7305
7306         fn handle_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) {
7307                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7308                 let _ = handle_error!(self, self.internal_funding_signed(counterparty_node_id, msg), *counterparty_node_id);
7309         }
7310
7311         fn handle_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) {
7312                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7313                 let _ = handle_error!(self, self.internal_channel_ready(counterparty_node_id, msg), *counterparty_node_id);
7314         }
7315
7316         fn handle_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) {
7317                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7318                 let _ = handle_error!(self, self.internal_shutdown(counterparty_node_id, msg), *counterparty_node_id);
7319         }
7320
7321         fn handle_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) {
7322                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7323                 let _ = handle_error!(self, self.internal_closing_signed(counterparty_node_id, msg), *counterparty_node_id);
7324         }
7325
7326         fn handle_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) {
7327                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7328                 let _ = handle_error!(self, self.internal_update_add_htlc(counterparty_node_id, msg), *counterparty_node_id);
7329         }
7330
7331         fn handle_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) {
7332                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7333                 let _ = handle_error!(self, self.internal_update_fulfill_htlc(counterparty_node_id, msg), *counterparty_node_id);
7334         }
7335
7336         fn handle_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) {
7337                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7338                 let _ = handle_error!(self, self.internal_update_fail_htlc(counterparty_node_id, msg), *counterparty_node_id);
7339         }
7340
7341         fn handle_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) {
7342                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7343                 let _ = handle_error!(self, self.internal_update_fail_malformed_htlc(counterparty_node_id, msg), *counterparty_node_id);
7344         }
7345
7346         fn handle_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) {
7347                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7348                 let _ = handle_error!(self, self.internal_commitment_signed(counterparty_node_id, msg), *counterparty_node_id);
7349         }
7350
7351         fn handle_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) {
7352                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7353                 let _ = handle_error!(self, self.internal_revoke_and_ack(counterparty_node_id, msg), *counterparty_node_id);
7354         }
7355
7356         fn handle_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) {
7357                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7358                 let _ = handle_error!(self, self.internal_update_fee(counterparty_node_id, msg), *counterparty_node_id);
7359         }
7360
7361         fn handle_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) {
7362                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7363                 let _ = handle_error!(self, self.internal_announcement_signatures(counterparty_node_id, msg), *counterparty_node_id);
7364         }
7365
7366         fn handle_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) {
7367                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
7368                         let force_persist = self.process_background_events();
7369                         if let Ok(persist) = handle_error!(self, self.internal_channel_update(counterparty_node_id, msg), *counterparty_node_id) {
7370                                 if force_persist == NotifyOption::DoPersist { NotifyOption::DoPersist } else { persist }
7371                         } else {
7372                                 NotifyOption::SkipPersist
7373                         }
7374                 });
7375         }
7376
7377         fn handle_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) {
7378                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7379                 let _ = handle_error!(self, self.internal_channel_reestablish(counterparty_node_id, msg), *counterparty_node_id);
7380         }
7381
7382         fn peer_disconnected(&self, counterparty_node_id: &PublicKey) {
7383                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7384                 let mut failed_channels = Vec::new();
7385                 let mut per_peer_state = self.per_peer_state.write().unwrap();
7386                 let remove_peer = {
7387                         log_debug!(self.logger, "Marking channels with {} disconnected and generating channel_updates.",
7388                                 log_pubkey!(counterparty_node_id));
7389                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
7390                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7391                                 let peer_state = &mut *peer_state_lock;
7392                                 let pending_msg_events = &mut peer_state.pending_msg_events;
7393                                 peer_state.channel_by_id.retain(|_, chan| {
7394                                         chan.remove_uncommitted_htlcs_and_mark_paused(&self.logger);
7395                                         if chan.is_shutdown() {
7396                                                 update_maps_on_chan_removal!(self, &chan.context);
7397                                                 self.issue_channel_close_events(&chan.context, ClosureReason::DisconnectedPeer);
7398                                                 return false;
7399                                         }
7400                                         true
7401                                 });
7402                                 peer_state.inbound_v1_channel_by_id.retain(|_, chan| {
7403                                         update_maps_on_chan_removal!(self, &chan.context);
7404                                         self.issue_channel_close_events(&chan.context, ClosureReason::DisconnectedPeer);
7405                                         false
7406                                 });
7407                                 peer_state.outbound_v1_channel_by_id.retain(|_, chan| {
7408                                         update_maps_on_chan_removal!(self, &chan.context);
7409                                         self.issue_channel_close_events(&chan.context, ClosureReason::DisconnectedPeer);
7410                                         false
7411                                 });
7412                                 // Note that we don't bother generating any events for pre-accept channels -
7413                                 // they're not considered "channels" yet from the PoV of our events interface.
7414                                 peer_state.inbound_channel_request_by_id.clear();
7415                                 pending_msg_events.retain(|msg| {
7416                                         match msg {
7417                                                 // V1 Channel Establishment
7418                                                 &events::MessageSendEvent::SendAcceptChannel { .. } => false,
7419                                                 &events::MessageSendEvent::SendOpenChannel { .. } => false,
7420                                                 &events::MessageSendEvent::SendFundingCreated { .. } => false,
7421                                                 &events::MessageSendEvent::SendFundingSigned { .. } => false,
7422                                                 // V2 Channel Establishment
7423                                                 &events::MessageSendEvent::SendAcceptChannelV2 { .. } => false,
7424                                                 &events::MessageSendEvent::SendOpenChannelV2 { .. } => false,
7425                                                 // Common Channel Establishment
7426                                                 &events::MessageSendEvent::SendChannelReady { .. } => false,
7427                                                 &events::MessageSendEvent::SendAnnouncementSignatures { .. } => false,
7428                                                 // Interactive Transaction Construction
7429                                                 &events::MessageSendEvent::SendTxAddInput { .. } => false,
7430                                                 &events::MessageSendEvent::SendTxAddOutput { .. } => false,
7431                                                 &events::MessageSendEvent::SendTxRemoveInput { .. } => false,
7432                                                 &events::MessageSendEvent::SendTxRemoveOutput { .. } => false,
7433                                                 &events::MessageSendEvent::SendTxComplete { .. } => false,
7434                                                 &events::MessageSendEvent::SendTxSignatures { .. } => false,
7435                                                 &events::MessageSendEvent::SendTxInitRbf { .. } => false,
7436                                                 &events::MessageSendEvent::SendTxAckRbf { .. } => false,
7437                                                 &events::MessageSendEvent::SendTxAbort { .. } => false,
7438                                                 // Channel Operations
7439                                                 &events::MessageSendEvent::UpdateHTLCs { .. } => false,
7440                                                 &events::MessageSendEvent::SendRevokeAndACK { .. } => false,
7441                                                 &events::MessageSendEvent::SendClosingSigned { .. } => false,
7442                                                 &events::MessageSendEvent::SendShutdown { .. } => false,
7443                                                 &events::MessageSendEvent::SendChannelReestablish { .. } => false,
7444                                                 &events::MessageSendEvent::HandleError { .. } => false,
7445                                                 // Gossip
7446                                                 &events::MessageSendEvent::SendChannelAnnouncement { .. } => false,
7447                                                 &events::MessageSendEvent::BroadcastChannelAnnouncement { .. } => true,
7448                                                 &events::MessageSendEvent::BroadcastChannelUpdate { .. } => true,
7449                                                 &events::MessageSendEvent::BroadcastNodeAnnouncement { .. } => true,
7450                                                 &events::MessageSendEvent::SendChannelUpdate { .. } => false,
7451                                                 &events::MessageSendEvent::SendChannelRangeQuery { .. } => false,
7452                                                 &events::MessageSendEvent::SendShortIdsQuery { .. } => false,
7453                                                 &events::MessageSendEvent::SendReplyChannelRange { .. } => false,
7454                                                 &events::MessageSendEvent::SendGossipTimestampFilter { .. } => false,
7455                                         }
7456                                 });
7457                                 debug_assert!(peer_state.is_connected, "A disconnected peer cannot disconnect");
7458                                 peer_state.is_connected = false;
7459                                 peer_state.ok_to_remove(true)
7460                         } else { debug_assert!(false, "Unconnected peer disconnected"); true }
7461                 };
7462                 if remove_peer {
7463                         per_peer_state.remove(counterparty_node_id);
7464                 }
7465                 mem::drop(per_peer_state);
7466
7467                 for failure in failed_channels.drain(..) {
7468                         self.finish_force_close_channel(failure);
7469                 }
7470         }
7471
7472         fn peer_connected(&self, counterparty_node_id: &PublicKey, init_msg: &msgs::Init, inbound: bool) -> Result<(), ()> {
7473                 if !init_msg.features.supports_static_remote_key() {
7474                         log_debug!(self.logger, "Peer {} does not support static remote key, disconnecting", log_pubkey!(counterparty_node_id));
7475                         return Err(());
7476                 }
7477
7478                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7479
7480                 // If we have too many peers connected which don't have funded channels, disconnect the
7481                 // peer immediately (as long as it doesn't have funded channels). If we have a bunch of
7482                 // unfunded channels taking up space in memory for disconnected peers, we still let new
7483                 // peers connect, but we'll reject new channels from them.
7484                 let connected_peers_without_funded_channels = self.peers_without_funded_channels(|node| node.is_connected);
7485                 let inbound_peer_limited = inbound && connected_peers_without_funded_channels >= MAX_NO_CHANNEL_PEERS;
7486
7487                 {
7488                         let mut peer_state_lock = self.per_peer_state.write().unwrap();
7489                         match peer_state_lock.entry(counterparty_node_id.clone()) {
7490                                 hash_map::Entry::Vacant(e) => {
7491                                         if inbound_peer_limited {
7492                                                 return Err(());
7493                                         }
7494                                         e.insert(Mutex::new(PeerState {
7495                                                 channel_by_id: HashMap::new(),
7496                                                 outbound_v1_channel_by_id: HashMap::new(),
7497                                                 inbound_v1_channel_by_id: HashMap::new(),
7498                                                 inbound_channel_request_by_id: HashMap::new(),
7499                                                 latest_features: init_msg.features.clone(),
7500                                                 pending_msg_events: Vec::new(),
7501                                                 in_flight_monitor_updates: BTreeMap::new(),
7502                                                 monitor_update_blocked_actions: BTreeMap::new(),
7503                                                 actions_blocking_raa_monitor_updates: BTreeMap::new(),
7504                                                 is_connected: true,
7505                                         }));
7506                                 },
7507                                 hash_map::Entry::Occupied(e) => {
7508                                         let mut peer_state = e.get().lock().unwrap();
7509                                         peer_state.latest_features = init_msg.features.clone();
7510
7511                                         let best_block_height = self.best_block.read().unwrap().height();
7512                                         if inbound_peer_limited &&
7513                                                 Self::unfunded_channel_count(&*peer_state, best_block_height) ==
7514                                                 peer_state.channel_by_id.len()
7515                                         {
7516                                                 return Err(());
7517                                         }
7518
7519                                         debug_assert!(!peer_state.is_connected, "A peer shouldn't be connected twice");
7520                                         peer_state.is_connected = true;
7521                                 },
7522                         }
7523                 }
7524
7525                 log_debug!(self.logger, "Generating channel_reestablish events for {}", log_pubkey!(counterparty_node_id));
7526
7527                 let per_peer_state = self.per_peer_state.read().unwrap();
7528                 if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
7529                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7530                         let peer_state = &mut *peer_state_lock;
7531                         let pending_msg_events = &mut peer_state.pending_msg_events;
7532
7533                         // Since unfunded channel maps are cleared upon disconnecting a peer, and they're not persisted
7534                         // (so won't be recovered after a crash) we don't need to bother closing unfunded channels and
7535                         // clearing their maps here. Instead we can just send queue channel_reestablish messages for
7536                         // channels in the channel_by_id map.
7537                         peer_state.channel_by_id.iter_mut().for_each(|(_, chan)| {
7538                                 pending_msg_events.push(events::MessageSendEvent::SendChannelReestablish {
7539                                         node_id: chan.context.get_counterparty_node_id(),
7540                                         msg: chan.get_channel_reestablish(&self.logger),
7541                                 });
7542                         });
7543                 }
7544                 //TODO: Also re-broadcast announcement_signatures
7545                 Ok(())
7546         }
7547
7548         fn handle_error(&self, counterparty_node_id: &PublicKey, msg: &msgs::ErrorMessage) {
7549                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7550
7551                 match &msg.data as &str {
7552                         "cannot co-op close channel w/ active htlcs"|
7553                         "link failed to shutdown" =>
7554                         {
7555                                 // LND hasn't properly handled shutdown messages ever, and force-closes any time we
7556                                 // send one while HTLCs are still present. The issue is tracked at
7557                                 // https://github.com/lightningnetwork/lnd/issues/6039 and has had multiple patches
7558                                 // to fix it but none so far have managed to land upstream. The issue appears to be
7559                                 // very low priority for the LND team despite being marked "P1".
7560                                 // We're not going to bother handling this in a sensible way, instead simply
7561                                 // repeating the Shutdown message on repeat until morale improves.
7562                                 if msg.channel_id != [0; 32] {
7563                                         let per_peer_state = self.per_peer_state.read().unwrap();
7564                                         let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
7565                                         if peer_state_mutex_opt.is_none() { return; }
7566                                         let mut peer_state = peer_state_mutex_opt.unwrap().lock().unwrap();
7567                                         if let Some(chan) = peer_state.channel_by_id.get(&msg.channel_id) {
7568                                                 if let Some(msg) = chan.get_outbound_shutdown() {
7569                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
7570                                                                 node_id: *counterparty_node_id,
7571                                                                 msg,
7572                                                         });
7573                                                 }
7574                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::HandleError {
7575                                                         node_id: *counterparty_node_id,
7576                                                         action: msgs::ErrorAction::SendWarningMessage {
7577                                                                 msg: msgs::WarningMessage {
7578                                                                         channel_id: msg.channel_id,
7579                                                                         data: "You appear to be exhibiting LND bug 6039, we'll keep sending you shutdown messages until you handle them correctly".to_owned()
7580                                                                 },
7581                                                                 log_level: Level::Trace,
7582                                                         }
7583                                                 });
7584                                         }
7585                                 }
7586                                 return;
7587                         }
7588                         _ => {}
7589                 }
7590
7591                 if msg.channel_id == [0; 32] {
7592                         let channel_ids: Vec<[u8; 32]> = {
7593                                 let per_peer_state = self.per_peer_state.read().unwrap();
7594                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
7595                                 if peer_state_mutex_opt.is_none() { return; }
7596                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
7597                                 let peer_state = &mut *peer_state_lock;
7598                                 // Note that we don't bother generating any events for pre-accept channels -
7599                                 // they're not considered "channels" yet from the PoV of our events interface.
7600                                 peer_state.inbound_channel_request_by_id.clear();
7601                                 peer_state.channel_by_id.keys().cloned()
7602                                         .chain(peer_state.outbound_v1_channel_by_id.keys().cloned())
7603                                         .chain(peer_state.inbound_v1_channel_by_id.keys().cloned()).collect()
7604                         };
7605                         for channel_id in channel_ids {
7606                                 // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
7607                                 let _ = self.force_close_channel_with_peer(&channel_id, counterparty_node_id, Some(&msg.data), true);
7608                         }
7609                 } else {
7610                         {
7611                                 // First check if we can advance the channel type and try again.
7612                                 let per_peer_state = self.per_peer_state.read().unwrap();
7613                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
7614                                 if peer_state_mutex_opt.is_none() { return; }
7615                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
7616                                 let peer_state = &mut *peer_state_lock;
7617                                 if let Some(chan) = peer_state.outbound_v1_channel_by_id.get_mut(&msg.channel_id) {
7618                                         if let Ok(msg) = chan.maybe_handle_error_without_close(self.genesis_hash, &self.fee_estimator) {
7619                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
7620                                                         node_id: *counterparty_node_id,
7621                                                         msg,
7622                                                 });
7623                                                 return;
7624                                         }
7625                                 }
7626                         }
7627
7628                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
7629                         let _ = self.force_close_channel_with_peer(&msg.channel_id, counterparty_node_id, Some(&msg.data), true);
7630                 }
7631         }
7632
7633         fn provided_node_features(&self) -> NodeFeatures {
7634                 provided_node_features(&self.default_configuration)
7635         }
7636
7637         fn provided_init_features(&self, _their_init_features: &PublicKey) -> InitFeatures {
7638                 provided_init_features(&self.default_configuration)
7639         }
7640
7641         fn get_genesis_hashes(&self) -> Option<Vec<ChainHash>> {
7642                 Some(vec![ChainHash::from(&self.genesis_hash[..])])
7643         }
7644
7645         fn handle_tx_add_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddInput) {
7646                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7647                         "Dual-funded channels not supported".to_owned(),
7648                          msg.channel_id.clone())), *counterparty_node_id);
7649         }
7650
7651         fn handle_tx_add_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddOutput) {
7652                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7653                         "Dual-funded channels not supported".to_owned(),
7654                          msg.channel_id.clone())), *counterparty_node_id);
7655         }
7656
7657         fn handle_tx_remove_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveInput) {
7658                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7659                         "Dual-funded channels not supported".to_owned(),
7660                          msg.channel_id.clone())), *counterparty_node_id);
7661         }
7662
7663         fn handle_tx_remove_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveOutput) {
7664                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7665                         "Dual-funded channels not supported".to_owned(),
7666                          msg.channel_id.clone())), *counterparty_node_id);
7667         }
7668
7669         fn handle_tx_complete(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxComplete) {
7670                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7671                         "Dual-funded channels not supported".to_owned(),
7672                          msg.channel_id.clone())), *counterparty_node_id);
7673         }
7674
7675         fn handle_tx_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxSignatures) {
7676                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7677                         "Dual-funded channels not supported".to_owned(),
7678                          msg.channel_id.clone())), *counterparty_node_id);
7679         }
7680
7681         fn handle_tx_init_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxInitRbf) {
7682                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7683                         "Dual-funded channels not supported".to_owned(),
7684                          msg.channel_id.clone())), *counterparty_node_id);
7685         }
7686
7687         fn handle_tx_ack_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAckRbf) {
7688                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7689                         "Dual-funded channels not supported".to_owned(),
7690                          msg.channel_id.clone())), *counterparty_node_id);
7691         }
7692
7693         fn handle_tx_abort(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAbort) {
7694                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7695                         "Dual-funded channels not supported".to_owned(),
7696                          msg.channel_id.clone())), *counterparty_node_id);
7697         }
7698 }
7699
7700 /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
7701 /// [`ChannelManager`].
7702 pub(crate) fn provided_node_features(config: &UserConfig) -> NodeFeatures {
7703         let mut node_features = provided_init_features(config).to_context();
7704         node_features.set_keysend_optional();
7705         node_features
7706 }
7707
7708 /// Fetches the set of [`Bolt11InvoiceFeatures`] flags which are provided by or required by
7709 /// [`ChannelManager`].
7710 ///
7711 /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
7712 /// or not. Thus, this method is not public.
7713 #[cfg(any(feature = "_test_utils", test))]
7714 pub(crate) fn provided_invoice_features(config: &UserConfig) -> Bolt11InvoiceFeatures {
7715         provided_init_features(config).to_context()
7716 }
7717
7718 /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
7719 /// [`ChannelManager`].
7720 pub(crate) fn provided_channel_features(config: &UserConfig) -> ChannelFeatures {
7721         provided_init_features(config).to_context()
7722 }
7723
7724 /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
7725 /// [`ChannelManager`].
7726 pub(crate) fn provided_channel_type_features(config: &UserConfig) -> ChannelTypeFeatures {
7727         ChannelTypeFeatures::from_init(&provided_init_features(config))
7728 }
7729
7730 /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
7731 /// [`ChannelManager`].
7732 pub fn provided_init_features(config: &UserConfig) -> InitFeatures {
7733         // Note that if new features are added here which other peers may (eventually) require, we
7734         // should also add the corresponding (optional) bit to the [`ChannelMessageHandler`] impl for
7735         // [`ErroringMessageHandler`].
7736         let mut features = InitFeatures::empty();
7737         features.set_data_loss_protect_required();
7738         features.set_upfront_shutdown_script_optional();
7739         features.set_variable_length_onion_required();
7740         features.set_static_remote_key_required();
7741         features.set_payment_secret_required();
7742         features.set_basic_mpp_optional();
7743         features.set_wumbo_optional();
7744         features.set_shutdown_any_segwit_optional();
7745         features.set_channel_type_optional();
7746         features.set_scid_privacy_optional();
7747         features.set_zero_conf_optional();
7748         if config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx {
7749                 features.set_anchors_zero_fee_htlc_tx_optional();
7750         }
7751         features
7752 }
7753
7754 const SERIALIZATION_VERSION: u8 = 1;
7755 const MIN_SERIALIZATION_VERSION: u8 = 1;
7756
7757 impl_writeable_tlv_based!(CounterpartyForwardingInfo, {
7758         (2, fee_base_msat, required),
7759         (4, fee_proportional_millionths, required),
7760         (6, cltv_expiry_delta, required),
7761 });
7762
7763 impl_writeable_tlv_based!(ChannelCounterparty, {
7764         (2, node_id, required),
7765         (4, features, required),
7766         (6, unspendable_punishment_reserve, required),
7767         (8, forwarding_info, option),
7768         (9, outbound_htlc_minimum_msat, option),
7769         (11, outbound_htlc_maximum_msat, option),
7770 });
7771
7772 impl Writeable for ChannelDetails {
7773         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
7774                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
7775                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
7776                 let user_channel_id_low = self.user_channel_id as u64;
7777                 let user_channel_id_high_opt = Some((self.user_channel_id >> 64) as u64);
7778                 write_tlv_fields!(writer, {
7779                         (1, self.inbound_scid_alias, option),
7780                         (2, self.channel_id, required),
7781                         (3, self.channel_type, option),
7782                         (4, self.counterparty, required),
7783                         (5, self.outbound_scid_alias, option),
7784                         (6, self.funding_txo, option),
7785                         (7, self.config, option),
7786                         (8, self.short_channel_id, option),
7787                         (9, self.confirmations, option),
7788                         (10, self.channel_value_satoshis, required),
7789                         (12, self.unspendable_punishment_reserve, option),
7790                         (14, user_channel_id_low, required),
7791                         (16, self.next_outbound_htlc_limit_msat, required),  // Forwards compatibility for removed balance_msat field.
7792                         (18, self.outbound_capacity_msat, required),
7793                         (19, self.next_outbound_htlc_limit_msat, required),
7794                         (20, self.inbound_capacity_msat, required),
7795                         (21, self.next_outbound_htlc_minimum_msat, required),
7796                         (22, self.confirmations_required, option),
7797                         (24, self.force_close_spend_delay, option),
7798                         (26, self.is_outbound, required),
7799                         (28, self.is_channel_ready, required),
7800                         (30, self.is_usable, required),
7801                         (32, self.is_public, required),
7802                         (33, self.inbound_htlc_minimum_msat, option),
7803                         (35, self.inbound_htlc_maximum_msat, option),
7804                         (37, user_channel_id_high_opt, option),
7805                         (39, self.feerate_sat_per_1000_weight, option),
7806                         (41, self.channel_shutdown_state, option),
7807                 });
7808                 Ok(())
7809         }
7810 }
7811
7812 impl Readable for ChannelDetails {
7813         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
7814                 _init_and_read_tlv_fields!(reader, {
7815                         (1, inbound_scid_alias, option),
7816                         (2, channel_id, required),
7817                         (3, channel_type, option),
7818                         (4, counterparty, required),
7819                         (5, outbound_scid_alias, option),
7820                         (6, funding_txo, option),
7821                         (7, config, option),
7822                         (8, short_channel_id, option),
7823                         (9, confirmations, option),
7824                         (10, channel_value_satoshis, required),
7825                         (12, unspendable_punishment_reserve, option),
7826                         (14, user_channel_id_low, required),
7827                         (16, _balance_msat, option),  // Backwards compatibility for removed balance_msat field.
7828                         (18, outbound_capacity_msat, required),
7829                         // Note that by the time we get past the required read above, outbound_capacity_msat will be
7830                         // filled in, so we can safely unwrap it here.
7831                         (19, next_outbound_htlc_limit_msat, (default_value, outbound_capacity_msat.0.unwrap() as u64)),
7832                         (20, inbound_capacity_msat, required),
7833                         (21, next_outbound_htlc_minimum_msat, (default_value, 0)),
7834                         (22, confirmations_required, option),
7835                         (24, force_close_spend_delay, option),
7836                         (26, is_outbound, required),
7837                         (28, is_channel_ready, required),
7838                         (30, is_usable, required),
7839                         (32, is_public, required),
7840                         (33, inbound_htlc_minimum_msat, option),
7841                         (35, inbound_htlc_maximum_msat, option),
7842                         (37, user_channel_id_high_opt, option),
7843                         (39, feerate_sat_per_1000_weight, option),
7844                         (41, channel_shutdown_state, option),
7845                 });
7846
7847                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
7848                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
7849                 let user_channel_id_low: u64 = user_channel_id_low.0.unwrap();
7850                 let user_channel_id = user_channel_id_low as u128 +
7851                         ((user_channel_id_high_opt.unwrap_or(0 as u64) as u128) << 64);
7852
7853                 let _balance_msat: Option<u64> = _balance_msat;
7854
7855                 Ok(Self {
7856                         inbound_scid_alias,
7857                         channel_id: channel_id.0.unwrap(),
7858                         channel_type,
7859                         counterparty: counterparty.0.unwrap(),
7860                         outbound_scid_alias,
7861                         funding_txo,
7862                         config,
7863                         short_channel_id,
7864                         channel_value_satoshis: channel_value_satoshis.0.unwrap(),
7865                         unspendable_punishment_reserve,
7866                         user_channel_id,
7867                         outbound_capacity_msat: outbound_capacity_msat.0.unwrap(),
7868                         next_outbound_htlc_limit_msat: next_outbound_htlc_limit_msat.0.unwrap(),
7869                         next_outbound_htlc_minimum_msat: next_outbound_htlc_minimum_msat.0.unwrap(),
7870                         inbound_capacity_msat: inbound_capacity_msat.0.unwrap(),
7871                         confirmations_required,
7872                         confirmations,
7873                         force_close_spend_delay,
7874                         is_outbound: is_outbound.0.unwrap(),
7875                         is_channel_ready: is_channel_ready.0.unwrap(),
7876                         is_usable: is_usable.0.unwrap(),
7877                         is_public: is_public.0.unwrap(),
7878                         inbound_htlc_minimum_msat,
7879                         inbound_htlc_maximum_msat,
7880                         feerate_sat_per_1000_weight,
7881                         channel_shutdown_state,
7882                 })
7883         }
7884 }
7885
7886 impl_writeable_tlv_based!(PhantomRouteHints, {
7887         (2, channels, required_vec),
7888         (4, phantom_scid, required),
7889         (6, real_node_pubkey, required),
7890 });
7891
7892 impl_writeable_tlv_based_enum!(PendingHTLCRouting,
7893         (0, Forward) => {
7894                 (0, onion_packet, required),
7895                 (2, short_channel_id, required),
7896         },
7897         (1, Receive) => {
7898                 (0, payment_data, required),
7899                 (1, phantom_shared_secret, option),
7900                 (2, incoming_cltv_expiry, required),
7901                 (3, payment_metadata, option),
7902                 (5, custom_tlvs, optional_vec),
7903         },
7904         (2, ReceiveKeysend) => {
7905                 (0, payment_preimage, required),
7906                 (2, incoming_cltv_expiry, required),
7907                 (3, payment_metadata, option),
7908                 (4, payment_data, option), // Added in 0.0.116
7909                 (5, custom_tlvs, optional_vec),
7910         },
7911 ;);
7912
7913 impl_writeable_tlv_based!(PendingHTLCInfo, {
7914         (0, routing, required),
7915         (2, incoming_shared_secret, required),
7916         (4, payment_hash, required),
7917         (6, outgoing_amt_msat, required),
7918         (8, outgoing_cltv_value, required),
7919         (9, incoming_amt_msat, option),
7920         (10, skimmed_fee_msat, option),
7921 });
7922
7923
7924 impl Writeable for HTLCFailureMsg {
7925         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
7926                 match self {
7927                         HTLCFailureMsg::Relay(msgs::UpdateFailHTLC { channel_id, htlc_id, reason }) => {
7928                                 0u8.write(writer)?;
7929                                 channel_id.write(writer)?;
7930                                 htlc_id.write(writer)?;
7931                                 reason.write(writer)?;
7932                         },
7933                         HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
7934                                 channel_id, htlc_id, sha256_of_onion, failure_code
7935                         }) => {
7936                                 1u8.write(writer)?;
7937                                 channel_id.write(writer)?;
7938                                 htlc_id.write(writer)?;
7939                                 sha256_of_onion.write(writer)?;
7940                                 failure_code.write(writer)?;
7941                         },
7942                 }
7943                 Ok(())
7944         }
7945 }
7946
7947 impl Readable for HTLCFailureMsg {
7948         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
7949                 let id: u8 = Readable::read(reader)?;
7950                 match id {
7951                         0 => {
7952                                 Ok(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
7953                                         channel_id: Readable::read(reader)?,
7954                                         htlc_id: Readable::read(reader)?,
7955                                         reason: Readable::read(reader)?,
7956                                 }))
7957                         },
7958                         1 => {
7959                                 Ok(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
7960                                         channel_id: Readable::read(reader)?,
7961                                         htlc_id: Readable::read(reader)?,
7962                                         sha256_of_onion: Readable::read(reader)?,
7963                                         failure_code: Readable::read(reader)?,
7964                                 }))
7965                         },
7966                         // In versions prior to 0.0.101, HTLCFailureMsg objects were written with type 0 or 1 but
7967                         // weren't length-prefixed and thus didn't support reading the TLV stream suffix of the network
7968                         // messages contained in the variants.
7969                         // In version 0.0.101, support for reading the variants with these types was added, and
7970                         // we should migrate to writing these variants when UpdateFailHTLC or
7971                         // UpdateFailMalformedHTLC get TLV fields.
7972                         2 => {
7973                                 let length: BigSize = Readable::read(reader)?;
7974                                 let mut s = FixedLengthReader::new(reader, length.0);
7975                                 let res = Readable::read(&mut s)?;
7976                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
7977                                 Ok(HTLCFailureMsg::Relay(res))
7978                         },
7979                         3 => {
7980                                 let length: BigSize = Readable::read(reader)?;
7981                                 let mut s = FixedLengthReader::new(reader, length.0);
7982                                 let res = Readable::read(&mut s)?;
7983                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
7984                                 Ok(HTLCFailureMsg::Malformed(res))
7985                         },
7986                         _ => Err(DecodeError::UnknownRequiredFeature),
7987                 }
7988         }
7989 }
7990
7991 impl_writeable_tlv_based_enum!(PendingHTLCStatus, ;
7992         (0, Forward),
7993         (1, Fail),
7994 );
7995
7996 impl_writeable_tlv_based!(HTLCPreviousHopData, {
7997         (0, short_channel_id, required),
7998         (1, phantom_shared_secret, option),
7999         (2, outpoint, required),
8000         (4, htlc_id, required),
8001         (6, incoming_packet_shared_secret, required),
8002         (7, user_channel_id, option),
8003 });
8004
8005 impl Writeable for ClaimableHTLC {
8006         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8007                 let (payment_data, keysend_preimage) = match &self.onion_payload {
8008                         OnionPayload::Invoice { _legacy_hop_data } => (_legacy_hop_data.as_ref(), None),
8009                         OnionPayload::Spontaneous(preimage) => (None, Some(preimage)),
8010                 };
8011                 write_tlv_fields!(writer, {
8012                         (0, self.prev_hop, required),
8013                         (1, self.total_msat, required),
8014                         (2, self.value, required),
8015                         (3, self.sender_intended_value, required),
8016                         (4, payment_data, option),
8017                         (5, self.total_value_received, option),
8018                         (6, self.cltv_expiry, required),
8019                         (8, keysend_preimage, option),
8020                         (10, self.counterparty_skimmed_fee_msat, option),
8021                 });
8022                 Ok(())
8023         }
8024 }
8025
8026 impl Readable for ClaimableHTLC {
8027         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8028                 _init_and_read_tlv_fields!(reader, {
8029                         (0, prev_hop, required),
8030                         (1, total_msat, option),
8031                         (2, value_ser, required),
8032                         (3, sender_intended_value, option),
8033                         (4, payment_data_opt, option),
8034                         (5, total_value_received, option),
8035                         (6, cltv_expiry, required),
8036                         (8, keysend_preimage, option),
8037                         (10, counterparty_skimmed_fee_msat, option),
8038                 });
8039                 let payment_data: Option<msgs::FinalOnionHopData> = payment_data_opt;
8040                 let value = value_ser.0.unwrap();
8041                 let onion_payload = match keysend_preimage {
8042                         Some(p) => {
8043                                 if payment_data.is_some() {
8044                                         return Err(DecodeError::InvalidValue)
8045                                 }
8046                                 if total_msat.is_none() {
8047                                         total_msat = Some(value);
8048                                 }
8049                                 OnionPayload::Spontaneous(p)
8050                         },
8051                         None => {
8052                                 if total_msat.is_none() {
8053                                         if payment_data.is_none() {
8054                                                 return Err(DecodeError::InvalidValue)
8055                                         }
8056                                         total_msat = Some(payment_data.as_ref().unwrap().total_msat);
8057                                 }
8058                                 OnionPayload::Invoice { _legacy_hop_data: payment_data }
8059                         },
8060                 };
8061                 Ok(Self {
8062                         prev_hop: prev_hop.0.unwrap(),
8063                         timer_ticks: 0,
8064                         value,
8065                         sender_intended_value: sender_intended_value.unwrap_or(value),
8066                         total_value_received,
8067                         total_msat: total_msat.unwrap(),
8068                         onion_payload,
8069                         cltv_expiry: cltv_expiry.0.unwrap(),
8070                         counterparty_skimmed_fee_msat,
8071                 })
8072         }
8073 }
8074
8075 impl Readable for HTLCSource {
8076         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8077                 let id: u8 = Readable::read(reader)?;
8078                 match id {
8079                         0 => {
8080                                 let mut session_priv: crate::util::ser::RequiredWrapper<SecretKey> = crate::util::ser::RequiredWrapper(None);
8081                                 let mut first_hop_htlc_msat: u64 = 0;
8082                                 let mut path_hops = Vec::new();
8083                                 let mut payment_id = None;
8084                                 let mut payment_params: Option<PaymentParameters> = None;
8085                                 let mut blinded_tail: Option<BlindedTail> = None;
8086                                 read_tlv_fields!(reader, {
8087                                         (0, session_priv, required),
8088                                         (1, payment_id, option),
8089                                         (2, first_hop_htlc_msat, required),
8090                                         (4, path_hops, required_vec),
8091                                         (5, payment_params, (option: ReadableArgs, 0)),
8092                                         (6, blinded_tail, option),
8093                                 });
8094                                 if payment_id.is_none() {
8095                                         // For backwards compat, if there was no payment_id written, use the session_priv bytes
8096                                         // instead.
8097                                         payment_id = Some(PaymentId(*session_priv.0.unwrap().as_ref()));
8098                                 }
8099                                 let path = Path { hops: path_hops, blinded_tail };
8100                                 if path.hops.len() == 0 {
8101                                         return Err(DecodeError::InvalidValue);
8102                                 }
8103                                 if let Some(params) = payment_params.as_mut() {
8104                                         if let Payee::Clear { ref mut final_cltv_expiry_delta, .. } = params.payee {
8105                                                 if final_cltv_expiry_delta == &0 {
8106                                                         *final_cltv_expiry_delta = path.final_cltv_expiry_delta().ok_or(DecodeError::InvalidValue)?;
8107                                                 }
8108                                         }
8109                                 }
8110                                 Ok(HTLCSource::OutboundRoute {
8111                                         session_priv: session_priv.0.unwrap(),
8112                                         first_hop_htlc_msat,
8113                                         path,
8114                                         payment_id: payment_id.unwrap(),
8115                                 })
8116                         }
8117                         1 => Ok(HTLCSource::PreviousHopData(Readable::read(reader)?)),
8118                         _ => Err(DecodeError::UnknownRequiredFeature),
8119                 }
8120         }
8121 }
8122
8123 impl Writeable for HTLCSource {
8124         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), crate::io::Error> {
8125                 match self {
8126                         HTLCSource::OutboundRoute { ref session_priv, ref first_hop_htlc_msat, ref path, payment_id } => {
8127                                 0u8.write(writer)?;
8128                                 let payment_id_opt = Some(payment_id);
8129                                 write_tlv_fields!(writer, {
8130                                         (0, session_priv, required),
8131                                         (1, payment_id_opt, option),
8132                                         (2, first_hop_htlc_msat, required),
8133                                         // 3 was previously used to write a PaymentSecret for the payment.
8134                                         (4, path.hops, required_vec),
8135                                         (5, None::<PaymentParameters>, option), // payment_params in LDK versions prior to 0.0.115
8136                                         (6, path.blinded_tail, option),
8137                                  });
8138                         }
8139                         HTLCSource::PreviousHopData(ref field) => {
8140                                 1u8.write(writer)?;
8141                                 field.write(writer)?;
8142                         }
8143                 }
8144                 Ok(())
8145         }
8146 }
8147
8148 impl_writeable_tlv_based!(PendingAddHTLCInfo, {
8149         (0, forward_info, required),
8150         (1, prev_user_channel_id, (default_value, 0)),
8151         (2, prev_short_channel_id, required),
8152         (4, prev_htlc_id, required),
8153         (6, prev_funding_outpoint, required),
8154 });
8155
8156 impl_writeable_tlv_based_enum!(HTLCForwardInfo,
8157         (1, FailHTLC) => {
8158                 (0, htlc_id, required),
8159                 (2, err_packet, required),
8160         };
8161         (0, AddHTLC)
8162 );
8163
8164 impl_writeable_tlv_based!(PendingInboundPayment, {
8165         (0, payment_secret, required),
8166         (2, expiry_time, required),
8167         (4, user_payment_id, required),
8168         (6, payment_preimage, required),
8169         (8, min_value_msat, required),
8170 });
8171
8172 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>
8173 where
8174         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8175         T::Target: BroadcasterInterface,
8176         ES::Target: EntropySource,
8177         NS::Target: NodeSigner,
8178         SP::Target: SignerProvider,
8179         F::Target: FeeEstimator,
8180         R::Target: Router,
8181         L::Target: Logger,
8182 {
8183         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8184                 let _consistency_lock = self.total_consistency_lock.write().unwrap();
8185
8186                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
8187
8188                 self.genesis_hash.write(writer)?;
8189                 {
8190                         let best_block = self.best_block.read().unwrap();
8191                         best_block.height().write(writer)?;
8192                         best_block.block_hash().write(writer)?;
8193                 }
8194
8195                 let mut serializable_peer_count: u64 = 0;
8196                 {
8197                         let per_peer_state = self.per_peer_state.read().unwrap();
8198                         let mut unfunded_channels = 0;
8199                         let mut number_of_channels = 0;
8200                         for (_, peer_state_mutex) in per_peer_state.iter() {
8201                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8202                                 let peer_state = &mut *peer_state_lock;
8203                                 if !peer_state.ok_to_remove(false) {
8204                                         serializable_peer_count += 1;
8205                                 }
8206                                 number_of_channels += peer_state.channel_by_id.len();
8207                                 for (_, channel) in peer_state.channel_by_id.iter() {
8208                                         if !channel.context.is_funding_initiated() {
8209                                                 unfunded_channels += 1;
8210                                         }
8211                                 }
8212                         }
8213
8214                         ((number_of_channels - unfunded_channels) as u64).write(writer)?;
8215
8216                         for (_, peer_state_mutex) in per_peer_state.iter() {
8217                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8218                                 let peer_state = &mut *peer_state_lock;
8219                                 for (_, channel) in peer_state.channel_by_id.iter() {
8220                                         if channel.context.is_funding_initiated() {
8221                                                 channel.write(writer)?;
8222                                         }
8223                                 }
8224                         }
8225                 }
8226
8227                 {
8228                         let forward_htlcs = self.forward_htlcs.lock().unwrap();
8229                         (forward_htlcs.len() as u64).write(writer)?;
8230                         for (short_channel_id, pending_forwards) in forward_htlcs.iter() {
8231                                 short_channel_id.write(writer)?;
8232                                 (pending_forwards.len() as u64).write(writer)?;
8233                                 for forward in pending_forwards {
8234                                         forward.write(writer)?;
8235                                 }
8236                         }
8237                 }
8238
8239                 let per_peer_state = self.per_peer_state.write().unwrap();
8240
8241                 let pending_inbound_payments = self.pending_inbound_payments.lock().unwrap();
8242                 let claimable_payments = self.claimable_payments.lock().unwrap();
8243                 let pending_outbound_payments = self.pending_outbound_payments.pending_outbound_payments.lock().unwrap();
8244
8245                 let mut htlc_purposes: Vec<&events::PaymentPurpose> = Vec::new();
8246                 let mut htlc_onion_fields: Vec<&_> = Vec::new();
8247                 (claimable_payments.claimable_payments.len() as u64).write(writer)?;
8248                 for (payment_hash, payment) in claimable_payments.claimable_payments.iter() {
8249                         payment_hash.write(writer)?;
8250                         (payment.htlcs.len() as u64).write(writer)?;
8251                         for htlc in payment.htlcs.iter() {
8252                                 htlc.write(writer)?;
8253                         }
8254                         htlc_purposes.push(&payment.purpose);
8255                         htlc_onion_fields.push(&payment.onion_fields);
8256                 }
8257
8258                 let mut monitor_update_blocked_actions_per_peer = None;
8259                 let mut peer_states = Vec::new();
8260                 for (_, peer_state_mutex) in per_peer_state.iter() {
8261                         // Because we're holding the owning `per_peer_state` write lock here there's no chance
8262                         // of a lockorder violation deadlock - no other thread can be holding any
8263                         // per_peer_state lock at all.
8264                         peer_states.push(peer_state_mutex.unsafe_well_ordered_double_lock_self());
8265                 }
8266
8267                 (serializable_peer_count).write(writer)?;
8268                 for ((peer_pubkey, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
8269                         // Peers which we have no channels to should be dropped once disconnected. As we
8270                         // disconnect all peers when shutting down and serializing the ChannelManager, we
8271                         // consider all peers as disconnected here. There's therefore no need write peers with
8272                         // no channels.
8273                         if !peer_state.ok_to_remove(false) {
8274                                 peer_pubkey.write(writer)?;
8275                                 peer_state.latest_features.write(writer)?;
8276                                 if !peer_state.monitor_update_blocked_actions.is_empty() {
8277                                         monitor_update_blocked_actions_per_peer
8278                                                 .get_or_insert_with(Vec::new)
8279                                                 .push((*peer_pubkey, &peer_state.monitor_update_blocked_actions));
8280                                 }
8281                         }
8282                 }
8283
8284                 let events = self.pending_events.lock().unwrap();
8285                 // LDK versions prior to 0.0.115 don't support post-event actions, thus if there's no
8286                 // actions at all, skip writing the required TLV. Otherwise, pre-0.0.115 versions will
8287                 // refuse to read the new ChannelManager.
8288                 let events_not_backwards_compatible = events.iter().any(|(_, action)| action.is_some());
8289                 if events_not_backwards_compatible {
8290                         // If we're gonna write a even TLV that will overwrite our events anyway we might as
8291                         // well save the space and not write any events here.
8292                         0u64.write(writer)?;
8293                 } else {
8294                         (events.len() as u64).write(writer)?;
8295                         for (event, _) in events.iter() {
8296                                 event.write(writer)?;
8297                         }
8298                 }
8299
8300                 // LDK versions prior to 0.0.116 wrote the `pending_background_events`
8301                 // `MonitorUpdateRegeneratedOnStartup`s here, however there was never a reason to do so -
8302                 // the closing monitor updates were always effectively replayed on startup (either directly
8303                 // by calling `broadcast_latest_holder_commitment_txn` on a `ChannelMonitor` during
8304                 // deserialization or, in 0.0.115, by regenerating the monitor update itself).
8305                 0u64.write(writer)?;
8306
8307                 // Prior to 0.0.111 we tracked node_announcement serials here, however that now happens in
8308                 // `PeerManager`, and thus we simply write the `highest_seen_timestamp` twice, which is
8309                 // likely to be identical.
8310                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
8311                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
8312
8313                 (pending_inbound_payments.len() as u64).write(writer)?;
8314                 for (hash, pending_payment) in pending_inbound_payments.iter() {
8315                         hash.write(writer)?;
8316                         pending_payment.write(writer)?;
8317                 }
8318
8319                 // For backwards compat, write the session privs and their total length.
8320                 let mut num_pending_outbounds_compat: u64 = 0;
8321                 for (_, outbound) in pending_outbound_payments.iter() {
8322                         if !outbound.is_fulfilled() && !outbound.abandoned() {
8323                                 num_pending_outbounds_compat += outbound.remaining_parts() as u64;
8324                         }
8325                 }
8326                 num_pending_outbounds_compat.write(writer)?;
8327                 for (_, outbound) in pending_outbound_payments.iter() {
8328                         match outbound {
8329                                 PendingOutboundPayment::Legacy { session_privs } |
8330                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
8331                                         for session_priv in session_privs.iter() {
8332                                                 session_priv.write(writer)?;
8333                                         }
8334                                 }
8335                                 PendingOutboundPayment::Fulfilled { .. } => {},
8336                                 PendingOutboundPayment::Abandoned { .. } => {},
8337                         }
8338                 }
8339
8340                 // Encode without retry info for 0.0.101 compatibility.
8341                 let mut pending_outbound_payments_no_retry: HashMap<PaymentId, HashSet<[u8; 32]>> = HashMap::new();
8342                 for (id, outbound) in pending_outbound_payments.iter() {
8343                         match outbound {
8344                                 PendingOutboundPayment::Legacy { session_privs } |
8345                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
8346                                         pending_outbound_payments_no_retry.insert(*id, session_privs.clone());
8347                                 },
8348                                 _ => {},
8349                         }
8350                 }
8351
8352                 let mut pending_intercepted_htlcs = None;
8353                 let our_pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
8354                 if our_pending_intercepts.len() != 0 {
8355                         pending_intercepted_htlcs = Some(our_pending_intercepts);
8356                 }
8357
8358                 let mut pending_claiming_payments = Some(&claimable_payments.pending_claiming_payments);
8359                 if pending_claiming_payments.as_ref().unwrap().is_empty() {
8360                         // LDK versions prior to 0.0.113 do not know how to read the pending claimed payments
8361                         // map. Thus, if there are no entries we skip writing a TLV for it.
8362                         pending_claiming_payments = None;
8363                 }
8364
8365                 let mut in_flight_monitor_updates: Option<HashMap<(&PublicKey, &OutPoint), &Vec<ChannelMonitorUpdate>>> = None;
8366                 for ((counterparty_id, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
8367                         for (funding_outpoint, updates) in peer_state.in_flight_monitor_updates.iter() {
8368                                 if !updates.is_empty() {
8369                                         if in_flight_monitor_updates.is_none() { in_flight_monitor_updates = Some(HashMap::new()); }
8370                                         in_flight_monitor_updates.as_mut().unwrap().insert((counterparty_id, funding_outpoint), updates);
8371                                 }
8372                         }
8373                 }
8374
8375                 write_tlv_fields!(writer, {
8376                         (1, pending_outbound_payments_no_retry, required),
8377                         (2, pending_intercepted_htlcs, option),
8378                         (3, pending_outbound_payments, required),
8379                         (4, pending_claiming_payments, option),
8380                         (5, self.our_network_pubkey, required),
8381                         (6, monitor_update_blocked_actions_per_peer, option),
8382                         (7, self.fake_scid_rand_bytes, required),
8383                         (8, if events_not_backwards_compatible { Some(&*events) } else { None }, option),
8384                         (9, htlc_purposes, required_vec),
8385                         (10, in_flight_monitor_updates, option),
8386                         (11, self.probing_cookie_secret, required),
8387                         (13, htlc_onion_fields, optional_vec),
8388                 });
8389
8390                 Ok(())
8391         }
8392 }
8393
8394 impl Writeable for VecDeque<(Event, Option<EventCompletionAction>)> {
8395         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
8396                 (self.len() as u64).write(w)?;
8397                 for (event, action) in self.iter() {
8398                         event.write(w)?;
8399                         action.write(w)?;
8400                         #[cfg(debug_assertions)] {
8401                                 // Events are MaybeReadable, in some cases indicating that they shouldn't actually
8402                                 // be persisted and are regenerated on restart. However, if such an event has a
8403                                 // post-event-handling action we'll write nothing for the event and would have to
8404                                 // either forget the action or fail on deserialization (which we do below). Thus,
8405                                 // check that the event is sane here.
8406                                 let event_encoded = event.encode();
8407                                 let event_read: Option<Event> =
8408                                         MaybeReadable::read(&mut &event_encoded[..]).unwrap();
8409                                 if action.is_some() { assert!(event_read.is_some()); }
8410                         }
8411                 }
8412                 Ok(())
8413         }
8414 }
8415 impl Readable for VecDeque<(Event, Option<EventCompletionAction>)> {
8416         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8417                 let len: u64 = Readable::read(reader)?;
8418                 const MAX_ALLOC_SIZE: u64 = 1024 * 16;
8419                 let mut events: Self = VecDeque::with_capacity(cmp::min(
8420                         MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>() as u64,
8421                         len) as usize);
8422                 for _ in 0..len {
8423                         let ev_opt = MaybeReadable::read(reader)?;
8424                         let action = Readable::read(reader)?;
8425                         if let Some(ev) = ev_opt {
8426                                 events.push_back((ev, action));
8427                         } else if action.is_some() {
8428                                 return Err(DecodeError::InvalidValue);
8429                         }
8430                 }
8431                 Ok(events)
8432         }
8433 }
8434
8435 impl_writeable_tlv_based_enum!(ChannelShutdownState,
8436         (0, NotShuttingDown) => {},
8437         (2, ShutdownInitiated) => {},
8438         (4, ResolvingHTLCs) => {},
8439         (6, NegotiatingClosingFee) => {},
8440         (8, ShutdownComplete) => {}, ;
8441 );
8442
8443 /// Arguments for the creation of a ChannelManager that are not deserialized.
8444 ///
8445 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
8446 /// is:
8447 /// 1) Deserialize all stored [`ChannelMonitor`]s.
8448 /// 2) Deserialize the [`ChannelManager`] by filling in this struct and calling:
8449 ///    `<(BlockHash, ChannelManager)>::read(reader, args)`
8450 ///    This may result in closing some channels if the [`ChannelMonitor`] is newer than the stored
8451 ///    [`ChannelManager`] state to ensure no loss of funds. Thus, transactions may be broadcasted.
8452 /// 3) If you are not fetching full blocks, register all relevant [`ChannelMonitor`] outpoints the
8453 ///    same way you would handle a [`chain::Filter`] call using
8454 ///    [`ChannelMonitor::get_outputs_to_watch`] and [`ChannelMonitor::get_funding_txo`].
8455 /// 4) Reconnect blocks on your [`ChannelMonitor`]s.
8456 /// 5) Disconnect/connect blocks on the [`ChannelManager`].
8457 /// 6) Re-persist the [`ChannelMonitor`]s to ensure the latest state is on disk.
8458 ///    Note that if you're using a [`ChainMonitor`] for your [`chain::Watch`] implementation, you
8459 ///    will likely accomplish this as a side-effect of calling [`chain::Watch::watch_channel`] in
8460 ///    the next step.
8461 /// 7) Move the [`ChannelMonitor`]s into your local [`chain::Watch`]. If you're using a
8462 ///    [`ChainMonitor`], this is done by calling [`chain::Watch::watch_channel`].
8463 ///
8464 /// Note that the ordering of #4-7 is not of importance, however all four must occur before you
8465 /// call any other methods on the newly-deserialized [`ChannelManager`].
8466 ///
8467 /// Note that because some channels may be closed during deserialization, it is critical that you
8468 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
8469 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
8470 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
8471 /// not force-close the same channels but consider them live), you may end up revoking a state for
8472 /// which you've already broadcasted the transaction.
8473 ///
8474 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
8475 pub struct ChannelManagerReadArgs<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8476 where
8477         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8478         T::Target: BroadcasterInterface,
8479         ES::Target: EntropySource,
8480         NS::Target: NodeSigner,
8481         SP::Target: SignerProvider,
8482         F::Target: FeeEstimator,
8483         R::Target: Router,
8484         L::Target: Logger,
8485 {
8486         /// A cryptographically secure source of entropy.
8487         pub entropy_source: ES,
8488
8489         /// A signer that is able to perform node-scoped cryptographic operations.
8490         pub node_signer: NS,
8491
8492         /// The keys provider which will give us relevant keys. Some keys will be loaded during
8493         /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
8494         /// signing data.
8495         pub signer_provider: SP,
8496
8497         /// The fee_estimator for use in the ChannelManager in the future.
8498         ///
8499         /// No calls to the FeeEstimator will be made during deserialization.
8500         pub fee_estimator: F,
8501         /// The chain::Watch for use in the ChannelManager in the future.
8502         ///
8503         /// No calls to the chain::Watch will be made during deserialization. It is assumed that
8504         /// you have deserialized ChannelMonitors separately and will add them to your
8505         /// chain::Watch after deserializing this ChannelManager.
8506         pub chain_monitor: M,
8507
8508         /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
8509         /// used to broadcast the latest local commitment transactions of channels which must be
8510         /// force-closed during deserialization.
8511         pub tx_broadcaster: T,
8512         /// The router which will be used in the ChannelManager in the future for finding routes
8513         /// on-the-fly for trampoline payments. Absent in private nodes that don't support forwarding.
8514         ///
8515         /// No calls to the router will be made during deserialization.
8516         pub router: R,
8517         /// The Logger for use in the ChannelManager and which may be used to log information during
8518         /// deserialization.
8519         pub logger: L,
8520         /// Default settings used for new channels. Any existing channels will continue to use the
8521         /// runtime settings which were stored when the ChannelManager was serialized.
8522         pub default_config: UserConfig,
8523
8524         /// A map from channel funding outpoints to ChannelMonitors for those channels (ie
8525         /// value.context.get_funding_txo() should be the key).
8526         ///
8527         /// If a monitor is inconsistent with the channel state during deserialization the channel will
8528         /// be force-closed using the data in the ChannelMonitor and the channel will be dropped. This
8529         /// is true for missing channels as well. If there is a monitor missing for which we find
8530         /// channel data Err(DecodeError::InvalidValue) will be returned.
8531         ///
8532         /// In such cases the latest local transactions will be sent to the tx_broadcaster included in
8533         /// this struct.
8534         ///
8535         /// This is not exported to bindings users because we have no HashMap bindings
8536         pub channel_monitors: HashMap<OutPoint, &'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>,
8537 }
8538
8539 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8540                 ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>
8541 where
8542         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8543         T::Target: BroadcasterInterface,
8544         ES::Target: EntropySource,
8545         NS::Target: NodeSigner,
8546         SP::Target: SignerProvider,
8547         F::Target: FeeEstimator,
8548         R::Target: Router,
8549         L::Target: Logger,
8550 {
8551         /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
8552         /// HashMap for you. This is primarily useful for C bindings where it is not practical to
8553         /// populate a HashMap directly from C.
8554         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,
8555                         mut channel_monitors: Vec<&'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>) -> Self {
8556                 Self {
8557                         entropy_source, node_signer, signer_provider, fee_estimator, chain_monitor, tx_broadcaster, router, logger, default_config,
8558                         channel_monitors: channel_monitors.drain(..).map(|monitor| { (monitor.get_funding_txo().0, monitor) }).collect()
8559                 }
8560         }
8561 }
8562
8563 // Implement ReadableArgs for an Arc'd ChannelManager to make it a bit easier to work with the
8564 // SipmleArcChannelManager type:
8565 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8566         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, Arc<ChannelManager<M, T, ES, NS, SP, F, R, L>>)
8567 where
8568         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8569         T::Target: BroadcasterInterface,
8570         ES::Target: EntropySource,
8571         NS::Target: NodeSigner,
8572         SP::Target: SignerProvider,
8573         F::Target: FeeEstimator,
8574         R::Target: Router,
8575         L::Target: Logger,
8576 {
8577         fn read<Reader: io::Read>(reader: &mut Reader, args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
8578                 let (blockhash, chan_manager) = <(BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)>::read(reader, args)?;
8579                 Ok((blockhash, Arc::new(chan_manager)))
8580         }
8581 }
8582
8583 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8584         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)
8585 where
8586         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8587         T::Target: BroadcasterInterface,
8588         ES::Target: EntropySource,
8589         NS::Target: NodeSigner,
8590         SP::Target: SignerProvider,
8591         F::Target: FeeEstimator,
8592         R::Target: Router,
8593         L::Target: Logger,
8594 {
8595         fn read<Reader: io::Read>(reader: &mut Reader, mut args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
8596                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
8597
8598                 let genesis_hash: BlockHash = Readable::read(reader)?;
8599                 let best_block_height: u32 = Readable::read(reader)?;
8600                 let best_block_hash: BlockHash = Readable::read(reader)?;
8601
8602                 let mut failed_htlcs = Vec::new();
8603
8604                 let channel_count: u64 = Readable::read(reader)?;
8605                 let mut funding_txo_set = HashSet::with_capacity(cmp::min(channel_count as usize, 128));
8606                 let mut peer_channels: HashMap<PublicKey, HashMap<[u8; 32], Channel<SP>>> = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
8607                 let mut id_to_peer = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
8608                 let mut short_to_chan_info = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
8609                 let mut channel_closures = VecDeque::new();
8610                 let mut close_background_events = Vec::new();
8611                 for _ in 0..channel_count {
8612                         let mut channel: Channel<SP> = Channel::read(reader, (
8613                                 &args.entropy_source, &args.signer_provider, best_block_height, &provided_channel_type_features(&args.default_config)
8614                         ))?;
8615                         let funding_txo = channel.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
8616                         funding_txo_set.insert(funding_txo.clone());
8617                         if let Some(ref mut monitor) = args.channel_monitors.get_mut(&funding_txo) {
8618                                 if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() ||
8619                                                 channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() ||
8620                                                 channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() ||
8621                                                 channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
8622                                         // But if the channel is behind of the monitor, close the channel:
8623                                         log_error!(args.logger, "A ChannelManager is stale compared to the current ChannelMonitor!");
8624                                         log_error!(args.logger, " The channel will be force-closed and the latest commitment transaction from the ChannelMonitor broadcast.");
8625                                         log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
8626                                                 log_bytes!(channel.context.channel_id()), monitor.get_latest_update_id(), channel.context.get_latest_monitor_update_id());
8627                                         let (monitor_update, mut new_failed_htlcs) = channel.context.force_shutdown(true);
8628                                         if let Some((counterparty_node_id, funding_txo, update)) = monitor_update {
8629                                                 close_background_events.push(BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
8630                                                         counterparty_node_id, funding_txo, update
8631                                                 });
8632                                         }
8633                                         failed_htlcs.append(&mut new_failed_htlcs);
8634                                         channel_closures.push_back((events::Event::ChannelClosed {
8635                                                 channel_id: channel.context.channel_id(),
8636                                                 user_channel_id: channel.context.get_user_id(),
8637                                                 reason: ClosureReason::OutdatedChannelManager,
8638                                                 counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
8639                                                 channel_capacity_sats: Some(channel.context.get_value_satoshis()),
8640                                         }, None));
8641                                         for (channel_htlc_source, payment_hash) in channel.inflight_htlc_sources() {
8642                                                 let mut found_htlc = false;
8643                                                 for (monitor_htlc_source, _) in monitor.get_all_current_outbound_htlcs() {
8644                                                         if *channel_htlc_source == monitor_htlc_source { found_htlc = true; break; }
8645                                                 }
8646                                                 if !found_htlc {
8647                                                         // If we have some HTLCs in the channel which are not present in the newer
8648                                                         // ChannelMonitor, they have been removed and should be failed back to
8649                                                         // ensure we don't forget them entirely. Note that if the missing HTLC(s)
8650                                                         // were actually claimed we'd have generated and ensured the previous-hop
8651                                                         // claim update ChannelMonitor updates were persisted prior to persising
8652                                                         // the ChannelMonitor update for the forward leg, so attempting to fail the
8653                                                         // backwards leg of the HTLC will simply be rejected.
8654                                                         log_info!(args.logger,
8655                                                                 "Failing HTLC with hash {} as it is missing in the ChannelMonitor for channel {} but was present in the (stale) ChannelManager",
8656                                                                 log_bytes!(channel.context.channel_id()), log_bytes!(payment_hash.0));
8657                                                         failed_htlcs.push((channel_htlc_source.clone(), *payment_hash, channel.context.get_counterparty_node_id(), channel.context.channel_id()));
8658                                                 }
8659                                         }
8660                                 } else {
8661                                         log_info!(args.logger, "Successfully loaded channel {} at update_id {} against monitor at update id {}",
8662                                                 log_bytes!(channel.context.channel_id()), channel.context.get_latest_monitor_update_id(),
8663                                                 monitor.get_latest_update_id());
8664                                         if let Some(short_channel_id) = channel.context.get_short_channel_id() {
8665                                                 short_to_chan_info.insert(short_channel_id, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
8666                                         }
8667                                         if channel.context.is_funding_initiated() {
8668                                                 id_to_peer.insert(channel.context.channel_id(), channel.context.get_counterparty_node_id());
8669                                         }
8670                                         match peer_channels.entry(channel.context.get_counterparty_node_id()) {
8671                                                 hash_map::Entry::Occupied(mut entry) => {
8672                                                         let by_id_map = entry.get_mut();
8673                                                         by_id_map.insert(channel.context.channel_id(), channel);
8674                                                 },
8675                                                 hash_map::Entry::Vacant(entry) => {
8676                                                         let mut by_id_map = HashMap::new();
8677                                                         by_id_map.insert(channel.context.channel_id(), channel);
8678                                                         entry.insert(by_id_map);
8679                                                 }
8680                                         }
8681                                 }
8682                         } else if channel.is_awaiting_initial_mon_persist() {
8683                                 // If we were persisted and shut down while the initial ChannelMonitor persistence
8684                                 // was in-progress, we never broadcasted the funding transaction and can still
8685                                 // safely discard the channel.
8686                                 let _ = channel.context.force_shutdown(false);
8687                                 channel_closures.push_back((events::Event::ChannelClosed {
8688                                         channel_id: channel.context.channel_id(),
8689                                         user_channel_id: channel.context.get_user_id(),
8690                                         reason: ClosureReason::DisconnectedPeer,
8691                                         counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
8692                                         channel_capacity_sats: Some(channel.context.get_value_satoshis()),
8693                                 }, None));
8694                         } else {
8695                                 log_error!(args.logger, "Missing ChannelMonitor for channel {} needed by ChannelManager.", log_bytes!(channel.context.channel_id()));
8696                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
8697                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
8698                                 log_error!(args.logger, " Without the ChannelMonitor we cannot continue without risking funds.");
8699                                 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");
8700                                 return Err(DecodeError::InvalidValue);
8701                         }
8702                 }
8703
8704                 for (funding_txo, _) in args.channel_monitors.iter() {
8705                         if !funding_txo_set.contains(funding_txo) {
8706                                 log_info!(args.logger, "Queueing monitor update to ensure missing channel {} is force closed",
8707                                         log_bytes!(funding_txo.to_channel_id()));
8708                                 let monitor_update = ChannelMonitorUpdate {
8709                                         update_id: CLOSED_CHANNEL_UPDATE_ID,
8710                                         updates: vec![ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast: true }],
8711                                 };
8712                                 close_background_events.push(BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((*funding_txo, monitor_update)));
8713                         }
8714                 }
8715
8716                 const MAX_ALLOC_SIZE: usize = 1024 * 64;
8717                 let forward_htlcs_count: u64 = Readable::read(reader)?;
8718                 let mut forward_htlcs = HashMap::with_capacity(cmp::min(forward_htlcs_count as usize, 128));
8719                 for _ in 0..forward_htlcs_count {
8720                         let short_channel_id = Readable::read(reader)?;
8721                         let pending_forwards_count: u64 = Readable::read(reader)?;
8722                         let mut pending_forwards = Vec::with_capacity(cmp::min(pending_forwards_count as usize, MAX_ALLOC_SIZE/mem::size_of::<HTLCForwardInfo>()));
8723                         for _ in 0..pending_forwards_count {
8724                                 pending_forwards.push(Readable::read(reader)?);
8725                         }
8726                         forward_htlcs.insert(short_channel_id, pending_forwards);
8727                 }
8728
8729                 let claimable_htlcs_count: u64 = Readable::read(reader)?;
8730                 let mut claimable_htlcs_list = Vec::with_capacity(cmp::min(claimable_htlcs_count as usize, 128));
8731                 for _ in 0..claimable_htlcs_count {
8732                         let payment_hash = Readable::read(reader)?;
8733                         let previous_hops_len: u64 = Readable::read(reader)?;
8734                         let mut previous_hops = Vec::with_capacity(cmp::min(previous_hops_len as usize, MAX_ALLOC_SIZE/mem::size_of::<ClaimableHTLC>()));
8735                         for _ in 0..previous_hops_len {
8736                                 previous_hops.push(<ClaimableHTLC as Readable>::read(reader)?);
8737                         }
8738                         claimable_htlcs_list.push((payment_hash, previous_hops));
8739                 }
8740
8741                 let peer_state_from_chans = |channel_by_id| {
8742                         PeerState {
8743                                 channel_by_id,
8744                                 outbound_v1_channel_by_id: HashMap::new(),
8745                                 inbound_v1_channel_by_id: HashMap::new(),
8746                                 inbound_channel_request_by_id: HashMap::new(),
8747                                 latest_features: InitFeatures::empty(),
8748                                 pending_msg_events: Vec::new(),
8749                                 in_flight_monitor_updates: BTreeMap::new(),
8750                                 monitor_update_blocked_actions: BTreeMap::new(),
8751                                 actions_blocking_raa_monitor_updates: BTreeMap::new(),
8752                                 is_connected: false,
8753                         }
8754                 };
8755
8756                 let peer_count: u64 = Readable::read(reader)?;
8757                 let mut per_peer_state = HashMap::with_capacity(cmp::min(peer_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(PublicKey, Mutex<PeerState<SP>>)>()));
8758                 for _ in 0..peer_count {
8759                         let peer_pubkey = Readable::read(reader)?;
8760                         let peer_chans = peer_channels.remove(&peer_pubkey).unwrap_or(HashMap::new());
8761                         let mut peer_state = peer_state_from_chans(peer_chans);
8762                         peer_state.latest_features = Readable::read(reader)?;
8763                         per_peer_state.insert(peer_pubkey, Mutex::new(peer_state));
8764                 }
8765
8766                 let event_count: u64 = Readable::read(reader)?;
8767                 let mut pending_events_read: VecDeque<(events::Event, Option<EventCompletionAction>)> =
8768                         VecDeque::with_capacity(cmp::min(event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>()));
8769                 for _ in 0..event_count {
8770                         match MaybeReadable::read(reader)? {
8771                                 Some(event) => pending_events_read.push_back((event, None)),
8772                                 None => continue,
8773                         }
8774                 }
8775
8776                 let background_event_count: u64 = Readable::read(reader)?;
8777                 for _ in 0..background_event_count {
8778                         match <u8 as Readable>::read(reader)? {
8779                                 0 => {
8780                                         // LDK versions prior to 0.0.116 wrote pending `MonitorUpdateRegeneratedOnStartup`s here,
8781                                         // however we really don't (and never did) need them - we regenerate all
8782                                         // on-startup monitor updates.
8783                                         let _: OutPoint = Readable::read(reader)?;
8784                                         let _: ChannelMonitorUpdate = Readable::read(reader)?;
8785                                 }
8786                                 _ => return Err(DecodeError::InvalidValue),
8787                         }
8788                 }
8789
8790                 let _last_node_announcement_serial: u32 = Readable::read(reader)?; // Only used < 0.0.111
8791                 let highest_seen_timestamp: u32 = Readable::read(reader)?;
8792
8793                 let pending_inbound_payment_count: u64 = Readable::read(reader)?;
8794                 let mut pending_inbound_payments: HashMap<PaymentHash, PendingInboundPayment> = HashMap::with_capacity(cmp::min(pending_inbound_payment_count as usize, MAX_ALLOC_SIZE/(3*32)));
8795                 for _ in 0..pending_inbound_payment_count {
8796                         if pending_inbound_payments.insert(Readable::read(reader)?, Readable::read(reader)?).is_some() {
8797                                 return Err(DecodeError::InvalidValue);
8798                         }
8799                 }
8800
8801                 let pending_outbound_payments_count_compat: u64 = Readable::read(reader)?;
8802                 let mut pending_outbound_payments_compat: HashMap<PaymentId, PendingOutboundPayment> =
8803                         HashMap::with_capacity(cmp::min(pending_outbound_payments_count_compat as usize, MAX_ALLOC_SIZE/32));
8804                 for _ in 0..pending_outbound_payments_count_compat {
8805                         let session_priv = Readable::read(reader)?;
8806                         let payment = PendingOutboundPayment::Legacy {
8807                                 session_privs: [session_priv].iter().cloned().collect()
8808                         };
8809                         if pending_outbound_payments_compat.insert(PaymentId(session_priv), payment).is_some() {
8810                                 return Err(DecodeError::InvalidValue)
8811                         };
8812                 }
8813
8814                 // pending_outbound_payments_no_retry is for compatibility with 0.0.101 clients.
8815                 let mut pending_outbound_payments_no_retry: Option<HashMap<PaymentId, HashSet<[u8; 32]>>> = None;
8816                 let mut pending_outbound_payments = None;
8817                 let mut pending_intercepted_htlcs: Option<HashMap<InterceptId, PendingAddHTLCInfo>> = Some(HashMap::new());
8818                 let mut received_network_pubkey: Option<PublicKey> = None;
8819                 let mut fake_scid_rand_bytes: Option<[u8; 32]> = None;
8820                 let mut probing_cookie_secret: Option<[u8; 32]> = None;
8821                 let mut claimable_htlc_purposes = None;
8822                 let mut claimable_htlc_onion_fields = None;
8823                 let mut pending_claiming_payments = Some(HashMap::new());
8824                 let mut monitor_update_blocked_actions_per_peer: Option<Vec<(_, BTreeMap<_, Vec<_>>)>> = Some(Vec::new());
8825                 let mut events_override = None;
8826                 let mut in_flight_monitor_updates: Option<HashMap<(PublicKey, OutPoint), Vec<ChannelMonitorUpdate>>> = None;
8827                 read_tlv_fields!(reader, {
8828                         (1, pending_outbound_payments_no_retry, option),
8829                         (2, pending_intercepted_htlcs, option),
8830                         (3, pending_outbound_payments, option),
8831                         (4, pending_claiming_payments, option),
8832                         (5, received_network_pubkey, option),
8833                         (6, monitor_update_blocked_actions_per_peer, option),
8834                         (7, fake_scid_rand_bytes, option),
8835                         (8, events_override, option),
8836                         (9, claimable_htlc_purposes, optional_vec),
8837                         (10, in_flight_monitor_updates, option),
8838                         (11, probing_cookie_secret, option),
8839                         (13, claimable_htlc_onion_fields, optional_vec),
8840                 });
8841                 if fake_scid_rand_bytes.is_none() {
8842                         fake_scid_rand_bytes = Some(args.entropy_source.get_secure_random_bytes());
8843                 }
8844
8845                 if probing_cookie_secret.is_none() {
8846                         probing_cookie_secret = Some(args.entropy_source.get_secure_random_bytes());
8847                 }
8848
8849                 if let Some(events) = events_override {
8850                         pending_events_read = events;
8851                 }
8852
8853                 if !channel_closures.is_empty() {
8854                         pending_events_read.append(&mut channel_closures);
8855                 }
8856
8857                 if pending_outbound_payments.is_none() && pending_outbound_payments_no_retry.is_none() {
8858                         pending_outbound_payments = Some(pending_outbound_payments_compat);
8859                 } else if pending_outbound_payments.is_none() {
8860                         let mut outbounds = HashMap::new();
8861                         for (id, session_privs) in pending_outbound_payments_no_retry.unwrap().drain() {
8862                                 outbounds.insert(id, PendingOutboundPayment::Legacy { session_privs });
8863                         }
8864                         pending_outbound_payments = Some(outbounds);
8865                 }
8866                 let pending_outbounds = OutboundPayments {
8867                         pending_outbound_payments: Mutex::new(pending_outbound_payments.unwrap()),
8868                         retry_lock: Mutex::new(())
8869                 };
8870
8871                 // We have to replay (or skip, if they were completed after we wrote the `ChannelManager`)
8872                 // each `ChannelMonitorUpdate` in `in_flight_monitor_updates`. After doing so, we have to
8873                 // check that each channel we have isn't newer than the latest `ChannelMonitorUpdate`(s) we
8874                 // replayed, and for each monitor update we have to replay we have to ensure there's a
8875                 // `ChannelMonitor` for it.
8876                 //
8877                 // In order to do so we first walk all of our live channels (so that we can check their
8878                 // state immediately after doing the update replays, when we have the `update_id`s
8879                 // available) and then walk any remaining in-flight updates.
8880                 //
8881                 // Because the actual handling of the in-flight updates is the same, it's macro'ized here:
8882                 let mut pending_background_events = Vec::new();
8883                 macro_rules! handle_in_flight_updates {
8884                         ($counterparty_node_id: expr, $chan_in_flight_upds: expr, $funding_txo: expr,
8885                          $monitor: expr, $peer_state: expr, $channel_info_log: expr
8886                         ) => { {
8887                                 let mut max_in_flight_update_id = 0;
8888                                 $chan_in_flight_upds.retain(|upd| upd.update_id > $monitor.get_latest_update_id());
8889                                 for update in $chan_in_flight_upds.iter() {
8890                                         log_trace!(args.logger, "Replaying ChannelMonitorUpdate {} for {}channel {}",
8891                                                 update.update_id, $channel_info_log, log_bytes!($funding_txo.to_channel_id()));
8892                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id, update.update_id);
8893                                         pending_background_events.push(
8894                                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
8895                                                         counterparty_node_id: $counterparty_node_id,
8896                                                         funding_txo: $funding_txo,
8897                                                         update: update.clone(),
8898                                                 });
8899                                 }
8900                                 if $chan_in_flight_upds.is_empty() {
8901                                         // We had some updates to apply, but it turns out they had completed before we
8902                                         // were serialized, we just weren't notified of that. Thus, we may have to run
8903                                         // the completion actions for any monitor updates, but otherwise are done.
8904                                         pending_background_events.push(
8905                                                 BackgroundEvent::MonitorUpdatesComplete {
8906                                                         counterparty_node_id: $counterparty_node_id,
8907                                                         channel_id: $funding_txo.to_channel_id(),
8908                                                 });
8909                                 }
8910                                 if $peer_state.in_flight_monitor_updates.insert($funding_txo, $chan_in_flight_upds).is_some() {
8911                                         log_error!(args.logger, "Duplicate in-flight monitor update set for the same channel!");
8912                                         return Err(DecodeError::InvalidValue);
8913                                 }
8914                                 max_in_flight_update_id
8915                         } }
8916                 }
8917
8918                 for (counterparty_id, peer_state_mtx) in per_peer_state.iter_mut() {
8919                         let mut peer_state_lock = peer_state_mtx.lock().unwrap();
8920                         let peer_state = &mut *peer_state_lock;
8921                         for (_, chan) in peer_state.channel_by_id.iter() {
8922                                 // Channels that were persisted have to be funded, otherwise they should have been
8923                                 // discarded.
8924                                 let funding_txo = chan.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
8925                                 let monitor = args.channel_monitors.get(&funding_txo)
8926                                         .expect("We already checked for monitor presence when loading channels");
8927                                 let mut max_in_flight_update_id = monitor.get_latest_update_id();
8928                                 if let Some(in_flight_upds) = &mut in_flight_monitor_updates {
8929                                         if let Some(mut chan_in_flight_upds) = in_flight_upds.remove(&(*counterparty_id, funding_txo)) {
8930                                                 max_in_flight_update_id = cmp::max(max_in_flight_update_id,
8931                                                         handle_in_flight_updates!(*counterparty_id, chan_in_flight_upds,
8932                                                                 funding_txo, monitor, peer_state, ""));
8933                                         }
8934                                 }
8935                                 if chan.get_latest_unblocked_monitor_update_id() > max_in_flight_update_id {
8936                                         // If the channel is ahead of the monitor, return InvalidValue:
8937                                         log_error!(args.logger, "A ChannelMonitor is stale compared to the current ChannelManager! This indicates a potentially-critical violation of the chain::Watch API!");
8938                                         log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} with update_id through {} in-flight",
8939                                                 log_bytes!(chan.context.channel_id()), monitor.get_latest_update_id(), max_in_flight_update_id);
8940                                         log_error!(args.logger, " but the ChannelManager is at update_id {}.", chan.get_latest_unblocked_monitor_update_id());
8941                                         log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
8942                                         log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
8943                                         log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
8944                                         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");
8945                                         return Err(DecodeError::InvalidValue);
8946                                 }
8947                         }
8948                 }
8949
8950                 if let Some(in_flight_upds) = in_flight_monitor_updates {
8951                         for ((counterparty_id, funding_txo), mut chan_in_flight_updates) in in_flight_upds {
8952                                 if let Some(monitor) = args.channel_monitors.get(&funding_txo) {
8953                                         // Now that we've removed all the in-flight monitor updates for channels that are
8954                                         // still open, we need to replay any monitor updates that are for closed channels,
8955                                         // creating the neccessary peer_state entries as we go.
8956                                         let peer_state_mutex = per_peer_state.entry(counterparty_id).or_insert_with(|| {
8957                                                 Mutex::new(peer_state_from_chans(HashMap::new()))
8958                                         });
8959                                         let mut peer_state = peer_state_mutex.lock().unwrap();
8960                                         handle_in_flight_updates!(counterparty_id, chan_in_flight_updates,
8961                                                 funding_txo, monitor, peer_state, "closed ");
8962                                 } else {
8963                                         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!");
8964                                         log_error!(args.logger, " The ChannelMonitor for channel {} is missing.",
8965                                                 log_bytes!(funding_txo.to_channel_id()));
8966                                         log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
8967                                         log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
8968                                         log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
8969                                         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");
8970                                         return Err(DecodeError::InvalidValue);
8971                                 }
8972                         }
8973                 }
8974
8975                 // Note that we have to do the above replays before we push new monitor updates.
8976                 pending_background_events.append(&mut close_background_events);
8977
8978                 // If there's any preimages for forwarded HTLCs hanging around in ChannelMonitors we
8979                 // should ensure we try them again on the inbound edge. We put them here and do so after we
8980                 // have a fully-constructed `ChannelManager` at the end.
8981                 let mut pending_claims_to_replay = Vec::new();
8982
8983                 {
8984                         // If we're tracking pending payments, ensure we haven't lost any by looking at the
8985                         // ChannelMonitor data for any channels for which we do not have authorative state
8986                         // (i.e. those for which we just force-closed above or we otherwise don't have a
8987                         // corresponding `Channel` at all).
8988                         // This avoids several edge-cases where we would otherwise "forget" about pending
8989                         // payments which are still in-flight via their on-chain state.
8990                         // We only rebuild the pending payments map if we were most recently serialized by
8991                         // 0.0.102+
8992                         for (_, monitor) in args.channel_monitors.iter() {
8993                                 let counterparty_opt = id_to_peer.get(&monitor.get_funding_txo().0.to_channel_id());
8994                                 if counterparty_opt.is_none() {
8995                                         for (htlc_source, (htlc, _)) in monitor.get_pending_or_resolved_outbound_htlcs() {
8996                                                 if let HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } = htlc_source {
8997                                                         if path.hops.is_empty() {
8998                                                                 log_error!(args.logger, "Got an empty path for a pending payment");
8999                                                                 return Err(DecodeError::InvalidValue);
9000                                                         }
9001
9002                                                         let path_amt = path.final_value_msat();
9003                                                         let mut session_priv_bytes = [0; 32];
9004                                                         session_priv_bytes[..].copy_from_slice(&session_priv[..]);
9005                                                         match pending_outbounds.pending_outbound_payments.lock().unwrap().entry(payment_id) {
9006                                                                 hash_map::Entry::Occupied(mut entry) => {
9007                                                                         let newly_added = entry.get_mut().insert(session_priv_bytes, &path);
9008                                                                         log_info!(args.logger, "{} a pending payment path for {} msat for session priv {} on an existing pending payment with payment hash {}",
9009                                                                                 if newly_added { "Added" } else { "Had" }, path_amt, log_bytes!(session_priv_bytes), log_bytes!(htlc.payment_hash.0));
9010                                                                 },
9011                                                                 hash_map::Entry::Vacant(entry) => {
9012                                                                         let path_fee = path.fee_msat();
9013                                                                         entry.insert(PendingOutboundPayment::Retryable {
9014                                                                                 retry_strategy: None,
9015                                                                                 attempts: PaymentAttempts::new(),
9016                                                                                 payment_params: None,
9017                                                                                 session_privs: [session_priv_bytes].iter().map(|a| *a).collect(),
9018                                                                                 payment_hash: htlc.payment_hash,
9019                                                                                 payment_secret: None, // only used for retries, and we'll never retry on startup
9020                                                                                 payment_metadata: None, // only used for retries, and we'll never retry on startup
9021                                                                                 keysend_preimage: None, // only used for retries, and we'll never retry on startup
9022                                                                                 custom_tlvs: Vec::new(), // only used for retries, and we'll never retry on startup
9023                                                                                 pending_amt_msat: path_amt,
9024                                                                                 pending_fee_msat: Some(path_fee),
9025                                                                                 total_msat: path_amt,
9026                                                                                 starting_block_height: best_block_height,
9027                                                                         });
9028                                                                         log_info!(args.logger, "Added a pending payment for {} msat with payment hash {} for path with session priv {}",
9029                                                                                 path_amt, log_bytes!(htlc.payment_hash.0),  log_bytes!(session_priv_bytes));
9030                                                                 }
9031                                                         }
9032                                                 }
9033                                         }
9034                                         for (htlc_source, (htlc, preimage_opt)) in monitor.get_all_current_outbound_htlcs() {
9035                                                 match htlc_source {
9036                                                         HTLCSource::PreviousHopData(prev_hop_data) => {
9037                                                                 let pending_forward_matches_htlc = |info: &PendingAddHTLCInfo| {
9038                                                                         info.prev_funding_outpoint == prev_hop_data.outpoint &&
9039                                                                                 info.prev_htlc_id == prev_hop_data.htlc_id
9040                                                                 };
9041                                                                 // The ChannelMonitor is now responsible for this HTLC's
9042                                                                 // failure/success and will let us know what its outcome is. If we
9043                                                                 // still have an entry for this HTLC in `forward_htlcs` or
9044                                                                 // `pending_intercepted_htlcs`, we were apparently not persisted after
9045                                                                 // the monitor was when forwarding the payment.
9046                                                                 forward_htlcs.retain(|_, forwards| {
9047                                                                         forwards.retain(|forward| {
9048                                                                                 if let HTLCForwardInfo::AddHTLC(htlc_info) = forward {
9049                                                                                         if pending_forward_matches_htlc(&htlc_info) {
9050                                                                                                 log_info!(args.logger, "Removing pending to-forward HTLC with hash {} as it was forwarded to the closed channel {}",
9051                                                                                                         log_bytes!(htlc.payment_hash.0), log_bytes!(monitor.get_funding_txo().0.to_channel_id()));
9052                                                                                                 false
9053                                                                                         } else { true }
9054                                                                                 } else { true }
9055                                                                         });
9056                                                                         !forwards.is_empty()
9057                                                                 });
9058                                                                 pending_intercepted_htlcs.as_mut().unwrap().retain(|intercepted_id, htlc_info| {
9059                                                                         if pending_forward_matches_htlc(&htlc_info) {
9060                                                                                 log_info!(args.logger, "Removing pending intercepted HTLC with hash {} as it was forwarded to the closed channel {}",
9061                                                                                         log_bytes!(htlc.payment_hash.0), log_bytes!(monitor.get_funding_txo().0.to_channel_id()));
9062                                                                                 pending_events_read.retain(|(event, _)| {
9063                                                                                         if let Event::HTLCIntercepted { intercept_id: ev_id, .. } = event {
9064                                                                                                 intercepted_id != ev_id
9065                                                                                         } else { true }
9066                                                                                 });
9067                                                                                 false
9068                                                                         } else { true }
9069                                                                 });
9070                                                         },
9071                                                         HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } => {
9072                                                                 if let Some(preimage) = preimage_opt {
9073                                                                         let pending_events = Mutex::new(pending_events_read);
9074                                                                         // Note that we set `from_onchain` to "false" here,
9075                                                                         // deliberately keeping the pending payment around forever.
9076                                                                         // Given it should only occur when we have a channel we're
9077                                                                         // force-closing for being stale that's okay.
9078                                                                         // The alternative would be to wipe the state when claiming,
9079                                                                         // generating a `PaymentPathSuccessful` event but regenerating
9080                                                                         // it and the `PaymentSent` on every restart until the
9081                                                                         // `ChannelMonitor` is removed.
9082                                                                         let compl_action =
9083                                                                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
9084                                                                                         channel_funding_outpoint: monitor.get_funding_txo().0,
9085                                                                                         counterparty_node_id: path.hops[0].pubkey,
9086                                                                                 };
9087                                                                         pending_outbounds.claim_htlc(payment_id, preimage, session_priv,
9088                                                                                 path, false, compl_action, &pending_events, &args.logger);
9089                                                                         pending_events_read = pending_events.into_inner().unwrap();
9090                                                                 }
9091                                                         },
9092                                                 }
9093                                         }
9094                                 }
9095
9096                                 // Whether the downstream channel was closed or not, try to re-apply any payment
9097                                 // preimages from it which may be needed in upstream channels for forwarded
9098                                 // payments.
9099                                 let outbound_claimed_htlcs_iter = monitor.get_all_current_outbound_htlcs()
9100                                         .into_iter()
9101                                         .filter_map(|(htlc_source, (htlc, preimage_opt))| {
9102                                                 if let HTLCSource::PreviousHopData(_) = htlc_source {
9103                                                         if let Some(payment_preimage) = preimage_opt {
9104                                                                 Some((htlc_source, payment_preimage, htlc.amount_msat,
9105                                                                         // Check if `counterparty_opt.is_none()` to see if the
9106                                                                         // downstream chan is closed (because we don't have a
9107                                                                         // channel_id -> peer map entry).
9108                                                                         counterparty_opt.is_none(),
9109                                                                         monitor.get_funding_txo().0))
9110                                                         } else { None }
9111                                                 } else {
9112                                                         // If it was an outbound payment, we've handled it above - if a preimage
9113                                                         // came in and we persisted the `ChannelManager` we either handled it and
9114                                                         // are good to go or the channel force-closed - we don't have to handle the
9115                                                         // channel still live case here.
9116                                                         None
9117                                                 }
9118                                         });
9119                                 for tuple in outbound_claimed_htlcs_iter {
9120                                         pending_claims_to_replay.push(tuple);
9121                                 }
9122                         }
9123                 }
9124
9125                 if !forward_htlcs.is_empty() || pending_outbounds.needs_abandon() {
9126                         // If we have pending HTLCs to forward, assume we either dropped a
9127                         // `PendingHTLCsForwardable` or the user received it but never processed it as they
9128                         // shut down before the timer hit. Either way, set the time_forwardable to a small
9129                         // constant as enough time has likely passed that we should simply handle the forwards
9130                         // now, or at least after the user gets a chance to reconnect to our peers.
9131                         pending_events_read.push_back((events::Event::PendingHTLCsForwardable {
9132                                 time_forwardable: Duration::from_secs(2),
9133                         }, None));
9134                 }
9135
9136                 let inbound_pmt_key_material = args.node_signer.get_inbound_payment_key_material();
9137                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
9138
9139                 let mut claimable_payments = HashMap::with_capacity(claimable_htlcs_list.len());
9140                 if let Some(purposes) = claimable_htlc_purposes {
9141                         if purposes.len() != claimable_htlcs_list.len() {
9142                                 return Err(DecodeError::InvalidValue);
9143                         }
9144                         if let Some(onion_fields) = claimable_htlc_onion_fields {
9145                                 if onion_fields.len() != claimable_htlcs_list.len() {
9146                                         return Err(DecodeError::InvalidValue);
9147                                 }
9148                                 for (purpose, (onion, (payment_hash, htlcs))) in
9149                                         purposes.into_iter().zip(onion_fields.into_iter().zip(claimable_htlcs_list.into_iter()))
9150                                 {
9151                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
9152                                                 purpose, htlcs, onion_fields: onion,
9153                                         });
9154                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
9155                                 }
9156                         } else {
9157                                 for (purpose, (payment_hash, htlcs)) in purposes.into_iter().zip(claimable_htlcs_list.into_iter()) {
9158                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
9159                                                 purpose, htlcs, onion_fields: None,
9160                                         });
9161                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
9162                                 }
9163                         }
9164                 } else {
9165                         // LDK versions prior to 0.0.107 did not write a `pending_htlc_purposes`, but do
9166                         // include a `_legacy_hop_data` in the `OnionPayload`.
9167                         for (payment_hash, htlcs) in claimable_htlcs_list.drain(..) {
9168                                 if htlcs.is_empty() {
9169                                         return Err(DecodeError::InvalidValue);
9170                                 }
9171                                 let purpose = match &htlcs[0].onion_payload {
9172                                         OnionPayload::Invoice { _legacy_hop_data } => {
9173                                                 if let Some(hop_data) = _legacy_hop_data {
9174                                                         events::PaymentPurpose::InvoicePayment {
9175                                                                 payment_preimage: match pending_inbound_payments.get(&payment_hash) {
9176                                                                         Some(inbound_payment) => inbound_payment.payment_preimage,
9177                                                                         None => match inbound_payment::verify(payment_hash, &hop_data, 0, &expanded_inbound_key, &args.logger) {
9178                                                                                 Ok((payment_preimage, _)) => payment_preimage,
9179                                                                                 Err(()) => {
9180                                                                                         log_error!(args.logger, "Failed to read claimable payment data for HTLC with payment hash {} - was not a pending inbound payment and didn't match our payment key", log_bytes!(payment_hash.0));
9181                                                                                         return Err(DecodeError::InvalidValue);
9182                                                                                 }
9183                                                                         }
9184                                                                 },
9185                                                                 payment_secret: hop_data.payment_secret,
9186                                                         }
9187                                                 } else { return Err(DecodeError::InvalidValue); }
9188                                         },
9189                                         OnionPayload::Spontaneous(payment_preimage) =>
9190                                                 events::PaymentPurpose::SpontaneousPayment(*payment_preimage),
9191                                 };
9192                                 claimable_payments.insert(payment_hash, ClaimablePayment {
9193                                         purpose, htlcs, onion_fields: None,
9194                                 });
9195                         }
9196                 }
9197
9198                 let mut secp_ctx = Secp256k1::new();
9199                 secp_ctx.seeded_randomize(&args.entropy_source.get_secure_random_bytes());
9200
9201                 let our_network_pubkey = match args.node_signer.get_node_id(Recipient::Node) {
9202                         Ok(key) => key,
9203                         Err(()) => return Err(DecodeError::InvalidValue)
9204                 };
9205                 if let Some(network_pubkey) = received_network_pubkey {
9206                         if network_pubkey != our_network_pubkey {
9207                                 log_error!(args.logger, "Key that was generated does not match the existing key.");
9208                                 return Err(DecodeError::InvalidValue);
9209                         }
9210                 }
9211
9212                 let mut outbound_scid_aliases = HashSet::new();
9213                 for (_peer_node_id, peer_state_mutex) in per_peer_state.iter_mut() {
9214                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9215                         let peer_state = &mut *peer_state_lock;
9216                         for (chan_id, chan) in peer_state.channel_by_id.iter_mut() {
9217                                 if chan.context.outbound_scid_alias() == 0 {
9218                                         let mut outbound_scid_alias;
9219                                         loop {
9220                                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias
9221                                                         .get_fake_scid(best_block_height, &genesis_hash, fake_scid_rand_bytes.as_ref().unwrap(), &args.entropy_source);
9222                                                 if outbound_scid_aliases.insert(outbound_scid_alias) { break; }
9223                                         }
9224                                         chan.context.set_outbound_scid_alias(outbound_scid_alias);
9225                                 } else if !outbound_scid_aliases.insert(chan.context.outbound_scid_alias()) {
9226                                         // Note that in rare cases its possible to hit this while reading an older
9227                                         // channel if we just happened to pick a colliding outbound alias above.
9228                                         log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
9229                                         return Err(DecodeError::InvalidValue);
9230                                 }
9231                                 if chan.context.is_usable() {
9232                                         if short_to_chan_info.insert(chan.context.outbound_scid_alias(), (chan.context.get_counterparty_node_id(), *chan_id)).is_some() {
9233                                                 // Note that in rare cases its possible to hit this while reading an older
9234                                                 // channel if we just happened to pick a colliding outbound alias above.
9235                                                 log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
9236                                                 return Err(DecodeError::InvalidValue);
9237                                         }
9238                                 }
9239                         }
9240                 }
9241
9242                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(args.fee_estimator);
9243
9244                 for (_, monitor) in args.channel_monitors.iter() {
9245                         for (payment_hash, payment_preimage) in monitor.get_stored_preimages() {
9246                                 if let Some(payment) = claimable_payments.remove(&payment_hash) {
9247                                         log_info!(args.logger, "Re-claiming HTLCs with payment hash {} as we've released the preimage to a ChannelMonitor!", log_bytes!(payment_hash.0));
9248                                         let mut claimable_amt_msat = 0;
9249                                         let mut receiver_node_id = Some(our_network_pubkey);
9250                                         let phantom_shared_secret = payment.htlcs[0].prev_hop.phantom_shared_secret;
9251                                         if phantom_shared_secret.is_some() {
9252                                                 let phantom_pubkey = args.node_signer.get_node_id(Recipient::PhantomNode)
9253                                                         .expect("Failed to get node_id for phantom node recipient");
9254                                                 receiver_node_id = Some(phantom_pubkey)
9255                                         }
9256                                         for claimable_htlc in &payment.htlcs {
9257                                                 claimable_amt_msat += claimable_htlc.value;
9258
9259                                                 // Add a holding-cell claim of the payment to the Channel, which should be
9260                                                 // applied ~immediately on peer reconnection. Because it won't generate a
9261                                                 // new commitment transaction we can just provide the payment preimage to
9262                                                 // the corresponding ChannelMonitor and nothing else.
9263                                                 //
9264                                                 // We do so directly instead of via the normal ChannelMonitor update
9265                                                 // procedure as the ChainMonitor hasn't yet been initialized, implying
9266                                                 // we're not allowed to call it directly yet. Further, we do the update
9267                                                 // without incrementing the ChannelMonitor update ID as there isn't any
9268                                                 // reason to.
9269                                                 // If we were to generate a new ChannelMonitor update ID here and then
9270                                                 // crash before the user finishes block connect we'd end up force-closing
9271                                                 // this channel as well. On the flip side, there's no harm in restarting
9272                                                 // without the new monitor persisted - we'll end up right back here on
9273                                                 // restart.
9274                                                 let previous_channel_id = claimable_htlc.prev_hop.outpoint.to_channel_id();
9275                                                 if let Some(peer_node_id) = id_to_peer.get(&previous_channel_id){
9276                                                         let peer_state_mutex = per_peer_state.get(peer_node_id).unwrap();
9277                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9278                                                         let peer_state = &mut *peer_state_lock;
9279                                                         if let Some(channel) = peer_state.channel_by_id.get_mut(&previous_channel_id) {
9280                                                                 channel.claim_htlc_while_disconnected_dropping_mon_update(claimable_htlc.prev_hop.htlc_id, payment_preimage, &args.logger);
9281                                                         }
9282                                                 }
9283                                                 if let Some(previous_hop_monitor) = args.channel_monitors.get(&claimable_htlc.prev_hop.outpoint) {
9284                                                         previous_hop_monitor.provide_payment_preimage(&payment_hash, &payment_preimage, &args.tx_broadcaster, &bounded_fee_estimator, &args.logger);
9285                                                 }
9286                                         }
9287                                         pending_events_read.push_back((events::Event::PaymentClaimed {
9288                                                 receiver_node_id,
9289                                                 payment_hash,
9290                                                 purpose: payment.purpose,
9291                                                 amount_msat: claimable_amt_msat,
9292                                                 htlcs: payment.htlcs.iter().map(events::ClaimedHTLC::from).collect(),
9293                                                 sender_intended_total_msat: payment.htlcs.first().map(|htlc| htlc.total_msat),
9294                                         }, None));
9295                                 }
9296                         }
9297                 }
9298
9299                 for (node_id, monitor_update_blocked_actions) in monitor_update_blocked_actions_per_peer.unwrap() {
9300                         if let Some(peer_state) = per_peer_state.get(&node_id) {
9301                                 for (_, actions) in monitor_update_blocked_actions.iter() {
9302                                         for action in actions.iter() {
9303                                                 if let MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
9304                                                         downstream_counterparty_and_funding_outpoint:
9305                                                                 Some((blocked_node_id, blocked_channel_outpoint, blocking_action)), ..
9306                                                 } = action {
9307                                                         if let Some(blocked_peer_state) = per_peer_state.get(&blocked_node_id) {
9308                                                                 blocked_peer_state.lock().unwrap().actions_blocking_raa_monitor_updates
9309                                                                         .entry(blocked_channel_outpoint.to_channel_id())
9310                                                                         .or_insert_with(Vec::new).push(blocking_action.clone());
9311                                                         } else {
9312                                                                 // If the channel we were blocking has closed, we don't need to
9313                                                                 // worry about it - the blocked monitor update should never have
9314                                                                 // been released from the `Channel` object so it can't have
9315                                                                 // completed, and if the channel closed there's no reason to bother
9316                                                                 // anymore.
9317                                                         }
9318                                                 }
9319                                         }
9320                                 }
9321                                 peer_state.lock().unwrap().monitor_update_blocked_actions = monitor_update_blocked_actions;
9322                         } else {
9323                                 log_error!(args.logger, "Got blocked actions without a per-peer-state for {}", node_id);
9324                                 return Err(DecodeError::InvalidValue);
9325                         }
9326                 }
9327
9328                 let channel_manager = ChannelManager {
9329                         genesis_hash,
9330                         fee_estimator: bounded_fee_estimator,
9331                         chain_monitor: args.chain_monitor,
9332                         tx_broadcaster: args.tx_broadcaster,
9333                         router: args.router,
9334
9335                         best_block: RwLock::new(BestBlock::new(best_block_hash, best_block_height)),
9336
9337                         inbound_payment_key: expanded_inbound_key,
9338                         pending_inbound_payments: Mutex::new(pending_inbound_payments),
9339                         pending_outbound_payments: pending_outbounds,
9340                         pending_intercepted_htlcs: Mutex::new(pending_intercepted_htlcs.unwrap()),
9341
9342                         forward_htlcs: Mutex::new(forward_htlcs),
9343                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments, pending_claiming_payments: pending_claiming_payments.unwrap() }),
9344                         outbound_scid_aliases: Mutex::new(outbound_scid_aliases),
9345                         id_to_peer: Mutex::new(id_to_peer),
9346                         short_to_chan_info: FairRwLock::new(short_to_chan_info),
9347                         fake_scid_rand_bytes: fake_scid_rand_bytes.unwrap(),
9348
9349                         probing_cookie_secret: probing_cookie_secret.unwrap(),
9350
9351                         our_network_pubkey,
9352                         secp_ctx,
9353
9354                         highest_seen_timestamp: AtomicUsize::new(highest_seen_timestamp as usize),
9355
9356                         per_peer_state: FairRwLock::new(per_peer_state),
9357
9358                         pending_events: Mutex::new(pending_events_read),
9359                         pending_events_processor: AtomicBool::new(false),
9360                         pending_background_events: Mutex::new(pending_background_events),
9361                         total_consistency_lock: RwLock::new(()),
9362                         background_events_processed_since_startup: AtomicBool::new(false),
9363                         persistence_notifier: Notifier::new(),
9364
9365                         entropy_source: args.entropy_source,
9366                         node_signer: args.node_signer,
9367                         signer_provider: args.signer_provider,
9368
9369                         logger: args.logger,
9370                         default_configuration: args.default_config,
9371                 };
9372
9373                 for htlc_source in failed_htlcs.drain(..) {
9374                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
9375                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
9376                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
9377                         channel_manager.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
9378                 }
9379
9380                 for (source, preimage, downstream_value, downstream_closed, downstream_funding) in pending_claims_to_replay {
9381                         // We use `downstream_closed` in place of `from_onchain` here just as a guess - we
9382                         // don't remember in the `ChannelMonitor` where we got a preimage from, but if the
9383                         // channel is closed we just assume that it probably came from an on-chain claim.
9384                         channel_manager.claim_funds_internal(source, preimage, Some(downstream_value),
9385                                 downstream_closed, downstream_funding);
9386                 }
9387
9388                 //TODO: Broadcast channel update for closed channels, but only after we've made a
9389                 //connection or two.
9390
9391                 Ok((best_block_hash.clone(), channel_manager))
9392         }
9393 }
9394
9395 #[cfg(test)]
9396 mod tests {
9397         use bitcoin::hashes::Hash;
9398         use bitcoin::hashes::sha256::Hash as Sha256;
9399         use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
9400         use core::sync::atomic::Ordering;
9401         use crate::events::{Event, HTLCDestination, MessageSendEvent, MessageSendEventsProvider, ClosureReason};
9402         use crate::ln::{PaymentPreimage, PaymentHash, PaymentSecret};
9403         use crate::ln::channelmanager::{inbound_payment, PaymentId, PaymentSendFailure, RecipientOnionFields, InterceptId};
9404         use crate::ln::functional_test_utils::*;
9405         use crate::ln::msgs::{self, ErrorAction};
9406         use crate::ln::msgs::ChannelMessageHandler;
9407         use crate::routing::router::{PaymentParameters, RouteParameters, find_route};
9408         use crate::util::errors::APIError;
9409         use crate::util::test_utils;
9410         use crate::util::config::{ChannelConfig, ChannelConfigUpdate};
9411         use crate::sign::EntropySource;
9412
9413         #[test]
9414         fn test_notify_limits() {
9415                 // Check that a few cases which don't require the persistence of a new ChannelManager,
9416                 // indeed, do not cause the persistence of a new ChannelManager.
9417                 let chanmon_cfgs = create_chanmon_cfgs(3);
9418                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
9419                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
9420                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
9421
9422                 // All nodes start with a persistable update pending as `create_network` connects each node
9423                 // with all other nodes to make most tests simpler.
9424                 assert!(nodes[0].node.get_persistable_update_future().poll_is_complete());
9425                 assert!(nodes[1].node.get_persistable_update_future().poll_is_complete());
9426                 assert!(nodes[2].node.get_persistable_update_future().poll_is_complete());
9427
9428                 let mut chan = create_announced_chan_between_nodes(&nodes, 0, 1);
9429
9430                 // We check that the channel info nodes have doesn't change too early, even though we try
9431                 // to connect messages with new values
9432                 chan.0.contents.fee_base_msat *= 2;
9433                 chan.1.contents.fee_base_msat *= 2;
9434                 let node_a_chan_info = nodes[0].node.list_channels_with_counterparty(
9435                         &nodes[1].node.get_our_node_id()).pop().unwrap();
9436                 let node_b_chan_info = nodes[1].node.list_channels_with_counterparty(
9437                         &nodes[0].node.get_our_node_id()).pop().unwrap();
9438
9439                 // The first two nodes (which opened a channel) should now require fresh persistence
9440                 assert!(nodes[0].node.get_persistable_update_future().poll_is_complete());
9441                 assert!(nodes[1].node.get_persistable_update_future().poll_is_complete());
9442                 // ... but the last node should not.
9443                 assert!(!nodes[2].node.get_persistable_update_future().poll_is_complete());
9444                 // After persisting the first two nodes they should no longer need fresh persistence.
9445                 assert!(!nodes[0].node.get_persistable_update_future().poll_is_complete());
9446                 assert!(!nodes[1].node.get_persistable_update_future().poll_is_complete());
9447
9448                 // Node 3, unrelated to the only channel, shouldn't care if it receives a channel_update
9449                 // about the channel.
9450                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.0);
9451                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.1);
9452                 assert!(!nodes[2].node.get_persistable_update_future().poll_is_complete());
9453
9454                 // The nodes which are a party to the channel should also ignore messages from unrelated
9455                 // parties.
9456                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
9457                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
9458                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
9459                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
9460                 assert!(!nodes[0].node.get_persistable_update_future().poll_is_complete());
9461                 assert!(!nodes[1].node.get_persistable_update_future().poll_is_complete());
9462
9463                 // At this point the channel info given by peers should still be the same.
9464                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
9465                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
9466
9467                 // An earlier version of handle_channel_update didn't check the directionality of the
9468                 // update message and would always update the local fee info, even if our peer was
9469                 // (spuriously) forwarding us our own channel_update.
9470                 let as_node_one = nodes[0].node.get_our_node_id().serialize()[..] < nodes[1].node.get_our_node_id().serialize()[..];
9471                 let as_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.0 } else { &chan.1 };
9472                 let bs_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.1 } else { &chan.0 };
9473
9474                 // First deliver each peers' own message, checking that the node doesn't need to be
9475                 // persisted and that its channel info remains the same.
9476                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &as_update);
9477                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &bs_update);
9478                 assert!(!nodes[0].node.get_persistable_update_future().poll_is_complete());
9479                 assert!(!nodes[1].node.get_persistable_update_future().poll_is_complete());
9480                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
9481                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
9482
9483                 // Finally, deliver the other peers' message, ensuring each node needs to be persisted and
9484                 // the channel info has updated.
9485                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &bs_update);
9486                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &as_update);
9487                 assert!(nodes[0].node.get_persistable_update_future().poll_is_complete());
9488                 assert!(nodes[1].node.get_persistable_update_future().poll_is_complete());
9489                 assert_ne!(nodes[0].node.list_channels()[0], node_a_chan_info);
9490                 assert_ne!(nodes[1].node.list_channels()[0], node_b_chan_info);
9491         }
9492
9493         #[test]
9494         fn test_keysend_dup_hash_partial_mpp() {
9495                 // Test that a keysend payment with a duplicate hash to an existing partial MPP payment fails as
9496                 // expected.
9497                 let chanmon_cfgs = create_chanmon_cfgs(2);
9498                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9499                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9500                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9501                 create_announced_chan_between_nodes(&nodes, 0, 1);
9502
9503                 // First, send a partial MPP payment.
9504                 let (route, our_payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100_000);
9505                 let mut mpp_route = route.clone();
9506                 mpp_route.paths.push(mpp_route.paths[0].clone());
9507
9508                 let payment_id = PaymentId([42; 32]);
9509                 // Use the utility function send_payment_along_path to send the payment with MPP data which
9510                 // indicates there are more HTLCs coming.
9511                 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.
9512                 let session_privs = nodes[0].node.test_add_new_pending_payment(our_payment_hash,
9513                         RecipientOnionFields::secret_only(payment_secret), payment_id, &mpp_route).unwrap();
9514                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[0], &our_payment_hash,
9515                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[0]).unwrap();
9516                 check_added_monitors!(nodes[0], 1);
9517                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9518                 assert_eq!(events.len(), 1);
9519                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), false, None);
9520
9521                 // Next, send a keysend payment with the same payment_hash and make sure it fails.
9522                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9523                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
9524                 check_added_monitors!(nodes[0], 1);
9525                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9526                 assert_eq!(events.len(), 1);
9527                 let ev = events.drain(..).next().unwrap();
9528                 let payment_event = SendEvent::from_event(ev);
9529                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9530                 check_added_monitors!(nodes[1], 0);
9531                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9532                 expect_pending_htlcs_forwardable!(nodes[1]);
9533                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
9534                 check_added_monitors!(nodes[1], 1);
9535                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9536                 assert!(updates.update_add_htlcs.is_empty());
9537                 assert!(updates.update_fulfill_htlcs.is_empty());
9538                 assert_eq!(updates.update_fail_htlcs.len(), 1);
9539                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9540                 assert!(updates.update_fee.is_none());
9541                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
9542                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
9543                 expect_payment_failed!(nodes[0], our_payment_hash, true);
9544
9545                 // Send the second half of the original MPP payment.
9546                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[1], &our_payment_hash,
9547                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[1]).unwrap();
9548                 check_added_monitors!(nodes[0], 1);
9549                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9550                 assert_eq!(events.len(), 1);
9551                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), true, None);
9552
9553                 // Claim the full MPP payment. Note that we can't use a test utility like
9554                 // claim_funds_along_route because the ordering of the messages causes the second half of the
9555                 // payment to be put in the holding cell, which confuses the test utilities. So we exchange the
9556                 // lightning messages manually.
9557                 nodes[1].node.claim_funds(payment_preimage);
9558                 expect_payment_claimed!(nodes[1], our_payment_hash, 200_000);
9559                 check_added_monitors!(nodes[1], 2);
9560
9561                 let bs_first_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9562                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_first_updates.update_fulfill_htlcs[0]);
9563                 expect_payment_sent(&nodes[0], payment_preimage, None, false, false);
9564                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_first_updates.commitment_signed);
9565                 check_added_monitors!(nodes[0], 1);
9566                 let (as_first_raa, as_first_cs) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
9567                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_first_raa);
9568                 check_added_monitors!(nodes[1], 1);
9569                 let bs_second_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9570                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_first_cs);
9571                 check_added_monitors!(nodes[1], 1);
9572                 let bs_first_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
9573                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_second_updates.update_fulfill_htlcs[0]);
9574                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_second_updates.commitment_signed);
9575                 check_added_monitors!(nodes[0], 1);
9576                 let as_second_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
9577                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_first_raa);
9578                 let as_second_updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
9579                 check_added_monitors!(nodes[0], 1);
9580                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_second_raa);
9581                 check_added_monitors!(nodes[1], 1);
9582                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_second_updates.commitment_signed);
9583                 check_added_monitors!(nodes[1], 1);
9584                 let bs_third_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
9585                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_third_raa);
9586                 check_added_monitors!(nodes[0], 1);
9587
9588                 // Note that successful MPP payments will generate a single PaymentSent event upon the first
9589                 // path's success and a PaymentPathSuccessful event for each path's success.
9590                 let events = nodes[0].node.get_and_clear_pending_events();
9591                 assert_eq!(events.len(), 2);
9592                 match events[0] {
9593                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
9594                                 assert_eq!(payment_id, *actual_payment_id);
9595                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
9596                                 assert_eq!(route.paths[0], *path);
9597                         },
9598                         _ => panic!("Unexpected event"),
9599                 }
9600                 match events[1] {
9601                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
9602                                 assert_eq!(payment_id, *actual_payment_id);
9603                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
9604                                 assert_eq!(route.paths[0], *path);
9605                         },
9606                         _ => panic!("Unexpected event"),
9607                 }
9608         }
9609
9610         #[test]
9611         fn test_keysend_dup_payment_hash() {
9612                 do_test_keysend_dup_payment_hash(false);
9613                 do_test_keysend_dup_payment_hash(true);
9614         }
9615
9616         fn do_test_keysend_dup_payment_hash(accept_mpp_keysend: bool) {
9617                 // (1): Test that a keysend payment with a duplicate payment hash to an existing pending
9618                 //      outbound regular payment fails as expected.
9619                 // (2): Test that a regular payment with a duplicate payment hash to an existing keysend payment
9620                 //      fails as expected.
9621                 // (3): Test that a keysend payment with a duplicate payment hash to an existing keysend
9622                 //      payment fails as expected. When `accept_mpp_keysend` is false, this tests that we
9623                 //      reject MPP keysend payments, since in this case where the payment has no payment
9624                 //      secret, a keysend payment with a duplicate hash is basically an MPP keysend. If
9625                 //      `accept_mpp_keysend` is true, this tests that we only accept MPP keysends with
9626                 //      payment secrets and reject otherwise.
9627                 let chanmon_cfgs = create_chanmon_cfgs(2);
9628                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9629                 let mut mpp_keysend_cfg = test_default_channel_config();
9630                 mpp_keysend_cfg.accept_mpp_keysend = accept_mpp_keysend;
9631                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(mpp_keysend_cfg)]);
9632                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9633                 create_announced_chan_between_nodes(&nodes, 0, 1);
9634                 let scorer = test_utils::TestScorer::new();
9635                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
9636
9637                 // To start (1), send a regular payment but don't claim it.
9638                 let expected_route = [&nodes[1]];
9639                 let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &expected_route, 100_000);
9640
9641                 // Next, attempt a keysend payment and make sure it fails.
9642                 let route_params = RouteParameters {
9643                         payment_params: PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(), TEST_FINAL_CLTV, false),
9644                         final_value_msat: 100_000,
9645                 };
9646                 let route = find_route(
9647                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
9648                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
9649                 ).unwrap();
9650                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9651                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
9652                 check_added_monitors!(nodes[0], 1);
9653                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9654                 assert_eq!(events.len(), 1);
9655                 let ev = events.drain(..).next().unwrap();
9656                 let payment_event = SendEvent::from_event(ev);
9657                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9658                 check_added_monitors!(nodes[1], 0);
9659                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9660                 // We have to forward pending HTLCs twice - once tries to forward the payment forward (and
9661                 // fails), the second will process the resulting failure and fail the HTLC backward
9662                 expect_pending_htlcs_forwardable!(nodes[1]);
9663                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
9664                 check_added_monitors!(nodes[1], 1);
9665                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9666                 assert!(updates.update_add_htlcs.is_empty());
9667                 assert!(updates.update_fulfill_htlcs.is_empty());
9668                 assert_eq!(updates.update_fail_htlcs.len(), 1);
9669                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9670                 assert!(updates.update_fee.is_none());
9671                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
9672                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
9673                 expect_payment_failed!(nodes[0], payment_hash, true);
9674
9675                 // Finally, claim the original payment.
9676                 claim_payment(&nodes[0], &expected_route, payment_preimage);
9677
9678                 // To start (2), send a keysend payment but don't claim it.
9679                 let payment_preimage = PaymentPreimage([42; 32]);
9680                 let route = find_route(
9681                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
9682                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
9683                 ).unwrap();
9684                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9685                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
9686                 check_added_monitors!(nodes[0], 1);
9687                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9688                 assert_eq!(events.len(), 1);
9689                 let event = events.pop().unwrap();
9690                 let path = vec![&nodes[1]];
9691                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
9692
9693                 // Next, attempt a regular payment and make sure it fails.
9694                 let payment_secret = PaymentSecret([43; 32]);
9695                 nodes[0].node.send_payment_with_route(&route, payment_hash,
9696                         RecipientOnionFields::secret_only(payment_secret), PaymentId(payment_hash.0)).unwrap();
9697                 check_added_monitors!(nodes[0], 1);
9698                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9699                 assert_eq!(events.len(), 1);
9700                 let ev = events.drain(..).next().unwrap();
9701                 let payment_event = SendEvent::from_event(ev);
9702                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9703                 check_added_monitors!(nodes[1], 0);
9704                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9705                 expect_pending_htlcs_forwardable!(nodes[1]);
9706                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
9707                 check_added_monitors!(nodes[1], 1);
9708                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9709                 assert!(updates.update_add_htlcs.is_empty());
9710                 assert!(updates.update_fulfill_htlcs.is_empty());
9711                 assert_eq!(updates.update_fail_htlcs.len(), 1);
9712                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9713                 assert!(updates.update_fee.is_none());
9714                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
9715                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
9716                 expect_payment_failed!(nodes[0], payment_hash, true);
9717
9718                 // Finally, succeed the keysend payment.
9719                 claim_payment(&nodes[0], &expected_route, payment_preimage);
9720
9721                 // To start (3), send a keysend payment but don't claim it.
9722                 let payment_id_1 = PaymentId([44; 32]);
9723                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9724                         RecipientOnionFields::spontaneous_empty(), payment_id_1).unwrap();
9725                 check_added_monitors!(nodes[0], 1);
9726                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9727                 assert_eq!(events.len(), 1);
9728                 let event = events.pop().unwrap();
9729                 let path = vec![&nodes[1]];
9730                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
9731
9732                 // Next, attempt a keysend payment and make sure it fails.
9733                 let route_params = RouteParameters {
9734                         payment_params: PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(), TEST_FINAL_CLTV, false),
9735                         final_value_msat: 100_000,
9736                 };
9737                 let route = find_route(
9738                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
9739                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
9740                 ).unwrap();
9741                 let payment_id_2 = PaymentId([45; 32]);
9742                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9743                         RecipientOnionFields::spontaneous_empty(), payment_id_2).unwrap();
9744                 check_added_monitors!(nodes[0], 1);
9745                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9746                 assert_eq!(events.len(), 1);
9747                 let ev = events.drain(..).next().unwrap();
9748                 let payment_event = SendEvent::from_event(ev);
9749                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9750                 check_added_monitors!(nodes[1], 0);
9751                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9752                 expect_pending_htlcs_forwardable!(nodes[1]);
9753                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
9754                 check_added_monitors!(nodes[1], 1);
9755                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9756                 assert!(updates.update_add_htlcs.is_empty());
9757                 assert!(updates.update_fulfill_htlcs.is_empty());
9758                 assert_eq!(updates.update_fail_htlcs.len(), 1);
9759                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9760                 assert!(updates.update_fee.is_none());
9761                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
9762                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
9763                 expect_payment_failed!(nodes[0], payment_hash, true);
9764
9765                 // Finally, claim the original payment.
9766                 claim_payment(&nodes[0], &expected_route, payment_preimage);
9767         }
9768
9769         #[test]
9770         fn test_keysend_hash_mismatch() {
9771                 // Test that if we receive a keysend `update_add_htlc` msg, we fail as expected if the keysend
9772                 // preimage doesn't match the msg's payment hash.
9773                 let chanmon_cfgs = create_chanmon_cfgs(2);
9774                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9775                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9776                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9777
9778                 let payer_pubkey = nodes[0].node.get_our_node_id();
9779                 let payee_pubkey = nodes[1].node.get_our_node_id();
9780
9781                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
9782                 let route_params = RouteParameters {
9783                         payment_params: PaymentParameters::for_keysend(payee_pubkey, 40, false),
9784                         final_value_msat: 10_000,
9785                 };
9786                 let network_graph = nodes[0].network_graph.clone();
9787                 let first_hops = nodes[0].node.list_usable_channels();
9788                 let scorer = test_utils::TestScorer::new();
9789                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
9790                 let route = find_route(
9791                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
9792                         nodes[0].logger, &scorer, &(), &random_seed_bytes
9793                 ).unwrap();
9794
9795                 let test_preimage = PaymentPreimage([42; 32]);
9796                 let mismatch_payment_hash = PaymentHash([43; 32]);
9797                 let session_privs = nodes[0].node.test_add_new_pending_payment(mismatch_payment_hash,
9798                         RecipientOnionFields::spontaneous_empty(), PaymentId(mismatch_payment_hash.0), &route).unwrap();
9799                 nodes[0].node.test_send_payment_internal(&route, mismatch_payment_hash,
9800                         RecipientOnionFields::spontaneous_empty(), Some(test_preimage), PaymentId(mismatch_payment_hash.0), None, session_privs).unwrap();
9801                 check_added_monitors!(nodes[0], 1);
9802
9803                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
9804                 assert_eq!(updates.update_add_htlcs.len(), 1);
9805                 assert!(updates.update_fulfill_htlcs.is_empty());
9806                 assert!(updates.update_fail_htlcs.is_empty());
9807                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9808                 assert!(updates.update_fee.is_none());
9809                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
9810
9811                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "Payment preimage didn't match payment hash", 1);
9812         }
9813
9814         #[test]
9815         fn test_keysend_msg_with_secret_err() {
9816                 // Test that we error as expected if we receive a keysend payment that includes a payment
9817                 // secret when we don't support MPP keysend.
9818                 let mut reject_mpp_keysend_cfg = test_default_channel_config();
9819                 reject_mpp_keysend_cfg.accept_mpp_keysend = false;
9820                 let chanmon_cfgs = create_chanmon_cfgs(2);
9821                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9822                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(reject_mpp_keysend_cfg)]);
9823                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9824
9825                 let payer_pubkey = nodes[0].node.get_our_node_id();
9826                 let payee_pubkey = nodes[1].node.get_our_node_id();
9827
9828                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
9829                 let route_params = RouteParameters {
9830                         payment_params: PaymentParameters::for_keysend(payee_pubkey, 40, false),
9831                         final_value_msat: 10_000,
9832                 };
9833                 let network_graph = nodes[0].network_graph.clone();
9834                 let first_hops = nodes[0].node.list_usable_channels();
9835                 let scorer = test_utils::TestScorer::new();
9836                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
9837                 let route = find_route(
9838                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
9839                         nodes[0].logger, &scorer, &(), &random_seed_bytes
9840                 ).unwrap();
9841
9842                 let test_preimage = PaymentPreimage([42; 32]);
9843                 let test_secret = PaymentSecret([43; 32]);
9844                 let payment_hash = PaymentHash(Sha256::hash(&test_preimage.0).into_inner());
9845                 let session_privs = nodes[0].node.test_add_new_pending_payment(payment_hash,
9846                         RecipientOnionFields::secret_only(test_secret), PaymentId(payment_hash.0), &route).unwrap();
9847                 nodes[0].node.test_send_payment_internal(&route, payment_hash,
9848                         RecipientOnionFields::secret_only(test_secret), Some(test_preimage),
9849                         PaymentId(payment_hash.0), None, session_privs).unwrap();
9850                 check_added_monitors!(nodes[0], 1);
9851
9852                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
9853                 assert_eq!(updates.update_add_htlcs.len(), 1);
9854                 assert!(updates.update_fulfill_htlcs.is_empty());
9855                 assert!(updates.update_fail_htlcs.is_empty());
9856                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9857                 assert!(updates.update_fee.is_none());
9858                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
9859
9860                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "We don't support MPP keysend payments", 1);
9861         }
9862
9863         #[test]
9864         fn test_multi_hop_missing_secret() {
9865                 let chanmon_cfgs = create_chanmon_cfgs(4);
9866                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
9867                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
9868                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
9869
9870                 let chan_1_id = create_announced_chan_between_nodes(&nodes, 0, 1).0.contents.short_channel_id;
9871                 let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2).0.contents.short_channel_id;
9872                 let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3).0.contents.short_channel_id;
9873                 let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3).0.contents.short_channel_id;
9874
9875                 // Marshall an MPP route.
9876                 let (mut route, payment_hash, _, _) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
9877                 let path = route.paths[0].clone();
9878                 route.paths.push(path);
9879                 route.paths[0].hops[0].pubkey = nodes[1].node.get_our_node_id();
9880                 route.paths[0].hops[0].short_channel_id = chan_1_id;
9881                 route.paths[0].hops[1].short_channel_id = chan_3_id;
9882                 route.paths[1].hops[0].pubkey = nodes[2].node.get_our_node_id();
9883                 route.paths[1].hops[0].short_channel_id = chan_2_id;
9884                 route.paths[1].hops[1].short_channel_id = chan_4_id;
9885
9886                 match nodes[0].node.send_payment_with_route(&route, payment_hash,
9887                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_hash.0))
9888                 .unwrap_err() {
9889                         PaymentSendFailure::ParameterError(APIError::APIMisuseError { ref err }) => {
9890                                 assert!(regex::Regex::new(r"Payment secret is required for multi-path payments").unwrap().is_match(err))
9891                         },
9892                         _ => panic!("unexpected error")
9893                 }
9894         }
9895
9896         #[test]
9897         fn test_drop_disconnected_peers_when_removing_channels() {
9898                 let chanmon_cfgs = create_chanmon_cfgs(2);
9899                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9900                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9901                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9902
9903                 let chan = create_announced_chan_between_nodes(&nodes, 0, 1);
9904
9905                 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
9906                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
9907
9908                 nodes[0].node.force_close_broadcasting_latest_txn(&chan.2, &nodes[1].node.get_our_node_id()).unwrap();
9909                 check_closed_broadcast!(nodes[0], true);
9910                 check_added_monitors!(nodes[0], 1);
9911                 check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed, [nodes[1].node.get_our_node_id()], 100000);
9912
9913                 {
9914                         // Assert that nodes[1] is awaiting removal for nodes[0] once nodes[1] has been
9915                         // disconnected and the channel between has been force closed.
9916                         let nodes_0_per_peer_state = nodes[0].node.per_peer_state.read().unwrap();
9917                         // Assert that nodes[1] isn't removed before `timer_tick_occurred` has been executed.
9918                         assert_eq!(nodes_0_per_peer_state.len(), 1);
9919                         assert!(nodes_0_per_peer_state.get(&nodes[1].node.get_our_node_id()).is_some());
9920                 }
9921
9922                 nodes[0].node.timer_tick_occurred();
9923
9924                 {
9925                         // Assert that nodes[1] has now been removed.
9926                         assert_eq!(nodes[0].node.per_peer_state.read().unwrap().len(), 0);
9927                 }
9928         }
9929
9930         #[test]
9931         fn bad_inbound_payment_hash() {
9932                 // Add coverage for checking that a user-provided payment hash matches the payment secret.
9933                 let chanmon_cfgs = create_chanmon_cfgs(2);
9934                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9935                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9936                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9937
9938                 let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[0]);
9939                 let payment_data = msgs::FinalOnionHopData {
9940                         payment_secret,
9941                         total_msat: 100_000,
9942                 };
9943
9944                 // Ensure that if the payment hash given to `inbound_payment::verify` differs from the original,
9945                 // payment verification fails as expected.
9946                 let mut bad_payment_hash = payment_hash.clone();
9947                 bad_payment_hash.0[0] += 1;
9948                 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) {
9949                         Ok(_) => panic!("Unexpected ok"),
9950                         Err(()) => {
9951                                 nodes[0].logger.assert_log_contains("lightning::ln::inbound_payment", "Failing HTLC with user-generated payment_hash", 1);
9952                         }
9953                 }
9954
9955                 // Check that using the original payment hash succeeds.
9956                 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());
9957         }
9958
9959         #[test]
9960         fn test_id_to_peer_coverage() {
9961                 // Test that the `ChannelManager:id_to_peer` contains channels which have been assigned
9962                 // a `channel_id` (i.e. have had the funding tx created), and that they are removed once
9963                 // the channel is successfully closed.
9964                 let chanmon_cfgs = create_chanmon_cfgs(2);
9965                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9966                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9967                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9968
9969                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1_000_000, 500_000_000, 42, None).unwrap();
9970                 let open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9971                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel);
9972                 let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
9973                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
9974
9975                 let (temporary_channel_id, tx, _funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 1_000_000, 42);
9976                 let channel_id = &tx.txid().into_inner();
9977                 {
9978                         // Ensure that the `id_to_peer` map is empty until either party has received the
9979                         // funding transaction, and have the real `channel_id`.
9980                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
9981                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
9982                 }
9983
9984                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
9985                 {
9986                         // Assert that `nodes[0]`'s `id_to_peer` map is populated with the channel as soon as
9987                         // as it has the funding transaction.
9988                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
9989                         assert_eq!(nodes_0_lock.len(), 1);
9990                         assert!(nodes_0_lock.contains_key(channel_id));
9991                 }
9992
9993                 assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
9994
9995                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
9996
9997                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
9998                 {
9999                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10000                         assert_eq!(nodes_0_lock.len(), 1);
10001                         assert!(nodes_0_lock.contains_key(channel_id));
10002                 }
10003                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
10004
10005                 {
10006                         // Assert that `nodes[1]`'s `id_to_peer` map is populated with the channel as soon as
10007                         // as it has the funding transaction.
10008                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10009                         assert_eq!(nodes_1_lock.len(), 1);
10010                         assert!(nodes_1_lock.contains_key(channel_id));
10011                 }
10012                 check_added_monitors!(nodes[1], 1);
10013                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
10014                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
10015                 check_added_monitors!(nodes[0], 1);
10016                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
10017                 let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
10018                 let (announcement, nodes_0_update, nodes_1_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
10019                 update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &nodes_0_update, &nodes_1_update);
10020
10021                 nodes[0].node.close_channel(channel_id, &nodes[1].node.get_our_node_id()).unwrap();
10022                 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()));
10023                 let nodes_1_shutdown = get_event_msg!(nodes[1], MessageSendEvent::SendShutdown, nodes[0].node.get_our_node_id());
10024                 nodes[0].node.handle_shutdown(&nodes[1].node.get_our_node_id(), &nodes_1_shutdown);
10025
10026                 let closing_signed_node_0 = get_event_msg!(nodes[0], MessageSendEvent::SendClosingSigned, nodes[1].node.get_our_node_id());
10027                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0);
10028                 {
10029                         // Assert that the channel is kept in the `id_to_peer` map for both nodes until the
10030                         // channel can be fully closed by both parties (i.e. no outstanding htlcs exists, the
10031                         // fee for the closing transaction has been negotiated and the parties has the other
10032                         // party's signature for the fee negotiated closing transaction.)
10033                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10034                         assert_eq!(nodes_0_lock.len(), 1);
10035                         assert!(nodes_0_lock.contains_key(channel_id));
10036                 }
10037
10038                 {
10039                         // At this stage, `nodes[1]` has proposed a fee for the closing transaction in the
10040                         // `handle_closing_signed` call above. As `nodes[1]` has not yet received the signature
10041                         // from `nodes[0]` for the closing transaction with the proposed fee, the channel is
10042                         // kept in the `nodes[1]`'s `id_to_peer` map.
10043                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10044                         assert_eq!(nodes_1_lock.len(), 1);
10045                         assert!(nodes_1_lock.contains_key(channel_id));
10046                 }
10047
10048                 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()));
10049                 {
10050                         // `nodes[0]` accepts `nodes[1]`'s proposed fee for the closing transaction, and
10051                         // therefore has all it needs to fully close the channel (both signatures for the
10052                         // closing transaction).
10053                         // Assert that the channel is removed from `nodes[0]`'s `id_to_peer` map as it can be
10054                         // fully closed by `nodes[0]`.
10055                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
10056
10057                         // Assert that the channel is still in `nodes[1]`'s  `id_to_peer` map, as `nodes[1]`
10058                         // doesn't have `nodes[0]`'s signature for the closing transaction yet.
10059                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10060                         assert_eq!(nodes_1_lock.len(), 1);
10061                         assert!(nodes_1_lock.contains_key(channel_id));
10062                 }
10063
10064                 let (_nodes_0_update, closing_signed_node_0) = get_closing_signed_broadcast!(nodes[0].node, nodes[1].node.get_our_node_id());
10065
10066                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0.unwrap());
10067                 {
10068                         // Assert that the channel has now been removed from both parties `id_to_peer` map once
10069                         // they both have everything required to fully close the channel.
10070                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10071                 }
10072                 let (_nodes_1_update, _none) = get_closing_signed_broadcast!(nodes[1].node, nodes[0].node.get_our_node_id());
10073
10074                 check_closed_event!(nodes[0], 1, ClosureReason::CooperativeClosure, [nodes[1].node.get_our_node_id()], 1000000);
10075                 check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure, [nodes[0].node.get_our_node_id()], 1000000);
10076         }
10077
10078         fn check_not_connected_to_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
10079                 let expected_message = format!("Not connected to node: {}", expected_public_key);
10080                 check_api_error_message(expected_message, res_err)
10081         }
10082
10083         fn check_unkown_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
10084                 let expected_message = format!("Can't find a peer matching the passed counterparty node_id {}", expected_public_key);
10085                 check_api_error_message(expected_message, res_err)
10086         }
10087
10088         fn check_api_error_message<T>(expected_err_message: String, res_err: Result<T, APIError>) {
10089                 match res_err {
10090                         Err(APIError::APIMisuseError { err }) => {
10091                                 assert_eq!(err, expected_err_message);
10092                         },
10093                         Err(APIError::ChannelUnavailable { err }) => {
10094                                 assert_eq!(err, expected_err_message);
10095                         },
10096                         Ok(_) => panic!("Unexpected Ok"),
10097                         Err(_) => panic!("Unexpected Error"),
10098                 }
10099         }
10100
10101         #[test]
10102         fn test_api_calls_with_unkown_counterparty_node() {
10103                 // Tests that our API functions that expects a `counterparty_node_id` as input, behaves as
10104                 // expected if the `counterparty_node_id` is an unkown peer in the
10105                 // `ChannelManager::per_peer_state` map.
10106                 let chanmon_cfg = create_chanmon_cfgs(2);
10107                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
10108                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[None, None]);
10109                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
10110
10111                 // Dummy values
10112                 let channel_id = [4; 32];
10113                 let unkown_public_key = PublicKey::from_secret_key(&Secp256k1::signing_only(), &SecretKey::from_slice(&[42; 32]).unwrap());
10114                 let intercept_id = InterceptId([0; 32]);
10115
10116                 // Test the API functions.
10117                 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);
10118
10119                 check_unkown_peer_error(nodes[0].node.accept_inbound_channel(&channel_id, &unkown_public_key, 42), unkown_public_key);
10120
10121                 check_unkown_peer_error(nodes[0].node.close_channel(&channel_id, &unkown_public_key), unkown_public_key);
10122
10123                 check_unkown_peer_error(nodes[0].node.force_close_broadcasting_latest_txn(&channel_id, &unkown_public_key), unkown_public_key);
10124
10125                 check_unkown_peer_error(nodes[0].node.force_close_without_broadcasting_txn(&channel_id, &unkown_public_key), unkown_public_key);
10126
10127                 check_unkown_peer_error(nodes[0].node.forward_intercepted_htlc(intercept_id, &channel_id, unkown_public_key, 1_000_000), unkown_public_key);
10128
10129                 check_unkown_peer_error(nodes[0].node.update_channel_config(&unkown_public_key, &[channel_id], &ChannelConfig::default()), unkown_public_key);
10130         }
10131
10132         #[test]
10133         fn test_connection_limiting() {
10134                 // Test that we limit un-channel'd peers and un-funded channels properly.
10135                 let chanmon_cfgs = create_chanmon_cfgs(2);
10136                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10137                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10138                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10139
10140                 // Note that create_network connects the nodes together for us
10141
10142                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10143                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10144
10145                 let mut funding_tx = None;
10146                 for idx in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
10147                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10148                         let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10149
10150                         if idx == 0 {
10151                                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
10152                                 let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100_000, 42);
10153                                 funding_tx = Some(tx.clone());
10154                                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx).unwrap();
10155                                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
10156
10157                                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
10158                                 check_added_monitors!(nodes[1], 1);
10159                                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
10160
10161                                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
10162
10163                                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
10164                                 check_added_monitors!(nodes[0], 1);
10165                                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
10166                         }
10167                         open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
10168                 }
10169
10170                 // A MAX_UNFUNDED_CHANS_PER_PEER + 1 channel will be summarily rejected
10171                 open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
10172                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10173                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10174                         open_channel_msg.temporary_channel_id);
10175
10176                 // Further, because all of our channels with nodes[0] are inbound, and none of them funded,
10177                 // it doesn't count as a "protected" peer, i.e. it counts towards the MAX_NO_CHANNEL_PEERS
10178                 // limit.
10179                 let mut peer_pks = Vec::with_capacity(super::MAX_NO_CHANNEL_PEERS);
10180                 for _ in 1..super::MAX_NO_CHANNEL_PEERS {
10181                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10182                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10183                         peer_pks.push(random_pk);
10184                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
10185                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10186                         }, true).unwrap();
10187                 }
10188                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10189                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10190                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10191                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10192                 }, true).unwrap_err();
10193
10194                 // Also importantly, because nodes[0] isn't "protected", we will refuse a reconnection from
10195                 // them if we have too many un-channel'd peers.
10196                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10197                 let chan_closed_events = nodes[1].node.get_and_clear_pending_events();
10198                 assert_eq!(chan_closed_events.len(), super::MAX_UNFUNDED_CHANS_PER_PEER - 1);
10199                 for ev in chan_closed_events {
10200                         if let Event::ChannelClosed { .. } = ev { } else { panic!(); }
10201                 }
10202                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10203                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10204                 }, true).unwrap();
10205                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10206                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10207                 }, true).unwrap_err();
10208
10209                 // but of course if the connection is outbound its allowed...
10210                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10211                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10212                 }, false).unwrap();
10213                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10214
10215                 // Now nodes[0] is disconnected but still has a pending, un-funded channel lying around.
10216                 // Even though we accept one more connection from new peers, we won't actually let them
10217                 // open channels.
10218                 assert!(peer_pks.len() > super::MAX_UNFUNDED_CHANNEL_PEERS - 1);
10219                 for i in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
10220                         nodes[1].node.handle_open_channel(&peer_pks[i], &open_channel_msg);
10221                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, peer_pks[i]);
10222                         open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
10223                 }
10224                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10225                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
10226                         open_channel_msg.temporary_channel_id);
10227
10228                 // Of course, however, outbound channels are always allowed
10229                 nodes[1].node.create_channel(last_random_pk, 100_000, 0, 42, None).unwrap();
10230                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, last_random_pk);
10231
10232                 // If we fund the first channel, nodes[0] has a live on-chain channel with us, it is now
10233                 // "protected" and can connect again.
10234                 mine_transaction(&nodes[1], funding_tx.as_ref().unwrap());
10235                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10236                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10237                 }, true).unwrap();
10238                 get_event_msg!(nodes[1], MessageSendEvent::SendChannelReestablish, nodes[0].node.get_our_node_id());
10239
10240                 // Further, because the first channel was funded, we can open another channel with
10241                 // last_random_pk.
10242                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10243                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
10244         }
10245
10246         #[test]
10247         fn test_outbound_chans_unlimited() {
10248                 // Test that we never refuse an outbound channel even if a peer is unfuned-channel-limited
10249                 let chanmon_cfgs = create_chanmon_cfgs(2);
10250                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10251                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10252                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10253
10254                 // Note that create_network connects the nodes together for us
10255
10256                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10257                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10258
10259                 for _ in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
10260                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10261                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10262                         open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
10263                 }
10264
10265                 // Once we have MAX_UNFUNDED_CHANS_PER_PEER unfunded channels, new inbound channels will be
10266                 // rejected.
10267                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10268                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10269                         open_channel_msg.temporary_channel_id);
10270
10271                 // but we can still open an outbound channel.
10272                 nodes[1].node.create_channel(nodes[0].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10273                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
10274
10275                 // but even with such an outbound channel, additional inbound channels will still fail.
10276                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10277                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10278                         open_channel_msg.temporary_channel_id);
10279         }
10280
10281         #[test]
10282         fn test_0conf_limiting() {
10283                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
10284                 // flag set and (sometimes) accept channels as 0conf.
10285                 let chanmon_cfgs = create_chanmon_cfgs(2);
10286                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10287                 let mut settings = test_default_channel_config();
10288                 settings.manually_accept_inbound_channels = true;
10289                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(settings)]);
10290                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10291
10292                 // Note that create_network connects the nodes together for us
10293
10294                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10295                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10296
10297                 // First, get us up to MAX_UNFUNDED_CHANNEL_PEERS so we can test at the edge
10298                 for _ in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
10299                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10300                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10301                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
10302                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10303                         }, true).unwrap();
10304
10305                         nodes[1].node.handle_open_channel(&random_pk, &open_channel_msg);
10306                         let events = nodes[1].node.get_and_clear_pending_events();
10307                         match events[0] {
10308                                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
10309                                         nodes[1].node.accept_inbound_channel(&temporary_channel_id, &random_pk, 23).unwrap();
10310                                 }
10311                                 _ => panic!("Unexpected event"),
10312                         }
10313                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, random_pk);
10314                         open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
10315                 }
10316
10317                 // If we try to accept a channel from another peer non-0conf it will fail.
10318                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10319                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10320                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10321                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10322                 }, true).unwrap();
10323                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10324                 let events = nodes[1].node.get_and_clear_pending_events();
10325                 match events[0] {
10326                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10327                                 match nodes[1].node.accept_inbound_channel(&temporary_channel_id, &last_random_pk, 23) {
10328                                         Err(APIError::APIMisuseError { err }) =>
10329                                                 assert_eq!(err, "Too many peers with unfunded channels, refusing to accept new ones"),
10330                                         _ => panic!(),
10331                                 }
10332                         }
10333                         _ => panic!("Unexpected event"),
10334                 }
10335                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
10336                         open_channel_msg.temporary_channel_id);
10337
10338                 // ...however if we accept the same channel 0conf it should work just fine.
10339                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10340                 let events = nodes[1].node.get_and_clear_pending_events();
10341                 match events[0] {
10342                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10343                                 nodes[1].node.accept_inbound_channel_from_trusted_peer_0conf(&temporary_channel_id, &last_random_pk, 23).unwrap();
10344                         }
10345                         _ => panic!("Unexpected event"),
10346                 }
10347                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
10348         }
10349
10350         #[test]
10351         fn reject_excessively_underpaying_htlcs() {
10352                 let chanmon_cfg = create_chanmon_cfgs(1);
10353                 let node_cfg = create_node_cfgs(1, &chanmon_cfg);
10354                 let node_chanmgr = create_node_chanmgrs(1, &node_cfg, &[None]);
10355                 let node = create_network(1, &node_cfg, &node_chanmgr);
10356                 let sender_intended_amt_msat = 100;
10357                 let extra_fee_msat = 10;
10358                 let hop_data = msgs::InboundOnionPayload::Receive {
10359                         amt_msat: 100,
10360                         outgoing_cltv_value: 42,
10361                         payment_metadata: None,
10362                         keysend_preimage: None,
10363                         payment_data: Some(msgs::FinalOnionHopData {
10364                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
10365                         }),
10366                         custom_tlvs: Vec::new(),
10367                 };
10368                 // Check that if the amount we received + the penultimate hop extra fee is less than the sender
10369                 // intended amount, we fail the payment.
10370                 if let Err(crate::ln::channelmanager::InboundOnionErr { err_code, .. }) =
10371                         node[0].node.construct_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
10372                                 sender_intended_amt_msat - extra_fee_msat - 1, 42, None, true, Some(extra_fee_msat))
10373                 {
10374                         assert_eq!(err_code, 19);
10375                 } else { panic!(); }
10376
10377                 // If amt_received + extra_fee is equal to the sender intended amount, we're fine.
10378                 let hop_data = msgs::InboundOnionPayload::Receive { // This is the same payload as above, InboundOnionPayload doesn't implement Clone
10379                         amt_msat: 100,
10380                         outgoing_cltv_value: 42,
10381                         payment_metadata: None,
10382                         keysend_preimage: None,
10383                         payment_data: Some(msgs::FinalOnionHopData {
10384                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
10385                         }),
10386                         custom_tlvs: Vec::new(),
10387                 };
10388                 assert!(node[0].node.construct_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
10389                         sender_intended_amt_msat - extra_fee_msat, 42, None, true, Some(extra_fee_msat)).is_ok());
10390         }
10391
10392         #[test]
10393         fn test_inbound_anchors_manual_acceptance() {
10394                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
10395                 // flag set and (sometimes) accept channels as 0conf.
10396                 let mut anchors_cfg = test_default_channel_config();
10397                 anchors_cfg.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
10398
10399                 let mut anchors_manual_accept_cfg = anchors_cfg.clone();
10400                 anchors_manual_accept_cfg.manually_accept_inbound_channels = true;
10401
10402                 let chanmon_cfgs = create_chanmon_cfgs(3);
10403                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
10404                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs,
10405                         &[Some(anchors_cfg.clone()), Some(anchors_cfg.clone()), Some(anchors_manual_accept_cfg.clone())]);
10406                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
10407
10408                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10409                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10410
10411                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10412                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
10413                 let msg_events = nodes[1].node.get_and_clear_pending_msg_events();
10414                 match &msg_events[0] {
10415                         MessageSendEvent::HandleError { node_id, action } => {
10416                                 assert_eq!(*node_id, nodes[0].node.get_our_node_id());
10417                                 match action {
10418                                         ErrorAction::SendErrorMessage { msg } =>
10419                                                 assert_eq!(msg.data, "No channels with anchor outputs accepted".to_owned()),
10420                                         _ => panic!("Unexpected error action"),
10421                                 }
10422                         }
10423                         _ => panic!("Unexpected event"),
10424                 }
10425
10426                 nodes[2].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10427                 let events = nodes[2].node.get_and_clear_pending_events();
10428                 match events[0] {
10429                         Event::OpenChannelRequest { temporary_channel_id, .. } =>
10430                                 nodes[2].node.accept_inbound_channel(&temporary_channel_id, &nodes[0].node.get_our_node_id(), 23).unwrap(),
10431                         _ => panic!("Unexpected event"),
10432                 }
10433                 get_event_msg!(nodes[2], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10434         }
10435
10436         #[test]
10437         fn test_anchors_zero_fee_htlc_tx_fallback() {
10438                 // Tests that if both nodes support anchors, but the remote node does not want to accept
10439                 // anchor channels at the moment, an error it sent to the local node such that it can retry
10440                 // the channel without the anchors feature.
10441                 let chanmon_cfgs = create_chanmon_cfgs(2);
10442                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10443                 let mut anchors_config = test_default_channel_config();
10444                 anchors_config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
10445                 anchors_config.manually_accept_inbound_channels = true;
10446                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(anchors_config.clone()), Some(anchors_config.clone())]);
10447                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10448
10449                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 0, None).unwrap();
10450                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10451                 assert!(open_channel_msg.channel_type.as_ref().unwrap().supports_anchors_zero_fee_htlc_tx());
10452
10453                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10454                 let events = nodes[1].node.get_and_clear_pending_events();
10455                 match events[0] {
10456                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10457                                 nodes[1].node.force_close_broadcasting_latest_txn(&temporary_channel_id, &nodes[0].node.get_our_node_id()).unwrap();
10458                         }
10459                         _ => panic!("Unexpected event"),
10460                 }
10461
10462                 let error_msg = get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id());
10463                 nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &error_msg);
10464
10465                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10466                 assert!(!open_channel_msg.channel_type.unwrap().supports_anchors_zero_fee_htlc_tx());
10467
10468                 // Since nodes[1] should not have accepted the channel, it should
10469                 // not have generated any events.
10470                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
10471         }
10472
10473         #[test]
10474         fn test_update_channel_config() {
10475                 let chanmon_cfg = create_chanmon_cfgs(2);
10476                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
10477                 let mut user_config = test_default_channel_config();
10478                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config), Some(user_config)]);
10479                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
10480                 let _ = create_announced_chan_between_nodes(&nodes, 0, 1);
10481                 let channel = &nodes[0].node.list_channels()[0];
10482
10483                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
10484                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10485                 assert_eq!(events.len(), 0);
10486
10487                 user_config.channel_config.forwarding_fee_base_msat += 10;
10488                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
10489                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_base_msat, user_config.channel_config.forwarding_fee_base_msat);
10490                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10491                 assert_eq!(events.len(), 1);
10492                 match &events[0] {
10493                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
10494                         _ => panic!("expected BroadcastChannelUpdate event"),
10495                 }
10496
10497                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate::default()).unwrap();
10498                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10499                 assert_eq!(events.len(), 0);
10500
10501                 let new_cltv_expiry_delta = user_config.channel_config.cltv_expiry_delta + 6;
10502                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
10503                         cltv_expiry_delta: Some(new_cltv_expiry_delta),
10504                         ..Default::default()
10505                 }).unwrap();
10506                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
10507                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10508                 assert_eq!(events.len(), 1);
10509                 match &events[0] {
10510                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
10511                         _ => panic!("expected BroadcastChannelUpdate event"),
10512                 }
10513
10514                 let new_fee = user_config.channel_config.forwarding_fee_proportional_millionths + 100;
10515                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
10516                         forwarding_fee_proportional_millionths: Some(new_fee),
10517                         ..Default::default()
10518                 }).unwrap();
10519                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
10520                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, new_fee);
10521                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10522                 assert_eq!(events.len(), 1);
10523                 match &events[0] {
10524                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
10525                         _ => panic!("expected BroadcastChannelUpdate event"),
10526                 }
10527
10528                 // If we provide a channel_id not associated with the peer, we should get an error and no updates
10529                 // should be applied to ensure update atomicity as specified in the API docs.
10530                 let bad_channel_id = [10; 32];
10531                 let current_fee = nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths;
10532                 let new_fee = current_fee + 100;
10533                 assert!(
10534                         matches!(
10535                                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id, bad_channel_id], &ChannelConfigUpdate {
10536                                         forwarding_fee_proportional_millionths: Some(new_fee),
10537                                         ..Default::default()
10538                                 }),
10539                                 Err(APIError::ChannelUnavailable { err: _ }),
10540                         )
10541                 );
10542                 // Check that the fee hasn't changed for the channel that exists.
10543                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, current_fee);
10544                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10545                 assert_eq!(events.len(), 0);
10546         }
10547 }
10548
10549 #[cfg(ldk_bench)]
10550 pub mod bench {
10551         use crate::chain::Listen;
10552         use crate::chain::chainmonitor::{ChainMonitor, Persist};
10553         use crate::sign::{KeysManager, InMemorySigner};
10554         use crate::events::{Event, MessageSendEvent, MessageSendEventsProvider};
10555         use crate::ln::channelmanager::{BestBlock, ChainParameters, ChannelManager, PaymentHash, PaymentPreimage, PaymentId, RecipientOnionFields, Retry};
10556         use crate::ln::functional_test_utils::*;
10557         use crate::ln::msgs::{ChannelMessageHandler, Init};
10558         use crate::routing::gossip::NetworkGraph;
10559         use crate::routing::router::{PaymentParameters, RouteParameters};
10560         use crate::util::test_utils;
10561         use crate::util::config::{UserConfig, MaxDustHTLCExposure};
10562
10563         use bitcoin::hashes::Hash;
10564         use bitcoin::hashes::sha256::Hash as Sha256;
10565         use bitcoin::{Block, BlockHeader, PackedLockTime, Transaction, TxMerkleNode, TxOut};
10566
10567         use crate::sync::{Arc, Mutex};
10568
10569         use criterion::Criterion;
10570
10571         type Manager<'a, P> = ChannelManager<
10572                 &'a ChainMonitor<InMemorySigner, &'a test_utils::TestChainSource,
10573                         &'a test_utils::TestBroadcaster, &'a test_utils::TestFeeEstimator,
10574                         &'a test_utils::TestLogger, &'a P>,
10575                 &'a test_utils::TestBroadcaster, &'a KeysManager, &'a KeysManager, &'a KeysManager,
10576                 &'a test_utils::TestFeeEstimator, &'a test_utils::TestRouter<'a>,
10577                 &'a test_utils::TestLogger>;
10578
10579         struct ANodeHolder<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> {
10580                 node: &'node_cfg Manager<'chan_mon_cfg, P>,
10581         }
10582         impl<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> NodeHolder for ANodeHolder<'node_cfg, 'chan_mon_cfg, P> {
10583                 type CM = Manager<'chan_mon_cfg, P>;
10584                 #[inline]
10585                 fn node(&self) -> &Manager<'chan_mon_cfg, P> { self.node }
10586                 #[inline]
10587                 fn chain_monitor(&self) -> Option<&test_utils::TestChainMonitor> { None }
10588         }
10589
10590         pub fn bench_sends(bench: &mut Criterion) {
10591                 bench_two_sends(bench, "bench_sends", test_utils::TestPersister::new(), test_utils::TestPersister::new());
10592         }
10593
10594         pub fn bench_two_sends<P: Persist<InMemorySigner>>(bench: &mut Criterion, bench_name: &str, persister_a: P, persister_b: P) {
10595                 // Do a simple benchmark of sending a payment back and forth between two nodes.
10596                 // Note that this is unrealistic as each payment send will require at least two fsync
10597                 // calls per node.
10598                 let network = bitcoin::Network::Testnet;
10599                 let genesis_block = bitcoin::blockdata::constants::genesis_block(network);
10600
10601                 let tx_broadcaster = test_utils::TestBroadcaster::new(network);
10602                 let fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
10603                 let logger_a = test_utils::TestLogger::with_id("node a".to_owned());
10604                 let scorer = Mutex::new(test_utils::TestScorer::new());
10605                 let router = test_utils::TestRouter::new(Arc::new(NetworkGraph::new(network, &logger_a)), &scorer);
10606
10607                 let mut config: UserConfig = Default::default();
10608                 config.channel_config.max_dust_htlc_exposure = MaxDustHTLCExposure::FeeRateMultiplier(5_000_000 / 253);
10609                 config.channel_handshake_config.minimum_depth = 1;
10610
10611                 let chain_monitor_a = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_a);
10612                 let seed_a = [1u8; 32];
10613                 let keys_manager_a = KeysManager::new(&seed_a, 42, 42);
10614                 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 {
10615                         network,
10616                         best_block: BestBlock::from_network(network),
10617                 }, genesis_block.header.time);
10618                 let node_a_holder = ANodeHolder { node: &node_a };
10619
10620                 let logger_b = test_utils::TestLogger::with_id("node a".to_owned());
10621                 let chain_monitor_b = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_b);
10622                 let seed_b = [2u8; 32];
10623                 let keys_manager_b = KeysManager::new(&seed_b, 42, 42);
10624                 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 {
10625                         network,
10626                         best_block: BestBlock::from_network(network),
10627                 }, genesis_block.header.time);
10628                 let node_b_holder = ANodeHolder { node: &node_b };
10629
10630                 node_a.peer_connected(&node_b.get_our_node_id(), &Init {
10631                         features: node_b.init_features(), networks: None, remote_network_address: None
10632                 }, true).unwrap();
10633                 node_b.peer_connected(&node_a.get_our_node_id(), &Init {
10634                         features: node_a.init_features(), networks: None, remote_network_address: None
10635                 }, false).unwrap();
10636                 node_a.create_channel(node_b.get_our_node_id(), 8_000_000, 100_000_000, 42, None).unwrap();
10637                 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()));
10638                 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()));
10639
10640                 let tx;
10641                 if let Event::FundingGenerationReady { temporary_channel_id, output_script, .. } = get_event!(node_a_holder, Event::FundingGenerationReady) {
10642                         tx = Transaction { version: 2, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: vec![TxOut {
10643                                 value: 8_000_000, script_pubkey: output_script,
10644                         }]};
10645                         node_a.funding_transaction_generated(&temporary_channel_id, &node_b.get_our_node_id(), tx.clone()).unwrap();
10646                 } else { panic!(); }
10647
10648                 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()));
10649                 let events_b = node_b.get_and_clear_pending_events();
10650                 assert_eq!(events_b.len(), 1);
10651                 match events_b[0] {
10652                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
10653                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
10654                         },
10655                         _ => panic!("Unexpected event"),
10656                 }
10657
10658                 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()));
10659                 let events_a = node_a.get_and_clear_pending_events();
10660                 assert_eq!(events_a.len(), 1);
10661                 match events_a[0] {
10662                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
10663                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
10664                         },
10665                         _ => panic!("Unexpected event"),
10666                 }
10667
10668                 assert_eq!(&tx_broadcaster.txn_broadcasted.lock().unwrap()[..], &[tx.clone()]);
10669
10670                 let block = create_dummy_block(BestBlock::from_network(network).block_hash(), 42, vec![tx]);
10671                 Listen::block_connected(&node_a, &block, 1);
10672                 Listen::block_connected(&node_b, &block, 1);
10673
10674                 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()));
10675                 let msg_events = node_a.get_and_clear_pending_msg_events();
10676                 assert_eq!(msg_events.len(), 2);
10677                 match msg_events[0] {
10678                         MessageSendEvent::SendChannelReady { ref msg, .. } => {
10679                                 node_b.handle_channel_ready(&node_a.get_our_node_id(), msg);
10680                                 get_event_msg!(node_b_holder, MessageSendEvent::SendChannelUpdate, node_a.get_our_node_id());
10681                         },
10682                         _ => panic!(),
10683                 }
10684                 match msg_events[1] {
10685                         MessageSendEvent::SendChannelUpdate { .. } => {},
10686                         _ => panic!(),
10687                 }
10688
10689                 let events_a = node_a.get_and_clear_pending_events();
10690                 assert_eq!(events_a.len(), 1);
10691                 match events_a[0] {
10692                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
10693                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
10694                         },
10695                         _ => panic!("Unexpected event"),
10696                 }
10697
10698                 let events_b = node_b.get_and_clear_pending_events();
10699                 assert_eq!(events_b.len(), 1);
10700                 match events_b[0] {
10701                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
10702                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
10703                         },
10704                         _ => panic!("Unexpected event"),
10705                 }
10706
10707                 let mut payment_count: u64 = 0;
10708                 macro_rules! send_payment {
10709                         ($node_a: expr, $node_b: expr) => {
10710                                 let payment_params = PaymentParameters::from_node_id($node_b.get_our_node_id(), TEST_FINAL_CLTV)
10711                                         .with_bolt11_features($node_b.invoice_features()).unwrap();
10712                                 let mut payment_preimage = PaymentPreimage([0; 32]);
10713                                 payment_preimage.0[0..8].copy_from_slice(&payment_count.to_le_bytes());
10714                                 payment_count += 1;
10715                                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner());
10716                                 let payment_secret = $node_b.create_inbound_payment_for_hash(payment_hash, None, 7200, None).unwrap();
10717
10718                                 $node_a.send_payment(payment_hash, RecipientOnionFields::secret_only(payment_secret),
10719                                         PaymentId(payment_hash.0), RouteParameters {
10720                                                 payment_params, final_value_msat: 10_000,
10721                                         }, Retry::Attempts(0)).unwrap();
10722                                 let payment_event = SendEvent::from_event($node_a.get_and_clear_pending_msg_events().pop().unwrap());
10723                                 $node_b.handle_update_add_htlc(&$node_a.get_our_node_id(), &payment_event.msgs[0]);
10724                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &payment_event.commitment_msg);
10725                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_b }, &$node_a.get_our_node_id());
10726                                 $node_a.handle_revoke_and_ack(&$node_b.get_our_node_id(), &raa);
10727                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &cs);
10728                                 $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()));
10729
10730                                 expect_pending_htlcs_forwardable!(ANodeHolder { node: &$node_b });
10731                                 expect_payment_claimable!(ANodeHolder { node: &$node_b }, payment_hash, payment_secret, 10_000);
10732                                 $node_b.claim_funds(payment_preimage);
10733                                 expect_payment_claimed!(ANodeHolder { node: &$node_b }, payment_hash, 10_000);
10734
10735                                 match $node_b.get_and_clear_pending_msg_events().pop().unwrap() {
10736                                         MessageSendEvent::UpdateHTLCs { node_id, updates } => {
10737                                                 assert_eq!(node_id, $node_a.get_our_node_id());
10738                                                 $node_a.handle_update_fulfill_htlc(&$node_b.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
10739                                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &updates.commitment_signed);
10740                                         },
10741                                         _ => panic!("Failed to generate claim event"),
10742                                 }
10743
10744                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_a }, &$node_b.get_our_node_id());
10745                                 $node_b.handle_revoke_and_ack(&$node_a.get_our_node_id(), &raa);
10746                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &cs);
10747                                 $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()));
10748
10749                                 expect_payment_sent!(ANodeHolder { node: &$node_a }, payment_preimage);
10750                         }
10751                 }
10752
10753                 bench.bench_function(bench_name, |b| b.iter(|| {
10754                         send_payment!(node_a, node_b);
10755                         send_payment!(node_b, node_a);
10756                 }));
10757         }
10758 }