Probe up to second-to-last hop if last was provided by route hint
[rust-lightning] / lightning / src / ln / channelmanager.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
8 // licenses.
9
10 //! The top-level channel management and payment tracking stuff lives here.
11 //!
12 //! The [`ChannelManager`] is the main chunk of logic implementing the lightning protocol and is
13 //! responsible for tracking which channels are open, HTLCs are in flight and reestablishing those
14 //! upon reconnect to the relevant peer(s).
15 //!
16 //! It does not manage routing logic (see [`Router`] for that) nor does it manage constructing
17 //! on-chain transactions (it only monitors the chain to watch for any force-closes that might
18 //! imply it needs to fail HTLCs/payments/channels it manages).
19
20 use bitcoin::blockdata::block::BlockHeader;
21 use bitcoin::blockdata::transaction::Transaction;
22 use bitcoin::blockdata::constants::{genesis_block, ChainHash};
23 use bitcoin::network::constants::Network;
24
25 use bitcoin::hashes::Hash;
26 use bitcoin::hashes::sha256::Hash as Sha256;
27 use bitcoin::hash_types::{BlockHash, Txid};
28
29 use bitcoin::secp256k1::{SecretKey,PublicKey};
30 use bitcoin::secp256k1::Secp256k1;
31 use bitcoin::{LockTime, secp256k1, Sequence};
32
33 use crate::chain;
34 use crate::chain::{Confirm, ChannelMonitorUpdateStatus, Watch, BestBlock};
35 use crate::chain::chaininterface::{BroadcasterInterface, ConfirmationTarget, FeeEstimator, LowerBoundedFeeEstimator};
36 use crate::chain::channelmonitor::{ChannelMonitor, ChannelMonitorUpdate, ChannelMonitorUpdateStep, HTLC_FAIL_BACK_BUFFER, CLTV_CLAIM_BUFFER, LATENCY_GRACE_PERIOD_BLOCKS, ANTI_REORG_DELAY, MonitorEvent, CLOSED_CHANNEL_UPDATE_ID};
37 use crate::chain::transaction::{OutPoint, TransactionData};
38 use crate::events;
39 use crate::events::{Event, EventHandler, EventsProvider, MessageSendEvent, MessageSendEventsProvider, ClosureReason, HTLCDestination, PaymentFailureReason};
40 // Since this struct is returned in `list_channels` methods, expose it here in case users want to
41 // construct one themselves.
42 use crate::ln::{inbound_payment, ChannelId, PaymentHash, PaymentPreimage, PaymentSecret};
43 use crate::ln::channel::{Channel, ChannelPhase, ChannelContext, ChannelError, ChannelUpdateStatus, ShutdownResult, UnfundedChannelContext, UpdateFulfillCommitFetch, OutboundV1Channel, InboundV1Channel};
44 use crate::ln::features::{ChannelFeatures, ChannelTypeFeatures, InitFeatures, NodeFeatures};
45 #[cfg(any(feature = "_test_utils", test))]
46 use crate::ln::features::Bolt11InvoiceFeatures;
47 use crate::routing::gossip::NetworkGraph;
48 use crate::routing::router::{BlindedTail, DefaultRouter, InFlightHtlcs, Path, Payee, PaymentParameters, Route, RouteParameters, Router};
49 use crate::routing::scoring::{ProbabilisticScorer, ProbabilisticScoringFeeParameters};
50 use crate::ln::msgs;
51 use crate::ln::onion_utils;
52 use crate::ln::onion_utils::HTLCFailReason;
53 use crate::ln::msgs::{ChannelMessageHandler, DecodeError, LightningError};
54 #[cfg(test)]
55 use crate::ln::outbound_payment;
56 use crate::ln::outbound_payment::{OutboundPayments, PaymentAttempts, PendingOutboundPayment, SendAlongPathArgs};
57 use crate::ln::wire::Encode;
58 use crate::sign::{EntropySource, KeysManager, NodeSigner, Recipient, SignerProvider, WriteableEcdsaChannelSigner};
59 use crate::util::config::{UserConfig, ChannelConfig, ChannelConfigUpdate};
60 use crate::util::wakers::{Future, Notifier};
61 use crate::util::scid_utils::fake_scid;
62 use crate::util::string::UntrustedString;
63 use crate::util::ser::{BigSize, FixedLengthReader, Readable, ReadableArgs, MaybeReadable, Writeable, Writer, VecWriter};
64 use crate::util::logger::{Level, Logger};
65 use crate::util::errors::APIError;
66
67 use alloc::collections::BTreeMap;
68
69 use crate::io;
70 use crate::prelude::*;
71 use core::{cmp, mem};
72 use core::cell::RefCell;
73 use crate::io::Read;
74 use crate::sync::{Arc, Mutex, RwLock, RwLockReadGuard, FairRwLock, LockTestExt, LockHeldState};
75 use core::sync::atomic::{AtomicUsize, AtomicBool, Ordering};
76 use core::time::Duration;
77 use core::ops::Deref;
78
79 // Re-export this for use in the public API.
80 pub use crate::ln::outbound_payment::{PaymentSendFailure, ProbeSendFailure, Retry, RetryableSendFailure, RecipientOnionFields};
81 use crate::ln::script::ShutdownScript;
82
83 // We hold various information about HTLC relay in the HTLC objects in Channel itself:
84 //
85 // Upon receipt of an HTLC from a peer, we'll give it a PendingHTLCStatus indicating if it should
86 // forward the HTLC with information it will give back to us when it does so, or if it should Fail
87 // the HTLC with the relevant message for the Channel to handle giving to the remote peer.
88 //
89 // Once said HTLC is committed in the Channel, if the PendingHTLCStatus indicated Forward, the
90 // Channel will return the PendingHTLCInfo back to us, and we will create an HTLCForwardInfo
91 // with it to track where it came from (in case of onwards-forward error), waiting a random delay
92 // before we forward it.
93 //
94 // We will then use HTLCForwardInfo's PendingHTLCInfo to construct an outbound HTLC, with a
95 // relevant HTLCSource::PreviousHopData filled in to indicate where it came from (which we can use
96 // to either fail-backwards or fulfill the HTLC backwards along the relevant path).
97 // Alternatively, we can fill an outbound HTLC with a HTLCSource::OutboundRoute indicating this is
98 // our payment, which we can use to decode errors or inform the user that the payment was sent.
99
100 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
101 pub(super) enum PendingHTLCRouting {
102         Forward {
103                 onion_packet: msgs::OnionPacket,
104                 /// The SCID from the onion that we should forward to. This could be a real SCID or a fake one
105                 /// generated using `get_fake_scid` from the scid_utils::fake_scid module.
106                 short_channel_id: u64, // This should be NonZero<u64> eventually when we bump MSRV
107         },
108         Receive {
109                 payment_data: msgs::FinalOnionHopData,
110                 payment_metadata: Option<Vec<u8>>,
111                 incoming_cltv_expiry: u32, // Used to track when we should expire pending HTLCs that go unclaimed
112                 phantom_shared_secret: Option<[u8; 32]>,
113                 /// See [`RecipientOnionFields::custom_tlvs`] for more info.
114                 custom_tlvs: Vec<(u64, Vec<u8>)>,
115         },
116         ReceiveKeysend {
117                 /// This was added in 0.0.116 and will break deserialization on downgrades.
118                 payment_data: Option<msgs::FinalOnionHopData>,
119                 payment_preimage: PaymentPreimage,
120                 payment_metadata: Option<Vec<u8>>,
121                 incoming_cltv_expiry: u32, // Used to track when we should expire pending HTLCs that go unclaimed
122                 /// See [`RecipientOnionFields::custom_tlvs`] for more info.
123                 custom_tlvs: Vec<(u64, Vec<u8>)>,
124         },
125 }
126
127 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
128 pub(super) struct PendingHTLCInfo {
129         pub(super) routing: PendingHTLCRouting,
130         pub(super) incoming_shared_secret: [u8; 32],
131         payment_hash: PaymentHash,
132         /// Amount received
133         pub(super) incoming_amt_msat: Option<u64>, // Added in 0.0.113
134         /// Sender intended amount to forward or receive (actual amount received
135         /// may overshoot this in either case)
136         pub(super) outgoing_amt_msat: u64,
137         pub(super) outgoing_cltv_value: u32,
138         /// The fee being skimmed off the top of this HTLC. If this is a forward, it'll be the fee we are
139         /// skimming. If we're receiving this HTLC, it's the fee that our counterparty skimmed.
140         pub(super) skimmed_fee_msat: Option<u64>,
141 }
142
143 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
144 pub(super) enum HTLCFailureMsg {
145         Relay(msgs::UpdateFailHTLC),
146         Malformed(msgs::UpdateFailMalformedHTLC),
147 }
148
149 /// Stores whether we can't forward an HTLC or relevant forwarding info
150 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
151 pub(super) enum PendingHTLCStatus {
152         Forward(PendingHTLCInfo),
153         Fail(HTLCFailureMsg),
154 }
155
156 pub(super) struct PendingAddHTLCInfo {
157         pub(super) forward_info: PendingHTLCInfo,
158
159         // These fields are produced in `forward_htlcs()` and consumed in
160         // `process_pending_htlc_forwards()` for constructing the
161         // `HTLCSource::PreviousHopData` for failed and forwarded
162         // HTLCs.
163         //
164         // Note that this may be an outbound SCID alias for the associated channel.
165         prev_short_channel_id: u64,
166         prev_htlc_id: u64,
167         prev_funding_outpoint: OutPoint,
168         prev_user_channel_id: u128,
169 }
170
171 pub(super) enum HTLCForwardInfo {
172         AddHTLC(PendingAddHTLCInfo),
173         FailHTLC {
174                 htlc_id: u64,
175                 err_packet: msgs::OnionErrorPacket,
176         },
177 }
178
179 /// Tracks the inbound corresponding to an outbound HTLC
180 #[derive(Clone, Debug, Hash, PartialEq, Eq)]
181 pub(crate) struct HTLCPreviousHopData {
182         // Note that this may be an outbound SCID alias for the associated channel.
183         short_channel_id: u64,
184         user_channel_id: Option<u128>,
185         htlc_id: u64,
186         incoming_packet_shared_secret: [u8; 32],
187         phantom_shared_secret: Option<[u8; 32]>,
188
189         // This field is consumed by `claim_funds_from_hop()` when updating a force-closed backwards
190         // channel with a preimage provided by the forward channel.
191         outpoint: OutPoint,
192 }
193
194 enum OnionPayload {
195         /// Indicates this incoming onion payload is for the purpose of paying an invoice.
196         Invoice {
197                 /// This is only here for backwards-compatibility in serialization, in the future it can be
198                 /// removed, breaking clients running 0.0.106 and earlier.
199                 _legacy_hop_data: Option<msgs::FinalOnionHopData>,
200         },
201         /// Contains the payer-provided preimage.
202         Spontaneous(PaymentPreimage),
203 }
204
205 /// HTLCs that are to us and can be failed/claimed by the user
206 struct ClaimableHTLC {
207         prev_hop: HTLCPreviousHopData,
208         cltv_expiry: u32,
209         /// The amount (in msats) of this MPP part
210         value: u64,
211         /// The amount (in msats) that the sender intended to be sent in this MPP
212         /// part (used for validating total MPP amount)
213         sender_intended_value: u64,
214         onion_payload: OnionPayload,
215         timer_ticks: u8,
216         /// The total value received for a payment (sum of all MPP parts if the payment is a MPP).
217         /// Gets set to the amount reported when pushing [`Event::PaymentClaimable`].
218         total_value_received: Option<u64>,
219         /// The sender intended sum total of all MPP parts specified in the onion
220         total_msat: u64,
221         /// The extra fee our counterparty skimmed off the top of this HTLC.
222         counterparty_skimmed_fee_msat: Option<u64>,
223 }
224
225 impl From<&ClaimableHTLC> for events::ClaimedHTLC {
226         fn from(val: &ClaimableHTLC) -> Self {
227                 events::ClaimedHTLC {
228                         channel_id: val.prev_hop.outpoint.to_channel_id(),
229                         user_channel_id: val.prev_hop.user_channel_id.unwrap_or(0),
230                         cltv_expiry: val.cltv_expiry,
231                         value_msat: val.value,
232                 }
233         }
234 }
235
236 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
237 /// a payment and ensure idempotency in LDK.
238 ///
239 /// This is not exported to bindings users as we just use [u8; 32] directly
240 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
241 pub struct PaymentId(pub [u8; Self::LENGTH]);
242
243 impl PaymentId {
244         /// Number of bytes in the id.
245         pub const LENGTH: usize = 32;
246 }
247
248 impl Writeable for PaymentId {
249         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
250                 self.0.write(w)
251         }
252 }
253
254 impl Readable for PaymentId {
255         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
256                 let buf: [u8; 32] = Readable::read(r)?;
257                 Ok(PaymentId(buf))
258         }
259 }
260
261 impl core::fmt::Display for PaymentId {
262         fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
263                 crate::util::logger::DebugBytes(&self.0).fmt(f)
264         }
265 }
266
267 /// An identifier used to uniquely identify an intercepted HTLC to LDK.
268 ///
269 /// This is not exported to bindings users as we just use [u8; 32] directly
270 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
271 pub struct InterceptId(pub [u8; 32]);
272
273 impl Writeable for InterceptId {
274         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
275                 self.0.write(w)
276         }
277 }
278
279 impl Readable for InterceptId {
280         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
281                 let buf: [u8; 32] = Readable::read(r)?;
282                 Ok(InterceptId(buf))
283         }
284 }
285
286 #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
287 /// Uniquely describes an HTLC by its source. Just the guaranteed-unique subset of [`HTLCSource`].
288 pub(crate) enum SentHTLCId {
289         PreviousHopData { short_channel_id: u64, htlc_id: u64 },
290         OutboundRoute { session_priv: SecretKey },
291 }
292 impl SentHTLCId {
293         pub(crate) fn from_source(source: &HTLCSource) -> Self {
294                 match source {
295                         HTLCSource::PreviousHopData(hop_data) => Self::PreviousHopData {
296                                 short_channel_id: hop_data.short_channel_id,
297                                 htlc_id: hop_data.htlc_id,
298                         },
299                         HTLCSource::OutboundRoute { session_priv, .. } =>
300                                 Self::OutboundRoute { session_priv: *session_priv },
301                 }
302         }
303 }
304 impl_writeable_tlv_based_enum!(SentHTLCId,
305         (0, PreviousHopData) => {
306                 (0, short_channel_id, required),
307                 (2, htlc_id, required),
308         },
309         (2, OutboundRoute) => {
310                 (0, session_priv, required),
311         };
312 );
313
314
315 /// Tracks the inbound corresponding to an outbound HTLC
316 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
317 #[derive(Clone, Debug, PartialEq, Eq)]
318 pub(crate) enum HTLCSource {
319         PreviousHopData(HTLCPreviousHopData),
320         OutboundRoute {
321                 path: Path,
322                 session_priv: SecretKey,
323                 /// Technically we can recalculate this from the route, but we cache it here to avoid
324                 /// doing a double-pass on route when we get a failure back
325                 first_hop_htlc_msat: u64,
326                 payment_id: PaymentId,
327         },
328 }
329 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
330 impl core::hash::Hash for HTLCSource {
331         fn hash<H: core::hash::Hasher>(&self, hasher: &mut H) {
332                 match self {
333                         HTLCSource::PreviousHopData(prev_hop_data) => {
334                                 0u8.hash(hasher);
335                                 prev_hop_data.hash(hasher);
336                         },
337                         HTLCSource::OutboundRoute { path, session_priv, payment_id, first_hop_htlc_msat } => {
338                                 1u8.hash(hasher);
339                                 path.hash(hasher);
340                                 session_priv[..].hash(hasher);
341                                 payment_id.hash(hasher);
342                                 first_hop_htlc_msat.hash(hasher);
343                         },
344                 }
345         }
346 }
347 impl HTLCSource {
348         #[cfg(all(feature = "_test_vectors", not(feature = "grind_signatures")))]
349         #[cfg(test)]
350         pub fn dummy() -> Self {
351                 HTLCSource::OutboundRoute {
352                         path: Path { hops: Vec::new(), blinded_tail: None },
353                         session_priv: SecretKey::from_slice(&[1; 32]).unwrap(),
354                         first_hop_htlc_msat: 0,
355                         payment_id: PaymentId([2; 32]),
356                 }
357         }
358
359         #[cfg(debug_assertions)]
360         /// Checks whether this HTLCSource could possibly match the given HTLC output in a commitment
361         /// transaction. Useful to ensure different datastructures match up.
362         pub(crate) fn possibly_matches_output(&self, htlc: &super::chan_utils::HTLCOutputInCommitment) -> bool {
363                 if let HTLCSource::OutboundRoute { first_hop_htlc_msat, .. } = self {
364                         *first_hop_htlc_msat == htlc.amount_msat
365                 } else {
366                         // There's nothing we can check for forwarded HTLCs
367                         true
368                 }
369         }
370 }
371
372 struct InboundOnionErr {
373         err_code: u16,
374         err_data: Vec<u8>,
375         msg: &'static str,
376 }
377
378 /// This enum is used to specify which error data to send to peers when failing back an HTLC
379 /// using [`ChannelManager::fail_htlc_backwards_with_reason`].
380 ///
381 /// For more info on failure codes, see <https://github.com/lightning/bolts/blob/master/04-onion-routing.md#failure-messages>.
382 #[derive(Clone, Copy)]
383 pub enum FailureCode {
384         /// We had a temporary error processing the payment. Useful if no other error codes fit
385         /// and you want to indicate that the payer may want to retry.
386         TemporaryNodeFailure,
387         /// We have a required feature which was not in this onion. For example, you may require
388         /// some additional metadata that was not provided with this payment.
389         RequiredNodeFeatureMissing,
390         /// You may wish to use this when a `payment_preimage` is unknown, or the CLTV expiry of
391         /// the HTLC is too close to the current block height for safe handling.
392         /// Using this failure code in [`ChannelManager::fail_htlc_backwards_with_reason`] is
393         /// equivalent to calling [`ChannelManager::fail_htlc_backwards`].
394         IncorrectOrUnknownPaymentDetails,
395         /// We failed to process the payload after the onion was decrypted. You may wish to
396         /// use this when receiving custom HTLC TLVs with even type numbers that you don't recognize.
397         ///
398         /// If available, the tuple data may include the type number and byte offset in the
399         /// decrypted byte stream where the failure occurred.
400         InvalidOnionPayload(Option<(u64, u16)>),
401 }
402
403 impl Into<u16> for FailureCode {
404     fn into(self) -> u16 {
405                 match self {
406                         FailureCode::TemporaryNodeFailure => 0x2000 | 2,
407                         FailureCode::RequiredNodeFeatureMissing => 0x4000 | 0x2000 | 3,
408                         FailureCode::IncorrectOrUnknownPaymentDetails => 0x4000 | 15,
409                         FailureCode::InvalidOnionPayload(_) => 0x4000 | 22,
410                 }
411         }
412 }
413
414 /// Error type returned across the peer_state mutex boundary. When an Err is generated for a
415 /// Channel, we generally end up with a ChannelError::Close for which we have to close the channel
416 /// immediately (ie with no further calls on it made). Thus, this step happens inside a
417 /// peer_state lock. We then return the set of things that need to be done outside the lock in
418 /// this struct and call handle_error!() on it.
419
420 struct MsgHandleErrInternal {
421         err: msgs::LightningError,
422         chan_id: Option<(ChannelId, u128)>, // If Some a channel of ours has been closed
423         shutdown_finish: Option<(ShutdownResult, Option<msgs::ChannelUpdate>)>,
424         channel_capacity: Option<u64>,
425 }
426 impl MsgHandleErrInternal {
427         #[inline]
428         fn send_err_msg_no_close(err: String, channel_id: ChannelId) -> Self {
429                 Self {
430                         err: LightningError {
431                                 err: err.clone(),
432                                 action: msgs::ErrorAction::SendErrorMessage {
433                                         msg: msgs::ErrorMessage {
434                                                 channel_id,
435                                                 data: err
436                                         },
437                                 },
438                         },
439                         chan_id: None,
440                         shutdown_finish: None,
441                         channel_capacity: None,
442                 }
443         }
444         #[inline]
445         fn from_no_close(err: msgs::LightningError) -> Self {
446                 Self { err, chan_id: None, shutdown_finish: None, channel_capacity: None }
447         }
448         #[inline]
449         fn from_finish_shutdown(err: String, channel_id: ChannelId, user_channel_id: u128, shutdown_res: ShutdownResult, channel_update: Option<msgs::ChannelUpdate>, channel_capacity: u64) -> Self {
450                 Self {
451                         err: LightningError {
452                                 err: err.clone(),
453                                 action: msgs::ErrorAction::SendErrorMessage {
454                                         msg: msgs::ErrorMessage {
455                                                 channel_id,
456                                                 data: err
457                                         },
458                                 },
459                         },
460                         chan_id: Some((channel_id, user_channel_id)),
461                         shutdown_finish: Some((shutdown_res, channel_update)),
462                         channel_capacity: Some(channel_capacity)
463                 }
464         }
465         #[inline]
466         fn from_chan_no_close(err: ChannelError, channel_id: ChannelId) -> Self {
467                 Self {
468                         err: match err {
469                                 ChannelError::Warn(msg) =>  LightningError {
470                                         err: msg.clone(),
471                                         action: msgs::ErrorAction::SendWarningMessage {
472                                                 msg: msgs::WarningMessage {
473                                                         channel_id,
474                                                         data: msg
475                                                 },
476                                                 log_level: Level::Warn,
477                                         },
478                                 },
479                                 ChannelError::Ignore(msg) => LightningError {
480                                         err: msg,
481                                         action: msgs::ErrorAction::IgnoreError,
482                                 },
483                                 ChannelError::Close(msg) => LightningError {
484                                         err: msg.clone(),
485                                         action: msgs::ErrorAction::SendErrorMessage {
486                                                 msg: msgs::ErrorMessage {
487                                                         channel_id,
488                                                         data: msg
489                                                 },
490                                         },
491                                 },
492                         },
493                         chan_id: None,
494                         shutdown_finish: None,
495                         channel_capacity: None,
496                 }
497         }
498 }
499
500 /// We hold back HTLCs we intend to relay for a random interval greater than this (see
501 /// Event::PendingHTLCsForwardable for the API guidelines indicating how long should be waited).
502 /// This provides some limited amount of privacy. Ideally this would range from somewhere like one
503 /// second to 30 seconds, but people expect lightning to be, you know, kinda fast, sadly.
504 pub(super) const MIN_HTLC_RELAY_HOLDING_CELL_MILLIS: u64 = 100;
505
506 /// For events which result in both a RevokeAndACK and a CommitmentUpdate, by default they should
507 /// be sent in the order they appear in the return value, however sometimes the order needs to be
508 /// variable at runtime (eg Channel::channel_reestablish needs to re-send messages in the order
509 /// they were originally sent). In those cases, this enum is also returned.
510 #[derive(Clone, PartialEq)]
511 pub(super) enum RAACommitmentOrder {
512         /// Send the CommitmentUpdate messages first
513         CommitmentFirst,
514         /// Send the RevokeAndACK message first
515         RevokeAndACKFirst,
516 }
517
518 /// Information about a payment which is currently being claimed.
519 struct ClaimingPayment {
520         amount_msat: u64,
521         payment_purpose: events::PaymentPurpose,
522         receiver_node_id: PublicKey,
523         htlcs: Vec<events::ClaimedHTLC>,
524         sender_intended_value: Option<u64>,
525 }
526 impl_writeable_tlv_based!(ClaimingPayment, {
527         (0, amount_msat, required),
528         (2, payment_purpose, required),
529         (4, receiver_node_id, required),
530         (5, htlcs, optional_vec),
531         (7, sender_intended_value, option),
532 });
533
534 struct ClaimablePayment {
535         purpose: events::PaymentPurpose,
536         onion_fields: Option<RecipientOnionFields>,
537         htlcs: Vec<ClaimableHTLC>,
538 }
539
540 /// Information about claimable or being-claimed payments
541 struct ClaimablePayments {
542         /// Map from payment hash to the payment data and any HTLCs which are to us and can be
543         /// failed/claimed by the user.
544         ///
545         /// Note that, no consistency guarantees are made about the channels given here actually
546         /// existing anymore by the time you go to read them!
547         ///
548         /// When adding to the map, [`Self::pending_claiming_payments`] must also be checked to ensure
549         /// we don't get a duplicate payment.
550         claimable_payments: HashMap<PaymentHash, ClaimablePayment>,
551
552         /// Map from payment hash to the payment data for HTLCs which we have begun claiming, but which
553         /// are waiting on a [`ChannelMonitorUpdate`] to complete in order to be surfaced to the user
554         /// as an [`events::Event::PaymentClaimed`].
555         pending_claiming_payments: HashMap<PaymentHash, ClaimingPayment>,
556 }
557
558 /// Events which we process internally but cannot be processed immediately at the generation site
559 /// usually because we're running pre-full-init. They are handled immediately once we detect we are
560 /// running normally, and specifically must be processed before any other non-background
561 /// [`ChannelMonitorUpdate`]s are applied.
562 enum BackgroundEvent {
563         /// Handle a ChannelMonitorUpdate which closes the channel or for an already-closed channel.
564         /// This is only separated from [`Self::MonitorUpdateRegeneratedOnStartup`] as the
565         /// maybe-non-closing variant needs a public key to handle channel resumption, whereas if the
566         /// channel has been force-closed we do not need the counterparty node_id.
567         ///
568         /// Note that any such events are lost on shutdown, so in general they must be updates which
569         /// are regenerated on startup.
570         ClosedMonitorUpdateRegeneratedOnStartup((OutPoint, ChannelMonitorUpdate)),
571         /// Handle a ChannelMonitorUpdate which may or may not close the channel and may unblock the
572         /// channel to continue normal operation.
573         ///
574         /// In general this should be used rather than
575         /// [`Self::ClosedMonitorUpdateRegeneratedOnStartup`], however in cases where the
576         /// `counterparty_node_id` is not available as the channel has closed from a [`ChannelMonitor`]
577         /// error the other variant is acceptable.
578         ///
579         /// Note that any such events are lost on shutdown, so in general they must be updates which
580         /// are regenerated on startup.
581         MonitorUpdateRegeneratedOnStartup {
582                 counterparty_node_id: PublicKey,
583                 funding_txo: OutPoint,
584                 update: ChannelMonitorUpdate
585         },
586         /// Some [`ChannelMonitorUpdate`] (s) completed before we were serialized but we still have
587         /// them marked pending, thus we need to run any [`MonitorUpdateCompletionAction`] (s) pending
588         /// on a channel.
589         MonitorUpdatesComplete {
590                 counterparty_node_id: PublicKey,
591                 channel_id: ChannelId,
592         },
593 }
594
595 #[derive(Debug)]
596 pub(crate) enum MonitorUpdateCompletionAction {
597         /// Indicates that a payment ultimately destined for us was claimed and we should emit an
598         /// [`events::Event::PaymentClaimed`] to the user if we haven't yet generated such an event for
599         /// this payment. Note that this is only best-effort. On restart it's possible such a duplicate
600         /// event can be generated.
601         PaymentClaimed { payment_hash: PaymentHash },
602         /// Indicates an [`events::Event`] should be surfaced to the user and possibly resume the
603         /// operation of another channel.
604         ///
605         /// This is usually generated when we've forwarded an HTLC and want to block the outbound edge
606         /// from completing a monitor update which removes the payment preimage until the inbound edge
607         /// completes a monitor update containing the payment preimage. In that case, after the inbound
608         /// edge completes, we will surface an [`Event::PaymentForwarded`] as well as unblock the
609         /// outbound edge.
610         EmitEventAndFreeOtherChannel {
611                 event: events::Event,
612                 downstream_counterparty_and_funding_outpoint: Option<(PublicKey, OutPoint, RAAMonitorUpdateBlockingAction)>,
613         },
614 }
615
616 impl_writeable_tlv_based_enum_upgradable!(MonitorUpdateCompletionAction,
617         (0, PaymentClaimed) => { (0, payment_hash, required) },
618         (2, EmitEventAndFreeOtherChannel) => {
619                 (0, event, upgradable_required),
620                 // LDK prior to 0.0.116 did not have this field as the monitor update application order was
621                 // required by clients. If we downgrade to something prior to 0.0.116 this may result in
622                 // monitor updates which aren't properly blocked or resumed, however that's fine - we don't
623                 // support async monitor updates even in LDK 0.0.116 and once we do we'll require no
624                 // downgrades to prior versions.
625                 (1, downstream_counterparty_and_funding_outpoint, option),
626         },
627 );
628
629 #[derive(Clone, Debug, PartialEq, Eq)]
630 pub(crate) enum EventCompletionAction {
631         ReleaseRAAChannelMonitorUpdate {
632                 counterparty_node_id: PublicKey,
633                 channel_funding_outpoint: OutPoint,
634         },
635 }
636 impl_writeable_tlv_based_enum!(EventCompletionAction,
637         (0, ReleaseRAAChannelMonitorUpdate) => {
638                 (0, channel_funding_outpoint, required),
639                 (2, counterparty_node_id, required),
640         };
641 );
642
643 #[derive(Clone, PartialEq, Eq, Debug)]
644 /// If something is blocked on the completion of an RAA-generated [`ChannelMonitorUpdate`] we track
645 /// the blocked action here. See enum variants for more info.
646 pub(crate) enum RAAMonitorUpdateBlockingAction {
647         /// A forwarded payment was claimed. We block the downstream channel completing its monitor
648         /// update which removes the HTLC preimage until the upstream channel has gotten the preimage
649         /// durably to disk.
650         ForwardedPaymentInboundClaim {
651                 /// The upstream channel ID (i.e. the inbound edge).
652                 channel_id: ChannelId,
653                 /// The HTLC ID on the inbound edge.
654                 htlc_id: u64,
655         },
656 }
657
658 impl RAAMonitorUpdateBlockingAction {
659         fn from_prev_hop_data(prev_hop: &HTLCPreviousHopData) -> Self {
660                 Self::ForwardedPaymentInboundClaim {
661                         channel_id: prev_hop.outpoint.to_channel_id(),
662                         htlc_id: prev_hop.htlc_id,
663                 }
664         }
665 }
666
667 impl_writeable_tlv_based_enum!(RAAMonitorUpdateBlockingAction,
668         (0, ForwardedPaymentInboundClaim) => { (0, channel_id, required), (2, htlc_id, required) }
669 ;);
670
671
672 /// State we hold per-peer.
673 pub(super) struct PeerState<SP: Deref> where SP::Target: SignerProvider {
674         /// `channel_id` -> `ChannelPhase`
675         ///
676         /// Holds all channels within corresponding `ChannelPhase`s where the peer is the counterparty.
677         pub(super) channel_by_id: HashMap<ChannelId, ChannelPhase<SP>>,
678         /// `temporary_channel_id` -> `InboundChannelRequest`.
679         ///
680         /// When manual channel acceptance is enabled, this holds all unaccepted inbound channels where
681         /// the peer is the counterparty. If the channel is accepted, then the entry in this table is
682         /// removed, and an InboundV1Channel is created and placed in the `inbound_v1_channel_by_id` table. If
683         /// the channel is rejected, then the entry is simply removed.
684         pub(super) inbound_channel_request_by_id: HashMap<ChannelId, InboundChannelRequest>,
685         /// The latest `InitFeatures` we heard from the peer.
686         latest_features: InitFeatures,
687         /// Messages to send to the peer - pushed to in the same lock that they are generated in (except
688         /// for broadcast messages, where ordering isn't as strict).
689         pub(super) pending_msg_events: Vec<MessageSendEvent>,
690         /// Map from Channel IDs to pending [`ChannelMonitorUpdate`]s which have been passed to the
691         /// user but which have not yet completed.
692         ///
693         /// Note that the channel may no longer exist. For example if the channel was closed but we
694         /// later needed to claim an HTLC which is pending on-chain, we may generate a monitor update
695         /// for a missing channel.
696         in_flight_monitor_updates: BTreeMap<OutPoint, Vec<ChannelMonitorUpdate>>,
697         /// Map from a specific channel to some action(s) that should be taken when all pending
698         /// [`ChannelMonitorUpdate`]s for the channel complete updating.
699         ///
700         /// Note that because we generally only have one entry here a HashMap is pretty overkill. A
701         /// BTreeMap currently stores more than ten elements per leaf node, so even up to a few
702         /// channels with a peer this will just be one allocation and will amount to a linear list of
703         /// channels to walk, avoiding the whole hashing rigmarole.
704         ///
705         /// Note that the channel may no longer exist. For example, if a channel was closed but we
706         /// later needed to claim an HTLC which is pending on-chain, we may generate a monitor update
707         /// for a missing channel. While a malicious peer could construct a second channel with the
708         /// same `temporary_channel_id` (or final `channel_id` in the case of 0conf channels or prior
709         /// to funding appearing on-chain), the downstream `ChannelMonitor` set is required to ensure
710         /// duplicates do not occur, so such channels should fail without a monitor update completing.
711         monitor_update_blocked_actions: BTreeMap<ChannelId, Vec<MonitorUpdateCompletionAction>>,
712         /// If another channel's [`ChannelMonitorUpdate`] needs to complete before a channel we have
713         /// with this peer can complete an RAA [`ChannelMonitorUpdate`] (e.g. because the RAA update
714         /// will remove a preimage that needs to be durably in an upstream channel first), we put an
715         /// entry here to note that the channel with the key's ID is blocked on a set of actions.
716         actions_blocking_raa_monitor_updates: BTreeMap<ChannelId, Vec<RAAMonitorUpdateBlockingAction>>,
717         /// The peer is currently connected (i.e. we've seen a
718         /// [`ChannelMessageHandler::peer_connected`] and no corresponding
719         /// [`ChannelMessageHandler::peer_disconnected`].
720         is_connected: bool,
721 }
722
723 impl <SP: Deref> PeerState<SP> where SP::Target: SignerProvider {
724         /// Indicates that a peer meets the criteria where we're ok to remove it from our storage.
725         /// If true is passed for `require_disconnected`, the function will return false if we haven't
726         /// disconnected from the node already, ie. `PeerState::is_connected` is set to `true`.
727         fn ok_to_remove(&self, require_disconnected: bool) -> bool {
728                 if require_disconnected && self.is_connected {
729                         return false
730                 }
731                 self.channel_by_id.iter().filter(|(_, phase)| matches!(phase, ChannelPhase::Funded(_))).count() == 0
732                         && 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() + self.inbound_channel_request_by_id.len()
739         }
740
741         // Returns a bool indicating if the given `channel_id` matches a channel we have with this peer.
742         fn has_channel(&self, channel_id: &ChannelId) -> bool {
743                 self.channel_by_id.contains_key(channel_id) ||
744                         self.inbound_channel_request_by_id.contains_key(channel_id)
745         }
746 }
747
748 /// A not-yet-accepted inbound (from counterparty) channel. Once
749 /// accepted, the parameters will be used to construct a channel.
750 pub(super) struct InboundChannelRequest {
751         /// The original OpenChannel message.
752         pub open_channel_msg: msgs::OpenChannel,
753         /// The number of ticks remaining before the request expires.
754         pub ticks_remaining: i32,
755 }
756
757 /// The number of ticks that may elapse while we're waiting for an unaccepted inbound channel to be
758 /// accepted. An unaccepted channel that exceeds this limit will be abandoned.
759 const UNACCEPTED_INBOUND_CHANNEL_AGE_LIMIT_TICKS: i32 = 2;
760
761 /// Stores a PaymentSecret and any other data we may need to validate an inbound payment is
762 /// actually ours and not some duplicate HTLC sent to us by a node along the route.
763 ///
764 /// For users who don't want to bother doing their own payment preimage storage, we also store that
765 /// here.
766 ///
767 /// Note that this struct will be removed entirely soon, in favor of storing no inbound payment data
768 /// and instead encoding it in the payment secret.
769 struct PendingInboundPayment {
770         /// The payment secret that the sender must use for us to accept this payment
771         payment_secret: PaymentSecret,
772         /// Time at which this HTLC expires - blocks with a header time above this value will result in
773         /// this payment being removed.
774         expiry_time: u64,
775         /// Arbitrary identifier the user specifies (or not)
776         user_payment_id: u64,
777         // Other required attributes of the payment, optionally enforced:
778         payment_preimage: Option<PaymentPreimage>,
779         min_value_msat: Option<u64>,
780 }
781
782 /// [`SimpleArcChannelManager`] is useful when you need a [`ChannelManager`] with a static lifetime, e.g.
783 /// when you're using `lightning-net-tokio` (since `tokio::spawn` requires parameters with static
784 /// lifetimes). Other times you can afford a reference, which is more efficient, in which case
785 /// [`SimpleRefChannelManager`] is the more appropriate type. Defining these type aliases prevents
786 /// issues such as overly long function definitions. Note that the `ChannelManager` can take any type
787 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
788 /// or, respectively, [`Router`] for its router, but this type alias chooses the concrete types
789 /// of [`KeysManager`] and [`DefaultRouter`].
790 ///
791 /// This is not exported to bindings users as Arcs don't make sense in bindings
792 pub type SimpleArcChannelManager<M, T, F, L> = ChannelManager<
793         Arc<M>,
794         Arc<T>,
795         Arc<KeysManager>,
796         Arc<KeysManager>,
797         Arc<KeysManager>,
798         Arc<F>,
799         Arc<DefaultRouter<
800                 Arc<NetworkGraph<Arc<L>>>,
801                 Arc<L>,
802                 Arc<Mutex<ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>>>,
803                 ProbabilisticScoringFeeParameters,
804                 ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>,
805         >>,
806         Arc<L>
807 >;
808
809 /// [`SimpleRefChannelManager`] is a type alias for a ChannelManager reference, and is the reference
810 /// counterpart to the [`SimpleArcChannelManager`] type alias. Use this type by default when you don't
811 /// need a ChannelManager with a static lifetime. You'll need a static lifetime in cases such as
812 /// usage of lightning-net-tokio (since `tokio::spawn` requires parameters with static lifetimes).
813 /// But if this is not necessary, using a reference is more efficient. Defining these type aliases
814 /// issues such as overly long function definitions. Note that the ChannelManager can take any type
815 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
816 /// or, respectively, [`Router`]  for its router, but this type alias chooses the concrete types
817 /// of [`KeysManager`] and [`DefaultRouter`].
818 ///
819 /// This is not exported to bindings users as Arcs don't make sense in bindings
820 pub type SimpleRefChannelManager<'a, 'b, 'c, 'd, 'e, 'f, 'g, 'h, M, T, F, L> =
821         ChannelManager<
822                 &'a M,
823                 &'b T,
824                 &'c KeysManager,
825                 &'c KeysManager,
826                 &'c KeysManager,
827                 &'d F,
828                 &'e DefaultRouter<
829                         &'f NetworkGraph<&'g L>,
830                         &'g L,
831                         &'h Mutex<ProbabilisticScorer<&'f NetworkGraph<&'g L>, &'g L>>,
832                         ProbabilisticScoringFeeParameters,
833                         ProbabilisticScorer<&'f NetworkGraph<&'g L>, &'g L>
834                 >,
835                 &'g L
836         >;
837
838 macro_rules! define_test_pub_trait { ($vis: vis) => {
839 /// A trivial trait which describes any [`ChannelManager`] used in testing.
840 $vis trait AChannelManager {
841         type Watch: chain::Watch<Self::Signer> + ?Sized;
842         type M: Deref<Target = Self::Watch>;
843         type Broadcaster: BroadcasterInterface + ?Sized;
844         type T: Deref<Target = Self::Broadcaster>;
845         type EntropySource: EntropySource + ?Sized;
846         type ES: Deref<Target = Self::EntropySource>;
847         type NodeSigner: NodeSigner + ?Sized;
848         type NS: Deref<Target = Self::NodeSigner>;
849         type Signer: WriteableEcdsaChannelSigner + Sized;
850         type SignerProvider: SignerProvider<Signer = Self::Signer> + ?Sized;
851         type SP: Deref<Target = Self::SignerProvider>;
852         type FeeEstimator: FeeEstimator + ?Sized;
853         type F: Deref<Target = Self::FeeEstimator>;
854         type Router: Router + ?Sized;
855         type R: Deref<Target = Self::Router>;
856         type Logger: Logger + ?Sized;
857         type L: Deref<Target = Self::Logger>;
858         fn get_cm(&self) -> &ChannelManager<Self::M, Self::T, Self::ES, Self::NS, Self::SP, Self::F, Self::R, Self::L>;
859 }
860 } }
861 #[cfg(any(test, feature = "_test_utils"))]
862 define_test_pub_trait!(pub);
863 #[cfg(not(any(test, feature = "_test_utils")))]
864 define_test_pub_trait!(pub(crate));
865 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref> AChannelManager
866 for ChannelManager<M, T, ES, NS, SP, F, R, L>
867 where
868         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
869         T::Target: BroadcasterInterface,
870         ES::Target: EntropySource,
871         NS::Target: NodeSigner,
872         SP::Target: SignerProvider,
873         F::Target: FeeEstimator,
874         R::Target: Router,
875         L::Target: Logger,
876 {
877         type Watch = M::Target;
878         type M = M;
879         type Broadcaster = T::Target;
880         type T = T;
881         type EntropySource = ES::Target;
882         type ES = ES;
883         type NodeSigner = NS::Target;
884         type NS = NS;
885         type Signer = <SP::Target as SignerProvider>::Signer;
886         type SignerProvider = SP::Target;
887         type SP = SP;
888         type FeeEstimator = F::Target;
889         type F = F;
890         type Router = R::Target;
891         type R = R;
892         type Logger = L::Target;
893         type L = L;
894         fn get_cm(&self) -> &ChannelManager<M, T, ES, NS, SP, F, R, L> { self }
895 }
896
897 /// Manager which keeps track of a number of channels and sends messages to the appropriate
898 /// channel, also tracking HTLC preimages and forwarding onion packets appropriately.
899 ///
900 /// Implements [`ChannelMessageHandler`], handling the multi-channel parts and passing things through
901 /// to individual Channels.
902 ///
903 /// Implements [`Writeable`] to write out all channel state to disk. Implies [`peer_disconnected`] for
904 /// all peers during write/read (though does not modify this instance, only the instance being
905 /// serialized). This will result in any channels which have not yet exchanged [`funding_created`] (i.e.,
906 /// called [`funding_transaction_generated`] for outbound channels) being closed.
907 ///
908 /// Note that you can be a bit lazier about writing out `ChannelManager` than you can be with
909 /// [`ChannelMonitor`]. With [`ChannelMonitor`] you MUST write each monitor update out to disk before
910 /// returning from [`chain::Watch::watch_channel`]/[`update_channel`], with ChannelManagers, writing updates
911 /// happens out-of-band (and will prevent any other `ChannelManager` operations from occurring during
912 /// the serialization process). If the deserialized version is out-of-date compared to the
913 /// [`ChannelMonitor`] passed by reference to [`read`], those channels will be force-closed based on the
914 /// `ChannelMonitor` state and no funds will be lost (mod on-chain transaction fees).
915 ///
916 /// Note that the deserializer is only implemented for `(`[`BlockHash`]`, `[`ChannelManager`]`)`, which
917 /// tells you the last block hash which was connected. You should get the best block tip before using the manager.
918 /// See [`chain::Listen`] and [`chain::Confirm`] for more details.
919 ///
920 /// Note that `ChannelManager` is responsible for tracking liveness of its channels and generating
921 /// [`ChannelUpdate`] messages informing peers that the channel is temporarily disabled. To avoid
922 /// spam due to quick disconnection/reconnection, updates are not sent until the channel has been
923 /// offline for a full minute. In order to track this, you must call
924 /// [`timer_tick_occurred`] roughly once per minute, though it doesn't have to be perfect.
925 ///
926 /// To avoid trivial DoS issues, `ChannelManager` limits the number of inbound connections and
927 /// inbound channels without confirmed funding transactions. This may result in nodes which we do
928 /// not have a channel with being unable to connect to us or open new channels with us if we have
929 /// many peers with unfunded channels.
930 ///
931 /// Because it is an indication of trust, inbound channels which we've accepted as 0conf are
932 /// exempted from the count of unfunded channels. Similarly, outbound channels and connections are
933 /// never limited. Please ensure you limit the count of such channels yourself.
934 ///
935 /// Rather than using a plain `ChannelManager`, it is preferable to use either a [`SimpleArcChannelManager`]
936 /// a [`SimpleRefChannelManager`], for conciseness. See their documentation for more details, but
937 /// essentially you should default to using a [`SimpleRefChannelManager`], and use a
938 /// [`SimpleArcChannelManager`] when you require a `ChannelManager` with a static lifetime, such as when
939 /// you're using lightning-net-tokio.
940 ///
941 /// [`peer_disconnected`]: msgs::ChannelMessageHandler::peer_disconnected
942 /// [`funding_created`]: msgs::FundingCreated
943 /// [`funding_transaction_generated`]: Self::funding_transaction_generated
944 /// [`BlockHash`]: bitcoin::hash_types::BlockHash
945 /// [`update_channel`]: chain::Watch::update_channel
946 /// [`ChannelUpdate`]: msgs::ChannelUpdate
947 /// [`timer_tick_occurred`]: Self::timer_tick_occurred
948 /// [`read`]: ReadableArgs::read
949 //
950 // Lock order:
951 // The tree structure below illustrates the lock order requirements for the different locks of the
952 // `ChannelManager`. Locks can be held at the same time if they are on the same branch in the tree,
953 // and should then be taken in the order of the lowest to the highest level in the tree.
954 // Note that locks on different branches shall not be taken at the same time, as doing so will
955 // create a new lock order for those specific locks in the order they were taken.
956 //
957 // Lock order tree:
958 //
959 // `total_consistency_lock`
960 //  |
961 //  |__`forward_htlcs`
962 //  |   |
963 //  |   |__`pending_intercepted_htlcs`
964 //  |
965 //  |__`per_peer_state`
966 //  |   |
967 //  |   |__`pending_inbound_payments`
968 //  |       |
969 //  |       |__`claimable_payments`
970 //  |       |
971 //  |       |__`pending_outbound_payments` // This field's struct contains a map of pending outbounds
972 //  |           |
973 //  |           |__`peer_state`
974 //  |               |
975 //  |               |__`id_to_peer`
976 //  |               |
977 //  |               |__`short_to_chan_info`
978 //  |               |
979 //  |               |__`outbound_scid_aliases`
980 //  |               |
981 //  |               |__`best_block`
982 //  |               |
983 //  |               |__`pending_events`
984 //  |                   |
985 //  |                   |__`pending_background_events`
986 //
987 pub struct ChannelManager<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
988 where
989         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
990         T::Target: BroadcasterInterface,
991         ES::Target: EntropySource,
992         NS::Target: NodeSigner,
993         SP::Target: SignerProvider,
994         F::Target: FeeEstimator,
995         R::Target: Router,
996         L::Target: Logger,
997 {
998         default_configuration: UserConfig,
999         genesis_hash: BlockHash,
1000         fee_estimator: LowerBoundedFeeEstimator<F>,
1001         chain_monitor: M,
1002         tx_broadcaster: T,
1003         #[allow(unused)]
1004         router: R,
1005
1006         /// See `ChannelManager` struct-level documentation for lock order requirements.
1007         #[cfg(test)]
1008         pub(super) best_block: RwLock<BestBlock>,
1009         #[cfg(not(test))]
1010         best_block: RwLock<BestBlock>,
1011         secp_ctx: Secp256k1<secp256k1::All>,
1012
1013         /// Storage for PaymentSecrets and any requirements on future inbound payments before we will
1014         /// expose them to users via a PaymentClaimable event. HTLCs which do not meet the requirements
1015         /// here are failed when we process them as pending-forwardable-HTLCs, and entries are removed
1016         /// after we generate a PaymentClaimable upon receipt of all MPP parts or when they time out.
1017         ///
1018         /// See `ChannelManager` struct-level documentation for lock order requirements.
1019         pending_inbound_payments: Mutex<HashMap<PaymentHash, PendingInboundPayment>>,
1020
1021         /// The session_priv bytes and retry metadata of outbound payments which are pending resolution.
1022         /// The authoritative state of these HTLCs resides either within Channels or ChannelMonitors
1023         /// (if the channel has been force-closed), however we track them here to prevent duplicative
1024         /// PaymentSent/PaymentPathFailed events. Specifically, in the case of a duplicative
1025         /// update_fulfill_htlc message after a reconnect, we may "claim" a payment twice.
1026         /// Additionally, because ChannelMonitors are often not re-serialized after connecting block(s)
1027         /// which may generate a claim event, we may receive similar duplicate claim/fail MonitorEvents
1028         /// after reloading from disk while replaying blocks against ChannelMonitors.
1029         ///
1030         /// See `PendingOutboundPayment` documentation for more info.
1031         ///
1032         /// See `ChannelManager` struct-level documentation for lock order requirements.
1033         pending_outbound_payments: OutboundPayments,
1034
1035         /// SCID/SCID Alias -> forward infos. Key of 0 means payments received.
1036         ///
1037         /// Note that because we may have an SCID Alias as the key we can have two entries per channel,
1038         /// though in practice we probably won't be receiving HTLCs for a channel both via the alias
1039         /// and via the classic SCID.
1040         ///
1041         /// Note that no consistency guarantees are made about the existence of a channel with the
1042         /// `short_channel_id` here, nor the `short_channel_id` in the `PendingHTLCInfo`!
1043         ///
1044         /// See `ChannelManager` struct-level documentation for lock order requirements.
1045         #[cfg(test)]
1046         pub(super) forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
1047         #[cfg(not(test))]
1048         forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
1049         /// Storage for HTLCs that have been intercepted and bubbled up to the user. We hold them here
1050         /// until the user tells us what we should do with them.
1051         ///
1052         /// See `ChannelManager` struct-level documentation for lock order requirements.
1053         pending_intercepted_htlcs: Mutex<HashMap<InterceptId, PendingAddHTLCInfo>>,
1054
1055         /// The sets of payments which are claimable or currently being claimed. See
1056         /// [`ClaimablePayments`]' individual field docs for more info.
1057         ///
1058         /// See `ChannelManager` struct-level documentation for lock order requirements.
1059         claimable_payments: Mutex<ClaimablePayments>,
1060
1061         /// The set of outbound SCID aliases across all our channels, including unconfirmed channels
1062         /// and some closed channels which reached a usable state prior to being closed. This is used
1063         /// only to avoid duplicates, and is not persisted explicitly to disk, but rebuilt from the
1064         /// active channel list on load.
1065         ///
1066         /// See `ChannelManager` struct-level documentation for lock order requirements.
1067         outbound_scid_aliases: Mutex<HashSet<u64>>,
1068
1069         /// `channel_id` -> `counterparty_node_id`.
1070         ///
1071         /// Only `channel_id`s are allowed as keys in this map, and not `temporary_channel_id`s. As
1072         /// multiple channels with the same `temporary_channel_id` to different peers can exist,
1073         /// allowing `temporary_channel_id`s in this map would cause collisions for such channels.
1074         ///
1075         /// Note that this map should only be used for `MonitorEvent` handling, to be able to access
1076         /// the corresponding channel for the event, as we only have access to the `channel_id` during
1077         /// the handling of the events.
1078         ///
1079         /// Note that no consistency guarantees are made about the existence of a peer with the
1080         /// `counterparty_node_id` in our other maps.
1081         ///
1082         /// TODO:
1083         /// The `counterparty_node_id` isn't passed with `MonitorEvent`s currently. To pass it, we need
1084         /// to make `counterparty_node_id`'s a required field in `ChannelMonitor`s, which unfortunately
1085         /// would break backwards compatability.
1086         /// We should add `counterparty_node_id`s to `MonitorEvent`s, and eventually rely on it in the
1087         /// future. That would make this map redundant, as only the `ChannelManager::per_peer_state` is
1088         /// required to access the channel with the `counterparty_node_id`.
1089         ///
1090         /// See `ChannelManager` struct-level documentation for lock order requirements.
1091         id_to_peer: Mutex<HashMap<ChannelId, PublicKey>>,
1092
1093         /// SCIDs (and outbound SCID aliases) -> `counterparty_node_id`s and `channel_id`s.
1094         ///
1095         /// Outbound SCID aliases are added here once the channel is available for normal use, with
1096         /// SCIDs being added once the funding transaction is confirmed at the channel's required
1097         /// confirmation depth.
1098         ///
1099         /// Note that while this holds `counterparty_node_id`s and `channel_id`s, no consistency
1100         /// guarantees are made about the existence of a peer with the `counterparty_node_id` nor a
1101         /// channel with the `channel_id` in our other maps.
1102         ///
1103         /// See `ChannelManager` struct-level documentation for lock order requirements.
1104         #[cfg(test)]
1105         pub(super) short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, ChannelId)>>,
1106         #[cfg(not(test))]
1107         short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, ChannelId)>>,
1108
1109         our_network_pubkey: PublicKey,
1110
1111         inbound_payment_key: inbound_payment::ExpandedKey,
1112
1113         /// LDK puts the [fake scids] that it generates into namespaces, to identify the type of an
1114         /// incoming payment. To make it harder for a third-party to identify the type of a payment,
1115         /// we encrypt the namespace identifier using these bytes.
1116         ///
1117         /// [fake scids]: crate::util::scid_utils::fake_scid
1118         fake_scid_rand_bytes: [u8; 32],
1119
1120         /// When we send payment probes, we generate the [`PaymentHash`] based on this cookie secret
1121         /// and a random [`PaymentId`]. This allows us to discern probes from real payments, without
1122         /// keeping additional state.
1123         probing_cookie_secret: [u8; 32],
1124
1125         /// The highest block timestamp we've seen, which is usually a good guess at the current time.
1126         /// Assuming most miners are generating blocks with reasonable timestamps, this shouldn't be
1127         /// very far in the past, and can only ever be up to two hours in the future.
1128         highest_seen_timestamp: AtomicUsize,
1129
1130         /// The bulk of our storage. Currently the `per_peer_state` stores our channels on a per-peer
1131         /// basis, as well as the peer's latest features.
1132         ///
1133         /// If we are connected to a peer we always at least have an entry here, even if no channels
1134         /// are currently open with that peer.
1135         ///
1136         /// Because adding or removing an entry is rare, we usually take an outer read lock and then
1137         /// operate on the inner value freely. This opens up for parallel per-peer operation for
1138         /// channels.
1139         ///
1140         /// Note that the same thread must never acquire two inner `PeerState` locks at the same time.
1141         ///
1142         /// See `ChannelManager` struct-level documentation for lock order requirements.
1143         #[cfg(not(any(test, feature = "_test_utils")))]
1144         per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<SP>>>>,
1145         #[cfg(any(test, feature = "_test_utils"))]
1146         pub(super) per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<SP>>>>,
1147
1148         /// The set of events which we need to give to the user to handle. In some cases an event may
1149         /// require some further action after the user handles it (currently only blocking a monitor
1150         /// update from being handed to the user to ensure the included changes to the channel state
1151         /// are handled by the user before they're persisted durably to disk). In that case, the second
1152         /// element in the tuple is set to `Some` with further details of the action.
1153         ///
1154         /// Note that events MUST NOT be removed from pending_events after deserialization, as they
1155         /// could be in the middle of being processed without the direct mutex held.
1156         ///
1157         /// See `ChannelManager` struct-level documentation for lock order requirements.
1158         #[cfg(not(any(test, feature = "_test_utils")))]
1159         pending_events: Mutex<VecDeque<(events::Event, Option<EventCompletionAction>)>>,
1160         #[cfg(any(test, feature = "_test_utils"))]
1161         pub(crate) pending_events: Mutex<VecDeque<(events::Event, Option<EventCompletionAction>)>>,
1162
1163         /// A simple atomic flag to ensure only one task at a time can be processing events asynchronously.
1164         pending_events_processor: AtomicBool,
1165
1166         /// If we are running during init (either directly during the deserialization method or in
1167         /// block connection methods which run after deserialization but before normal operation) we
1168         /// cannot provide the user with [`ChannelMonitorUpdate`]s through the normal update flow -
1169         /// prior to normal operation the user may not have loaded the [`ChannelMonitor`]s into their
1170         /// [`ChainMonitor`] and thus attempting to update it will fail or panic.
1171         ///
1172         /// Thus, we place them here to be handled as soon as possible once we are running normally.
1173         ///
1174         /// See `ChannelManager` struct-level documentation for lock order requirements.
1175         ///
1176         /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
1177         pending_background_events: Mutex<Vec<BackgroundEvent>>,
1178         /// Used when we have to take a BIG lock to make sure everything is self-consistent.
1179         /// Essentially just when we're serializing ourselves out.
1180         /// Taken first everywhere where we are making changes before any other locks.
1181         /// When acquiring this lock in read mode, rather than acquiring it directly, call
1182         /// `PersistenceNotifierGuard::notify_on_drop(..)` and pass the lock to it, to ensure the
1183         /// Notifier the lock contains sends out a notification when the lock is released.
1184         total_consistency_lock: RwLock<()>,
1185
1186         background_events_processed_since_startup: AtomicBool,
1187
1188         persistence_notifier: Notifier,
1189
1190         entropy_source: ES,
1191         node_signer: NS,
1192         signer_provider: SP,
1193
1194         logger: L,
1195 }
1196
1197 /// Chain-related parameters used to construct a new `ChannelManager`.
1198 ///
1199 /// Typically, the block-specific parameters are derived from the best block hash for the network,
1200 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
1201 /// are not needed when deserializing a previously constructed `ChannelManager`.
1202 #[derive(Clone, Copy, PartialEq)]
1203 pub struct ChainParameters {
1204         /// The network for determining the `chain_hash` in Lightning messages.
1205         pub network: Network,
1206
1207         /// The hash and height of the latest block successfully connected.
1208         ///
1209         /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
1210         pub best_block: BestBlock,
1211 }
1212
1213 #[derive(Copy, Clone, PartialEq)]
1214 #[must_use]
1215 enum NotifyOption {
1216         DoPersist,
1217         SkipPersist,
1218 }
1219
1220 /// Whenever we release the `ChannelManager`'s `total_consistency_lock`, from read mode, it is
1221 /// desirable to notify any listeners on `await_persistable_update_timeout`/
1222 /// `await_persistable_update` when new updates are available for persistence. Therefore, this
1223 /// struct is responsible for locking the total consistency lock and, upon going out of scope,
1224 /// sending the aforementioned notification (since the lock being released indicates that the
1225 /// updates are ready for persistence).
1226 ///
1227 /// We allow callers to either always notify by constructing with `notify_on_drop` or choose to
1228 /// notify or not based on whether relevant changes have been made, providing a closure to
1229 /// `optionally_notify` which returns a `NotifyOption`.
1230 struct PersistenceNotifierGuard<'a, F: Fn() -> NotifyOption> {
1231         persistence_notifier: &'a Notifier,
1232         should_persist: F,
1233         // We hold onto this result so the lock doesn't get released immediately.
1234         _read_guard: RwLockReadGuard<'a, ()>,
1235 }
1236
1237 impl<'a> PersistenceNotifierGuard<'a, fn() -> NotifyOption> { // We don't care what the concrete F is here, it's unused
1238         fn notify_on_drop<C: AChannelManager>(cm: &'a C) -> PersistenceNotifierGuard<'a, impl Fn() -> NotifyOption> {
1239                 let read_guard = cm.get_cm().total_consistency_lock.read().unwrap();
1240                 let _ = cm.get_cm().process_background_events(); // We always persist
1241
1242                 PersistenceNotifierGuard {
1243                         persistence_notifier: &cm.get_cm().persistence_notifier,
1244                         should_persist: || -> NotifyOption { NotifyOption::DoPersist },
1245                         _read_guard: read_guard,
1246                 }
1247
1248         }
1249
1250         /// Note that if any [`ChannelMonitorUpdate`]s are possibly generated,
1251         /// [`ChannelManager::process_background_events`] MUST be called first.
1252         fn optionally_notify<F: Fn() -> NotifyOption>(lock: &'a RwLock<()>, notifier: &'a Notifier, persist_check: F) -> PersistenceNotifierGuard<'a, F> {
1253                 let read_guard = lock.read().unwrap();
1254
1255                 PersistenceNotifierGuard {
1256                         persistence_notifier: notifier,
1257                         should_persist: persist_check,
1258                         _read_guard: read_guard,
1259                 }
1260         }
1261 }
1262
1263 impl<'a, F: Fn() -> NotifyOption> Drop for PersistenceNotifierGuard<'a, F> {
1264         fn drop(&mut self) {
1265                 if (self.should_persist)() == NotifyOption::DoPersist {
1266                         self.persistence_notifier.notify();
1267                 }
1268         }
1269 }
1270
1271 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
1272 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
1273 ///
1274 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
1275 ///
1276 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
1277 pub const BREAKDOWN_TIMEOUT: u16 = 6 * 24;
1278 /// The amount of time in blocks we're willing to wait to claim money back to us. This matches
1279 /// the maximum required amount in lnd as of March 2021.
1280 pub(crate) const MAX_LOCAL_BREAKDOWN_TIMEOUT: u16 = 2 * 6 * 24 * 7;
1281
1282 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
1283 /// HTLC's CLTV. The current default represents roughly seven hours of blocks at six blocks/hour.
1284 ///
1285 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
1286 ///
1287 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
1288 // This should always be a few blocks greater than channelmonitor::CLTV_CLAIM_BUFFER,
1289 // i.e. the node we forwarded the payment on to should always have enough room to reliably time out
1290 // the HTLC via a full update_fail_htlc/commitment_signed dance before we hit the
1291 // CLTV_CLAIM_BUFFER point (we static assert that it's at least 3 blocks more).
1292 pub const MIN_CLTV_EXPIRY_DELTA: u16 = 6*7;
1293 // This should be long enough to allow a payment path drawn across multiple routing hops with substantial
1294 // `cltv_expiry_delta`. Indeed, the length of those values is the reaction delay offered to a routing node
1295 // in case of HTLC on-chain settlement. While appearing less competitive, a node operator could decide to
1296 // scale them up to suit its security policy. At the network-level, we shouldn't constrain them too much,
1297 // while avoiding to introduce a DoS vector. Further, a low CTLV_FAR_FAR_AWAY could be a source of
1298 // routing failure for any HTLC sender picking up an LDK node among the first hops.
1299 pub(super) const CLTV_FAR_FAR_AWAY: u32 = 14 * 24 * 6;
1300
1301 /// Minimum CLTV difference between the current block height and received inbound payments.
1302 /// Invoices generated for payment to us must set their `min_final_cltv_expiry_delta` field to at least
1303 /// this value.
1304 // Note that we fail if exactly HTLC_FAIL_BACK_BUFFER + 1 was used, so we need to add one for
1305 // any payments to succeed. Further, we don't want payments to fail if a block was found while
1306 // a payment was being routed, so we add an extra block to be safe.
1307 pub const MIN_FINAL_CLTV_EXPIRY_DELTA: u16 = HTLC_FAIL_BACK_BUFFER as u16 + 3;
1308
1309 // Check that our CLTV_EXPIRY is at least CLTV_CLAIM_BUFFER + ANTI_REORG_DELAY + LATENCY_GRACE_PERIOD_BLOCKS,
1310 // ie that if the next-hop peer fails the HTLC within
1311 // LATENCY_GRACE_PERIOD_BLOCKS then we'll still have CLTV_CLAIM_BUFFER left to timeout it onchain,
1312 // then waiting ANTI_REORG_DELAY to be reorg-safe on the outbound HLTC and
1313 // failing the corresponding htlc backward, and us now seeing the last block of ANTI_REORG_DELAY before
1314 // LATENCY_GRACE_PERIOD_BLOCKS.
1315 #[deny(const_err)]
1316 #[allow(dead_code)]
1317 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;
1318
1319 // Check for ability of an attacker to make us fail on-chain by delaying an HTLC claim. See
1320 // ChannelMonitor::should_broadcast_holder_commitment_txn for a description of why this is needed.
1321 #[deny(const_err)]
1322 #[allow(dead_code)]
1323 const CHECK_CLTV_EXPIRY_SANITY_2: u32 = MIN_CLTV_EXPIRY_DELTA as u32 - LATENCY_GRACE_PERIOD_BLOCKS - 2*CLTV_CLAIM_BUFFER;
1324
1325 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until expiry of incomplete MPPs
1326 pub(crate) const MPP_TIMEOUT_TICKS: u8 = 3;
1327
1328 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is disconnected
1329 /// until we mark the channel disabled and gossip the update.
1330 pub(crate) const DISABLE_GOSSIP_TICKS: u8 = 10;
1331
1332 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is connected until
1333 /// we mark the channel enabled and gossip the update.
1334 pub(crate) const ENABLE_GOSSIP_TICKS: u8 = 5;
1335
1336 /// The maximum number of unfunded channels we can have per-peer before we start rejecting new
1337 /// (inbound) ones. The number of peers with unfunded channels is limited separately in
1338 /// [`MAX_UNFUNDED_CHANNEL_PEERS`].
1339 const MAX_UNFUNDED_CHANS_PER_PEER: usize = 4;
1340
1341 /// The maximum number of peers from which we will allow pending unfunded channels. Once we reach
1342 /// this many peers we reject new (inbound) channels from peers with which we don't have a channel.
1343 const MAX_UNFUNDED_CHANNEL_PEERS: usize = 50;
1344
1345 /// The maximum number of peers which we do not have a (funded) channel with. Once we reach this
1346 /// many peers we reject new (inbound) connections.
1347 const MAX_NO_CHANNEL_PEERS: usize = 250;
1348
1349 /// Information needed for constructing an invoice route hint for this channel.
1350 #[derive(Clone, Debug, PartialEq)]
1351 pub struct CounterpartyForwardingInfo {
1352         /// Base routing fee in millisatoshis.
1353         pub fee_base_msat: u32,
1354         /// Amount in millionths of a satoshi the channel will charge per transferred satoshi.
1355         pub fee_proportional_millionths: u32,
1356         /// The minimum difference in cltv_expiry between an ingoing HTLC and its outgoing counterpart,
1357         /// such that the outgoing HTLC is forwardable to this counterparty. See `msgs::ChannelUpdate`'s
1358         /// `cltv_expiry_delta` for more details.
1359         pub cltv_expiry_delta: u16,
1360 }
1361
1362 /// Channel parameters which apply to our counterparty. These are split out from [`ChannelDetails`]
1363 /// to better separate parameters.
1364 #[derive(Clone, Debug, PartialEq)]
1365 pub struct ChannelCounterparty {
1366         /// The node_id of our counterparty
1367         pub node_id: PublicKey,
1368         /// The Features the channel counterparty provided upon last connection.
1369         /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
1370         /// many routing-relevant features are present in the init context.
1371         pub features: InitFeatures,
1372         /// The value, in satoshis, that must always be held in the channel for our counterparty. This
1373         /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
1374         /// claiming at least this value on chain.
1375         ///
1376         /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
1377         ///
1378         /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
1379         pub unspendable_punishment_reserve: u64,
1380         /// Information on the fees and requirements that the counterparty requires when forwarding
1381         /// payments to us through this channel.
1382         pub forwarding_info: Option<CounterpartyForwardingInfo>,
1383         /// The smallest value HTLC (in msat) the remote peer will accept, for this channel. This field
1384         /// is only `None` before we have received either the `OpenChannel` or `AcceptChannel` message
1385         /// from the remote peer, or for `ChannelCounterparty` objects serialized prior to LDK 0.0.107.
1386         pub outbound_htlc_minimum_msat: Option<u64>,
1387         /// The largest value HTLC (in msat) the remote peer currently will accept, for this channel.
1388         pub outbound_htlc_maximum_msat: Option<u64>,
1389 }
1390
1391 /// Details of a channel, as returned by [`ChannelManager::list_channels`] and [`ChannelManager::list_usable_channels`]
1392 ///
1393 /// Balances of a channel are available through [`ChainMonitor::get_claimable_balances`] and
1394 /// [`ChannelMonitor::get_claimable_balances`], calculated with respect to the corresponding on-chain
1395 /// transactions.
1396 ///
1397 /// [`ChainMonitor::get_claimable_balances`]: crate::chain::chainmonitor::ChainMonitor::get_claimable_balances
1398 #[derive(Clone, Debug, PartialEq)]
1399 pub struct ChannelDetails {
1400         /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
1401         /// thereafter this is the txid of the funding transaction xor the funding transaction output).
1402         /// Note that this means this value is *not* persistent - it can change once during the
1403         /// lifetime of the channel.
1404         pub channel_id: ChannelId,
1405         /// Parameters which apply to our counterparty. See individual fields for more information.
1406         pub counterparty: ChannelCounterparty,
1407         /// The Channel's funding transaction output, if we've negotiated the funding transaction with
1408         /// our counterparty already.
1409         ///
1410         /// Note that, if this has been set, `channel_id` will be equivalent to
1411         /// `funding_txo.unwrap().to_channel_id()`.
1412         pub funding_txo: Option<OutPoint>,
1413         /// The features which this channel operates with. See individual features for more info.
1414         ///
1415         /// `None` until negotiation completes and the channel type is finalized.
1416         pub channel_type: Option<ChannelTypeFeatures>,
1417         /// The position of the funding transaction in the chain. None if the funding transaction has
1418         /// not yet been confirmed and the channel fully opened.
1419         ///
1420         /// Note that if [`inbound_scid_alias`] is set, it must be used for invoices and inbound
1421         /// payments instead of this. See [`get_inbound_payment_scid`].
1422         ///
1423         /// For channels with [`confirmations_required`] set to `Some(0)`, [`outbound_scid_alias`] may
1424         /// be used in place of this in outbound routes. See [`get_outbound_payment_scid`].
1425         ///
1426         /// [`inbound_scid_alias`]: Self::inbound_scid_alias
1427         /// [`outbound_scid_alias`]: Self::outbound_scid_alias
1428         /// [`get_inbound_payment_scid`]: Self::get_inbound_payment_scid
1429         /// [`get_outbound_payment_scid`]: Self::get_outbound_payment_scid
1430         /// [`confirmations_required`]: Self::confirmations_required
1431         pub short_channel_id: Option<u64>,
1432         /// An optional [`short_channel_id`] alias for this channel, randomly generated by us and
1433         /// usable in place of [`short_channel_id`] to reference the channel in outbound routes when
1434         /// the channel has not yet been confirmed (as long as [`confirmations_required`] is
1435         /// `Some(0)`).
1436         ///
1437         /// This will be `None` as long as the channel is not available for routing outbound payments.
1438         ///
1439         /// [`short_channel_id`]: Self::short_channel_id
1440         /// [`confirmations_required`]: Self::confirmations_required
1441         pub outbound_scid_alias: Option<u64>,
1442         /// An optional [`short_channel_id`] alias for this channel, randomly generated by our
1443         /// counterparty and usable in place of [`short_channel_id`] in invoice route hints. Our
1444         /// counterparty will recognize the alias provided here in place of the [`short_channel_id`]
1445         /// when they see a payment to be routed to us.
1446         ///
1447         /// Our counterparty may choose to rotate this value at any time, though will always recognize
1448         /// previous values for inbound payment forwarding.
1449         ///
1450         /// [`short_channel_id`]: Self::short_channel_id
1451         pub inbound_scid_alias: Option<u64>,
1452         /// The value, in satoshis, of this channel as appears in the funding output
1453         pub channel_value_satoshis: u64,
1454         /// The value, in satoshis, that must always be held in the channel for us. This value ensures
1455         /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
1456         /// this value on chain.
1457         ///
1458         /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
1459         ///
1460         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1461         ///
1462         /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
1463         pub unspendable_punishment_reserve: Option<u64>,
1464         /// The `user_channel_id` value passed in to [`ChannelManager::create_channel`] for outbound
1465         /// channels, or to [`ChannelManager::accept_inbound_channel`] for inbound channels if
1466         /// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true. Otherwise
1467         /// `user_channel_id` will be randomized for an inbound channel.  This may be zero for objects
1468         /// serialized with LDK versions prior to 0.0.113.
1469         ///
1470         /// [`ChannelManager::create_channel`]: crate::ln::channelmanager::ChannelManager::create_channel
1471         /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
1472         /// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
1473         pub user_channel_id: u128,
1474         /// The currently negotiated fee rate denominated in satoshi per 1000 weight units,
1475         /// which is applied to commitment and HTLC transactions.
1476         ///
1477         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.115.
1478         pub feerate_sat_per_1000_weight: Option<u32>,
1479         /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
1480         /// any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1481         /// available for inclusion in new outbound HTLCs). This further does not include any pending
1482         /// outgoing HTLCs which are awaiting some other resolution to be sent.
1483         ///
1484         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1485         /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
1486         /// should be able to spend nearly this amount.
1487         pub outbound_capacity_msat: u64,
1488         /// The available outbound capacity for sending a single HTLC to the remote peer. This is
1489         /// similar to [`ChannelDetails::outbound_capacity_msat`] but it may be further restricted by
1490         /// the current state and per-HTLC limit(s). This is intended for use when routing, allowing us
1491         /// to use a limit as close as possible to the HTLC limit we can currently send.
1492         ///
1493         /// See also [`ChannelDetails::next_outbound_htlc_minimum_msat`] and
1494         /// [`ChannelDetails::outbound_capacity_msat`].
1495         pub next_outbound_htlc_limit_msat: u64,
1496         /// The minimum value for sending a single HTLC to the remote peer. This is the equivalent of
1497         /// [`ChannelDetails::next_outbound_htlc_limit_msat`] but represents a lower-bound, rather than
1498         /// an upper-bound. This is intended for use when routing, allowing us to ensure we pick a
1499         /// route which is valid.
1500         pub next_outbound_htlc_minimum_msat: u64,
1501         /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
1502         /// include any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1503         /// available for inclusion in new inbound HTLCs).
1504         /// Note that there are some corner cases not fully handled here, so the actual available
1505         /// inbound capacity may be slightly higher than this.
1506         ///
1507         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1508         /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
1509         /// However, our counterparty should be able to spend nearly this amount.
1510         pub inbound_capacity_msat: u64,
1511         /// The number of required confirmations on the funding transaction before the funding will be
1512         /// considered "locked". This number is selected by the channel fundee (i.e. us if
1513         /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
1514         /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
1515         /// [`ChannelHandshakeLimits::max_minimum_depth`].
1516         ///
1517         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1518         ///
1519         /// [`is_outbound`]: ChannelDetails::is_outbound
1520         /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
1521         /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
1522         pub confirmations_required: Option<u32>,
1523         /// The current number of confirmations on the funding transaction.
1524         ///
1525         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.113.
1526         pub confirmations: Option<u32>,
1527         /// The number of blocks (after our commitment transaction confirms) that we will need to wait
1528         /// until we can claim our funds after we force-close the channel. During this time our
1529         /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
1530         /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
1531         /// time to claim our non-HTLC-encumbered funds.
1532         ///
1533         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1534         pub force_close_spend_delay: Option<u16>,
1535         /// True if the channel was initiated (and thus funded) by us.
1536         pub is_outbound: bool,
1537         /// True if the channel is confirmed, channel_ready messages have been exchanged, and the
1538         /// channel is not currently being shut down. `channel_ready` message exchange implies the
1539         /// required confirmation count has been reached (and we were connected to the peer at some
1540         /// point after the funding transaction received enough confirmations). The required
1541         /// confirmation count is provided in [`confirmations_required`].
1542         ///
1543         /// [`confirmations_required`]: ChannelDetails::confirmations_required
1544         pub is_channel_ready: bool,
1545         /// The stage of the channel's shutdown.
1546         /// `None` for `ChannelDetails` serialized on LDK versions prior to 0.0.116.
1547         pub channel_shutdown_state: Option<ChannelShutdownState>,
1548         /// True if the channel is (a) confirmed and channel_ready messages have been exchanged, (b)
1549         /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
1550         ///
1551         /// This is a strict superset of `is_channel_ready`.
1552         pub is_usable: bool,
1553         /// True if this channel is (or will be) publicly-announced.
1554         pub is_public: bool,
1555         /// The smallest value HTLC (in msat) we will accept, for this channel. This field
1556         /// is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.107
1557         pub inbound_htlc_minimum_msat: Option<u64>,
1558         /// The largest value HTLC (in msat) we currently will accept, for this channel.
1559         pub inbound_htlc_maximum_msat: Option<u64>,
1560         /// Set of configurable parameters that affect channel operation.
1561         ///
1562         /// This field is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.109.
1563         pub config: Option<ChannelConfig>,
1564 }
1565
1566 impl ChannelDetails {
1567         /// Gets the current SCID which should be used to identify this channel for inbound payments.
1568         /// This should be used for providing invoice hints or in any other context where our
1569         /// counterparty will forward a payment to us.
1570         ///
1571         /// This is either the [`ChannelDetails::inbound_scid_alias`], if set, or the
1572         /// [`ChannelDetails::short_channel_id`]. See those for more information.
1573         pub fn get_inbound_payment_scid(&self) -> Option<u64> {
1574                 self.inbound_scid_alias.or(self.short_channel_id)
1575         }
1576
1577         /// Gets the current SCID which should be used to identify this channel for outbound payments.
1578         /// This should be used in [`Route`]s to describe the first hop or in other contexts where
1579         /// we're sending or forwarding a payment outbound over this channel.
1580         ///
1581         /// This is either the [`ChannelDetails::short_channel_id`], if set, or the
1582         /// [`ChannelDetails::outbound_scid_alias`]. See those for more information.
1583         pub fn get_outbound_payment_scid(&self) -> Option<u64> {
1584                 self.short_channel_id.or(self.outbound_scid_alias)
1585         }
1586
1587         fn from_channel_context<SP: Deref, F: Deref>(
1588                 context: &ChannelContext<SP>, best_block_height: u32, latest_features: InitFeatures,
1589                 fee_estimator: &LowerBoundedFeeEstimator<F>
1590         ) -> Self
1591         where
1592                 SP::Target: SignerProvider,
1593                 F::Target: FeeEstimator
1594         {
1595                 let balance = context.get_available_balances(fee_estimator);
1596                 let (to_remote_reserve_satoshis, to_self_reserve_satoshis) =
1597                         context.get_holder_counterparty_selected_channel_reserve_satoshis();
1598                 ChannelDetails {
1599                         channel_id: context.channel_id(),
1600                         counterparty: ChannelCounterparty {
1601                                 node_id: context.get_counterparty_node_id(),
1602                                 features: latest_features,
1603                                 unspendable_punishment_reserve: to_remote_reserve_satoshis,
1604                                 forwarding_info: context.counterparty_forwarding_info(),
1605                                 // Ensures that we have actually received the `htlc_minimum_msat` value
1606                                 // from the counterparty through the `OpenChannel` or `AcceptChannel`
1607                                 // message (as they are always the first message from the counterparty).
1608                                 // Else `Channel::get_counterparty_htlc_minimum_msat` could return the
1609                                 // default `0` value set by `Channel::new_outbound`.
1610                                 outbound_htlc_minimum_msat: if context.have_received_message() {
1611                                         Some(context.get_counterparty_htlc_minimum_msat()) } else { None },
1612                                 outbound_htlc_maximum_msat: context.get_counterparty_htlc_maximum_msat(),
1613                         },
1614                         funding_txo: context.get_funding_txo(),
1615                         // Note that accept_channel (or open_channel) is always the first message, so
1616                         // `have_received_message` indicates that type negotiation has completed.
1617                         channel_type: if context.have_received_message() { Some(context.get_channel_type().clone()) } else { None },
1618                         short_channel_id: context.get_short_channel_id(),
1619                         outbound_scid_alias: if context.is_usable() { Some(context.outbound_scid_alias()) } else { None },
1620                         inbound_scid_alias: context.latest_inbound_scid_alias(),
1621                         channel_value_satoshis: context.get_value_satoshis(),
1622                         feerate_sat_per_1000_weight: Some(context.get_feerate_sat_per_1000_weight()),
1623                         unspendable_punishment_reserve: to_self_reserve_satoshis,
1624                         inbound_capacity_msat: balance.inbound_capacity_msat,
1625                         outbound_capacity_msat: balance.outbound_capacity_msat,
1626                         next_outbound_htlc_limit_msat: balance.next_outbound_htlc_limit_msat,
1627                         next_outbound_htlc_minimum_msat: balance.next_outbound_htlc_minimum_msat,
1628                         user_channel_id: context.get_user_id(),
1629                         confirmations_required: context.minimum_depth(),
1630                         confirmations: Some(context.get_funding_tx_confirmations(best_block_height)),
1631                         force_close_spend_delay: context.get_counterparty_selected_contest_delay(),
1632                         is_outbound: context.is_outbound(),
1633                         is_channel_ready: context.is_usable(),
1634                         is_usable: context.is_live(),
1635                         is_public: context.should_announce(),
1636                         inbound_htlc_minimum_msat: Some(context.get_holder_htlc_minimum_msat()),
1637                         inbound_htlc_maximum_msat: context.get_holder_htlc_maximum_msat(),
1638                         config: Some(context.config()),
1639                         channel_shutdown_state: Some(context.shutdown_state()),
1640                 }
1641         }
1642 }
1643
1644 #[derive(Clone, Copy, Debug, PartialEq, Eq)]
1645 /// Further information on the details of the channel shutdown.
1646 /// Upon channels being forced closed (i.e. commitment transaction confirmation detected
1647 /// by `ChainMonitor`), ChannelShutdownState will be set to `ShutdownComplete` or
1648 /// the channel will be removed shortly.
1649 /// Also note, that in normal operation, peers could disconnect at any of these states
1650 /// and require peer re-connection before making progress onto other states
1651 pub enum ChannelShutdownState {
1652         /// Channel has not sent or received a shutdown message.
1653         NotShuttingDown,
1654         /// Local node has sent a shutdown message for this channel.
1655         ShutdownInitiated,
1656         /// Shutdown message exchanges have concluded and the channels are in the midst of
1657         /// resolving all existing open HTLCs before closing can continue.
1658         ResolvingHTLCs,
1659         /// All HTLCs have been resolved, nodes are currently negotiating channel close onchain fee rates.
1660         NegotiatingClosingFee,
1661         /// We've successfully negotiated a closing_signed dance. At this point `ChannelManager` is about
1662         /// to drop the channel.
1663         ShutdownComplete,
1664 }
1665
1666 /// Used by [`ChannelManager::list_recent_payments`] to express the status of recent payments.
1667 /// These include payments that have yet to find a successful path, or have unresolved HTLCs.
1668 #[derive(Debug, PartialEq)]
1669 pub enum RecentPaymentDetails {
1670         /// When an invoice was requested and thus a payment has not yet been sent.
1671         AwaitingInvoice {
1672                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1673                 /// a payment and ensure idempotency in LDK.
1674                 payment_id: PaymentId,
1675         },
1676         /// When a payment is still being sent and awaiting successful delivery.
1677         Pending {
1678                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1679                 /// a payment and ensure idempotency in LDK.
1680                 payment_id: PaymentId,
1681                 /// Hash of the payment that is currently being sent but has yet to be fulfilled or
1682                 /// abandoned.
1683                 payment_hash: PaymentHash,
1684                 /// Total amount (in msat, excluding fees) across all paths for this payment,
1685                 /// not just the amount currently inflight.
1686                 total_msat: u64,
1687         },
1688         /// When a pending payment is fulfilled, we continue tracking it until all pending HTLCs have
1689         /// been resolved. Upon receiving [`Event::PaymentSent`], we delay for a few minutes before the
1690         /// payment is removed from tracking.
1691         Fulfilled {
1692                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1693                 /// a payment and ensure idempotency in LDK.
1694                 payment_id: PaymentId,
1695                 /// Hash of the payment that was claimed. `None` for serializations of [`ChannelManager`]
1696                 /// made before LDK version 0.0.104.
1697                 payment_hash: Option<PaymentHash>,
1698         },
1699         /// After a payment's retries are exhausted per the provided [`Retry`], or it is explicitly
1700         /// abandoned via [`ChannelManager::abandon_payment`], it is marked as abandoned until all
1701         /// pending HTLCs for this payment resolve and an [`Event::PaymentFailed`] is generated.
1702         Abandoned {
1703                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1704                 /// a payment and ensure idempotency in LDK.
1705                 payment_id: PaymentId,
1706                 /// Hash of the payment that we have given up trying to send.
1707                 payment_hash: PaymentHash,
1708         },
1709 }
1710
1711 /// Route hints used in constructing invoices for [phantom node payents].
1712 ///
1713 /// [phantom node payments]: crate::sign::PhantomKeysManager
1714 #[derive(Clone)]
1715 pub struct PhantomRouteHints {
1716         /// The list of channels to be included in the invoice route hints.
1717         pub channels: Vec<ChannelDetails>,
1718         /// A fake scid used for representing the phantom node's fake channel in generating the invoice
1719         /// route hints.
1720         pub phantom_scid: u64,
1721         /// The pubkey of the real backing node that would ultimately receive the payment.
1722         pub real_node_pubkey: PublicKey,
1723 }
1724
1725 macro_rules! handle_error {
1726         ($self: ident, $internal: expr, $counterparty_node_id: expr) => { {
1727                 // In testing, ensure there are no deadlocks where the lock is already held upon
1728                 // entering the macro.
1729                 debug_assert_ne!($self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
1730                 debug_assert_ne!($self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
1731
1732                 match $internal {
1733                         Ok(msg) => Ok(msg),
1734                         Err(MsgHandleErrInternal { err, chan_id, shutdown_finish, channel_capacity }) => {
1735                                 let mut msg_events = Vec::with_capacity(2);
1736
1737                                 if let Some((shutdown_res, update_option)) = shutdown_finish {
1738                                         $self.finish_force_close_channel(shutdown_res);
1739                                         if let Some(update) = update_option {
1740                                                 msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
1741                                                         msg: update
1742                                                 });
1743                                         }
1744                                         if let Some((channel_id, user_channel_id)) = chan_id {
1745                                                 $self.pending_events.lock().unwrap().push_back((events::Event::ChannelClosed {
1746                                                         channel_id, user_channel_id,
1747                                                         reason: ClosureReason::ProcessingError { err: err.err.clone() },
1748                                                         counterparty_node_id: Some($counterparty_node_id),
1749                                                         channel_capacity_sats: channel_capacity,
1750                                                 }, None));
1751                                         }
1752                                 }
1753
1754                                 log_error!($self.logger, "{}", err.err);
1755                                 if let msgs::ErrorAction::IgnoreError = err.action {
1756                                 } else {
1757                                         msg_events.push(events::MessageSendEvent::HandleError {
1758                                                 node_id: $counterparty_node_id,
1759                                                 action: err.action.clone()
1760                                         });
1761                                 }
1762
1763                                 if !msg_events.is_empty() {
1764                                         let per_peer_state = $self.per_peer_state.read().unwrap();
1765                                         if let Some(peer_state_mutex) = per_peer_state.get(&$counterparty_node_id) {
1766                                                 let mut peer_state = peer_state_mutex.lock().unwrap();
1767                                                 peer_state.pending_msg_events.append(&mut msg_events);
1768                                         }
1769                                 }
1770
1771                                 // Return error in case higher-API need one
1772                                 Err(err)
1773                         },
1774                 }
1775         } };
1776         ($self: ident, $internal: expr) => {
1777                 match $internal {
1778                         Ok(res) => Ok(res),
1779                         Err((chan, msg_handle_err)) => {
1780                                 let counterparty_node_id = chan.get_counterparty_node_id();
1781                                 handle_error!($self, Err(msg_handle_err), counterparty_node_id).map_err(|err| (chan, err))
1782                         },
1783                 }
1784         };
1785 }
1786
1787 macro_rules! update_maps_on_chan_removal {
1788         ($self: expr, $channel_context: expr) => {{
1789                 $self.id_to_peer.lock().unwrap().remove(&$channel_context.channel_id());
1790                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1791                 if let Some(short_id) = $channel_context.get_short_channel_id() {
1792                         short_to_chan_info.remove(&short_id);
1793                 } else {
1794                         // If the channel was never confirmed on-chain prior to its closure, remove the
1795                         // outbound SCID alias we used for it from the collision-prevention set. While we
1796                         // generally want to avoid ever re-using an outbound SCID alias across all channels, we
1797                         // also don't want a counterparty to be able to trivially cause a memory leak by simply
1798                         // opening a million channels with us which are closed before we ever reach the funding
1799                         // stage.
1800                         let alias_removed = $self.outbound_scid_aliases.lock().unwrap().remove(&$channel_context.outbound_scid_alias());
1801                         debug_assert!(alias_removed);
1802                 }
1803                 short_to_chan_info.remove(&$channel_context.outbound_scid_alias());
1804         }}
1805 }
1806
1807 /// Returns (boolean indicating if we should remove the Channel object from memory, a mapped error)
1808 macro_rules! convert_chan_phase_err {
1809         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, MANUAL_CHANNEL_UPDATE, $channel_update: expr) => {
1810                 match $err {
1811                         ChannelError::Warn(msg) => {
1812                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Warn(msg), *$channel_id))
1813                         },
1814                         ChannelError::Ignore(msg) => {
1815                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore(msg), *$channel_id))
1816                         },
1817                         ChannelError::Close(msg) => {
1818                                 log_error!($self.logger, "Closing channel {} due to close-required error: {}", $channel_id, msg);
1819                                 update_maps_on_chan_removal!($self, $channel.context);
1820                                 let shutdown_res = $channel.context.force_shutdown(true);
1821                                 let user_id = $channel.context.get_user_id();
1822                                 let channel_capacity_satoshis = $channel.context.get_value_satoshis();
1823
1824                                 (true, MsgHandleErrInternal::from_finish_shutdown(msg, *$channel_id, user_id,
1825                                         shutdown_res, $channel_update, channel_capacity_satoshis))
1826                         },
1827                 }
1828         };
1829         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, FUNDED_CHANNEL) => {
1830                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, { $self.get_channel_update_for_broadcast($channel).ok() })
1831         };
1832         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, UNFUNDED_CHANNEL) => {
1833                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, None)
1834         };
1835         ($self: ident, $err: expr, $channel_phase: expr, $channel_id: expr) => {
1836                 match $channel_phase {
1837                         ChannelPhase::Funded(channel) => {
1838                                 convert_chan_phase_err!($self, $err, channel, $channel_id, FUNDED_CHANNEL)
1839                         },
1840                         ChannelPhase::UnfundedOutboundV1(channel) => {
1841                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
1842                         },
1843                         ChannelPhase::UnfundedInboundV1(channel) => {
1844                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
1845                         },
1846                 }
1847         };
1848 }
1849
1850 macro_rules! break_chan_phase_entry {
1851         ($self: ident, $res: expr, $entry: expr) => {
1852                 match $res {
1853                         Ok(res) => res,
1854                         Err(e) => {
1855                                 let key = *$entry.key();
1856                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
1857                                 if drop {
1858                                         $entry.remove_entry();
1859                                 }
1860                                 break Err(res);
1861                         }
1862                 }
1863         }
1864 }
1865
1866 macro_rules! try_chan_phase_entry {
1867         ($self: ident, $res: expr, $entry: expr) => {
1868                 match $res {
1869                         Ok(res) => res,
1870                         Err(e) => {
1871                                 let key = *$entry.key();
1872                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
1873                                 if drop {
1874                                         $entry.remove_entry();
1875                                 }
1876                                 return Err(res);
1877                         }
1878                 }
1879         }
1880 }
1881
1882 macro_rules! remove_channel_phase {
1883         ($self: expr, $entry: expr) => {
1884                 {
1885                         let channel = $entry.remove_entry().1;
1886                         update_maps_on_chan_removal!($self, &channel.context());
1887                         channel
1888                 }
1889         }
1890 }
1891
1892 macro_rules! send_channel_ready {
1893         ($self: ident, $pending_msg_events: expr, $channel: expr, $channel_ready_msg: expr) => {{
1894                 $pending_msg_events.push(events::MessageSendEvent::SendChannelReady {
1895                         node_id: $channel.context.get_counterparty_node_id(),
1896                         msg: $channel_ready_msg,
1897                 });
1898                 // Note that we may send a `channel_ready` multiple times for a channel if we reconnect, so
1899                 // we allow collisions, but we shouldn't ever be updating the channel ID pointed to.
1900                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1901                 let outbound_alias_insert = short_to_chan_info.insert($channel.context.outbound_scid_alias(), ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
1902                 assert!(outbound_alias_insert.is_none() || outbound_alias_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
1903                         "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1904                 if let Some(real_scid) = $channel.context.get_short_channel_id() {
1905                         let scid_insert = short_to_chan_info.insert(real_scid, ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
1906                         assert!(scid_insert.is_none() || scid_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
1907                                 "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1908                 }
1909         }}
1910 }
1911
1912 macro_rules! emit_channel_pending_event {
1913         ($locked_events: expr, $channel: expr) => {
1914                 if $channel.context.should_emit_channel_pending_event() {
1915                         $locked_events.push_back((events::Event::ChannelPending {
1916                                 channel_id: $channel.context.channel_id(),
1917                                 former_temporary_channel_id: $channel.context.temporary_channel_id(),
1918                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
1919                                 user_channel_id: $channel.context.get_user_id(),
1920                                 funding_txo: $channel.context.get_funding_txo().unwrap().into_bitcoin_outpoint(),
1921                         }, None));
1922                         $channel.context.set_channel_pending_event_emitted();
1923                 }
1924         }
1925 }
1926
1927 macro_rules! emit_channel_ready_event {
1928         ($locked_events: expr, $channel: expr) => {
1929                 if $channel.context.should_emit_channel_ready_event() {
1930                         debug_assert!($channel.context.channel_pending_event_emitted());
1931                         $locked_events.push_back((events::Event::ChannelReady {
1932                                 channel_id: $channel.context.channel_id(),
1933                                 user_channel_id: $channel.context.get_user_id(),
1934                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
1935                                 channel_type: $channel.context.get_channel_type().clone(),
1936                         }, None));
1937                         $channel.context.set_channel_ready_event_emitted();
1938                 }
1939         }
1940 }
1941
1942 macro_rules! handle_monitor_update_completion {
1943         ($self: ident, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr) => { {
1944                 let mut updates = $chan.monitor_updating_restored(&$self.logger,
1945                         &$self.node_signer, $self.genesis_hash, &$self.default_configuration,
1946                         $self.best_block.read().unwrap().height());
1947                 let counterparty_node_id = $chan.context.get_counterparty_node_id();
1948                 let channel_update = if updates.channel_ready.is_some() && $chan.context.is_usable() {
1949                         // We only send a channel_update in the case where we are just now sending a
1950                         // channel_ready and the channel is in a usable state. We may re-send a
1951                         // channel_update later through the announcement_signatures process for public
1952                         // channels, but there's no reason not to just inform our counterparty of our fees
1953                         // now.
1954                         if let Ok(msg) = $self.get_channel_update_for_unicast($chan) {
1955                                 Some(events::MessageSendEvent::SendChannelUpdate {
1956                                         node_id: counterparty_node_id,
1957                                         msg,
1958                                 })
1959                         } else { None }
1960                 } else { None };
1961
1962                 let update_actions = $peer_state.monitor_update_blocked_actions
1963                         .remove(&$chan.context.channel_id()).unwrap_or(Vec::new());
1964
1965                 let htlc_forwards = $self.handle_channel_resumption(
1966                         &mut $peer_state.pending_msg_events, $chan, updates.raa,
1967                         updates.commitment_update, updates.order, updates.accepted_htlcs,
1968                         updates.funding_broadcastable, updates.channel_ready,
1969                         updates.announcement_sigs);
1970                 if let Some(upd) = channel_update {
1971                         $peer_state.pending_msg_events.push(upd);
1972                 }
1973
1974                 let channel_id = $chan.context.channel_id();
1975                 core::mem::drop($peer_state_lock);
1976                 core::mem::drop($per_peer_state_lock);
1977
1978                 $self.handle_monitor_update_completion_actions(update_actions);
1979
1980                 if let Some(forwards) = htlc_forwards {
1981                         $self.forward_htlcs(&mut [forwards][..]);
1982                 }
1983                 $self.finalize_claims(updates.finalized_claimed_htlcs);
1984                 for failure in updates.failed_htlcs.drain(..) {
1985                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
1986                         $self.fail_htlc_backwards_internal(&failure.0, &failure.1, &failure.2, receiver);
1987                 }
1988         } }
1989 }
1990
1991 macro_rules! handle_new_monitor_update {
1992         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr, _internal, $remove: expr, $completed: expr) => { {
1993                 // update_maps_on_chan_removal needs to be able to take id_to_peer, so make sure we can in
1994                 // any case so that it won't deadlock.
1995                 debug_assert_ne!($self.id_to_peer.held_by_thread(), LockHeldState::HeldByThread);
1996                 debug_assert!($self.background_events_processed_since_startup.load(Ordering::Acquire));
1997                 match $update_res {
1998                         ChannelMonitorUpdateStatus::InProgress => {
1999                                 log_debug!($self.logger, "ChannelMonitor update for {} in flight, holding messages until the update completes.",
2000                                         &$chan.context.channel_id());
2001                                 Ok(false)
2002                         },
2003                         ChannelMonitorUpdateStatus::PermanentFailure => {
2004                                 log_error!($self.logger, "Closing channel {} due to monitor update ChannelMonitorUpdateStatus::PermanentFailure",
2005                                         &$chan.context.channel_id());
2006                                 update_maps_on_chan_removal!($self, &$chan.context);
2007                                 let res = Err(MsgHandleErrInternal::from_finish_shutdown(
2008                                         "ChannelMonitor storage failure".to_owned(), $chan.context.channel_id(),
2009                                         $chan.context.get_user_id(), $chan.context.force_shutdown(false),
2010                                         $self.get_channel_update_for_broadcast(&$chan).ok(), $chan.context.get_value_satoshis()));
2011                                 $remove;
2012                                 res
2013                         },
2014                         ChannelMonitorUpdateStatus::Completed => {
2015                                 $completed;
2016                                 Ok(true)
2017                         },
2018                 }
2019         } };
2020         ($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) => {
2021                 handle_new_monitor_update!($self, $update_res, $peer_state_lock, $peer_state,
2022                         $per_peer_state_lock, $chan, _internal, $remove,
2023                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan))
2024         };
2025         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan_entry: expr, INITIAL_MONITOR) => {
2026                 if let ChannelPhase::Funded(chan) = $chan_entry.get_mut() {
2027                         handle_new_monitor_update!($self, $update_res, $peer_state_lock, $peer_state,
2028                                 $per_peer_state_lock, chan, MANUALLY_REMOVING_INITIAL_MONITOR, { $chan_entry.remove() })
2029                 } else {
2030                         // We're not supposed to handle monitor updates for unfunded channels (they have no monitors to
2031                         // update).
2032                         debug_assert!(false);
2033                         let channel_id = *$chan_entry.key();
2034                         let (_, err) = convert_chan_phase_err!($self, ChannelError::Close(
2035                                 "Cannot update monitor for unfunded channels as they don't have monitors yet".into()),
2036                                 $chan_entry.get_mut(), &channel_id);
2037                         $chan_entry.remove();
2038                         Err(err)
2039                 }
2040         };
2041         ($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) => { {
2042                 let in_flight_updates = $peer_state.in_flight_monitor_updates.entry($funding_txo)
2043                         .or_insert_with(Vec::new);
2044                 // During startup, we push monitor updates as background events through to here in
2045                 // order to replay updates that were in-flight when we shut down. Thus, we have to
2046                 // filter for uniqueness here.
2047                 let idx = in_flight_updates.iter().position(|upd| upd == &$update)
2048                         .unwrap_or_else(|| {
2049                                 in_flight_updates.push($update);
2050                                 in_flight_updates.len() - 1
2051                         });
2052                 let update_res = $self.chain_monitor.update_channel($funding_txo, &in_flight_updates[idx]);
2053                 handle_new_monitor_update!($self, update_res, $peer_state_lock, $peer_state,
2054                         $per_peer_state_lock, $chan, _internal, $remove,
2055                         {
2056                                 let _ = in_flight_updates.remove(idx);
2057                                 if in_flight_updates.is_empty() && $chan.blocked_monitor_updates_pending() == 0 {
2058                                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan);
2059                                 }
2060                         })
2061         } };
2062         ($self: ident, $funding_txo: expr, $update: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan_entry: expr) => {
2063                 if let ChannelPhase::Funded(chan) = $chan_entry.get_mut() {
2064                         handle_new_monitor_update!($self, $funding_txo, $update, $peer_state_lock, $peer_state,
2065                                 $per_peer_state_lock, chan, MANUALLY_REMOVING, { $chan_entry.remove() })
2066                 } else {
2067                         // We're not supposed to handle monitor updates for unfunded channels (they have no monitors to
2068                         // update).
2069                         debug_assert!(false);
2070                         let channel_id = *$chan_entry.key();
2071                         let (_, err) = convert_chan_phase_err!($self, ChannelError::Close(
2072                                 "Cannot update monitor for unfunded channels as they don't have monitors yet".into()),
2073                                 $chan_entry.get_mut(), &channel_id);
2074                         $chan_entry.remove();
2075                         Err(err)
2076                 }
2077         }
2078 }
2079
2080 macro_rules! process_events_body {
2081         ($self: expr, $event_to_handle: expr, $handle_event: expr) => {
2082                 let mut processed_all_events = false;
2083                 while !processed_all_events {
2084                         if $self.pending_events_processor.compare_exchange(false, true, Ordering::Acquire, Ordering::Relaxed).is_err() {
2085                                 return;
2086                         }
2087
2088                         let mut result = NotifyOption::SkipPersist;
2089
2090                         {
2091                                 // We'll acquire our total consistency lock so that we can be sure no other
2092                                 // persists happen while processing monitor events.
2093                                 let _read_guard = $self.total_consistency_lock.read().unwrap();
2094
2095                                 // Because `handle_post_event_actions` may send `ChannelMonitorUpdate`s to the user we must
2096                                 // ensure any startup-generated background events are handled first.
2097                                 if $self.process_background_events() == NotifyOption::DoPersist { result = NotifyOption::DoPersist; }
2098
2099                                 // TODO: This behavior should be documented. It's unintuitive that we query
2100                                 // ChannelMonitors when clearing other events.
2101                                 if $self.process_pending_monitor_events() {
2102                                         result = NotifyOption::DoPersist;
2103                                 }
2104                         }
2105
2106                         let pending_events = $self.pending_events.lock().unwrap().clone();
2107                         let num_events = pending_events.len();
2108                         if !pending_events.is_empty() {
2109                                 result = NotifyOption::DoPersist;
2110                         }
2111
2112                         let mut post_event_actions = Vec::new();
2113
2114                         for (event, action_opt) in pending_events {
2115                                 $event_to_handle = event;
2116                                 $handle_event;
2117                                 if let Some(action) = action_opt {
2118                                         post_event_actions.push(action);
2119                                 }
2120                         }
2121
2122                         {
2123                                 let mut pending_events = $self.pending_events.lock().unwrap();
2124                                 pending_events.drain(..num_events);
2125                                 processed_all_events = pending_events.is_empty();
2126                                 // Note that `push_pending_forwards_ev` relies on `pending_events_processor` being
2127                                 // updated here with the `pending_events` lock acquired.
2128                                 $self.pending_events_processor.store(false, Ordering::Release);
2129                         }
2130
2131                         if !post_event_actions.is_empty() {
2132                                 $self.handle_post_event_actions(post_event_actions);
2133                                 // If we had some actions, go around again as we may have more events now
2134                                 processed_all_events = false;
2135                         }
2136
2137                         if result == NotifyOption::DoPersist {
2138                                 $self.persistence_notifier.notify();
2139                         }
2140                 }
2141         }
2142 }
2143
2144 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>
2145 where
2146         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
2147         T::Target: BroadcasterInterface,
2148         ES::Target: EntropySource,
2149         NS::Target: NodeSigner,
2150         SP::Target: SignerProvider,
2151         F::Target: FeeEstimator,
2152         R::Target: Router,
2153         L::Target: Logger,
2154 {
2155         /// Constructs a new `ChannelManager` to hold several channels and route between them.
2156         ///
2157         /// The current time or latest block header time can be provided as the `current_timestamp`.
2158         ///
2159         /// This is the main "logic hub" for all channel-related actions, and implements
2160         /// [`ChannelMessageHandler`].
2161         ///
2162         /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
2163         ///
2164         /// Users need to notify the new `ChannelManager` when a new block is connected or
2165         /// disconnected using its [`block_connected`] and [`block_disconnected`] methods, starting
2166         /// from after [`params.best_block.block_hash`]. See [`chain::Listen`] and [`chain::Confirm`] for
2167         /// more details.
2168         ///
2169         /// [`block_connected`]: chain::Listen::block_connected
2170         /// [`block_disconnected`]: chain::Listen::block_disconnected
2171         /// [`params.best_block.block_hash`]: chain::BestBlock::block_hash
2172         pub fn new(
2173                 fee_est: F, chain_monitor: M, tx_broadcaster: T, router: R, logger: L, entropy_source: ES,
2174                 node_signer: NS, signer_provider: SP, config: UserConfig, params: ChainParameters,
2175                 current_timestamp: u32,
2176         ) -> Self {
2177                 let mut secp_ctx = Secp256k1::new();
2178                 secp_ctx.seeded_randomize(&entropy_source.get_secure_random_bytes());
2179                 let inbound_pmt_key_material = node_signer.get_inbound_payment_key_material();
2180                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
2181                 ChannelManager {
2182                         default_configuration: config.clone(),
2183                         genesis_hash: genesis_block(params.network).header.block_hash(),
2184                         fee_estimator: LowerBoundedFeeEstimator::new(fee_est),
2185                         chain_monitor,
2186                         tx_broadcaster,
2187                         router,
2188
2189                         best_block: RwLock::new(params.best_block),
2190
2191                         outbound_scid_aliases: Mutex::new(HashSet::new()),
2192                         pending_inbound_payments: Mutex::new(HashMap::new()),
2193                         pending_outbound_payments: OutboundPayments::new(),
2194                         forward_htlcs: Mutex::new(HashMap::new()),
2195                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments: HashMap::new(), pending_claiming_payments: HashMap::new() }),
2196                         pending_intercepted_htlcs: Mutex::new(HashMap::new()),
2197                         id_to_peer: Mutex::new(HashMap::new()),
2198                         short_to_chan_info: FairRwLock::new(HashMap::new()),
2199
2200                         our_network_pubkey: node_signer.get_node_id(Recipient::Node).unwrap(),
2201                         secp_ctx,
2202
2203                         inbound_payment_key: expanded_inbound_key,
2204                         fake_scid_rand_bytes: entropy_source.get_secure_random_bytes(),
2205
2206                         probing_cookie_secret: entropy_source.get_secure_random_bytes(),
2207
2208                         highest_seen_timestamp: AtomicUsize::new(current_timestamp as usize),
2209
2210                         per_peer_state: FairRwLock::new(HashMap::new()),
2211
2212                         pending_events: Mutex::new(VecDeque::new()),
2213                         pending_events_processor: AtomicBool::new(false),
2214                         pending_background_events: Mutex::new(Vec::new()),
2215                         total_consistency_lock: RwLock::new(()),
2216                         background_events_processed_since_startup: AtomicBool::new(false),
2217                         persistence_notifier: Notifier::new(),
2218
2219                         entropy_source,
2220                         node_signer,
2221                         signer_provider,
2222
2223                         logger,
2224                 }
2225         }
2226
2227         /// Gets the current configuration applied to all new channels.
2228         pub fn get_current_default_configuration(&self) -> &UserConfig {
2229                 &self.default_configuration
2230         }
2231
2232         fn create_and_insert_outbound_scid_alias(&self) -> u64 {
2233                 let height = self.best_block.read().unwrap().height();
2234                 let mut outbound_scid_alias = 0;
2235                 let mut i = 0;
2236                 loop {
2237                         if cfg!(fuzzing) { // fuzzing chacha20 doesn't use the key at all so we always get the same alias
2238                                 outbound_scid_alias += 1;
2239                         } else {
2240                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias.get_fake_scid(height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
2241                         }
2242                         if outbound_scid_alias != 0 && self.outbound_scid_aliases.lock().unwrap().insert(outbound_scid_alias) {
2243                                 break;
2244                         }
2245                         i += 1;
2246                         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"); }
2247                 }
2248                 outbound_scid_alias
2249         }
2250
2251         /// Creates a new outbound channel to the given remote node and with the given value.
2252         ///
2253         /// `user_channel_id` will be provided back as in
2254         /// [`Event::FundingGenerationReady::user_channel_id`] to allow tracking of which events
2255         /// correspond with which `create_channel` call. Note that the `user_channel_id` defaults to a
2256         /// randomized value for inbound channels. `user_channel_id` has no meaning inside of LDK, it
2257         /// is simply copied to events and otherwise ignored.
2258         ///
2259         /// Raises [`APIError::APIMisuseError`] when `channel_value_satoshis` > 2**24 or `push_msat` is
2260         /// greater than `channel_value_satoshis * 1k` or `channel_value_satoshis < 1000`.
2261         ///
2262         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be opened due to failing to
2263         /// generate a shutdown scriptpubkey or destination script set by
2264         /// [`SignerProvider::get_shutdown_scriptpubkey`] or [`SignerProvider::get_destination_script`].
2265         ///
2266         /// Note that we do not check if you are currently connected to the given peer. If no
2267         /// connection is available, the outbound `open_channel` message may fail to send, resulting in
2268         /// the channel eventually being silently forgotten (dropped on reload).
2269         ///
2270         /// Returns the new Channel's temporary `channel_id`. This ID will appear as
2271         /// [`Event::FundingGenerationReady::temporary_channel_id`] and in
2272         /// [`ChannelDetails::channel_id`] until after
2273         /// [`ChannelManager::funding_transaction_generated`] is called, swapping the Channel's ID for
2274         /// one derived from the funding transaction's TXID. If the counterparty rejects the channel
2275         /// immediately, this temporary ID will appear in [`Event::ChannelClosed::channel_id`].
2276         ///
2277         /// [`Event::FundingGenerationReady::user_channel_id`]: events::Event::FundingGenerationReady::user_channel_id
2278         /// [`Event::FundingGenerationReady::temporary_channel_id`]: events::Event::FundingGenerationReady::temporary_channel_id
2279         /// [`Event::ChannelClosed::channel_id`]: events::Event::ChannelClosed::channel_id
2280         pub fn create_channel(&self, their_network_key: PublicKey, channel_value_satoshis: u64, push_msat: u64, user_channel_id: u128, override_config: Option<UserConfig>) -> Result<ChannelId, APIError> {
2281                 if channel_value_satoshis < 1000 {
2282                         return Err(APIError::APIMisuseError { err: format!("Channel value must be at least 1000 satoshis. It was {}", channel_value_satoshis) });
2283                 }
2284
2285                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2286                 // We want to make sure the lock is actually acquired by PersistenceNotifierGuard.
2287                 debug_assert!(&self.total_consistency_lock.try_write().is_err());
2288
2289                 let per_peer_state = self.per_peer_state.read().unwrap();
2290
2291                 let peer_state_mutex = per_peer_state.get(&their_network_key)
2292                         .ok_or_else(|| APIError::APIMisuseError{ err: format!("Not connected to node: {}", their_network_key) })?;
2293
2294                 let mut peer_state = peer_state_mutex.lock().unwrap();
2295                 let channel = {
2296                         let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
2297                         let their_features = &peer_state.latest_features;
2298                         let config = if override_config.is_some() { override_config.as_ref().unwrap() } else { &self.default_configuration };
2299                         match OutboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider, their_network_key,
2300                                 their_features, channel_value_satoshis, push_msat, user_channel_id, config,
2301                                 self.best_block.read().unwrap().height(), outbound_scid_alias)
2302                         {
2303                                 Ok(res) => res,
2304                                 Err(e) => {
2305                                         self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
2306                                         return Err(e);
2307                                 },
2308                         }
2309                 };
2310                 let res = channel.get_open_channel(self.genesis_hash.clone());
2311
2312                 let temporary_channel_id = channel.context.channel_id();
2313                 match peer_state.channel_by_id.entry(temporary_channel_id) {
2314                         hash_map::Entry::Occupied(_) => {
2315                                 if cfg!(fuzzing) {
2316                                         return Err(APIError::APIMisuseError { err: "Fuzzy bad RNG".to_owned() });
2317                                 } else {
2318                                         panic!("RNG is bad???");
2319                                 }
2320                         },
2321                         hash_map::Entry::Vacant(entry) => { entry.insert(ChannelPhase::UnfundedOutboundV1(channel)); }
2322                 }
2323
2324                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
2325                         node_id: their_network_key,
2326                         msg: res,
2327                 });
2328                 Ok(temporary_channel_id)
2329         }
2330
2331         fn list_funded_channels_with_filter<Fn: FnMut(&(&ChannelId, &Channel<SP>)) -> bool + Copy>(&self, f: Fn) -> 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                                 res.extend(peer_state.channel_by_id.iter()
2346                                         .filter_map(|(chan_id, phase)| match phase {
2347                                                 // Only `Channels` in the `ChannelPhase::Funded` phase can be considered funded.
2348                                                 ChannelPhase::Funded(chan) => Some((chan_id, chan)),
2349                                                 _ => None,
2350                                         })
2351                                         .filter(f)
2352                                         .map(|(_channel_id, channel)| {
2353                                                 ChannelDetails::from_channel_context(&channel.context, best_block_height,
2354                                                         peer_state.latest_features.clone(), &self.fee_estimator)
2355                                         })
2356                                 );
2357                         }
2358                 }
2359                 res
2360         }
2361
2362         /// Gets the list of open channels, in random order. See [`ChannelDetails`] field documentation for
2363         /// more information.
2364         pub fn list_channels(&self) -> Vec<ChannelDetails> {
2365                 // Allocate our best estimate of the number of channels we have in the `res`
2366                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2367                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2368                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2369                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2370                 // the same channel.
2371                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2372                 {
2373                         let best_block_height = self.best_block.read().unwrap().height();
2374                         let per_peer_state = self.per_peer_state.read().unwrap();
2375                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2376                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2377                                 let peer_state = &mut *peer_state_lock;
2378                                 for context in peer_state.channel_by_id.iter().map(|(_, phase)| phase.context()) {
2379                                         let details = ChannelDetails::from_channel_context(context, best_block_height,
2380                                                 peer_state.latest_features.clone(), &self.fee_estimator);
2381                                         res.push(details);
2382                                 }
2383                         }
2384                 }
2385                 res
2386         }
2387
2388         /// Gets the list of usable channels, in random order. Useful as an argument to
2389         /// [`Router::find_route`] to ensure non-announced channels are used.
2390         ///
2391         /// These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
2392         /// documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
2393         /// are.
2394         pub fn list_usable_channels(&self) -> Vec<ChannelDetails> {
2395                 // Note we use is_live here instead of usable which leads to somewhat confused
2396                 // internal/external nomenclature, but that's ok cause that's probably what the user
2397                 // really wanted anyway.
2398                 self.list_funded_channels_with_filter(|&(_, ref channel)| channel.context.is_live())
2399         }
2400
2401         /// Gets the list of channels we have with a given counterparty, in random order.
2402         pub fn list_channels_with_counterparty(&self, counterparty_node_id: &PublicKey) -> Vec<ChannelDetails> {
2403                 let best_block_height = self.best_block.read().unwrap().height();
2404                 let per_peer_state = self.per_peer_state.read().unwrap();
2405
2406                 if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
2407                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2408                         let peer_state = &mut *peer_state_lock;
2409                         let features = &peer_state.latest_features;
2410                         let context_to_details = |context| {
2411                                 ChannelDetails::from_channel_context(context, best_block_height, features.clone(), &self.fee_estimator)
2412                         };
2413                         return peer_state.channel_by_id
2414                                 .iter()
2415                                 .map(|(_, phase)| phase.context())
2416                                 .map(context_to_details)
2417                                 .collect();
2418                 }
2419                 vec![]
2420         }
2421
2422         /// Returns in an undefined order recent payments that -- if not fulfilled -- have yet to find a
2423         /// successful path, or have unresolved HTLCs.
2424         ///
2425         /// This can be useful for payments that may have been prepared, but ultimately not sent, as a
2426         /// result of a crash. If such a payment exists, is not listed here, and an
2427         /// [`Event::PaymentSent`] has not been received, you may consider resending the payment.
2428         ///
2429         /// [`Event::PaymentSent`]: events::Event::PaymentSent
2430         pub fn list_recent_payments(&self) -> Vec<RecentPaymentDetails> {
2431                 self.pending_outbound_payments.pending_outbound_payments.lock().unwrap().iter()
2432                         .filter_map(|(payment_id, pending_outbound_payment)| match pending_outbound_payment {
2433                                 PendingOutboundPayment::AwaitingInvoice { .. } => {
2434                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
2435                                 },
2436                                 // InvoiceReceived is an intermediate state and doesn't need to be exposed
2437                                 PendingOutboundPayment::InvoiceReceived { .. } => {
2438                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
2439                                 },
2440                                 PendingOutboundPayment::Retryable { payment_hash, total_msat, .. } => {
2441                                         Some(RecentPaymentDetails::Pending {
2442                                                 payment_id: *payment_id,
2443                                                 payment_hash: *payment_hash,
2444                                                 total_msat: *total_msat,
2445                                         })
2446                                 },
2447                                 PendingOutboundPayment::Abandoned { payment_hash, .. } => {
2448                                         Some(RecentPaymentDetails::Abandoned { payment_id: *payment_id, payment_hash: *payment_hash })
2449                                 },
2450                                 PendingOutboundPayment::Fulfilled { payment_hash, .. } => {
2451                                         Some(RecentPaymentDetails::Fulfilled { payment_id: *payment_id, payment_hash: *payment_hash })
2452                                 },
2453                                 PendingOutboundPayment::Legacy { .. } => None
2454                         })
2455                         .collect()
2456         }
2457
2458         /// Helper function that issues the channel close events
2459         fn issue_channel_close_events(&self, context: &ChannelContext<SP>, closure_reason: ClosureReason) {
2460                 let mut pending_events_lock = self.pending_events.lock().unwrap();
2461                 match context.unbroadcasted_funding() {
2462                         Some(transaction) => {
2463                                 pending_events_lock.push_back((events::Event::DiscardFunding {
2464                                         channel_id: context.channel_id(), transaction
2465                                 }, None));
2466                         },
2467                         None => {},
2468                 }
2469                 pending_events_lock.push_back((events::Event::ChannelClosed {
2470                         channel_id: context.channel_id(),
2471                         user_channel_id: context.get_user_id(),
2472                         reason: closure_reason,
2473                         counterparty_node_id: Some(context.get_counterparty_node_id()),
2474                         channel_capacity_sats: Some(context.get_value_satoshis()),
2475                 }, None));
2476         }
2477
2478         fn close_channel_internal(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, target_feerate_sats_per_1000_weight: Option<u32>, override_shutdown_script: Option<ShutdownScript>) -> Result<(), APIError> {
2479                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2480
2481                 let mut failed_htlcs: Vec<(HTLCSource, PaymentHash)>;
2482                 let result: Result<(), _> = loop {
2483                         {
2484                                 let per_peer_state = self.per_peer_state.read().unwrap();
2485
2486                                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
2487                                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
2488
2489                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2490                                 let peer_state = &mut *peer_state_lock;
2491
2492                                 match peer_state.channel_by_id.entry(channel_id.clone()) {
2493                                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
2494                                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
2495                                                         let funding_txo_opt = chan.context.get_funding_txo();
2496                                                         let their_features = &peer_state.latest_features;
2497                                                         let (shutdown_msg, mut monitor_update_opt, htlcs) =
2498                                                                 chan.get_shutdown(&self.signer_provider, their_features, target_feerate_sats_per_1000_weight, override_shutdown_script)?;
2499                                                         failed_htlcs = htlcs;
2500
2501                                                         // We can send the `shutdown` message before updating the `ChannelMonitor`
2502                                                         // here as we don't need the monitor update to complete until we send a
2503                                                         // `shutdown_signed`, which we'll delay if we're pending a monitor update.
2504                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
2505                                                                 node_id: *counterparty_node_id,
2506                                                                 msg: shutdown_msg,
2507                                                         });
2508
2509                                                         // Update the monitor with the shutdown script if necessary.
2510                                                         if let Some(monitor_update) = monitor_update_opt.take() {
2511                                                                 break handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
2512                                                                         peer_state_lock, peer_state, per_peer_state, chan_phase_entry).map(|_| ());
2513                                                         }
2514
2515                                                         if chan.is_shutdown() {
2516                                                                 if let ChannelPhase::Funded(chan) = remove_channel_phase!(self, chan_phase_entry) {
2517                                                                         if let Ok(channel_update) = self.get_channel_update_for_broadcast(&chan) {
2518                                                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2519                                                                                         msg: channel_update
2520                                                                                 });
2521                                                                         }
2522                                                                         self.issue_channel_close_events(&chan.context, ClosureReason::HolderForceClosed);
2523                                                                 }
2524                                                         }
2525                                                         break Ok(());
2526                                                 }
2527                                         },
2528                                         hash_map::Entry::Vacant(_) => (),
2529                                 }
2530                         }
2531                         // If we reach this point, it means that the channel_id either refers to an unfunded channel or
2532                         // it does not exist for this peer. Either way, we can attempt to force-close it.
2533                         //
2534                         // An appropriate error will be returned for non-existence of the channel if that's the case.
2535                         return self.force_close_channel_with_peer(&channel_id, counterparty_node_id, None, false).map(|_| ())
2536                 };
2537
2538                 for htlc_source in failed_htlcs.drain(..) {
2539                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2540                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(*counterparty_node_id), channel_id: *channel_id };
2541                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
2542                 }
2543
2544                 let _ = handle_error!(self, result, *counterparty_node_id);
2545                 Ok(())
2546         }
2547
2548         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2549         /// will be accepted on the given channel, and after additional timeout/the closing of all
2550         /// pending HTLCs, the channel will be closed on chain.
2551         ///
2552         ///  * If we are the channel initiator, we will pay between our [`Background`] and
2553         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2554         ///    estimate.
2555         ///  * If our counterparty is the channel initiator, we will require a channel closing
2556         ///    transaction feerate of at least our [`Background`] feerate or the feerate which
2557         ///    would appear on a force-closure transaction, whichever is lower. We will allow our
2558         ///    counterparty to pay as much fee as they'd like, however.
2559         ///
2560         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2561         ///
2562         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2563         /// generate a shutdown scriptpubkey or destination script set by
2564         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2565         /// channel.
2566         ///
2567         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2568         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2569         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2570         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2571         pub fn close_channel(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey) -> Result<(), APIError> {
2572                 self.close_channel_internal(channel_id, counterparty_node_id, None, None)
2573         }
2574
2575         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2576         /// will be accepted on the given channel, and after additional timeout/the closing of all
2577         /// pending HTLCs, the channel will be closed on chain.
2578         ///
2579         /// `target_feerate_sat_per_1000_weight` has different meanings depending on if we initiated
2580         /// the channel being closed or not:
2581         ///  * If we are the channel initiator, we will pay at least this feerate on the closing
2582         ///    transaction. The upper-bound is set by
2583         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2584         ///    estimate (or `target_feerate_sat_per_1000_weight`, if it is greater).
2585         ///  * If our counterparty is the channel initiator, we will refuse to accept a channel closure
2586         ///    transaction feerate below `target_feerate_sat_per_1000_weight` (or the feerate which
2587         ///    will appear on a force-closure transaction, whichever is lower).
2588         ///
2589         /// The `shutdown_script` provided  will be used as the `scriptPubKey` for the closing transaction.
2590         /// Will fail if a shutdown script has already been set for this channel by
2591         /// ['ChannelHandshakeConfig::commit_upfront_shutdown_pubkey`]. The given shutdown script must
2592         /// also be compatible with our and the counterparty's features.
2593         ///
2594         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2595         ///
2596         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2597         /// generate a shutdown scriptpubkey or destination script set by
2598         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2599         /// channel.
2600         ///
2601         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2602         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2603         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2604         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2605         pub fn close_channel_with_feerate_and_script(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, target_feerate_sats_per_1000_weight: Option<u32>, shutdown_script: Option<ShutdownScript>) -> Result<(), APIError> {
2606                 self.close_channel_internal(channel_id, counterparty_node_id, target_feerate_sats_per_1000_weight, shutdown_script)
2607         }
2608
2609         #[inline]
2610         fn finish_force_close_channel(&self, shutdown_res: ShutdownResult) {
2611                 let (monitor_update_option, mut failed_htlcs) = shutdown_res;
2612                 log_debug!(self.logger, "Finishing force-closure of channel with {} HTLCs to fail", failed_htlcs.len());
2613                 for htlc_source in failed_htlcs.drain(..) {
2614                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
2615                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2616                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2617                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
2618                 }
2619                 if let Some((_, funding_txo, monitor_update)) = monitor_update_option {
2620                         // There isn't anything we can do if we get an update failure - we're already
2621                         // force-closing. The monitor update on the required in-memory copy should broadcast
2622                         // the latest local state, which is the best we can do anyway. Thus, it is safe to
2623                         // ignore the result here.
2624                         let _ = self.chain_monitor.update_channel(funding_txo, &monitor_update);
2625                 }
2626         }
2627
2628         /// `peer_msg` should be set when we receive a message from a peer, but not set when the
2629         /// user closes, which will be re-exposed as the `ChannelClosed` reason.
2630         fn force_close_channel_with_peer(&self, channel_id: &ChannelId, peer_node_id: &PublicKey, peer_msg: Option<&String>, broadcast: bool)
2631         -> Result<PublicKey, APIError> {
2632                 let per_peer_state = self.per_peer_state.read().unwrap();
2633                 let peer_state_mutex = per_peer_state.get(peer_node_id)
2634                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", peer_node_id) })?;
2635                 let (update_opt, counterparty_node_id) = {
2636                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2637                         let peer_state = &mut *peer_state_lock;
2638                         let closure_reason = if let Some(peer_msg) = peer_msg {
2639                                 ClosureReason::CounterpartyForceClosed { peer_msg: UntrustedString(peer_msg.to_string()) }
2640                         } else {
2641                                 ClosureReason::HolderForceClosed
2642                         };
2643                         if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(channel_id.clone()) {
2644                                 log_error!(self.logger, "Force-closing channel {}", channel_id);
2645                                 self.issue_channel_close_events(&chan_phase_entry.get().context(), closure_reason);
2646                                 let mut chan_phase = remove_channel_phase!(self, chan_phase_entry);
2647                                 match chan_phase {
2648                                         ChannelPhase::Funded(mut chan) => {
2649                                                 self.finish_force_close_channel(chan.context.force_shutdown(broadcast));
2650                                                 (self.get_channel_update_for_broadcast(&chan).ok(), chan.context.get_counterparty_node_id())
2651                                         },
2652                                         ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => {
2653                                                 self.finish_force_close_channel(chan_phase.context_mut().force_shutdown(false));
2654                                                 // Unfunded channel has no update
2655                                                 (None, chan_phase.context().get_counterparty_node_id())
2656                                         },
2657                                 }
2658                         } else if peer_state.inbound_channel_request_by_id.remove(channel_id).is_some() {
2659                                 log_error!(self.logger, "Force-closing channel {}", &channel_id);
2660                                 // N.B. that we don't send any channel close event here: we
2661                                 // don't have a user_channel_id, and we never sent any opening
2662                                 // events anyway.
2663                                 (None, *peer_node_id)
2664                         } else {
2665                                 return Err(APIError::ChannelUnavailable{ err: format!("Channel with id {} not found for the passed counterparty node_id {}", channel_id, peer_node_id) });
2666                         }
2667                 };
2668                 if let Some(update) = update_opt {
2669                         let mut peer_state = peer_state_mutex.lock().unwrap();
2670                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2671                                 msg: update
2672                         });
2673                 }
2674
2675                 Ok(counterparty_node_id)
2676         }
2677
2678         fn force_close_sending_error(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, broadcast: bool) -> Result<(), APIError> {
2679                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2680                 match self.force_close_channel_with_peer(channel_id, counterparty_node_id, None, broadcast) {
2681                         Ok(counterparty_node_id) => {
2682                                 let per_peer_state = self.per_peer_state.read().unwrap();
2683                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2684                                         let mut peer_state = peer_state_mutex.lock().unwrap();
2685                                         peer_state.pending_msg_events.push(
2686                                                 events::MessageSendEvent::HandleError {
2687                                                         node_id: counterparty_node_id,
2688                                                         action: msgs::ErrorAction::SendErrorMessage {
2689                                                                 msg: msgs::ErrorMessage { channel_id: *channel_id, data: "Channel force-closed".to_owned() }
2690                                                         },
2691                                                 }
2692                                         );
2693                                 }
2694                                 Ok(())
2695                         },
2696                         Err(e) => Err(e)
2697                 }
2698         }
2699
2700         /// Force closes a channel, immediately broadcasting the latest local transaction(s) and
2701         /// rejecting new HTLCs on the given channel. Fails if `channel_id` is unknown to
2702         /// the manager, or if the `counterparty_node_id` isn't the counterparty of the corresponding
2703         /// channel.
2704         pub fn force_close_broadcasting_latest_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey)
2705         -> Result<(), APIError> {
2706                 self.force_close_sending_error(channel_id, counterparty_node_id, true)
2707         }
2708
2709         /// Force closes a channel, rejecting new HTLCs on the given channel but skips broadcasting
2710         /// the latest local transaction(s). Fails if `channel_id` is unknown to the manager, or if the
2711         /// `counterparty_node_id` isn't the counterparty of the corresponding channel.
2712         ///
2713         /// You can always get the latest local transaction(s) to broadcast from
2714         /// [`ChannelMonitor::get_latest_holder_commitment_txn`].
2715         pub fn force_close_without_broadcasting_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey)
2716         -> Result<(), APIError> {
2717                 self.force_close_sending_error(channel_id, counterparty_node_id, false)
2718         }
2719
2720         /// Force close all channels, immediately broadcasting the latest local commitment transaction
2721         /// for each to the chain and rejecting new HTLCs on each.
2722         pub fn force_close_all_channels_broadcasting_latest_txn(&self) {
2723                 for chan in self.list_channels() {
2724                         let _ = self.force_close_broadcasting_latest_txn(&chan.channel_id, &chan.counterparty.node_id);
2725                 }
2726         }
2727
2728         /// Force close all channels rejecting new HTLCs on each but without broadcasting the latest
2729         /// local transaction(s).
2730         pub fn force_close_all_channels_without_broadcasting_txn(&self) {
2731                 for chan in self.list_channels() {
2732                         let _ = self.force_close_without_broadcasting_txn(&chan.channel_id, &chan.counterparty.node_id);
2733                 }
2734         }
2735
2736         fn construct_fwd_pending_htlc_info(
2737                 &self, msg: &msgs::UpdateAddHTLC, hop_data: msgs::InboundOnionPayload, hop_hmac: [u8; 32],
2738                 new_packet_bytes: [u8; onion_utils::ONION_DATA_LEN], shared_secret: [u8; 32],
2739                 next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>
2740         ) -> Result<PendingHTLCInfo, InboundOnionErr> {
2741                 debug_assert!(next_packet_pubkey_opt.is_some());
2742                 let outgoing_packet = msgs::OnionPacket {
2743                         version: 0,
2744                         public_key: next_packet_pubkey_opt.unwrap_or(Err(secp256k1::Error::InvalidPublicKey)),
2745                         hop_data: new_packet_bytes,
2746                         hmac: hop_hmac,
2747                 };
2748
2749                 let (short_channel_id, amt_to_forward, outgoing_cltv_value) = match hop_data {
2750                         msgs::InboundOnionPayload::Forward { short_channel_id, amt_to_forward, outgoing_cltv_value } =>
2751                                 (short_channel_id, amt_to_forward, outgoing_cltv_value),
2752                         msgs::InboundOnionPayload::Receive { .. } =>
2753                                 return Err(InboundOnionErr {
2754                                         msg: "Final Node OnionHopData provided for us as an intermediary node",
2755                                         err_code: 0x4000 | 22,
2756                                         err_data: Vec::new(),
2757                                 }),
2758                 };
2759
2760                 Ok(PendingHTLCInfo {
2761                         routing: PendingHTLCRouting::Forward {
2762                                 onion_packet: outgoing_packet,
2763                                 short_channel_id,
2764                         },
2765                         payment_hash: msg.payment_hash,
2766                         incoming_shared_secret: shared_secret,
2767                         incoming_amt_msat: Some(msg.amount_msat),
2768                         outgoing_amt_msat: amt_to_forward,
2769                         outgoing_cltv_value,
2770                         skimmed_fee_msat: None,
2771                 })
2772         }
2773
2774         fn construct_recv_pending_htlc_info(
2775                 &self, hop_data: msgs::InboundOnionPayload, shared_secret: [u8; 32], payment_hash: PaymentHash,
2776                 amt_msat: u64, cltv_expiry: u32, phantom_shared_secret: Option<[u8; 32]>, allow_underpay: bool,
2777                 counterparty_skimmed_fee_msat: Option<u64>,
2778         ) -> Result<PendingHTLCInfo, InboundOnionErr> {
2779                 let (payment_data, keysend_preimage, custom_tlvs, onion_amt_msat, outgoing_cltv_value, payment_metadata) = match hop_data {
2780                         msgs::InboundOnionPayload::Receive {
2781                                 payment_data, keysend_preimage, custom_tlvs, amt_msat, outgoing_cltv_value, payment_metadata, ..
2782                         } =>
2783                                 (payment_data, keysend_preimage, custom_tlvs, amt_msat, outgoing_cltv_value, payment_metadata),
2784                         _ =>
2785                                 return Err(InboundOnionErr {
2786                                         err_code: 0x4000|22,
2787                                         err_data: Vec::new(),
2788                                         msg: "Got non final data with an HMAC of 0",
2789                                 }),
2790                 };
2791                 // final_incorrect_cltv_expiry
2792                 if outgoing_cltv_value > cltv_expiry {
2793                         return Err(InboundOnionErr {
2794                                 msg: "Upstream node set CLTV to less than the CLTV set by the sender",
2795                                 err_code: 18,
2796                                 err_data: cltv_expiry.to_be_bytes().to_vec()
2797                         })
2798                 }
2799                 // final_expiry_too_soon
2800                 // We have to have some headroom to broadcast on chain if we have the preimage, so make sure
2801                 // we have at least HTLC_FAIL_BACK_BUFFER blocks to go.
2802                 //
2803                 // Also, ensure that, in the case of an unknown preimage for the received payment hash, our
2804                 // payment logic has enough time to fail the HTLC backward before our onchain logic triggers a
2805                 // channel closure (see HTLC_FAIL_BACK_BUFFER rationale).
2806                 let current_height: u32 = self.best_block.read().unwrap().height();
2807                 if (outgoing_cltv_value as u64) <= current_height as u64 + HTLC_FAIL_BACK_BUFFER as u64 + 1 {
2808                         let mut err_data = Vec::with_capacity(12);
2809                         err_data.extend_from_slice(&amt_msat.to_be_bytes());
2810                         err_data.extend_from_slice(&current_height.to_be_bytes());
2811                         return Err(InboundOnionErr {
2812                                 err_code: 0x4000 | 15, err_data,
2813                                 msg: "The final CLTV expiry is too soon to handle",
2814                         });
2815                 }
2816                 if (!allow_underpay && onion_amt_msat > amt_msat) ||
2817                         (allow_underpay && onion_amt_msat >
2818                          amt_msat.saturating_add(counterparty_skimmed_fee_msat.unwrap_or(0)))
2819                 {
2820                         return Err(InboundOnionErr {
2821                                 err_code: 19,
2822                                 err_data: amt_msat.to_be_bytes().to_vec(),
2823                                 msg: "Upstream node sent less than we were supposed to receive in payment",
2824                         });
2825                 }
2826
2827                 let routing = if let Some(payment_preimage) = keysend_preimage {
2828                         // We need to check that the sender knows the keysend preimage before processing this
2829                         // payment further. Otherwise, an intermediary routing hop forwarding non-keysend-HTLC X
2830                         // could discover the final destination of X, by probing the adjacent nodes on the route
2831                         // with a keysend payment of identical payment hash to X and observing the processing
2832                         // time discrepancies due to a hash collision with X.
2833                         let hashed_preimage = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
2834                         if hashed_preimage != payment_hash {
2835                                 return Err(InboundOnionErr {
2836                                         err_code: 0x4000|22,
2837                                         err_data: Vec::new(),
2838                                         msg: "Payment preimage didn't match payment hash",
2839                                 });
2840                         }
2841                         if !self.default_configuration.accept_mpp_keysend && payment_data.is_some() {
2842                                 return Err(InboundOnionErr {
2843                                         err_code: 0x4000|22,
2844                                         err_data: Vec::new(),
2845                                         msg: "We don't support MPP keysend payments",
2846                                 });
2847                         }
2848                         PendingHTLCRouting::ReceiveKeysend {
2849                                 payment_data,
2850                                 payment_preimage,
2851                                 payment_metadata,
2852                                 incoming_cltv_expiry: outgoing_cltv_value,
2853                                 custom_tlvs,
2854                         }
2855                 } else if let Some(data) = payment_data {
2856                         PendingHTLCRouting::Receive {
2857                                 payment_data: data,
2858                                 payment_metadata,
2859                                 incoming_cltv_expiry: outgoing_cltv_value,
2860                                 phantom_shared_secret,
2861                                 custom_tlvs,
2862                         }
2863                 } else {
2864                         return Err(InboundOnionErr {
2865                                 err_code: 0x4000|0x2000|3,
2866                                 err_data: Vec::new(),
2867                                 msg: "We require payment_secrets",
2868                         });
2869                 };
2870                 Ok(PendingHTLCInfo {
2871                         routing,
2872                         payment_hash,
2873                         incoming_shared_secret: shared_secret,
2874                         incoming_amt_msat: Some(amt_msat),
2875                         outgoing_amt_msat: onion_amt_msat,
2876                         outgoing_cltv_value,
2877                         skimmed_fee_msat: counterparty_skimmed_fee_msat,
2878                 })
2879         }
2880
2881         fn decode_update_add_htlc_onion(
2882                 &self, msg: &msgs::UpdateAddHTLC
2883         ) -> Result<(onion_utils::Hop, [u8; 32], Option<Result<PublicKey, secp256k1::Error>>), HTLCFailureMsg> {
2884                 macro_rules! return_malformed_err {
2885                         ($msg: expr, $err_code: expr) => {
2886                                 {
2887                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2888                                         return Err(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
2889                                                 channel_id: msg.channel_id,
2890                                                 htlc_id: msg.htlc_id,
2891                                                 sha256_of_onion: Sha256::hash(&msg.onion_routing_packet.hop_data).into_inner(),
2892                                                 failure_code: $err_code,
2893                                         }));
2894                                 }
2895                         }
2896                 }
2897
2898                 if let Err(_) = msg.onion_routing_packet.public_key {
2899                         return_malformed_err!("invalid ephemeral pubkey", 0x8000 | 0x4000 | 6);
2900                 }
2901
2902                 let shared_secret = self.node_signer.ecdh(
2903                         Recipient::Node, &msg.onion_routing_packet.public_key.unwrap(), None
2904                 ).unwrap().secret_bytes();
2905
2906                 if msg.onion_routing_packet.version != 0 {
2907                         //TODO: Spec doesn't indicate if we should only hash hop_data here (and in other
2908                         //sha256_of_onion error data packets), or the entire onion_routing_packet. Either way,
2909                         //the hash doesn't really serve any purpose - in the case of hashing all data, the
2910                         //receiving node would have to brute force to figure out which version was put in the
2911                         //packet by the node that send us the message, in the case of hashing the hop_data, the
2912                         //node knows the HMAC matched, so they already know what is there...
2913                         return_malformed_err!("Unknown onion packet version", 0x8000 | 0x4000 | 4);
2914                 }
2915                 macro_rules! return_err {
2916                         ($msg: expr, $err_code: expr, $data: expr) => {
2917                                 {
2918                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2919                                         return Err(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
2920                                                 channel_id: msg.channel_id,
2921                                                 htlc_id: msg.htlc_id,
2922                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
2923                                                         .get_encrypted_failure_packet(&shared_secret, &None),
2924                                         }));
2925                                 }
2926                         }
2927                 }
2928
2929                 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) {
2930                         Ok(res) => res,
2931                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
2932                                 return_malformed_err!(err_msg, err_code);
2933                         },
2934                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
2935                                 return_err!(err_msg, err_code, &[0; 0]);
2936                         },
2937                 };
2938                 let (outgoing_scid, outgoing_amt_msat, outgoing_cltv_value, next_packet_pk_opt) = match next_hop {
2939                         onion_utils::Hop::Forward {
2940                                 next_hop_data: msgs::InboundOnionPayload::Forward {
2941                                         short_channel_id, amt_to_forward, outgoing_cltv_value
2942                                 }, ..
2943                         } => {
2944                                 let next_packet_pk = onion_utils::next_hop_pubkey(&self.secp_ctx,
2945                                         msg.onion_routing_packet.public_key.unwrap(), &shared_secret);
2946                                 (short_channel_id, amt_to_forward, outgoing_cltv_value, Some(next_packet_pk))
2947                         },
2948                         // We'll do receive checks in [`Self::construct_pending_htlc_info`] so we have access to the
2949                         // inbound channel's state.
2950                         onion_utils::Hop::Receive { .. } => return Ok((next_hop, shared_secret, None)),
2951                         onion_utils::Hop::Forward { next_hop_data: msgs::InboundOnionPayload::Receive { .. }, .. } => {
2952                                 return_err!("Final Node OnionHopData provided for us as an intermediary node", 0x4000 | 22, &[0; 0]);
2953                         }
2954                 };
2955
2956                 // Perform outbound checks here instead of in [`Self::construct_pending_htlc_info`] because we
2957                 // can't hold the outbound peer state lock at the same time as the inbound peer state lock.
2958                 if let Some((err, mut code, chan_update)) = loop {
2959                         let id_option = self.short_to_chan_info.read().unwrap().get(&outgoing_scid).cloned();
2960                         let forwarding_chan_info_opt = match id_option {
2961                                 None => { // unknown_next_peer
2962                                         // Note that this is likely a timing oracle for detecting whether an scid is a
2963                                         // phantom or an intercept.
2964                                         if (self.default_configuration.accept_intercept_htlcs &&
2965                                                 fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, outgoing_scid, &self.genesis_hash)) ||
2966                                                 fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, outgoing_scid, &self.genesis_hash)
2967                                         {
2968                                                 None
2969                                         } else {
2970                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2971                                         }
2972                                 },
2973                                 Some((cp_id, id)) => Some((cp_id.clone(), id.clone())),
2974                         };
2975                         let chan_update_opt = if let Some((counterparty_node_id, forwarding_id)) = forwarding_chan_info_opt {
2976                                 let per_peer_state = self.per_peer_state.read().unwrap();
2977                                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
2978                                 if peer_state_mutex_opt.is_none() {
2979                                         break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2980                                 }
2981                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
2982                                 let peer_state = &mut *peer_state_lock;
2983                                 let chan = match peer_state.channel_by_id.get_mut(&forwarding_id).map(
2984                                         |chan_phase| if let ChannelPhase::Funded(chan) = chan_phase { Some(chan) } else { None }
2985                                 ).flatten() {
2986                                         None => {
2987                                                 // Channel was removed. The short_to_chan_info and channel_by_id maps
2988                                                 // have no consistency guarantees.
2989                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2990                                         },
2991                                         Some(chan) => chan
2992                                 };
2993                                 if !chan.context.should_announce() && !self.default_configuration.accept_forwards_to_priv_channels {
2994                                         // Note that the behavior here should be identical to the above block - we
2995                                         // should NOT reveal the existence or non-existence of a private channel if
2996                                         // we don't allow forwards outbound over them.
2997                                         break Some(("Refusing to forward to a private channel based on our config.", 0x4000 | 10, None));
2998                                 }
2999                                 if chan.context.get_channel_type().supports_scid_privacy() && outgoing_scid != chan.context.outbound_scid_alias() {
3000                                         // `option_scid_alias` (referred to in LDK as `scid_privacy`) means
3001                                         // "refuse to forward unless the SCID alias was used", so we pretend
3002                                         // we don't have the channel here.
3003                                         break Some(("Refusing to forward over real channel SCID as our counterparty requested.", 0x4000 | 10, None));
3004                                 }
3005                                 let chan_update_opt = self.get_channel_update_for_onion(outgoing_scid, chan).ok();
3006
3007                                 // Note that we could technically not return an error yet here and just hope
3008                                 // that the connection is reestablished or monitor updated by the time we get
3009                                 // around to doing the actual forward, but better to fail early if we can and
3010                                 // hopefully an attacker trying to path-trace payments cannot make this occur
3011                                 // on a small/per-node/per-channel scale.
3012                                 if !chan.context.is_live() { // channel_disabled
3013                                         // If the channel_update we're going to return is disabled (i.e. the
3014                                         // peer has been disabled for some time), return `channel_disabled`,
3015                                         // otherwise return `temporary_channel_failure`.
3016                                         if chan_update_opt.as_ref().map(|u| u.contents.flags & 2 == 2).unwrap_or(false) {
3017                                                 break Some(("Forwarding channel has been disconnected for some time.", 0x1000 | 20, chan_update_opt));
3018                                         } else {
3019                                                 break Some(("Forwarding channel is not in a ready state.", 0x1000 | 7, chan_update_opt));
3020                                         }
3021                                 }
3022                                 if outgoing_amt_msat < chan.context.get_counterparty_htlc_minimum_msat() { // amount_below_minimum
3023                                         break Some(("HTLC amount was below the htlc_minimum_msat", 0x1000 | 11, chan_update_opt));
3024                                 }
3025                                 if let Err((err, code)) = chan.htlc_satisfies_config(&msg, outgoing_amt_msat, outgoing_cltv_value) {
3026                                         break Some((err, code, chan_update_opt));
3027                                 }
3028                                 chan_update_opt
3029                         } else {
3030                                 if (msg.cltv_expiry as u64) < (outgoing_cltv_value) as u64 + MIN_CLTV_EXPIRY_DELTA as u64 {
3031                                         // We really should set `incorrect_cltv_expiry` here but as we're not
3032                                         // forwarding over a real channel we can't generate a channel_update
3033                                         // for it. Instead we just return a generic temporary_node_failure.
3034                                         break Some((
3035                                                         "Forwarding node has tampered with the intended HTLC values or origin node has an obsolete cltv_expiry_delta",
3036                                                         0x2000 | 2, None,
3037                                         ));
3038                                 }
3039                                 None
3040                         };
3041
3042                         let cur_height = self.best_block.read().unwrap().height() + 1;
3043                         // Theoretically, channel counterparty shouldn't send us a HTLC expiring now,
3044                         // but we want to be robust wrt to counterparty packet sanitization (see
3045                         // HTLC_FAIL_BACK_BUFFER rationale).
3046                         if msg.cltv_expiry <= cur_height + HTLC_FAIL_BACK_BUFFER as u32 { // expiry_too_soon
3047                                 break Some(("CLTV expiry is too close", 0x1000 | 14, chan_update_opt));
3048                         }
3049                         if msg.cltv_expiry > cur_height + CLTV_FAR_FAR_AWAY as u32 { // expiry_too_far
3050                                 break Some(("CLTV expiry is too far in the future", 21, None));
3051                         }
3052                         // If the HTLC expires ~now, don't bother trying to forward it to our
3053                         // counterparty. They should fail it anyway, but we don't want to bother with
3054                         // the round-trips or risk them deciding they definitely want the HTLC and
3055                         // force-closing to ensure they get it if we're offline.
3056                         // We previously had a much more aggressive check here which tried to ensure
3057                         // our counterparty receives an HTLC which has *our* risk threshold met on it,
3058                         // but there is no need to do that, and since we're a bit conservative with our
3059                         // risk threshold it just results in failing to forward payments.
3060                         if (outgoing_cltv_value) as u64 <= (cur_height + LATENCY_GRACE_PERIOD_BLOCKS) as u64 {
3061                                 break Some(("Outgoing CLTV value is too soon", 0x1000 | 14, chan_update_opt));
3062                         }
3063
3064                         break None;
3065                 }
3066                 {
3067                         let mut res = VecWriter(Vec::with_capacity(chan_update.serialized_length() + 2 + 8 + 2));
3068                         if let Some(chan_update) = chan_update {
3069                                 if code == 0x1000 | 11 || code == 0x1000 | 12 {
3070                                         msg.amount_msat.write(&mut res).expect("Writes cannot fail");
3071                                 }
3072                                 else if code == 0x1000 | 13 {
3073                                         msg.cltv_expiry.write(&mut res).expect("Writes cannot fail");
3074                                 }
3075                                 else if code == 0x1000 | 20 {
3076                                         // TODO: underspecified, follow https://github.com/lightning/bolts/issues/791
3077                                         0u16.write(&mut res).expect("Writes cannot fail");
3078                                 }
3079                                 (chan_update.serialized_length() as u16 + 2).write(&mut res).expect("Writes cannot fail");
3080                                 msgs::ChannelUpdate::TYPE.write(&mut res).expect("Writes cannot fail");
3081                                 chan_update.write(&mut res).expect("Writes cannot fail");
3082                         } else if code & 0x1000 == 0x1000 {
3083                                 // If we're trying to return an error that requires a `channel_update` but
3084                                 // we're forwarding to a phantom or intercept "channel" (i.e. cannot
3085                                 // generate an update), just use the generic "temporary_node_failure"
3086                                 // instead.
3087                                 code = 0x2000 | 2;
3088                         }
3089                         return_err!(err, code, &res.0[..]);
3090                 }
3091                 Ok((next_hop, shared_secret, next_packet_pk_opt))
3092         }
3093
3094         fn construct_pending_htlc_status<'a>(
3095                 &self, msg: &msgs::UpdateAddHTLC, shared_secret: [u8; 32], decoded_hop: onion_utils::Hop,
3096                 allow_underpay: bool, next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>
3097         ) -> PendingHTLCStatus {
3098                 macro_rules! return_err {
3099                         ($msg: expr, $err_code: expr, $data: expr) => {
3100                                 {
3101                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3102                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
3103                                                 channel_id: msg.channel_id,
3104                                                 htlc_id: msg.htlc_id,
3105                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
3106                                                         .get_encrypted_failure_packet(&shared_secret, &None),
3107                                         }));
3108                                 }
3109                         }
3110                 }
3111                 match decoded_hop {
3112                         onion_utils::Hop::Receive(next_hop_data) => {
3113                                 // OUR PAYMENT!
3114                                 match self.construct_recv_pending_htlc_info(next_hop_data, shared_secret, msg.payment_hash,
3115                                         msg.amount_msat, msg.cltv_expiry, None, allow_underpay, msg.skimmed_fee_msat)
3116                                 {
3117                                         Ok(info) => {
3118                                                 // Note that we could obviously respond immediately with an update_fulfill_htlc
3119                                                 // message, however that would leak that we are the recipient of this payment, so
3120                                                 // instead we stay symmetric with the forwarding case, only responding (after a
3121                                                 // delay) once they've send us a commitment_signed!
3122                                                 PendingHTLCStatus::Forward(info)
3123                                         },
3124                                         Err(InboundOnionErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3125                                 }
3126                         },
3127                         onion_utils::Hop::Forward { next_hop_data, next_hop_hmac, new_packet_bytes } => {
3128                                 match self.construct_fwd_pending_htlc_info(msg, next_hop_data, next_hop_hmac,
3129                                         new_packet_bytes, shared_secret, next_packet_pubkey_opt) {
3130                                         Ok(info) => PendingHTLCStatus::Forward(info),
3131                                         Err(InboundOnionErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3132                                 }
3133                         }
3134                 }
3135         }
3136
3137         /// Gets the current [`channel_update`] for the given channel. This first checks if the channel is
3138         /// public, and thus should be called whenever the result is going to be passed out in a
3139         /// [`MessageSendEvent::BroadcastChannelUpdate`] event.
3140         ///
3141         /// Note that in [`internal_closing_signed`], this function is called without the `peer_state`
3142         /// corresponding to the channel's counterparty locked, as the channel been removed from the
3143         /// storage and the `peer_state` lock has been dropped.
3144         ///
3145         /// [`channel_update`]: msgs::ChannelUpdate
3146         /// [`internal_closing_signed`]: Self::internal_closing_signed
3147         fn get_channel_update_for_broadcast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3148                 if !chan.context.should_announce() {
3149                         return Err(LightningError {
3150                                 err: "Cannot broadcast a channel_update for a private channel".to_owned(),
3151                                 action: msgs::ErrorAction::IgnoreError
3152                         });
3153                 }
3154                 if chan.context.get_short_channel_id().is_none() {
3155                         return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError});
3156                 }
3157                 log_trace!(self.logger, "Attempting to generate broadcast channel update for channel {}", &chan.context.channel_id());
3158                 self.get_channel_update_for_unicast(chan)
3159         }
3160
3161         /// Gets the current [`channel_update`] for the given channel. This does not check if the channel
3162         /// is public (only returning an `Err` if the channel does not yet have an assigned SCID),
3163         /// and thus MUST NOT be called unless the recipient of the resulting message has already
3164         /// provided evidence that they know about the existence of the channel.
3165         ///
3166         /// Note that through [`internal_closing_signed`], this function is called without the
3167         /// `peer_state`  corresponding to the channel's counterparty locked, as the channel been
3168         /// removed from the storage and the `peer_state` lock has been dropped.
3169         ///
3170         /// [`channel_update`]: msgs::ChannelUpdate
3171         /// [`internal_closing_signed`]: Self::internal_closing_signed
3172         fn get_channel_update_for_unicast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3173                 log_trace!(self.logger, "Attempting to generate channel update for channel {}", &chan.context.channel_id());
3174                 let short_channel_id = match chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias()) {
3175                         None => return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError}),
3176                         Some(id) => id,
3177                 };
3178
3179                 self.get_channel_update_for_onion(short_channel_id, chan)
3180         }
3181
3182         fn get_channel_update_for_onion(&self, short_channel_id: u64, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3183                 log_trace!(self.logger, "Generating channel update for channel {}", &chan.context.channel_id());
3184                 let were_node_one = self.our_network_pubkey.serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
3185
3186                 let enabled = chan.context.is_usable() && match chan.channel_update_status() {
3187                         ChannelUpdateStatus::Enabled => true,
3188                         ChannelUpdateStatus::DisabledStaged(_) => true,
3189                         ChannelUpdateStatus::Disabled => false,
3190                         ChannelUpdateStatus::EnabledStaged(_) => false,
3191                 };
3192
3193                 let unsigned = msgs::UnsignedChannelUpdate {
3194                         chain_hash: self.genesis_hash,
3195                         short_channel_id,
3196                         timestamp: chan.context.get_update_time_counter(),
3197                         flags: (!were_node_one) as u8 | ((!enabled as u8) << 1),
3198                         cltv_expiry_delta: chan.context.get_cltv_expiry_delta(),
3199                         htlc_minimum_msat: chan.context.get_counterparty_htlc_minimum_msat(),
3200                         htlc_maximum_msat: chan.context.get_announced_htlc_max_msat(),
3201                         fee_base_msat: chan.context.get_outbound_forwarding_fee_base_msat(),
3202                         fee_proportional_millionths: chan.context.get_fee_proportional_millionths(),
3203                         excess_data: Vec::new(),
3204                 };
3205                 // Panic on failure to signal LDK should be restarted to retry signing the `ChannelUpdate`.
3206                 // If we returned an error and the `node_signer` cannot provide a signature for whatever
3207                 // reason`, we wouldn't be able to receive inbound payments through the corresponding
3208                 // channel.
3209                 let sig = self.node_signer.sign_gossip_message(msgs::UnsignedGossipMessage::ChannelUpdate(&unsigned)).unwrap();
3210
3211                 Ok(msgs::ChannelUpdate {
3212                         signature: sig,
3213                         contents: unsigned
3214                 })
3215         }
3216
3217         #[cfg(test)]
3218         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> {
3219                 let _lck = self.total_consistency_lock.read().unwrap();
3220                 self.send_payment_along_path(SendAlongPathArgs {
3221                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
3222                         session_priv_bytes
3223                 })
3224         }
3225
3226         fn send_payment_along_path(&self, args: SendAlongPathArgs) -> Result<(), APIError> {
3227                 let SendAlongPathArgs {
3228                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
3229                         session_priv_bytes
3230                 } = args;
3231                 // The top-level caller should hold the total_consistency_lock read lock.
3232                 debug_assert!(self.total_consistency_lock.try_write().is_err());
3233
3234                 log_trace!(self.logger,
3235                         "Attempting to send payment with payment hash {} along path with next hop {}",
3236                         payment_hash, path.hops.first().unwrap().short_channel_id);
3237                 let prng_seed = self.entropy_source.get_secure_random_bytes();
3238                 let session_priv = SecretKey::from_slice(&session_priv_bytes[..]).expect("RNG is busted");
3239
3240                 let onion_keys = onion_utils::construct_onion_keys(&self.secp_ctx, &path, &session_priv)
3241                         .map_err(|_| APIError::InvalidRoute{err: "Pubkey along hop was maliciously selected".to_owned()})?;
3242                 let (onion_payloads, htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(path, total_value, recipient_onion, cur_height, keysend_preimage)?;
3243
3244                 let onion_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, prng_seed, payment_hash)
3245                         .map_err(|_| APIError::InvalidRoute { err: "Route size too large considering onion data".to_owned()})?;
3246
3247                 let err: Result<(), _> = loop {
3248                         let (counterparty_node_id, id) = match self.short_to_chan_info.read().unwrap().get(&path.hops.first().unwrap().short_channel_id) {
3249                                 None => return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()}),
3250                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
3251                         };
3252
3253                         let per_peer_state = self.per_peer_state.read().unwrap();
3254                         let peer_state_mutex = per_peer_state.get(&counterparty_node_id)
3255                                 .ok_or_else(|| APIError::ChannelUnavailable{err: "No peer matching the path's first hop found!".to_owned() })?;
3256                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3257                         let peer_state = &mut *peer_state_lock;
3258                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(id) {
3259                                 match chan_phase_entry.get_mut() {
3260                                         ChannelPhase::Funded(chan) => {
3261                                                 if !chan.context.is_live() {
3262                                                         return Err(APIError::ChannelUnavailable{err: "Peer for first hop currently disconnected".to_owned()});
3263                                                 }
3264                                                 let funding_txo = chan.context.get_funding_txo().unwrap();
3265                                                 let send_res = chan.send_htlc_and_commit(htlc_msat, payment_hash.clone(),
3266                                                         htlc_cltv, HTLCSource::OutboundRoute {
3267                                                                 path: path.clone(),
3268                                                                 session_priv: session_priv.clone(),
3269                                                                 first_hop_htlc_msat: htlc_msat,
3270                                                                 payment_id,
3271                                                         }, onion_packet, None, &self.fee_estimator, &self.logger);
3272                                                 match break_chan_phase_entry!(self, send_res, chan_phase_entry) {
3273                                                         Some(monitor_update) => {
3274                                                                 match handle_new_monitor_update!(self, funding_txo, monitor_update, peer_state_lock, peer_state, per_peer_state, chan_phase_entry) {
3275                                                                         Err(e) => break Err(e),
3276                                                                         Ok(false) => {
3277                                                                                 // Note that MonitorUpdateInProgress here indicates (per function
3278                                                                                 // docs) that we will resend the commitment update once monitor
3279                                                                                 // updating completes. Therefore, we must return an error
3280                                                                                 // indicating that it is unsafe to retry the payment wholesale,
3281                                                                                 // which we do in the send_payment check for
3282                                                                                 // MonitorUpdateInProgress, below.
3283                                                                                 return Err(APIError::MonitorUpdateInProgress);
3284                                                                         },
3285                                                                         Ok(true) => {},
3286                                                                 }
3287                                                         },
3288                                                         None => {},
3289                                                 }
3290                                         },
3291                                         _ => return Err(APIError::ChannelUnavailable{err: "Channel to first hop is unfunded".to_owned()}),
3292                                 };
3293                         } else {
3294                                 // The channel was likely removed after we fetched the id from the
3295                                 // `short_to_chan_info` map, but before we successfully locked the
3296                                 // `channel_by_id` map.
3297                                 // This can occur as no consistency guarantees exists between the two maps.
3298                                 return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()});
3299                         }
3300                         return Ok(());
3301                 };
3302
3303                 match handle_error!(self, err, path.hops.first().unwrap().pubkey) {
3304                         Ok(_) => unreachable!(),
3305                         Err(e) => {
3306                                 Err(APIError::ChannelUnavailable { err: e.err })
3307                         },
3308                 }
3309         }
3310
3311         /// Sends a payment along a given route.
3312         ///
3313         /// Value parameters are provided via the last hop in route, see documentation for [`RouteHop`]
3314         /// fields for more info.
3315         ///
3316         /// May generate [`UpdateHTLCs`] message(s) event on success, which should be relayed (e.g. via
3317         /// [`PeerManager::process_events`]).
3318         ///
3319         /// # Avoiding Duplicate Payments
3320         ///
3321         /// If a pending payment is currently in-flight with the same [`PaymentId`] provided, this
3322         /// method will error with an [`APIError::InvalidRoute`]. Note, however, that once a payment
3323         /// is no longer pending (either via [`ChannelManager::abandon_payment`], or handling of an
3324         /// [`Event::PaymentSent`] or [`Event::PaymentFailed`]) LDK will not stop you from sending a
3325         /// second payment with the same [`PaymentId`].
3326         ///
3327         /// Thus, in order to ensure duplicate payments are not sent, you should implement your own
3328         /// tracking of payments, including state to indicate once a payment has completed. Because you
3329         /// should also ensure that [`PaymentHash`]es are not re-used, for simplicity, you should
3330         /// consider using the [`PaymentHash`] as the key for tracking payments. In that case, the
3331         /// [`PaymentId`] should be a copy of the [`PaymentHash`] bytes.
3332         ///
3333         /// Additionally, in the scenario where we begin the process of sending a payment, but crash
3334         /// before `send_payment` returns (or prior to [`ChannelMonitorUpdate`] persistence if you're
3335         /// using [`ChannelMonitorUpdateStatus::InProgress`]), the payment may be lost on restart. See
3336         /// [`ChannelManager::list_recent_payments`] for more information.
3337         ///
3338         /// # Possible Error States on [`PaymentSendFailure`]
3339         ///
3340         /// Each path may have a different return value, and [`PaymentSendFailure`] may return a `Vec` with
3341         /// each entry matching the corresponding-index entry in the route paths, see
3342         /// [`PaymentSendFailure`] for more info.
3343         ///
3344         /// In general, a path may raise:
3345         ///  * [`APIError::InvalidRoute`] when an invalid route or forwarding parameter (cltv_delta, fee,
3346         ///    node public key) is specified.
3347         ///  * [`APIError::ChannelUnavailable`] if the next-hop channel is not available for updates
3348         ///    (including due to previous monitor update failure or new permanent monitor update
3349         ///    failure).
3350         ///  * [`APIError::MonitorUpdateInProgress`] if a new monitor update failure prevented sending the
3351         ///    relevant updates.
3352         ///
3353         /// Note that depending on the type of the [`PaymentSendFailure`] the HTLC may have been
3354         /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
3355         /// different route unless you intend to pay twice!
3356         ///
3357         /// [`RouteHop`]: crate::routing::router::RouteHop
3358         /// [`Event::PaymentSent`]: events::Event::PaymentSent
3359         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
3360         /// [`UpdateHTLCs`]: events::MessageSendEvent::UpdateHTLCs
3361         /// [`PeerManager::process_events`]: crate::ln::peer_handler::PeerManager::process_events
3362         /// [`ChannelMonitorUpdateStatus::InProgress`]: crate::chain::ChannelMonitorUpdateStatus::InProgress
3363         pub fn send_payment_with_route(&self, route: &Route, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<(), PaymentSendFailure> {
3364                 let best_block_height = self.best_block.read().unwrap().height();
3365                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3366                 self.pending_outbound_payments
3367                         .send_payment_with_route(route, payment_hash, recipient_onion, payment_id,
3368                                 &self.entropy_source, &self.node_signer, best_block_height,
3369                                 |args| self.send_payment_along_path(args))
3370         }
3371
3372         /// Similar to [`ChannelManager::send_payment_with_route`], but will automatically find a route based on
3373         /// `route_params` and retry failed payment paths based on `retry_strategy`.
3374         pub fn send_payment(&self, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId, route_params: RouteParameters, retry_strategy: Retry) -> Result<(), RetryableSendFailure> {
3375                 let best_block_height = self.best_block.read().unwrap().height();
3376                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3377                 self.pending_outbound_payments
3378                         .send_payment(payment_hash, recipient_onion, payment_id, retry_strategy, route_params,
3379                                 &self.router, self.list_usable_channels(), || self.compute_inflight_htlcs(),
3380                                 &self.entropy_source, &self.node_signer, best_block_height, &self.logger,
3381                                 &self.pending_events, |args| self.send_payment_along_path(args))
3382         }
3383
3384         #[cfg(test)]
3385         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> {
3386                 let best_block_height = self.best_block.read().unwrap().height();
3387                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3388                 self.pending_outbound_payments.test_send_payment_internal(route, payment_hash, recipient_onion,
3389                         keysend_preimage, payment_id, recv_value_msat, onion_session_privs, &self.node_signer,
3390                         best_block_height, |args| self.send_payment_along_path(args))
3391         }
3392
3393         #[cfg(test)]
3394         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> {
3395                 let best_block_height = self.best_block.read().unwrap().height();
3396                 self.pending_outbound_payments.test_add_new_pending_payment(payment_hash, recipient_onion, payment_id, route, None, &self.entropy_source, best_block_height)
3397         }
3398
3399         #[cfg(test)]
3400         pub(crate) fn test_set_payment_metadata(&self, payment_id: PaymentId, new_payment_metadata: Option<Vec<u8>>) {
3401                 self.pending_outbound_payments.test_set_payment_metadata(payment_id, new_payment_metadata);
3402         }
3403
3404
3405         /// Signals that no further attempts for the given payment should occur. Useful if you have a
3406         /// pending outbound payment with retries remaining, but wish to stop retrying the payment before
3407         /// retries are exhausted.
3408         ///
3409         /// # Event Generation
3410         ///
3411         /// If no [`Event::PaymentFailed`] event had been generated before, one will be generated as soon
3412         /// as there are no remaining pending HTLCs for this payment.
3413         ///
3414         /// Note that calling this method does *not* prevent a payment from succeeding. You must still
3415         /// wait until you receive either a [`Event::PaymentFailed`] or [`Event::PaymentSent`] event to
3416         /// determine the ultimate status of a payment.
3417         ///
3418         /// # Requested Invoices
3419         ///
3420         /// In the case of paying a [`Bolt12Invoice`], abandoning the payment prior to receiving the
3421         /// invoice will result in an [`Event::InvoiceRequestFailed`] and prevent any attempts at paying
3422         /// it once received. The other events may only be generated once the invoice has been received.
3423         ///
3424         /// # Restart Behavior
3425         ///
3426         /// If an [`Event::PaymentFailed`] is generated and we restart without first persisting the
3427         /// [`ChannelManager`], another [`Event::PaymentFailed`] may be generated; likewise for
3428         /// [`Event::InvoiceRequestFailed`].
3429         ///
3430         /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
3431         pub fn abandon_payment(&self, payment_id: PaymentId) {
3432                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3433                 self.pending_outbound_payments.abandon_payment(payment_id, PaymentFailureReason::UserAbandoned, &self.pending_events);
3434         }
3435
3436         /// Send a spontaneous payment, which is a payment that does not require the recipient to have
3437         /// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
3438         /// the preimage, it must be a cryptographically secure random value that no intermediate node
3439         /// would be able to guess -- otherwise, an intermediate node may claim the payment and it will
3440         /// never reach the recipient.
3441         ///
3442         /// See [`send_payment`] documentation for more details on the return value of this function
3443         /// and idempotency guarantees provided by the [`PaymentId`] key.
3444         ///
3445         /// Similar to regular payments, you MUST NOT reuse a `payment_preimage` value. See
3446         /// [`send_payment`] for more information about the risks of duplicate preimage usage.
3447         ///
3448         /// [`send_payment`]: Self::send_payment
3449         pub fn send_spontaneous_payment(&self, route: &Route, payment_preimage: Option<PaymentPreimage>, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<PaymentHash, PaymentSendFailure> {
3450                 let best_block_height = self.best_block.read().unwrap().height();
3451                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3452                 self.pending_outbound_payments.send_spontaneous_payment_with_route(
3453                         route, payment_preimage, recipient_onion, payment_id, &self.entropy_source,
3454                         &self.node_signer, best_block_height, |args| self.send_payment_along_path(args))
3455         }
3456
3457         /// Similar to [`ChannelManager::send_spontaneous_payment`], but will automatically find a route
3458         /// based on `route_params` and retry failed payment paths based on `retry_strategy`.
3459         ///
3460         /// See [`PaymentParameters::for_keysend`] for help in constructing `route_params` for spontaneous
3461         /// payments.
3462         ///
3463         /// [`PaymentParameters::for_keysend`]: crate::routing::router::PaymentParameters::for_keysend
3464         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> {
3465                 let best_block_height = self.best_block.read().unwrap().height();
3466                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3467                 self.pending_outbound_payments.send_spontaneous_payment(payment_preimage, recipient_onion,
3468                         payment_id, retry_strategy, route_params, &self.router, self.list_usable_channels(),
3469                         || self.compute_inflight_htlcs(),  &self.entropy_source, &self.node_signer, best_block_height,
3470                         &self.logger, &self.pending_events, |args| self.send_payment_along_path(args))
3471         }
3472
3473         /// Send a payment that is probing the given route for liquidity. We calculate the
3474         /// [`PaymentHash`] of probes based on a static secret and a random [`PaymentId`], which allows
3475         /// us to easily discern them from real payments.
3476         pub fn send_probe(&self, path: Path) -> Result<(PaymentHash, PaymentId), PaymentSendFailure> {
3477                 let best_block_height = self.best_block.read().unwrap().height();
3478                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3479                 self.pending_outbound_payments.send_probe(path, self.probing_cookie_secret,
3480                         &self.entropy_source, &self.node_signer, best_block_height,
3481                         |args| self.send_payment_along_path(args))
3482         }
3483
3484         /// Returns whether a payment with the given [`PaymentHash`] and [`PaymentId`] is, in fact, a
3485         /// payment probe.
3486         #[cfg(test)]
3487         pub(crate) fn payment_is_probe(&self, payment_hash: &PaymentHash, payment_id: &PaymentId) -> bool {
3488                 outbound_payment::payment_is_probe(payment_hash, payment_id, self.probing_cookie_secret)
3489         }
3490
3491         /// Sends payment probes over all paths of a route that would be used to pay the given
3492         /// amount to the given `node_id`.
3493         ///
3494         /// See [`ChannelManager::send_preflight_probes`] for more information.
3495         pub fn send_spontaneous_preflight_probes(
3496                 &self, node_id: PublicKey, amount_msat: u64, final_cltv_expiry_delta: u32, 
3497                 liquidity_limit_multiplier: Option<u64>,
3498         ) -> Result<Vec<(PaymentHash, PaymentId)>, ProbeSendFailure> {
3499                 let payment_params =
3500                         PaymentParameters::from_node_id(node_id, final_cltv_expiry_delta);
3501
3502                 let route_params = RouteParameters { payment_params, final_value_msat: amount_msat };
3503
3504                 self.send_preflight_probes(route_params, liquidity_limit_multiplier)
3505         }
3506
3507         /// Sends payment probes over all paths of a route that would be used to pay a route found
3508         /// according to the given [`RouteParameters`].
3509         ///
3510         /// This may be used to send "pre-flight" probes, i.e., to train our scorer before conducting
3511         /// the actual payment. Note this is only useful if there likely is sufficient time for the
3512         /// probe to settle before sending out the actual payment, e.g., when waiting for user
3513         /// confirmation in a wallet UI.
3514         ///
3515         /// Otherwise, there is a chance the probe could take up some liquidity needed to complete the
3516         /// actual payment. Users should therefore be cautious and might avoid sending probes if
3517         /// liquidity is scarce and/or they don't expect the probe to return before they send the
3518         /// payment. To mitigate this issue, channels with available liquidity less than the required
3519         /// amount times the given `liquidity_limit_multiplier` won't be used to send pre-flight
3520         /// probes. If `None` is given as `liquidity_limit_multiplier`, it defaults to `3`.
3521         pub fn send_preflight_probes(
3522                 &self, route_params: RouteParameters, liquidity_limit_multiplier: Option<u64>,
3523         ) -> Result<Vec<(PaymentHash, PaymentId)>, ProbeSendFailure> {
3524                 let liquidity_limit_multiplier = liquidity_limit_multiplier.unwrap_or(3);
3525
3526                 let payer = self.get_our_node_id();
3527                 let usable_channels = self.list_usable_channels();
3528                 let first_hops = usable_channels.iter().collect::<Vec<_>>();
3529                 let inflight_htlcs = self.compute_inflight_htlcs();
3530
3531                 let route = self
3532                         .router
3533                         .find_route(&payer, &route_params, Some(&first_hops), inflight_htlcs)
3534                         .map_err(|e| {
3535                                 log_error!(self.logger, "Failed to find path for payment probe: {:?}", e);
3536                                 ProbeSendFailure::RouteNotFound
3537                         })?;
3538
3539                 let mut used_liquidity_map = HashMap::with_capacity(first_hops.len());
3540
3541                 let mut res = Vec::new();
3542
3543                 for mut path in route.paths {
3544                         // If the last hop is probably an unannounced channel we refrain from probing all the
3545                         // way through to the end and instead probe up to the second-to-last channel.
3546                         while let Some(last_path_hop) = path.hops.last() {
3547                                 if last_path_hop.maybe_announced_channel {
3548                                         // We found a potentially announced last hop.
3549                                         break;
3550                                 } else {
3551                                         // Drop the last hop, as it's likely unannounced.
3552                                         log_debug!(
3553                                                 self.logger,
3554                                                 "Avoided sending payment probe all the way to last hop {} as it is likely unannounced.",
3555                                                 last_path_hop.short_channel_id
3556                                         );
3557                                         let final_value_msat = path.final_value_msat();
3558                                         path.hops.pop();
3559                                         if let Some(new_last) = path.hops.last_mut() {
3560                                                 new_last.fee_msat += final_value_msat;
3561                                         }
3562                                 }
3563                         }
3564
3565                         if path.hops.len() < 2 {
3566                                 log_debug!(
3567                                         self.logger,
3568                                         "Skipped sending payment probe over path with less than two hops."
3569                                 );
3570                                 continue;
3571                         }
3572
3573                         if let Some(first_path_hop) = path.hops.first() {
3574                                 if let Some(first_hop) = first_hops.iter().find(|h| {
3575                                         h.get_outbound_payment_scid() == Some(first_path_hop.short_channel_id)
3576                                 }) {
3577                                         let path_value = path.final_value_msat() + path.fee_msat();
3578                                         let used_liquidity =
3579                                                 used_liquidity_map.entry(first_path_hop.short_channel_id).or_insert(0);
3580
3581                                         if first_hop.next_outbound_htlc_limit_msat
3582                                                 < (*used_liquidity + path_value) * liquidity_limit_multiplier
3583                                         {
3584                                                 log_debug!(self.logger, "Skipped sending payment probe to avoid putting channel {} under the liquidity limit.", first_path_hop.short_channel_id);
3585                                                 continue;
3586                                         } else {
3587                                                 *used_liquidity += path_value;
3588                                         }
3589                                 }
3590                         }
3591
3592                         res.push(self.send_probe(path).map_err(|e| {
3593                                 log_error!(self.logger, "Failed to send pre-flight probe: {:?}", e);
3594                                 ProbeSendFailure::SendingFailed(e)
3595                         })?);
3596                 }
3597
3598                 Ok(res)
3599         }
3600
3601         /// Handles the generation of a funding transaction, optionally (for tests) with a function
3602         /// which checks the correctness of the funding transaction given the associated channel.
3603         fn funding_transaction_generated_intern<FundingOutput: Fn(&OutboundV1Channel<SP>, &Transaction) -> Result<OutPoint, APIError>>(
3604                 &self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, find_funding_output: FundingOutput
3605         ) -> Result<(), APIError> {
3606                 let per_peer_state = self.per_peer_state.read().unwrap();
3607                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3608                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3609
3610                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3611                 let peer_state = &mut *peer_state_lock;
3612                 let (chan, msg) = match peer_state.channel_by_id.remove(temporary_channel_id) {
3613                         Some(ChannelPhase::UnfundedOutboundV1(chan)) => {
3614                                 let funding_txo = find_funding_output(&chan, &funding_transaction)?;
3615
3616                                 let funding_res = chan.get_funding_created(funding_transaction, funding_txo, &self.logger)
3617                                         .map_err(|(mut chan, e)| if let ChannelError::Close(msg) = e {
3618                                                 let channel_id = chan.context.channel_id();
3619                                                 let user_id = chan.context.get_user_id();
3620                                                 let shutdown_res = chan.context.force_shutdown(false);
3621                                                 let channel_capacity = chan.context.get_value_satoshis();
3622                                                 (chan, MsgHandleErrInternal::from_finish_shutdown(msg, channel_id, user_id, shutdown_res, None, channel_capacity))
3623                                         } else { unreachable!(); });
3624                                 match funding_res {
3625                                         Ok((chan, funding_msg)) => (chan, funding_msg),
3626                                         Err((chan, err)) => {
3627                                                 mem::drop(peer_state_lock);
3628                                                 mem::drop(per_peer_state);
3629
3630                                                 let _: Result<(), _> = handle_error!(self, Err(err), chan.context.get_counterparty_node_id());
3631                                                 return Err(APIError::ChannelUnavailable {
3632                                                         err: "Signer refused to sign the initial commitment transaction".to_owned()
3633                                                 });
3634                                         },
3635                                 }
3636                         },
3637                         Some(phase) => {
3638                                 peer_state.channel_by_id.insert(*temporary_channel_id, phase);
3639                                 return Err(APIError::APIMisuseError {
3640                                         err: format!(
3641                                                 "Channel with id {} for the passed counterparty node_id {} is not an unfunded, outbound V1 channel",
3642                                                 temporary_channel_id, counterparty_node_id),
3643                                 })
3644                         },
3645                         None => return Err(APIError::ChannelUnavailable {err: format!(
3646                                 "Channel with id {} not found for the passed counterparty node_id {}",
3647                                 temporary_channel_id, counterparty_node_id),
3648                                 }),
3649                 };
3650
3651                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
3652                         node_id: chan.context.get_counterparty_node_id(),
3653                         msg,
3654                 });
3655                 match peer_state.channel_by_id.entry(chan.context.channel_id()) {
3656                         hash_map::Entry::Occupied(_) => {
3657                                 panic!("Generated duplicate funding txid?");
3658                         },
3659                         hash_map::Entry::Vacant(e) => {
3660                                 let mut id_to_peer = self.id_to_peer.lock().unwrap();
3661                                 if id_to_peer.insert(chan.context.channel_id(), chan.context.get_counterparty_node_id()).is_some() {
3662                                         panic!("id_to_peer map already contained funding txid, which shouldn't be possible");
3663                                 }
3664                                 e.insert(ChannelPhase::Funded(chan));
3665                         }
3666                 }
3667                 Ok(())
3668         }
3669
3670         #[cfg(test)]
3671         pub(crate) fn funding_transaction_generated_unchecked(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, output_index: u16) -> Result<(), APIError> {
3672                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |_, tx| {
3673                         Ok(OutPoint { txid: tx.txid(), index: output_index })
3674                 })
3675         }
3676
3677         /// Call this upon creation of a funding transaction for the given channel.
3678         ///
3679         /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
3680         /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
3681         ///
3682         /// Returns [`APIError::APIMisuseError`] if the funding transaction is not final for propagation
3683         /// across the p2p network.
3684         ///
3685         /// Returns [`APIError::ChannelUnavailable`] if a funding transaction has already been provided
3686         /// for the channel or if the channel has been closed as indicated by [`Event::ChannelClosed`].
3687         ///
3688         /// May panic if the output found in the funding transaction is duplicative with some other
3689         /// channel (note that this should be trivially prevented by using unique funding transaction
3690         /// keys per-channel).
3691         ///
3692         /// Do NOT broadcast the funding transaction yourself. When we have safely received our
3693         /// counterparty's signature the funding transaction will automatically be broadcast via the
3694         /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
3695         ///
3696         /// Note that this includes RBF or similar transaction replacement strategies - lightning does
3697         /// not currently support replacing a funding transaction on an existing channel. Instead,
3698         /// create a new channel with a conflicting funding transaction.
3699         ///
3700         /// Note to keep the miner incentives aligned in moving the blockchain forward, we recommend
3701         /// the wallet software generating the funding transaction to apply anti-fee sniping as
3702         /// implemented by Bitcoin Core wallet. See <https://bitcoinops.org/en/topics/fee-sniping/>
3703         /// for more details.
3704         ///
3705         /// [`Event::FundingGenerationReady`]: crate::events::Event::FundingGenerationReady
3706         /// [`Event::ChannelClosed`]: crate::events::Event::ChannelClosed
3707         pub fn funding_transaction_generated(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction) -> Result<(), APIError> {
3708                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3709
3710                 if !funding_transaction.is_coin_base() {
3711                         for inp in funding_transaction.input.iter() {
3712                                 if inp.witness.is_empty() {
3713                                         return Err(APIError::APIMisuseError {
3714                                                 err: "Funding transaction must be fully signed and spend Segwit outputs".to_owned()
3715                                         });
3716                                 }
3717                         }
3718                 }
3719                 {
3720                         let height = self.best_block.read().unwrap().height();
3721                         // Transactions are evaluated as final by network mempools if their locktime is strictly
3722                         // lower than the next block height. However, the modules constituting our Lightning
3723                         // node might not have perfect sync about their blockchain views. Thus, if the wallet
3724                         // module is ahead of LDK, only allow one more block of headroom.
3725                         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 {
3726                                 return Err(APIError::APIMisuseError {
3727                                         err: "Funding transaction absolute timelock is non-final".to_owned()
3728                                 });
3729                         }
3730                 }
3731                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |chan, tx| {
3732                         if tx.output.len() > u16::max_value() as usize {
3733                                 return Err(APIError::APIMisuseError {
3734                                         err: "Transaction had more than 2^16 outputs, which is not supported".to_owned()
3735                                 });
3736                         }
3737
3738                         let mut output_index = None;
3739                         let expected_spk = chan.context.get_funding_redeemscript().to_v0_p2wsh();
3740                         for (idx, outp) in tx.output.iter().enumerate() {
3741                                 if outp.script_pubkey == expected_spk && outp.value == chan.context.get_value_satoshis() {
3742                                         if output_index.is_some() {
3743                                                 return Err(APIError::APIMisuseError {
3744                                                         err: "Multiple outputs matched the expected script and value".to_owned()
3745                                                 });
3746                                         }
3747                                         output_index = Some(idx as u16);
3748                                 }
3749                         }
3750                         if output_index.is_none() {
3751                                 return Err(APIError::APIMisuseError {
3752                                         err: "No output matched the script_pubkey and value in the FundingGenerationReady event".to_owned()
3753                                 });
3754                         }
3755                         Ok(OutPoint { txid: tx.txid(), index: output_index.unwrap() })
3756                 })
3757         }
3758
3759         /// Atomically applies partial updates to the [`ChannelConfig`] of the given channels.
3760         ///
3761         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3762         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3763         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3764         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3765         ///
3766         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3767         /// `counterparty_node_id` is provided.
3768         ///
3769         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3770         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3771         ///
3772         /// If an error is returned, none of the updates should be considered applied.
3773         ///
3774         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3775         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3776         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3777         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3778         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3779         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3780         /// [`APIMisuseError`]: APIError::APIMisuseError
3781         pub fn update_partial_channel_config(
3782                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config_update: &ChannelConfigUpdate,
3783         ) -> Result<(), APIError> {
3784                 if config_update.cltv_expiry_delta.map(|delta| delta < MIN_CLTV_EXPIRY_DELTA).unwrap_or(false) {
3785                         return Err(APIError::APIMisuseError {
3786                                 err: format!("The chosen CLTV expiry delta is below the minimum of {}", MIN_CLTV_EXPIRY_DELTA),
3787                         });
3788                 }
3789
3790                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3791                 let per_peer_state = self.per_peer_state.read().unwrap();
3792                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3793                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3794                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3795                 let peer_state = &mut *peer_state_lock;
3796                 for channel_id in channel_ids {
3797                         if !peer_state.has_channel(channel_id) {
3798                                 return Err(APIError::ChannelUnavailable {
3799                                         err: format!("Channel with ID {} was not found for the passed counterparty_node_id {}", channel_id, counterparty_node_id),
3800                                 });
3801                         };
3802                 }
3803                 for channel_id in channel_ids {
3804                         if let Some(channel_phase) = peer_state.channel_by_id.get_mut(channel_id) {
3805                                 let mut config = channel_phase.context().config();
3806                                 config.apply(config_update);
3807                                 if !channel_phase.context_mut().update_config(&config) {
3808                                         continue;
3809                                 }
3810                                 if let ChannelPhase::Funded(channel) = channel_phase {
3811                                         if let Ok(msg) = self.get_channel_update_for_broadcast(channel) {
3812                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate { msg });
3813                                         } else if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
3814                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
3815                                                         node_id: channel.context.get_counterparty_node_id(),
3816                                                         msg,
3817                                                 });
3818                                         }
3819                                 }
3820                                 continue;
3821                         } else {
3822                                 // This should not be reachable as we've already checked for non-existence in the previous channel_id loop.
3823                                 debug_assert!(false);
3824                                 return Err(APIError::ChannelUnavailable {
3825                                         err: format!(
3826                                                 "Channel with ID {} for passed counterparty_node_id {} disappeared after we confirmed its existence - this should not be reachable!",
3827                                                 channel_id, counterparty_node_id),
3828                                 });
3829                         };
3830                 }
3831                 Ok(())
3832         }
3833
3834         /// Atomically updates the [`ChannelConfig`] for the given channels.
3835         ///
3836         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3837         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3838         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3839         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3840         ///
3841         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3842         /// `counterparty_node_id` is provided.
3843         ///
3844         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3845         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3846         ///
3847         /// If an error is returned, none of the updates should be considered applied.
3848         ///
3849         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3850         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3851         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3852         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3853         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3854         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3855         /// [`APIMisuseError`]: APIError::APIMisuseError
3856         pub fn update_channel_config(
3857                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config: &ChannelConfig,
3858         ) -> Result<(), APIError> {
3859                 return self.update_partial_channel_config(counterparty_node_id, channel_ids, &(*config).into());
3860         }
3861
3862         /// Attempts to forward an intercepted HTLC over the provided channel id and with the provided
3863         /// amount to forward. Should only be called in response to an [`HTLCIntercepted`] event.
3864         ///
3865         /// Intercepted HTLCs can be useful for Lightning Service Providers (LSPs) to open a just-in-time
3866         /// channel to a receiving node if the node lacks sufficient inbound liquidity.
3867         ///
3868         /// To make use of intercepted HTLCs, set [`UserConfig::accept_intercept_htlcs`] and use
3869         /// [`ChannelManager::get_intercept_scid`] to generate short channel id(s) to put in the
3870         /// receiver's invoice route hints. These route hints will signal to LDK to generate an
3871         /// [`HTLCIntercepted`] event when it receives the forwarded HTLC, and this method or
3872         /// [`ChannelManager::fail_intercepted_htlc`] MUST be called in response to the event.
3873         ///
3874         /// Note that LDK does not enforce fee requirements in `amt_to_forward_msat`, and will not stop
3875         /// you from forwarding more than you received. See
3876         /// [`HTLCIntercepted::expected_outbound_amount_msat`] for more on forwarding a different amount
3877         /// than expected.
3878         ///
3879         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
3880         /// backwards.
3881         ///
3882         /// [`UserConfig::accept_intercept_htlcs`]: crate::util::config::UserConfig::accept_intercept_htlcs
3883         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
3884         /// [`HTLCIntercepted::expected_outbound_amount_msat`]: events::Event::HTLCIntercepted::expected_outbound_amount_msat
3885         // TODO: when we move to deciding the best outbound channel at forward time, only take
3886         // `next_node_id` and not `next_hop_channel_id`
3887         pub fn forward_intercepted_htlc(&self, intercept_id: InterceptId, next_hop_channel_id: &ChannelId, next_node_id: PublicKey, amt_to_forward_msat: u64) -> Result<(), APIError> {
3888                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3889
3890                 let next_hop_scid = {
3891                         let peer_state_lock = self.per_peer_state.read().unwrap();
3892                         let peer_state_mutex = peer_state_lock.get(&next_node_id)
3893                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", next_node_id) })?;
3894                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3895                         let peer_state = &mut *peer_state_lock;
3896                         match peer_state.channel_by_id.get(next_hop_channel_id) {
3897                                 Some(ChannelPhase::Funded(chan)) => {
3898                                         if !chan.context.is_usable() {
3899                                                 return Err(APIError::ChannelUnavailable {
3900                                                         err: format!("Channel with id {} not fully established", next_hop_channel_id)
3901                                                 })
3902                                         }
3903                                         chan.context.get_short_channel_id().unwrap_or(chan.context.outbound_scid_alias())
3904                                 },
3905                                 Some(_) => return Err(APIError::ChannelUnavailable {
3906                                         err: format!("Channel with id {} for the passed counterparty node_id {} is still opening.",
3907                                                 next_hop_channel_id, next_node_id)
3908                                 }),
3909                                 None => return Err(APIError::ChannelUnavailable {
3910                                         err: format!("Channel with id {} not found for the passed counterparty node_id {}.",
3911                                                 next_hop_channel_id, next_node_id)
3912                                 })
3913                         }
3914                 };
3915
3916                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
3917                         .ok_or_else(|| APIError::APIMisuseError {
3918                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
3919                         })?;
3920
3921                 let routing = match payment.forward_info.routing {
3922                         PendingHTLCRouting::Forward { onion_packet, .. } => {
3923                                 PendingHTLCRouting::Forward { onion_packet, short_channel_id: next_hop_scid }
3924                         },
3925                         _ => unreachable!() // Only `PendingHTLCRouting::Forward`s are intercepted
3926                 };
3927                 let skimmed_fee_msat =
3928                         payment.forward_info.outgoing_amt_msat.saturating_sub(amt_to_forward_msat);
3929                 let pending_htlc_info = PendingHTLCInfo {
3930                         skimmed_fee_msat: if skimmed_fee_msat == 0 { None } else { Some(skimmed_fee_msat) },
3931                         outgoing_amt_msat: amt_to_forward_msat, routing, ..payment.forward_info
3932                 };
3933
3934                 let mut per_source_pending_forward = [(
3935                         payment.prev_short_channel_id,
3936                         payment.prev_funding_outpoint,
3937                         payment.prev_user_channel_id,
3938                         vec![(pending_htlc_info, payment.prev_htlc_id)]
3939                 )];
3940                 self.forward_htlcs(&mut per_source_pending_forward);
3941                 Ok(())
3942         }
3943
3944         /// Fails the intercepted HTLC indicated by intercept_id. Should only be called in response to
3945         /// an [`HTLCIntercepted`] event. See [`ChannelManager::forward_intercepted_htlc`].
3946         ///
3947         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
3948         /// backwards.
3949         ///
3950         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
3951         pub fn fail_intercepted_htlc(&self, intercept_id: InterceptId) -> Result<(), APIError> {
3952                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3953
3954                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
3955                         .ok_or_else(|| APIError::APIMisuseError {
3956                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
3957                         })?;
3958
3959                 if let PendingHTLCRouting::Forward { short_channel_id, .. } = payment.forward_info.routing {
3960                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3961                                 short_channel_id: payment.prev_short_channel_id,
3962                                 user_channel_id: Some(payment.prev_user_channel_id),
3963                                 outpoint: payment.prev_funding_outpoint,
3964                                 htlc_id: payment.prev_htlc_id,
3965                                 incoming_packet_shared_secret: payment.forward_info.incoming_shared_secret,
3966                                 phantom_shared_secret: None,
3967                         });
3968
3969                         let failure_reason = HTLCFailReason::from_failure_code(0x4000 | 10);
3970                         let destination = HTLCDestination::UnknownNextHop { requested_forward_scid: short_channel_id };
3971                         self.fail_htlc_backwards_internal(&htlc_source, &payment.forward_info.payment_hash, &failure_reason, destination);
3972                 } else { unreachable!() } // Only `PendingHTLCRouting::Forward`s are intercepted
3973
3974                 Ok(())
3975         }
3976
3977         /// Processes HTLCs which are pending waiting on random forward delay.
3978         ///
3979         /// Should only really ever be called in response to a PendingHTLCsForwardable event.
3980         /// Will likely generate further events.
3981         pub fn process_pending_htlc_forwards(&self) {
3982                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3983
3984                 let mut new_events = VecDeque::new();
3985                 let mut failed_forwards = Vec::new();
3986                 let mut phantom_receives: Vec<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> = Vec::new();
3987                 {
3988                         let mut forward_htlcs = HashMap::new();
3989                         mem::swap(&mut forward_htlcs, &mut self.forward_htlcs.lock().unwrap());
3990
3991                         for (short_chan_id, mut pending_forwards) in forward_htlcs {
3992                                 if short_chan_id != 0 {
3993                                         macro_rules! forwarding_channel_not_found {
3994                                                 () => {
3995                                                         for forward_info in pending_forwards.drain(..) {
3996                                                                 match forward_info {
3997                                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
3998                                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
3999                                                                                 forward_info: PendingHTLCInfo {
4000                                                                                         routing, incoming_shared_secret, payment_hash, outgoing_amt_msat,
4001                                                                                         outgoing_cltv_value, ..
4002                                                                                 }
4003                                                                         }) => {
4004                                                                                 macro_rules! failure_handler {
4005                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr, $next_hop_unknown: expr) => {
4006                                                                                                 log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
4007
4008                                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4009                                                                                                         short_channel_id: prev_short_channel_id,
4010                                                                                                         user_channel_id: Some(prev_user_channel_id),
4011                                                                                                         outpoint: prev_funding_outpoint,
4012                                                                                                         htlc_id: prev_htlc_id,
4013                                                                                                         incoming_packet_shared_secret: incoming_shared_secret,
4014                                                                                                         phantom_shared_secret: $phantom_ss,
4015                                                                                                 });
4016
4017                                                                                                 let reason = if $next_hop_unknown {
4018                                                                                                         HTLCDestination::UnknownNextHop { requested_forward_scid: short_chan_id }
4019                                                                                                 } else {
4020                                                                                                         HTLCDestination::FailedPayment{ payment_hash }
4021                                                                                                 };
4022
4023                                                                                                 failed_forwards.push((htlc_source, payment_hash,
4024                                                                                                         HTLCFailReason::reason($err_code, $err_data),
4025                                                                                                         reason
4026                                                                                                 ));
4027                                                                                                 continue;
4028                                                                                         }
4029                                                                                 }
4030                                                                                 macro_rules! fail_forward {
4031                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
4032                                                                                                 {
4033                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, true);
4034                                                                                                 }
4035                                                                                         }
4036                                                                                 }
4037                                                                                 macro_rules! failed_payment {
4038                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
4039                                                                                                 {
4040                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, false);
4041                                                                                                 }
4042                                                                                         }
4043                                                                                 }
4044                                                                                 if let PendingHTLCRouting::Forward { onion_packet, .. } = routing {
4045                                                                                         let phantom_pubkey_res = self.node_signer.get_node_id(Recipient::PhantomNode);
4046                                                                                         if phantom_pubkey_res.is_ok() && fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, short_chan_id, &self.genesis_hash) {
4047                                                                                                 let phantom_shared_secret = self.node_signer.ecdh(Recipient::PhantomNode, &onion_packet.public_key.unwrap(), None).unwrap().secret_bytes();
4048                                                                                                 let next_hop = match onion_utils::decode_next_payment_hop(phantom_shared_secret, &onion_packet.hop_data, onion_packet.hmac, payment_hash) {
4049                                                                                                         Ok(res) => res,
4050                                                                                                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
4051                                                                                                                 let sha256_of_onion = Sha256::hash(&onion_packet.hop_data).into_inner();
4052                                                                                                                 // In this scenario, the phantom would have sent us an
4053                                                                                                                 // `update_fail_malformed_htlc`, meaning here we encrypt the error as
4054                                                                                                                 // if it came from us (the second-to-last hop) but contains the sha256
4055                                                                                                                 // of the onion.
4056                                                                                                                 failed_payment!(err_msg, err_code, sha256_of_onion.to_vec(), None);
4057                                                                                                         },
4058                                                                                                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
4059                                                                                                                 failed_payment!(err_msg, err_code, Vec::new(), Some(phantom_shared_secret));
4060                                                                                                         },
4061                                                                                                 };
4062                                                                                                 match next_hop {
4063                                                                                                         onion_utils::Hop::Receive(hop_data) => {
4064                                                                                                                 match self.construct_recv_pending_htlc_info(hop_data,
4065                                                                                                                         incoming_shared_secret, payment_hash, outgoing_amt_msat,
4066                                                                                                                         outgoing_cltv_value, Some(phantom_shared_secret), false, None)
4067                                                                                                                 {
4068                                                                                                                         Ok(info) => phantom_receives.push((prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, vec![(info, prev_htlc_id)])),
4069                                                                                                                         Err(InboundOnionErr { err_code, err_data, msg }) => failed_payment!(msg, err_code, err_data, Some(phantom_shared_secret))
4070                                                                                                                 }
4071                                                                                                         },
4072                                                                                                         _ => panic!(),
4073                                                                                                 }
4074                                                                                         } else {
4075                                                                                                 fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
4076                                                                                         }
4077                                                                                 } else {
4078                                                                                         fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
4079                                                                                 }
4080                                                                         },
4081                                                                         HTLCForwardInfo::FailHTLC { .. } => {
4082                                                                                 // Channel went away before we could fail it. This implies
4083                                                                                 // the channel is now on chain and our counterparty is
4084                                                                                 // trying to broadcast the HTLC-Timeout, but that's their
4085                                                                                 // problem, not ours.
4086                                                                         }
4087                                                                 }
4088                                                         }
4089                                                 }
4090                                         }
4091                                         let (counterparty_node_id, forward_chan_id) = match self.short_to_chan_info.read().unwrap().get(&short_chan_id) {
4092                                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
4093                                                 None => {
4094                                                         forwarding_channel_not_found!();
4095                                                         continue;
4096                                                 }
4097                                         };
4098                                         let per_peer_state = self.per_peer_state.read().unwrap();
4099                                         let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
4100                                         if peer_state_mutex_opt.is_none() {
4101                                                 forwarding_channel_not_found!();
4102                                                 continue;
4103                                         }
4104                                         let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
4105                                         let peer_state = &mut *peer_state_lock;
4106                                         if let Some(ChannelPhase::Funded(ref mut chan)) = peer_state.channel_by_id.get_mut(&forward_chan_id) {
4107                                                 for forward_info in pending_forwards.drain(..) {
4108                                                         match forward_info {
4109                                                                 HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4110                                                                         prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4111                                                                         forward_info: PendingHTLCInfo {
4112                                                                                 incoming_shared_secret, payment_hash, outgoing_amt_msat, outgoing_cltv_value,
4113                                                                                 routing: PendingHTLCRouting::Forward { onion_packet, .. }, skimmed_fee_msat, ..
4114                                                                         },
4115                                                                 }) => {
4116                                                                         log_trace!(self.logger, "Adding HTLC from short id {} with payment_hash {} to channel with short id {} after delay", prev_short_channel_id, &payment_hash, short_chan_id);
4117                                                                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4118                                                                                 short_channel_id: prev_short_channel_id,
4119                                                                                 user_channel_id: Some(prev_user_channel_id),
4120                                                                                 outpoint: prev_funding_outpoint,
4121                                                                                 htlc_id: prev_htlc_id,
4122                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
4123                                                                                 // Phantom payments are only PendingHTLCRouting::Receive.
4124                                                                                 phantom_shared_secret: None,
4125                                                                         });
4126                                                                         if let Err(e) = chan.queue_add_htlc(outgoing_amt_msat,
4127                                                                                 payment_hash, outgoing_cltv_value, htlc_source.clone(),
4128                                                                                 onion_packet, skimmed_fee_msat, &self.fee_estimator,
4129                                                                                 &self.logger)
4130                                                                         {
4131                                                                                 if let ChannelError::Ignore(msg) = e {
4132                                                                                         log_trace!(self.logger, "Failed to forward HTLC with payment_hash {}: {}", &payment_hash, msg);
4133                                                                                 } else {
4134                                                                                         panic!("Stated return value requirements in send_htlc() were not met");
4135                                                                                 }
4136                                                                                 let (failure_code, data) = self.get_htlc_temp_fail_err_and_data(0x1000|7, short_chan_id, chan);
4137                                                                                 failed_forwards.push((htlc_source, payment_hash,
4138                                                                                         HTLCFailReason::reason(failure_code, data),
4139                                                                                         HTLCDestination::NextHopChannel { node_id: Some(chan.context.get_counterparty_node_id()), channel_id: forward_chan_id }
4140                                                                                 ));
4141                                                                                 continue;
4142                                                                         }
4143                                                                 },
4144                                                                 HTLCForwardInfo::AddHTLC { .. } => {
4145                                                                         panic!("short_channel_id != 0 should imply any pending_forward entries are of type Forward");
4146                                                                 },
4147                                                                 HTLCForwardInfo::FailHTLC { htlc_id, err_packet } => {
4148                                                                         log_trace!(self.logger, "Failing HTLC back to channel with short id {} (backward HTLC ID {}) after delay", short_chan_id, htlc_id);
4149                                                                         if let Err(e) = chan.queue_fail_htlc(
4150                                                                                 htlc_id, err_packet, &self.logger
4151                                                                         ) {
4152                                                                                 if let ChannelError::Ignore(msg) = e {
4153                                                                                         log_trace!(self.logger, "Failed to fail HTLC with ID {} backwards to short_id {}: {}", htlc_id, short_chan_id, msg);
4154                                                                                 } else {
4155                                                                                         panic!("Stated return value requirements in queue_fail_htlc() were not met");
4156                                                                                 }
4157                                                                                 // fail-backs are best-effort, we probably already have one
4158                                                                                 // pending, and if not that's OK, if not, the channel is on
4159                                                                                 // the chain and sending the HTLC-Timeout is their problem.
4160                                                                                 continue;
4161                                                                         }
4162                                                                 },
4163                                                         }
4164                                                 }
4165                                         } else {
4166                                                 forwarding_channel_not_found!();
4167                                                 continue;
4168                                         }
4169                                 } else {
4170                                         'next_forwardable_htlc: for forward_info in pending_forwards.drain(..) {
4171                                                 match forward_info {
4172                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4173                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4174                                                                 forward_info: PendingHTLCInfo {
4175                                                                         routing, incoming_shared_secret, payment_hash, incoming_amt_msat, outgoing_amt_msat,
4176                                                                         skimmed_fee_msat, ..
4177                                                                 }
4178                                                         }) => {
4179                                                                 let (cltv_expiry, onion_payload, payment_data, phantom_shared_secret, mut onion_fields) = match routing {
4180                                                                         PendingHTLCRouting::Receive { payment_data, payment_metadata, incoming_cltv_expiry, phantom_shared_secret, custom_tlvs } => {
4181                                                                                 let _legacy_hop_data = Some(payment_data.clone());
4182                                                                                 let onion_fields = RecipientOnionFields { payment_secret: Some(payment_data.payment_secret),
4183                                                                                                 payment_metadata, custom_tlvs };
4184                                                                                 (incoming_cltv_expiry, OnionPayload::Invoice { _legacy_hop_data },
4185                                                                                         Some(payment_data), phantom_shared_secret, onion_fields)
4186                                                                         },
4187                                                                         PendingHTLCRouting::ReceiveKeysend { payment_data, payment_preimage, payment_metadata, incoming_cltv_expiry, custom_tlvs } => {
4188                                                                                 let onion_fields = RecipientOnionFields {
4189                                                                                         payment_secret: payment_data.as_ref().map(|data| data.payment_secret),
4190                                                                                         payment_metadata,
4191                                                                                         custom_tlvs,
4192                                                                                 };
4193                                                                                 (incoming_cltv_expiry, OnionPayload::Spontaneous(payment_preimage),
4194                                                                                         payment_data, None, onion_fields)
4195                                                                         },
4196                                                                         _ => {
4197                                                                                 panic!("short_channel_id == 0 should imply any pending_forward entries are of type Receive");
4198                                                                         }
4199                                                                 };
4200                                                                 let claimable_htlc = ClaimableHTLC {
4201                                                                         prev_hop: HTLCPreviousHopData {
4202                                                                                 short_channel_id: prev_short_channel_id,
4203                                                                                 user_channel_id: Some(prev_user_channel_id),
4204                                                                                 outpoint: prev_funding_outpoint,
4205                                                                                 htlc_id: prev_htlc_id,
4206                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
4207                                                                                 phantom_shared_secret,
4208                                                                         },
4209                                                                         // We differentiate the received value from the sender intended value
4210                                                                         // if possible so that we don't prematurely mark MPP payments complete
4211                                                                         // if routing nodes overpay
4212                                                                         value: incoming_amt_msat.unwrap_or(outgoing_amt_msat),
4213                                                                         sender_intended_value: outgoing_amt_msat,
4214                                                                         timer_ticks: 0,
4215                                                                         total_value_received: None,
4216                                                                         total_msat: if let Some(data) = &payment_data { data.total_msat } else { outgoing_amt_msat },
4217                                                                         cltv_expiry,
4218                                                                         onion_payload,
4219                                                                         counterparty_skimmed_fee_msat: skimmed_fee_msat,
4220                                                                 };
4221
4222                                                                 let mut committed_to_claimable = false;
4223
4224                                                                 macro_rules! fail_htlc {
4225                                                                         ($htlc: expr, $payment_hash: expr) => {
4226                                                                                 debug_assert!(!committed_to_claimable);
4227                                                                                 let mut htlc_msat_height_data = $htlc.value.to_be_bytes().to_vec();
4228                                                                                 htlc_msat_height_data.extend_from_slice(
4229                                                                                         &self.best_block.read().unwrap().height().to_be_bytes(),
4230                                                                                 );
4231                                                                                 failed_forwards.push((HTLCSource::PreviousHopData(HTLCPreviousHopData {
4232                                                                                                 short_channel_id: $htlc.prev_hop.short_channel_id,
4233                                                                                                 user_channel_id: $htlc.prev_hop.user_channel_id,
4234                                                                                                 outpoint: prev_funding_outpoint,
4235                                                                                                 htlc_id: $htlc.prev_hop.htlc_id,
4236                                                                                                 incoming_packet_shared_secret: $htlc.prev_hop.incoming_packet_shared_secret,
4237                                                                                                 phantom_shared_secret,
4238                                                                                         }), payment_hash,
4239                                                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
4240                                                                                         HTLCDestination::FailedPayment { payment_hash: $payment_hash },
4241                                                                                 ));
4242                                                                                 continue 'next_forwardable_htlc;
4243                                                                         }
4244                                                                 }
4245                                                                 let phantom_shared_secret = claimable_htlc.prev_hop.phantom_shared_secret;
4246                                                                 let mut receiver_node_id = self.our_network_pubkey;
4247                                                                 if phantom_shared_secret.is_some() {
4248                                                                         receiver_node_id = self.node_signer.get_node_id(Recipient::PhantomNode)
4249                                                                                 .expect("Failed to get node_id for phantom node recipient");
4250                                                                 }
4251
4252                                                                 macro_rules! check_total_value {
4253                                                                         ($purpose: expr) => {{
4254                                                                                 let mut payment_claimable_generated = false;
4255                                                                                 let is_keysend = match $purpose {
4256                                                                                         events::PaymentPurpose::SpontaneousPayment(_) => true,
4257                                                                                         events::PaymentPurpose::InvoicePayment { .. } => false,
4258                                                                                 };
4259                                                                                 let mut claimable_payments = self.claimable_payments.lock().unwrap();
4260                                                                                 if claimable_payments.pending_claiming_payments.contains_key(&payment_hash) {
4261                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4262                                                                                 }
4263                                                                                 let ref mut claimable_payment = claimable_payments.claimable_payments
4264                                                                                         .entry(payment_hash)
4265                                                                                         // Note that if we insert here we MUST NOT fail_htlc!()
4266                                                                                         .or_insert_with(|| {
4267                                                                                                 committed_to_claimable = true;
4268                                                                                                 ClaimablePayment {
4269                                                                                                         purpose: $purpose.clone(), htlcs: Vec::new(), onion_fields: None,
4270                                                                                                 }
4271                                                                                         });
4272                                                                                 if $purpose != claimable_payment.purpose {
4273                                                                                         let log_keysend = |keysend| if keysend { "keysend" } else { "non-keysend" };
4274                                                                                         log_trace!(self.logger, "Failing new {} HTLC with payment_hash {} as we already had an existing {} HTLC with the same payment hash", log_keysend(is_keysend), &payment_hash, log_keysend(!is_keysend));
4275                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4276                                                                                 }
4277                                                                                 if !self.default_configuration.accept_mpp_keysend && is_keysend && !claimable_payment.htlcs.is_empty() {
4278                                                                                         log_trace!(self.logger, "Failing new keysend HTLC with payment_hash {} as we already had an existing keysend HTLC with the same payment hash and our config states we don't accept MPP keysend", &payment_hash);
4279                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4280                                                                                 }
4281                                                                                 if let Some(earlier_fields) = &mut claimable_payment.onion_fields {
4282                                                                                         if earlier_fields.check_merge(&mut onion_fields).is_err() {
4283                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4284                                                                                         }
4285                                                                                 } else {
4286                                                                                         claimable_payment.onion_fields = Some(onion_fields);
4287                                                                                 }
4288                                                                                 let ref mut htlcs = &mut claimable_payment.htlcs;
4289                                                                                 let mut total_value = claimable_htlc.sender_intended_value;
4290                                                                                 let mut earliest_expiry = claimable_htlc.cltv_expiry;
4291                                                                                 for htlc in htlcs.iter() {
4292                                                                                         total_value += htlc.sender_intended_value;
4293                                                                                         earliest_expiry = cmp::min(earliest_expiry, htlc.cltv_expiry);
4294                                                                                         if htlc.total_msat != claimable_htlc.total_msat {
4295                                                                                                 log_trace!(self.logger, "Failing HTLCs with payment_hash {} as the HTLCs had inconsistent total values (eg {} and {})",
4296                                                                                                         &payment_hash, claimable_htlc.total_msat, htlc.total_msat);
4297                                                                                                 total_value = msgs::MAX_VALUE_MSAT;
4298                                                                                         }
4299                                                                                         if total_value >= msgs::MAX_VALUE_MSAT { break; }
4300                                                                                 }
4301                                                                                 // The condition determining whether an MPP is complete must
4302                                                                                 // match exactly the condition used in `timer_tick_occurred`
4303                                                                                 if total_value >= msgs::MAX_VALUE_MSAT {
4304                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4305                                                                                 } else if total_value - claimable_htlc.sender_intended_value >= claimable_htlc.total_msat {
4306                                                                                         log_trace!(self.logger, "Failing HTLC with payment_hash {} as payment is already claimable",
4307                                                                                                 &payment_hash);
4308                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4309                                                                                 } else if total_value >= claimable_htlc.total_msat {
4310                                                                                         #[allow(unused_assignments)] {
4311                                                                                                 committed_to_claimable = true;
4312                                                                                         }
4313                                                                                         let prev_channel_id = prev_funding_outpoint.to_channel_id();
4314                                                                                         htlcs.push(claimable_htlc);
4315                                                                                         let amount_msat = htlcs.iter().map(|htlc| htlc.value).sum();
4316                                                                                         htlcs.iter_mut().for_each(|htlc| htlc.total_value_received = Some(amount_msat));
4317                                                                                         let counterparty_skimmed_fee_msat = htlcs.iter()
4318                                                                                                 .map(|htlc| htlc.counterparty_skimmed_fee_msat.unwrap_or(0)).sum();
4319                                                                                         debug_assert!(total_value.saturating_sub(amount_msat) <=
4320                                                                                                 counterparty_skimmed_fee_msat);
4321                                                                                         new_events.push_back((events::Event::PaymentClaimable {
4322                                                                                                 receiver_node_id: Some(receiver_node_id),
4323                                                                                                 payment_hash,
4324                                                                                                 purpose: $purpose,
4325                                                                                                 amount_msat,
4326                                                                                                 counterparty_skimmed_fee_msat,
4327                                                                                                 via_channel_id: Some(prev_channel_id),
4328                                                                                                 via_user_channel_id: Some(prev_user_channel_id),
4329                                                                                                 claim_deadline: Some(earliest_expiry - HTLC_FAIL_BACK_BUFFER),
4330                                                                                                 onion_fields: claimable_payment.onion_fields.clone(),
4331                                                                                         }, None));
4332                                                                                         payment_claimable_generated = true;
4333                                                                                 } else {
4334                                                                                         // Nothing to do - we haven't reached the total
4335                                                                                         // payment value yet, wait until we receive more
4336                                                                                         // MPP parts.
4337                                                                                         htlcs.push(claimable_htlc);
4338                                                                                         #[allow(unused_assignments)] {
4339                                                                                                 committed_to_claimable = true;
4340                                                                                         }
4341                                                                                 }
4342                                                                                 payment_claimable_generated
4343                                                                         }}
4344                                                                 }
4345
4346                                                                 // Check that the payment hash and secret are known. Note that we
4347                                                                 // MUST take care to handle the "unknown payment hash" and
4348                                                                 // "incorrect payment secret" cases here identically or we'd expose
4349                                                                 // that we are the ultimate recipient of the given payment hash.
4350                                                                 // Further, we must not expose whether we have any other HTLCs
4351                                                                 // associated with the same payment_hash pending or not.
4352                                                                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
4353                                                                 match payment_secrets.entry(payment_hash) {
4354                                                                         hash_map::Entry::Vacant(_) => {
4355                                                                                 match claimable_htlc.onion_payload {
4356                                                                                         OnionPayload::Invoice { .. } => {
4357                                                                                                 let payment_data = payment_data.unwrap();
4358                                                                                                 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) {
4359                                                                                                         Ok(result) => result,
4360                                                                                                         Err(()) => {
4361                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as payment verification failed", &payment_hash);
4362                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4363                                                                                                         }
4364                                                                                                 };
4365                                                                                                 if let Some(min_final_cltv_expiry_delta) = min_final_cltv_expiry_delta {
4366                                                                                                         let expected_min_expiry_height = (self.current_best_block().height() + min_final_cltv_expiry_delta as u32) as u64;
4367                                                                                                         if (cltv_expiry as u64) < expected_min_expiry_height {
4368                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as its CLTV expiry was too soon (had {}, earliest expected {})",
4369                                                                                                                         &payment_hash, cltv_expiry, expected_min_expiry_height);
4370                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4371                                                                                                         }
4372                                                                                                 }
4373                                                                                                 let purpose = events::PaymentPurpose::InvoicePayment {
4374                                                                                                         payment_preimage: payment_preimage.clone(),
4375                                                                                                         payment_secret: payment_data.payment_secret,
4376                                                                                                 };
4377                                                                                                 check_total_value!(purpose);
4378                                                                                         },
4379                                                                                         OnionPayload::Spontaneous(preimage) => {
4380                                                                                                 let purpose = events::PaymentPurpose::SpontaneousPayment(preimage);
4381                                                                                                 check_total_value!(purpose);
4382                                                                                         }
4383                                                                                 }
4384                                                                         },
4385                                                                         hash_map::Entry::Occupied(inbound_payment) => {
4386                                                                                 if let OnionPayload::Spontaneous(_) = claimable_htlc.onion_payload {
4387                                                                                         log_trace!(self.logger, "Failing new keysend HTLC with payment_hash {} because we already have an inbound payment with the same payment hash", &payment_hash);
4388                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4389                                                                                 }
4390                                                                                 let payment_data = payment_data.unwrap();
4391                                                                                 if inbound_payment.get().payment_secret != payment_data.payment_secret {
4392                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our expected payment secret.", &payment_hash);
4393                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4394                                                                                 } else if inbound_payment.get().min_value_msat.is_some() && payment_data.total_msat < inbound_payment.get().min_value_msat.unwrap() {
4395                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our minimum value (had {}, needed {}).",
4396                                                                                                 &payment_hash, payment_data.total_msat, inbound_payment.get().min_value_msat.unwrap());
4397                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4398                                                                                 } else {
4399                                                                                         let purpose = events::PaymentPurpose::InvoicePayment {
4400                                                                                                 payment_preimage: inbound_payment.get().payment_preimage,
4401                                                                                                 payment_secret: payment_data.payment_secret,
4402                                                                                         };
4403                                                                                         let payment_claimable_generated = check_total_value!(purpose);
4404                                                                                         if payment_claimable_generated {
4405                                                                                                 inbound_payment.remove_entry();
4406                                                                                         }
4407                                                                                 }
4408                                                                         },
4409                                                                 };
4410                                                         },
4411                                                         HTLCForwardInfo::FailHTLC { .. } => {
4412                                                                 panic!("Got pending fail of our own HTLC");
4413                                                         }
4414                                                 }
4415                                         }
4416                                 }
4417                         }
4418                 }
4419
4420                 let best_block_height = self.best_block.read().unwrap().height();
4421                 self.pending_outbound_payments.check_retry_payments(&self.router, || self.list_usable_channels(),
4422                         || self.compute_inflight_htlcs(), &self.entropy_source, &self.node_signer, best_block_height,
4423                         &self.pending_events, &self.logger, |args| self.send_payment_along_path(args));
4424
4425                 for (htlc_source, payment_hash, failure_reason, destination) in failed_forwards.drain(..) {
4426                         self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
4427                 }
4428                 self.forward_htlcs(&mut phantom_receives);
4429
4430                 // Freeing the holding cell here is relatively redundant - in practice we'll do it when we
4431                 // next get a `get_and_clear_pending_msg_events` call, but some tests rely on it, and it's
4432                 // nice to do the work now if we can rather than while we're trying to get messages in the
4433                 // network stack.
4434                 self.check_free_holding_cells();
4435
4436                 if new_events.is_empty() { return }
4437                 let mut events = self.pending_events.lock().unwrap();
4438                 events.append(&mut new_events);
4439         }
4440
4441         /// Free the background events, generally called from [`PersistenceNotifierGuard`] constructors.
4442         ///
4443         /// Expects the caller to have a total_consistency_lock read lock.
4444         fn process_background_events(&self) -> NotifyOption {
4445                 debug_assert_ne!(self.total_consistency_lock.held_by_thread(), LockHeldState::NotHeldByThread);
4446
4447                 self.background_events_processed_since_startup.store(true, Ordering::Release);
4448
4449                 let mut background_events = Vec::new();
4450                 mem::swap(&mut *self.pending_background_events.lock().unwrap(), &mut background_events);
4451                 if background_events.is_empty() {
4452                         return NotifyOption::SkipPersist;
4453                 }
4454
4455                 for event in background_events.drain(..) {
4456                         match event {
4457                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((funding_txo, update)) => {
4458                                         // The channel has already been closed, so no use bothering to care about the
4459                                         // monitor updating completing.
4460                                         let _ = self.chain_monitor.update_channel(funding_txo, &update);
4461                                 },
4462                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup { counterparty_node_id, funding_txo, update } => {
4463                                         let mut updated_chan = false;
4464                                         let res = {
4465                                                 let per_peer_state = self.per_peer_state.read().unwrap();
4466                                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
4467                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4468                                                         let peer_state = &mut *peer_state_lock;
4469                                                         match peer_state.channel_by_id.entry(funding_txo.to_channel_id()) {
4470                                                                 hash_map::Entry::Occupied(mut chan_phase) => {
4471                                                                         updated_chan = true;
4472                                                                         handle_new_monitor_update!(self, funding_txo, update.clone(),
4473                                                                                 peer_state_lock, peer_state, per_peer_state, chan_phase).map(|_| ())
4474                                                                 },
4475                                                                 hash_map::Entry::Vacant(_) => Ok(()),
4476                                                         }
4477                                                 } else { Ok(()) }
4478                                         };
4479                                         if !updated_chan {
4480                                                 // TODO: Track this as in-flight even though the channel is closed.
4481                                                 let _ = self.chain_monitor.update_channel(funding_txo, &update);
4482                                         }
4483                                         // TODO: If this channel has since closed, we're likely providing a payment
4484                                         // preimage update, which we must ensure is durable! We currently don't,
4485                                         // however, ensure that.
4486                                         if res.is_err() {
4487                                                 log_error!(self.logger,
4488                                                         "Failed to provide ChannelMonitorUpdate to closed channel! This likely lost us a payment preimage!");
4489                                         }
4490                                         let _ = handle_error!(self, res, counterparty_node_id);
4491                                 },
4492                                 BackgroundEvent::MonitorUpdatesComplete { counterparty_node_id, channel_id } => {
4493                                         let per_peer_state = self.per_peer_state.read().unwrap();
4494                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
4495                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4496                                                 let peer_state = &mut *peer_state_lock;
4497                                                 if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&channel_id) {
4498                                                         handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, chan);
4499                                                 } else {
4500                                                         let update_actions = peer_state.monitor_update_blocked_actions
4501                                                                 .remove(&channel_id).unwrap_or(Vec::new());
4502                                                         mem::drop(peer_state_lock);
4503                                                         mem::drop(per_peer_state);
4504                                                         self.handle_monitor_update_completion_actions(update_actions);
4505                                                 }
4506                                         }
4507                                 },
4508                         }
4509                 }
4510                 NotifyOption::DoPersist
4511         }
4512
4513         #[cfg(any(test, feature = "_test_utils"))]
4514         /// Process background events, for functional testing
4515         pub fn test_process_background_events(&self) {
4516                 let _lck = self.total_consistency_lock.read().unwrap();
4517                 let _ = self.process_background_events();
4518         }
4519
4520         fn update_channel_fee(&self, chan_id: &ChannelId, chan: &mut Channel<SP>, new_feerate: u32) -> NotifyOption {
4521                 if !chan.context.is_outbound() { return NotifyOption::SkipPersist; }
4522                 // If the feerate has decreased by less than half, don't bother
4523                 if new_feerate <= chan.context.get_feerate_sat_per_1000_weight() && new_feerate * 2 > chan.context.get_feerate_sat_per_1000_weight() {
4524                         log_trace!(self.logger, "Channel {} does not qualify for a feerate change from {} to {}.",
4525                                 &chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4526                         return NotifyOption::SkipPersist;
4527                 }
4528                 if !chan.context.is_live() {
4529                         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).",
4530                                 &chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4531                         return NotifyOption::SkipPersist;
4532                 }
4533                 log_trace!(self.logger, "Channel {} qualifies for a feerate change from {} to {}.",
4534                         &chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4535
4536                 chan.queue_update_fee(new_feerate, &self.fee_estimator, &self.logger);
4537                 NotifyOption::DoPersist
4538         }
4539
4540         #[cfg(fuzzing)]
4541         /// In chanmon_consistency we want to sometimes do the channel fee updates done in
4542         /// timer_tick_occurred, but we can't generate the disabled channel updates as it considers
4543         /// these a fuzz failure (as they usually indicate a channel force-close, which is exactly what
4544         /// it wants to detect). Thus, we have a variant exposed here for its benefit.
4545         pub fn maybe_update_chan_fees(&self) {
4546                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
4547                         let mut should_persist = self.process_background_events();
4548
4549                         let normal_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
4550                         let min_mempool_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::MempoolMinimum);
4551
4552                         let per_peer_state = self.per_peer_state.read().unwrap();
4553                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
4554                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4555                                 let peer_state = &mut *peer_state_lock;
4556                                 for (chan_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
4557                                         |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
4558                                 ) {
4559                                         let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
4560                                                 min_mempool_feerate
4561                                         } else {
4562                                                 normal_feerate
4563                                         };
4564                                         let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4565                                         if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4566                                 }
4567                         }
4568
4569                         should_persist
4570                 });
4571         }
4572
4573         /// Performs actions which should happen on startup and roughly once per minute thereafter.
4574         ///
4575         /// This currently includes:
4576         ///  * Increasing or decreasing the on-chain feerate estimates for our outbound channels,
4577         ///  * Broadcasting [`ChannelUpdate`] messages if we've been disconnected from our peer for more
4578         ///    than a minute, informing the network that they should no longer attempt to route over
4579         ///    the channel.
4580         ///  * Expiring a channel's previous [`ChannelConfig`] if necessary to only allow forwarding HTLCs
4581         ///    with the current [`ChannelConfig`].
4582         ///  * Removing peers which have disconnected but and no longer have any channels.
4583         ///  * Force-closing and removing channels which have not completed establishment in a timely manner.
4584         ///
4585         /// Note that this may cause reentrancy through [`chain::Watch::update_channel`] calls or feerate
4586         /// estimate fetches.
4587         ///
4588         /// [`ChannelUpdate`]: msgs::ChannelUpdate
4589         /// [`ChannelConfig`]: crate::util::config::ChannelConfig
4590         pub fn timer_tick_occurred(&self) {
4591                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
4592                         let mut should_persist = self.process_background_events();
4593
4594                         let normal_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
4595                         let min_mempool_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::MempoolMinimum);
4596
4597                         let mut handle_errors: Vec<(Result<(), _>, _)> = Vec::new();
4598                         let mut timed_out_mpp_htlcs = Vec::new();
4599                         let mut pending_peers_awaiting_removal = Vec::new();
4600
4601                         let process_unfunded_channel_tick = |
4602                                 chan_id: &ChannelId,
4603                                 context: &mut ChannelContext<SP>,
4604                                 unfunded_context: &mut UnfundedChannelContext,
4605                                 pending_msg_events: &mut Vec<MessageSendEvent>,
4606                                 counterparty_node_id: PublicKey,
4607                         | {
4608                                 context.maybe_expire_prev_config();
4609                                 if unfunded_context.should_expire_unfunded_channel() {
4610                                         log_error!(self.logger,
4611                                                 "Force-closing pending channel with ID {} for not establishing in a timely manner", chan_id);
4612                                         update_maps_on_chan_removal!(self, &context);
4613                                         self.issue_channel_close_events(&context, ClosureReason::HolderForceClosed);
4614                                         self.finish_force_close_channel(context.force_shutdown(false));
4615                                         pending_msg_events.push(MessageSendEvent::HandleError {
4616                                                 node_id: counterparty_node_id,
4617                                                 action: msgs::ErrorAction::SendErrorMessage {
4618                                                         msg: msgs::ErrorMessage {
4619                                                                 channel_id: *chan_id,
4620                                                                 data: "Force-closing pending channel due to timeout awaiting establishment handshake".to_owned(),
4621                                                         },
4622                                                 },
4623                                         });
4624                                         false
4625                                 } else {
4626                                         true
4627                                 }
4628                         };
4629
4630                         {
4631                                 let per_peer_state = self.per_peer_state.read().unwrap();
4632                                 for (counterparty_node_id, peer_state_mutex) in per_peer_state.iter() {
4633                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4634                                         let peer_state = &mut *peer_state_lock;
4635                                         let pending_msg_events = &mut peer_state.pending_msg_events;
4636                                         let counterparty_node_id = *counterparty_node_id;
4637                                         peer_state.channel_by_id.retain(|chan_id, phase| {
4638                                                 match phase {
4639                                                         ChannelPhase::Funded(chan) => {
4640                                                                 let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
4641                                                                         min_mempool_feerate
4642                                                                 } else {
4643                                                                         normal_feerate
4644                                                                 };
4645                                                                 let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4646                                                                 if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4647
4648                                                                 if let Err(e) = chan.timer_check_closing_negotiation_progress() {
4649                                                                         let (needs_close, err) = convert_chan_phase_err!(self, e, chan, chan_id, FUNDED_CHANNEL);
4650                                                                         handle_errors.push((Err(err), counterparty_node_id));
4651                                                                         if needs_close { return false; }
4652                                                                 }
4653
4654                                                                 match chan.channel_update_status() {
4655                                                                         ChannelUpdateStatus::Enabled if !chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(0)),
4656                                                                         ChannelUpdateStatus::Disabled if chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(0)),
4657                                                                         ChannelUpdateStatus::DisabledStaged(_) if chan.context.is_live()
4658                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Enabled),
4659                                                                         ChannelUpdateStatus::EnabledStaged(_) if !chan.context.is_live()
4660                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Disabled),
4661                                                                         ChannelUpdateStatus::DisabledStaged(mut n) if !chan.context.is_live() => {
4662                                                                                 n += 1;
4663                                                                                 if n >= DISABLE_GOSSIP_TICKS {
4664                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Disabled);
4665                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4666                                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4667                                                                                                         msg: update
4668                                                                                                 });
4669                                                                                         }
4670                                                                                         should_persist = NotifyOption::DoPersist;
4671                                                                                 } else {
4672                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(n));
4673                                                                                 }
4674                                                                         },
4675                                                                         ChannelUpdateStatus::EnabledStaged(mut n) if chan.context.is_live() => {
4676                                                                                 n += 1;
4677                                                                                 if n >= ENABLE_GOSSIP_TICKS {
4678                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Enabled);
4679                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4680                                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4681                                                                                                         msg: update
4682                                                                                                 });
4683                                                                                         }
4684                                                                                         should_persist = NotifyOption::DoPersist;
4685                                                                                 } else {
4686                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(n));
4687                                                                                 }
4688                                                                         },
4689                                                                         _ => {},
4690                                                                 }
4691
4692                                                                 chan.context.maybe_expire_prev_config();
4693
4694                                                                 if chan.should_disconnect_peer_awaiting_response() {
4695                                                                         log_debug!(self.logger, "Disconnecting peer {} due to not making any progress on channel {}",
4696                                                                                         counterparty_node_id, chan_id);
4697                                                                         pending_msg_events.push(MessageSendEvent::HandleError {
4698                                                                                 node_id: counterparty_node_id,
4699                                                                                 action: msgs::ErrorAction::DisconnectPeerWithWarning {
4700                                                                                         msg: msgs::WarningMessage {
4701                                                                                                 channel_id: *chan_id,
4702                                                                                                 data: "Disconnecting due to timeout awaiting response".to_owned(),
4703                                                                                         },
4704                                                                                 },
4705                                                                         });
4706                                                                 }
4707
4708                                                                 true
4709                                                         },
4710                                                         ChannelPhase::UnfundedInboundV1(chan) => {
4711                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
4712                                                                         pending_msg_events, counterparty_node_id)
4713                                                         },
4714                                                         ChannelPhase::UnfundedOutboundV1(chan) => {
4715                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
4716                                                                         pending_msg_events, counterparty_node_id)
4717                                                         },
4718                                                 }
4719                                         });
4720
4721                                         for (chan_id, req) in peer_state.inbound_channel_request_by_id.iter_mut() {
4722                                                 if { req.ticks_remaining -= 1 ; req.ticks_remaining } <= 0 {
4723                                                         log_error!(self.logger, "Force-closing unaccepted inbound channel {} for not accepting in a timely manner", &chan_id);
4724                                                         peer_state.pending_msg_events.push(
4725                                                                 events::MessageSendEvent::HandleError {
4726                                                                         node_id: counterparty_node_id,
4727                                                                         action: msgs::ErrorAction::SendErrorMessage {
4728                                                                                 msg: msgs::ErrorMessage { channel_id: chan_id.clone(), data: "Channel force-closed".to_owned() }
4729                                                                         },
4730                                                                 }
4731                                                         );
4732                                                 }
4733                                         }
4734                                         peer_state.inbound_channel_request_by_id.retain(|_, req| req.ticks_remaining > 0);
4735
4736                                         if peer_state.ok_to_remove(true) {
4737                                                 pending_peers_awaiting_removal.push(counterparty_node_id);
4738                                         }
4739                                 }
4740                         }
4741
4742                         // When a peer disconnects but still has channels, the peer's `peer_state` entry in the
4743                         // `per_peer_state` is not removed by the `peer_disconnected` function. If the channels
4744                         // of to that peer is later closed while still being disconnected (i.e. force closed),
4745                         // we therefore need to remove the peer from `peer_state` separately.
4746                         // To avoid having to take the `per_peer_state` `write` lock once the channels are
4747                         // closed, we instead remove such peers awaiting removal here on a timer, to limit the
4748                         // negative effects on parallelism as much as possible.
4749                         if pending_peers_awaiting_removal.len() > 0 {
4750                                 let mut per_peer_state = self.per_peer_state.write().unwrap();
4751                                 for counterparty_node_id in pending_peers_awaiting_removal {
4752                                         match per_peer_state.entry(counterparty_node_id) {
4753                                                 hash_map::Entry::Occupied(entry) => {
4754                                                         // Remove the entry if the peer is still disconnected and we still
4755                                                         // have no channels to the peer.
4756                                                         let remove_entry = {
4757                                                                 let peer_state = entry.get().lock().unwrap();
4758                                                                 peer_state.ok_to_remove(true)
4759                                                         };
4760                                                         if remove_entry {
4761                                                                 entry.remove_entry();
4762                                                         }
4763                                                 },
4764                                                 hash_map::Entry::Vacant(_) => { /* The PeerState has already been removed */ }
4765                                         }
4766                                 }
4767                         }
4768
4769                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
4770                                 if payment.htlcs.is_empty() {
4771                                         // This should be unreachable
4772                                         debug_assert!(false);
4773                                         return false;
4774                                 }
4775                                 if let OnionPayload::Invoice { .. } = payment.htlcs[0].onion_payload {
4776                                         // Check if we've received all the parts we need for an MPP (the value of the parts adds to total_msat).
4777                                         // In this case we're not going to handle any timeouts of the parts here.
4778                                         // This condition determining whether the MPP is complete here must match
4779                                         // exactly the condition used in `process_pending_htlc_forwards`.
4780                                         if payment.htlcs[0].total_msat <= payment.htlcs.iter()
4781                                                 .fold(0, |total, htlc| total + htlc.sender_intended_value)
4782                                         {
4783                                                 return true;
4784                                         } else if payment.htlcs.iter_mut().any(|htlc| {
4785                                                 htlc.timer_ticks += 1;
4786                                                 return htlc.timer_ticks >= MPP_TIMEOUT_TICKS
4787                                         }) {
4788                                                 timed_out_mpp_htlcs.extend(payment.htlcs.drain(..)
4789                                                         .map(|htlc: ClaimableHTLC| (htlc.prev_hop, *payment_hash)));
4790                                                 return false;
4791                                         }
4792                                 }
4793                                 true
4794                         });
4795
4796                         for htlc_source in timed_out_mpp_htlcs.drain(..) {
4797                                 let source = HTLCSource::PreviousHopData(htlc_source.0.clone());
4798                                 let reason = HTLCFailReason::from_failure_code(23);
4799                                 let receiver = HTLCDestination::FailedPayment { payment_hash: htlc_source.1 };
4800                                 self.fail_htlc_backwards_internal(&source, &htlc_source.1, &reason, receiver);
4801                         }
4802
4803                         for (err, counterparty_node_id) in handle_errors.drain(..) {
4804                                 let _ = handle_error!(self, err, counterparty_node_id);
4805                         }
4806
4807                         self.pending_outbound_payments.remove_stale_payments(&self.pending_events);
4808
4809                         // Technically we don't need to do this here, but if we have holding cell entries in a
4810                         // channel that need freeing, it's better to do that here and block a background task
4811                         // than block the message queueing pipeline.
4812                         if self.check_free_holding_cells() {
4813                                 should_persist = NotifyOption::DoPersist;
4814                         }
4815
4816                         should_persist
4817                 });
4818         }
4819
4820         /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
4821         /// after a PaymentClaimable event, failing the HTLC back to its origin and freeing resources
4822         /// along the path (including in our own channel on which we received it).
4823         ///
4824         /// Note that in some cases around unclean shutdown, it is possible the payment may have
4825         /// already been claimed by you via [`ChannelManager::claim_funds`] prior to you seeing (a
4826         /// second copy of) the [`events::Event::PaymentClaimable`] event. Alternatively, the payment
4827         /// may have already been failed automatically by LDK if it was nearing its expiration time.
4828         ///
4829         /// While LDK will never claim a payment automatically on your behalf (i.e. without you calling
4830         /// [`ChannelManager::claim_funds`]), you should still monitor for
4831         /// [`events::Event::PaymentClaimed`] events even for payments you intend to fail, especially on
4832         /// startup during which time claims that were in-progress at shutdown may be replayed.
4833         pub fn fail_htlc_backwards(&self, payment_hash: &PaymentHash) {
4834                 self.fail_htlc_backwards_with_reason(payment_hash, FailureCode::IncorrectOrUnknownPaymentDetails);
4835         }
4836
4837         /// This is a variant of [`ChannelManager::fail_htlc_backwards`] that allows you to specify the
4838         /// reason for the failure.
4839         ///
4840         /// See [`FailureCode`] for valid failure codes.
4841         pub fn fail_htlc_backwards_with_reason(&self, payment_hash: &PaymentHash, failure_code: FailureCode) {
4842                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4843
4844                 let removed_source = self.claimable_payments.lock().unwrap().claimable_payments.remove(payment_hash);
4845                 if let Some(payment) = removed_source {
4846                         for htlc in payment.htlcs {
4847                                 let reason = self.get_htlc_fail_reason_from_failure_code(failure_code, &htlc);
4848                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
4849                                 let receiver = HTLCDestination::FailedPayment { payment_hash: *payment_hash };
4850                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
4851                         }
4852                 }
4853         }
4854
4855         /// Gets error data to form an [`HTLCFailReason`] given a [`FailureCode`] and [`ClaimableHTLC`].
4856         fn get_htlc_fail_reason_from_failure_code(&self, failure_code: FailureCode, htlc: &ClaimableHTLC) -> HTLCFailReason {
4857                 match failure_code {
4858                         FailureCode::TemporaryNodeFailure => HTLCFailReason::from_failure_code(failure_code.into()),
4859                         FailureCode::RequiredNodeFeatureMissing => HTLCFailReason::from_failure_code(failure_code.into()),
4860                         FailureCode::IncorrectOrUnknownPaymentDetails => {
4861                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
4862                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
4863                                 HTLCFailReason::reason(failure_code.into(), htlc_msat_height_data)
4864                         },
4865                         FailureCode::InvalidOnionPayload(data) => {
4866                                 let fail_data = match data {
4867                                         Some((typ, offset)) => [BigSize(typ).encode(), offset.encode()].concat(),
4868                                         None => Vec::new(),
4869                                 };
4870                                 HTLCFailReason::reason(failure_code.into(), fail_data)
4871                         }
4872                 }
4873         }
4874
4875         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
4876         /// that we want to return and a channel.
4877         ///
4878         /// This is for failures on the channel on which the HTLC was *received*, not failures
4879         /// forwarding
4880         fn get_htlc_inbound_temp_fail_err_and_data(&self, desired_err_code: u16, chan: &Channel<SP>) -> (u16, Vec<u8>) {
4881                 // We can't be sure what SCID was used when relaying inbound towards us, so we have to
4882                 // guess somewhat. If its a public channel, we figure best to just use the real SCID (as
4883                 // we're not leaking that we have a channel with the counterparty), otherwise we try to use
4884                 // an inbound SCID alias before the real SCID.
4885                 let scid_pref = if chan.context.should_announce() {
4886                         chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias())
4887                 } else {
4888                         chan.context.latest_inbound_scid_alias().or(chan.context.get_short_channel_id())
4889                 };
4890                 if let Some(scid) = scid_pref {
4891                         self.get_htlc_temp_fail_err_and_data(desired_err_code, scid, chan)
4892                 } else {
4893                         (0x4000|10, Vec::new())
4894                 }
4895         }
4896
4897
4898         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
4899         /// that we want to return and a channel.
4900         fn get_htlc_temp_fail_err_and_data(&self, desired_err_code: u16, scid: u64, chan: &Channel<SP>) -> (u16, Vec<u8>) {
4901                 debug_assert_eq!(desired_err_code & 0x1000, 0x1000);
4902                 if let Ok(upd) = self.get_channel_update_for_onion(scid, chan) {
4903                         let mut enc = VecWriter(Vec::with_capacity(upd.serialized_length() + 6));
4904                         if desired_err_code == 0x1000 | 20 {
4905                                 // No flags for `disabled_flags` are currently defined so they're always two zero bytes.
4906                                 // See https://github.com/lightning/bolts/blob/341ec84/04-onion-routing.md?plain=1#L1008
4907                                 0u16.write(&mut enc).expect("Writes cannot fail");
4908                         }
4909                         (upd.serialized_length() as u16 + 2).write(&mut enc).expect("Writes cannot fail");
4910                         msgs::ChannelUpdate::TYPE.write(&mut enc).expect("Writes cannot fail");
4911                         upd.write(&mut enc).expect("Writes cannot fail");
4912                         (desired_err_code, enc.0)
4913                 } else {
4914                         // If we fail to get a unicast channel_update, it implies we don't yet have an SCID,
4915                         // which means we really shouldn't have gotten a payment to be forwarded over this
4916                         // channel yet, or if we did it's from a route hint. Either way, returning an error of
4917                         // PERM|no_such_channel should be fine.
4918                         (0x4000|10, Vec::new())
4919                 }
4920         }
4921
4922         // Fail a list of HTLCs that were just freed from the holding cell. The HTLCs need to be
4923         // failed backwards or, if they were one of our outgoing HTLCs, then their failure needs to
4924         // be surfaced to the user.
4925         fn fail_holding_cell_htlcs(
4926                 &self, mut htlcs_to_fail: Vec<(HTLCSource, PaymentHash)>, channel_id: ChannelId,
4927                 counterparty_node_id: &PublicKey
4928         ) {
4929                 let (failure_code, onion_failure_data) = {
4930                         let per_peer_state = self.per_peer_state.read().unwrap();
4931                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
4932                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4933                                 let peer_state = &mut *peer_state_lock;
4934                                 match peer_state.channel_by_id.entry(channel_id) {
4935                                         hash_map::Entry::Occupied(chan_phase_entry) => {
4936                                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get() {
4937                                                         self.get_htlc_inbound_temp_fail_err_and_data(0x1000|7, &chan)
4938                                                 } else {
4939                                                         // We shouldn't be trying to fail holding cell HTLCs on an unfunded channel.
4940                                                         debug_assert!(false);
4941                                                         (0x4000|10, Vec::new())
4942                                                 }
4943                                         },
4944                                         hash_map::Entry::Vacant(_) => (0x4000|10, Vec::new())
4945                                 }
4946                         } else { (0x4000|10, Vec::new()) }
4947                 };
4948
4949                 for (htlc_src, payment_hash) in htlcs_to_fail.drain(..) {
4950                         let reason = HTLCFailReason::reason(failure_code, onion_failure_data.clone());
4951                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id };
4952                         self.fail_htlc_backwards_internal(&htlc_src, &payment_hash, &reason, receiver);
4953                 }
4954         }
4955
4956         /// Fails an HTLC backwards to the sender of it to us.
4957         /// Note that we do not assume that channels corresponding to failed HTLCs are still available.
4958         fn fail_htlc_backwards_internal(&self, source: &HTLCSource, payment_hash: &PaymentHash, onion_error: &HTLCFailReason, destination: HTLCDestination) {
4959                 // Ensure that no peer state channel storage lock is held when calling this function.
4960                 // This ensures that future code doesn't introduce a lock-order requirement for
4961                 // `forward_htlcs` to be locked after the `per_peer_state` peer locks, which calling
4962                 // this function with any `per_peer_state` peer lock acquired would.
4963                 for (_, peer) in self.per_peer_state.read().unwrap().iter() {
4964                         debug_assert_ne!(peer.held_by_thread(), LockHeldState::HeldByThread);
4965                 }
4966
4967                 //TODO: There is a timing attack here where if a node fails an HTLC back to us they can
4968                 //identify whether we sent it or not based on the (I presume) very different runtime
4969                 //between the branches here. We should make this async and move it into the forward HTLCs
4970                 //timer handling.
4971
4972                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
4973                 // from block_connected which may run during initialization prior to the chain_monitor
4974                 // being fully configured. See the docs for `ChannelManagerReadArgs` for more.
4975                 match source {
4976                         HTLCSource::OutboundRoute { ref path, ref session_priv, ref payment_id, .. } => {
4977                                 if self.pending_outbound_payments.fail_htlc(source, payment_hash, onion_error, path,
4978                                         session_priv, payment_id, self.probing_cookie_secret, &self.secp_ctx,
4979                                         &self.pending_events, &self.logger)
4980                                 { self.push_pending_forwards_ev(); }
4981                         },
4982                         HTLCSource::PreviousHopData(HTLCPreviousHopData { ref short_channel_id, ref htlc_id, ref incoming_packet_shared_secret, ref phantom_shared_secret, ref outpoint, .. }) => {
4983                                 log_trace!(self.logger, "Failing HTLC with payment_hash {} backwards from us with {:?}", &payment_hash, onion_error);
4984                                 let err_packet = onion_error.get_encrypted_failure_packet(incoming_packet_shared_secret, phantom_shared_secret);
4985
4986                                 let mut push_forward_ev = false;
4987                                 let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
4988                                 if forward_htlcs.is_empty() {
4989                                         push_forward_ev = true;
4990                                 }
4991                                 match forward_htlcs.entry(*short_channel_id) {
4992                                         hash_map::Entry::Occupied(mut entry) => {
4993                                                 entry.get_mut().push(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet });
4994                                         },
4995                                         hash_map::Entry::Vacant(entry) => {
4996                                                 entry.insert(vec!(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet }));
4997                                         }
4998                                 }
4999                                 mem::drop(forward_htlcs);
5000                                 if push_forward_ev { self.push_pending_forwards_ev(); }
5001                                 let mut pending_events = self.pending_events.lock().unwrap();
5002                                 pending_events.push_back((events::Event::HTLCHandlingFailed {
5003                                         prev_channel_id: outpoint.to_channel_id(),
5004                                         failed_next_destination: destination,
5005                                 }, None));
5006                         },
5007                 }
5008         }
5009
5010         /// Provides a payment preimage in response to [`Event::PaymentClaimable`], generating any
5011         /// [`MessageSendEvent`]s needed to claim the payment.
5012         ///
5013         /// This method is guaranteed to ensure the payment has been claimed but only if the current
5014         /// height is strictly below [`Event::PaymentClaimable::claim_deadline`]. To avoid race
5015         /// conditions, you should wait for an [`Event::PaymentClaimed`] before considering the payment
5016         /// successful. It will generally be available in the next [`process_pending_events`] call.
5017         ///
5018         /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
5019         /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentClaimable`
5020         /// event matches your expectation. If you fail to do so and call this method, you may provide
5021         /// the sender "proof-of-payment" when they did not fulfill the full expected payment.
5022         ///
5023         /// This function will fail the payment if it has custom TLVs with even type numbers, as we
5024         /// will assume they are unknown. If you intend to accept even custom TLVs, you should use
5025         /// [`claim_funds_with_known_custom_tlvs`].
5026         ///
5027         /// [`Event::PaymentClaimable`]: crate::events::Event::PaymentClaimable
5028         /// [`Event::PaymentClaimable::claim_deadline`]: crate::events::Event::PaymentClaimable::claim_deadline
5029         /// [`Event::PaymentClaimed`]: crate::events::Event::PaymentClaimed
5030         /// [`process_pending_events`]: EventsProvider::process_pending_events
5031         /// [`create_inbound_payment`]: Self::create_inbound_payment
5032         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
5033         /// [`claim_funds_with_known_custom_tlvs`]: Self::claim_funds_with_known_custom_tlvs
5034         pub fn claim_funds(&self, payment_preimage: PaymentPreimage) {
5035                 self.claim_payment_internal(payment_preimage, false);
5036         }
5037
5038         /// This is a variant of [`claim_funds`] that allows accepting a payment with custom TLVs with
5039         /// even type numbers.
5040         ///
5041         /// # Note
5042         ///
5043         /// You MUST check you've understood all even TLVs before using this to
5044         /// claim, otherwise you may unintentionally agree to some protocol you do not understand.
5045         ///
5046         /// [`claim_funds`]: Self::claim_funds
5047         pub fn claim_funds_with_known_custom_tlvs(&self, payment_preimage: PaymentPreimage) {
5048                 self.claim_payment_internal(payment_preimage, true);
5049         }
5050
5051         fn claim_payment_internal(&self, payment_preimage: PaymentPreimage, custom_tlvs_known: bool) {
5052                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
5053
5054                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5055
5056                 let mut sources = {
5057                         let mut claimable_payments = self.claimable_payments.lock().unwrap();
5058                         if let Some(payment) = claimable_payments.claimable_payments.remove(&payment_hash) {
5059                                 let mut receiver_node_id = self.our_network_pubkey;
5060                                 for htlc in payment.htlcs.iter() {
5061                                         if htlc.prev_hop.phantom_shared_secret.is_some() {
5062                                                 let phantom_pubkey = self.node_signer.get_node_id(Recipient::PhantomNode)
5063                                                         .expect("Failed to get node_id for phantom node recipient");
5064                                                 receiver_node_id = phantom_pubkey;
5065                                                 break;
5066                                         }
5067                                 }
5068
5069                                 let htlcs = payment.htlcs.iter().map(events::ClaimedHTLC::from).collect();
5070                                 let sender_intended_value = payment.htlcs.first().map(|htlc| htlc.total_msat);
5071                                 let dup_purpose = claimable_payments.pending_claiming_payments.insert(payment_hash,
5072                                         ClaimingPayment { amount_msat: payment.htlcs.iter().map(|source| source.value).sum(),
5073                                         payment_purpose: payment.purpose, receiver_node_id, htlcs, sender_intended_value
5074                                 });
5075                                 if dup_purpose.is_some() {
5076                                         debug_assert!(false, "Shouldn't get a duplicate pending claim event ever");
5077                                         log_error!(self.logger, "Got a duplicate pending claimable event on payment hash {}! Please report this bug",
5078                                                 &payment_hash);
5079                                 }
5080
5081                                 if let Some(RecipientOnionFields { ref custom_tlvs, .. }) = payment.onion_fields {
5082                                         if !custom_tlvs_known && custom_tlvs.iter().any(|(typ, _)| typ % 2 == 0) {
5083                                                 log_info!(self.logger, "Rejecting payment with payment hash {} as we cannot accept payment with unknown even TLVs: {}",
5084                                                         &payment_hash, log_iter!(custom_tlvs.iter().map(|(typ, _)| typ).filter(|typ| *typ % 2 == 0)));
5085                                                 claimable_payments.pending_claiming_payments.remove(&payment_hash);
5086                                                 mem::drop(claimable_payments);
5087                                                 for htlc in payment.htlcs {
5088                                                         let reason = self.get_htlc_fail_reason_from_failure_code(FailureCode::InvalidOnionPayload(None), &htlc);
5089                                                         let source = HTLCSource::PreviousHopData(htlc.prev_hop);
5090                                                         let receiver = HTLCDestination::FailedPayment { payment_hash };
5091                                                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
5092                                                 }
5093                                                 return;
5094                                         }
5095                                 }
5096
5097                                 payment.htlcs
5098                         } else { return; }
5099                 };
5100                 debug_assert!(!sources.is_empty());
5101
5102                 // Just in case one HTLC has been failed between when we generated the `PaymentClaimable`
5103                 // and when we got here we need to check that the amount we're about to claim matches the
5104                 // amount we told the user in the last `PaymentClaimable`. We also do a sanity-check that
5105                 // the MPP parts all have the same `total_msat`.
5106                 let mut claimable_amt_msat = 0;
5107                 let mut prev_total_msat = None;
5108                 let mut expected_amt_msat = None;
5109                 let mut valid_mpp = true;
5110                 let mut errs = Vec::new();
5111                 let per_peer_state = self.per_peer_state.read().unwrap();
5112                 for htlc in sources.iter() {
5113                         if prev_total_msat.is_some() && prev_total_msat != Some(htlc.total_msat) {
5114                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different expected total amounts - this should not be reachable!");
5115                                 debug_assert!(false);
5116                                 valid_mpp = false;
5117                                 break;
5118                         }
5119                         prev_total_msat = Some(htlc.total_msat);
5120
5121                         if expected_amt_msat.is_some() && expected_amt_msat != htlc.total_value_received {
5122                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different received total amounts - this should not be reachable!");
5123                                 debug_assert!(false);
5124                                 valid_mpp = false;
5125                                 break;
5126                         }
5127                         expected_amt_msat = htlc.total_value_received;
5128                         claimable_amt_msat += htlc.value;
5129                 }
5130                 mem::drop(per_peer_state);
5131                 if sources.is_empty() || expected_amt_msat.is_none() {
5132                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5133                         log_info!(self.logger, "Attempted to claim an incomplete payment which no longer had any available HTLCs!");
5134                         return;
5135                 }
5136                 if claimable_amt_msat != expected_amt_msat.unwrap() {
5137                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5138                         log_info!(self.logger, "Attempted to claim an incomplete payment, expected {} msat, had {} available to claim.",
5139                                 expected_amt_msat.unwrap(), claimable_amt_msat);
5140                         return;
5141                 }
5142                 if valid_mpp {
5143                         for htlc in sources.drain(..) {
5144                                 if let Err((pk, err)) = self.claim_funds_from_hop(
5145                                         htlc.prev_hop, payment_preimage,
5146                                         |_| Some(MonitorUpdateCompletionAction::PaymentClaimed { payment_hash }))
5147                                 {
5148                                         if let msgs::ErrorAction::IgnoreError = err.err.action {
5149                                                 // We got a temporary failure updating monitor, but will claim the
5150                                                 // HTLC when the monitor updating is restored (or on chain).
5151                                                 log_error!(self.logger, "Temporary failure claiming HTLC, treating as success: {}", err.err.err);
5152                                         } else { errs.push((pk, err)); }
5153                                 }
5154                         }
5155                 }
5156                 if !valid_mpp {
5157                         for htlc in sources.drain(..) {
5158                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
5159                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
5160                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
5161                                 let reason = HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data);
5162                                 let receiver = HTLCDestination::FailedPayment { payment_hash };
5163                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
5164                         }
5165                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5166                 }
5167
5168                 // Now we can handle any errors which were generated.
5169                 for (counterparty_node_id, err) in errs.drain(..) {
5170                         let res: Result<(), _> = Err(err);
5171                         let _ = handle_error!(self, res, counterparty_node_id);
5172                 }
5173         }
5174
5175         fn claim_funds_from_hop<ComplFunc: FnOnce(Option<u64>) -> Option<MonitorUpdateCompletionAction>>(&self,
5176                 prev_hop: HTLCPreviousHopData, payment_preimage: PaymentPreimage, completion_action: ComplFunc)
5177         -> Result<(), (PublicKey, MsgHandleErrInternal)> {
5178                 //TODO: Delay the claimed_funds relaying just like we do outbound relay!
5179
5180                 // If we haven't yet run background events assume we're still deserializing and shouldn't
5181                 // actually pass `ChannelMonitorUpdate`s to users yet. Instead, queue them up as
5182                 // `BackgroundEvent`s.
5183                 let during_init = !self.background_events_processed_since_startup.load(Ordering::Acquire);
5184
5185                 {
5186                         let per_peer_state = self.per_peer_state.read().unwrap();
5187                         let chan_id = prev_hop.outpoint.to_channel_id();
5188                         let counterparty_node_id_opt = match self.short_to_chan_info.read().unwrap().get(&prev_hop.short_channel_id) {
5189                                 Some((cp_id, _dup_chan_id)) => Some(cp_id.clone()),
5190                                 None => None
5191                         };
5192
5193                         let peer_state_opt = counterparty_node_id_opt.as_ref().map(
5194                                 |counterparty_node_id| per_peer_state.get(counterparty_node_id)
5195                                         .map(|peer_mutex| peer_mutex.lock().unwrap())
5196                         ).unwrap_or(None);
5197
5198                         if peer_state_opt.is_some() {
5199                                 let mut peer_state_lock = peer_state_opt.unwrap();
5200                                 let peer_state = &mut *peer_state_lock;
5201                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(chan_id) {
5202                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
5203                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
5204                                                 let fulfill_res = chan.get_update_fulfill_htlc_and_commit(prev_hop.htlc_id, payment_preimage, &self.logger);
5205
5206                                                 if let UpdateFulfillCommitFetch::NewClaim { htlc_value_msat, monitor_update } = fulfill_res {
5207                                                         if let Some(action) = completion_action(Some(htlc_value_msat)) {
5208                                                                 log_trace!(self.logger, "Tracking monitor update completion action for channel {}: {:?}",
5209                                                                         chan_id, action);
5210                                                                 peer_state.monitor_update_blocked_actions.entry(chan_id).or_insert(Vec::new()).push(action);
5211                                                         }
5212                                                         if !during_init {
5213                                                                 let res = handle_new_monitor_update!(self, prev_hop.outpoint, monitor_update, peer_state_lock,
5214                                                                         peer_state, per_peer_state, chan_phase_entry);
5215                                                                 if let Err(e) = res {
5216                                                                         // TODO: This is a *critical* error - we probably updated the outbound edge
5217                                                                         // of the HTLC's monitor with a preimage. We should retry this monitor
5218                                                                         // update over and over again until morale improves.
5219                                                                         log_error!(self.logger, "Failed to update channel monitor with preimage {:?}", payment_preimage);
5220                                                                         return Err((counterparty_node_id, e));
5221                                                                 }
5222                                                         } else {
5223                                                                 // If we're running during init we cannot update a monitor directly -
5224                                                                 // they probably haven't actually been loaded yet. Instead, push the
5225                                                                 // monitor update as a background event.
5226                                                                 self.pending_background_events.lock().unwrap().push(
5227                                                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
5228                                                                                 counterparty_node_id,
5229                                                                                 funding_txo: prev_hop.outpoint,
5230                                                                                 update: monitor_update.clone(),
5231                                                                         });
5232                                                         }
5233                                                 }
5234                                         }
5235                                         return Ok(());
5236                                 }
5237                         }
5238                 }
5239                 let preimage_update = ChannelMonitorUpdate {
5240                         update_id: CLOSED_CHANNEL_UPDATE_ID,
5241                         updates: vec![ChannelMonitorUpdateStep::PaymentPreimage {
5242                                 payment_preimage,
5243                         }],
5244                 };
5245
5246                 if !during_init {
5247                         // We update the ChannelMonitor on the backward link, after
5248                         // receiving an `update_fulfill_htlc` from the forward link.
5249                         let update_res = self.chain_monitor.update_channel(prev_hop.outpoint, &preimage_update);
5250                         if update_res != ChannelMonitorUpdateStatus::Completed {
5251                                 // TODO: This needs to be handled somehow - if we receive a monitor update
5252                                 // with a preimage we *must* somehow manage to propagate it to the upstream
5253                                 // channel, or we must have an ability to receive the same event and try
5254                                 // again on restart.
5255                                 log_error!(self.logger, "Critical error: failed to update channel monitor with preimage {:?}: {:?}",
5256                                         payment_preimage, update_res);
5257                         }
5258                 } else {
5259                         // If we're running during init we cannot update a monitor directly - they probably
5260                         // haven't actually been loaded yet. Instead, push the monitor update as a background
5261                         // event.
5262                         // Note that while it's safe to use `ClosedMonitorUpdateRegeneratedOnStartup` here (the
5263                         // channel is already closed) we need to ultimately handle the monitor update
5264                         // completion action only after we've completed the monitor update. This is the only
5265                         // way to guarantee this update *will* be regenerated on startup (otherwise if this was
5266                         // from a forwarded HTLC the downstream preimage may be deleted before we claim
5267                         // upstream). Thus, we need to transition to some new `BackgroundEvent` type which will
5268                         // complete the monitor update completion action from `completion_action`.
5269                         self.pending_background_events.lock().unwrap().push(
5270                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((
5271                                         prev_hop.outpoint, preimage_update,
5272                                 )));
5273                 }
5274                 // Note that we do process the completion action here. This totally could be a
5275                 // duplicate claim, but we have no way of knowing without interrogating the
5276                 // `ChannelMonitor` we've provided the above update to. Instead, note that `Event`s are
5277                 // generally always allowed to be duplicative (and it's specifically noted in
5278                 // `PaymentForwarded`).
5279                 self.handle_monitor_update_completion_actions(completion_action(None));
5280                 Ok(())
5281         }
5282
5283         fn finalize_claims(&self, sources: Vec<HTLCSource>) {
5284                 self.pending_outbound_payments.finalize_claims(sources, &self.pending_events);
5285         }
5286
5287         fn claim_funds_internal(&self, source: HTLCSource, payment_preimage: PaymentPreimage,
5288                 forwarded_htlc_value_msat: Option<u64>, from_onchain: bool,
5289                 next_channel_counterparty_node_id: Option<PublicKey>, next_channel_outpoint: OutPoint
5290         ) {
5291                 match source {
5292                         HTLCSource::OutboundRoute { session_priv, payment_id, path, .. } => {
5293                                 debug_assert!(self.background_events_processed_since_startup.load(Ordering::Acquire),
5294                                         "We don't support claim_htlc claims during startup - monitors may not be available yet");
5295                                 if let Some(pubkey) = next_channel_counterparty_node_id {
5296                                         debug_assert_eq!(pubkey, path.hops[0].pubkey);
5297                                 }
5298                                 let ev_completion_action = EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
5299                                         channel_funding_outpoint: next_channel_outpoint,
5300                                         counterparty_node_id: path.hops[0].pubkey,
5301                                 };
5302                                 self.pending_outbound_payments.claim_htlc(payment_id, payment_preimage,
5303                                         session_priv, path, from_onchain, ev_completion_action, &self.pending_events,
5304                                         &self.logger);
5305                         },
5306                         HTLCSource::PreviousHopData(hop_data) => {
5307                                 let prev_outpoint = hop_data.outpoint;
5308                                 let completed_blocker = RAAMonitorUpdateBlockingAction::from_prev_hop_data(&hop_data);
5309                                 let res = self.claim_funds_from_hop(hop_data, payment_preimage,
5310                                         |htlc_claim_value_msat| {
5311                                                 if let Some(forwarded_htlc_value) = forwarded_htlc_value_msat {
5312                                                         let fee_earned_msat = if let Some(claimed_htlc_value) = htlc_claim_value_msat {
5313                                                                 Some(claimed_htlc_value - forwarded_htlc_value)
5314                                                         } else { None };
5315
5316                                                         Some(MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
5317                                                                 event: events::Event::PaymentForwarded {
5318                                                                         fee_earned_msat,
5319                                                                         claim_from_onchain_tx: from_onchain,
5320                                                                         prev_channel_id: Some(prev_outpoint.to_channel_id()),
5321                                                                         next_channel_id: Some(next_channel_outpoint.to_channel_id()),
5322                                                                         outbound_amount_forwarded_msat: forwarded_htlc_value_msat,
5323                                                                 },
5324                                                                 downstream_counterparty_and_funding_outpoint:
5325                                                                         if let Some(node_id) = next_channel_counterparty_node_id {
5326                                                                                 Some((node_id, next_channel_outpoint, completed_blocker))
5327                                                                         } else {
5328                                                                                 // We can only get `None` here if we are processing a
5329                                                                                 // `ChannelMonitor`-originated event, in which case we
5330                                                                                 // don't care about ensuring we wake the downstream
5331                                                                                 // channel's monitor updating - the channel is already
5332                                                                                 // closed.
5333                                                                                 None
5334                                                                         },
5335                                                         })
5336                                                 } else { None }
5337                                         });
5338                                 if let Err((pk, err)) = res {
5339                                         let result: Result<(), _> = Err(err);
5340                                         let _ = handle_error!(self, result, pk);
5341                                 }
5342                         },
5343                 }
5344         }
5345
5346         /// Gets the node_id held by this ChannelManager
5347         pub fn get_our_node_id(&self) -> PublicKey {
5348                 self.our_network_pubkey.clone()
5349         }
5350
5351         fn handle_monitor_update_completion_actions<I: IntoIterator<Item=MonitorUpdateCompletionAction>>(&self, actions: I) {
5352                 for action in actions.into_iter() {
5353                         match action {
5354                                 MonitorUpdateCompletionAction::PaymentClaimed { payment_hash } => {
5355                                         let payment = self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5356                                         if let Some(ClaimingPayment {
5357                                                 amount_msat,
5358                                                 payment_purpose: purpose,
5359                                                 receiver_node_id,
5360                                                 htlcs,
5361                                                 sender_intended_value: sender_intended_total_msat,
5362                                         }) = payment {
5363                                                 self.pending_events.lock().unwrap().push_back((events::Event::PaymentClaimed {
5364                                                         payment_hash,
5365                                                         purpose,
5366                                                         amount_msat,
5367                                                         receiver_node_id: Some(receiver_node_id),
5368                                                         htlcs,
5369                                                         sender_intended_total_msat,
5370                                                 }, None));
5371                                         }
5372                                 },
5373                                 MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
5374                                         event, downstream_counterparty_and_funding_outpoint
5375                                 } => {
5376                                         self.pending_events.lock().unwrap().push_back((event, None));
5377                                         if let Some((node_id, funding_outpoint, blocker)) = downstream_counterparty_and_funding_outpoint {
5378                                                 self.handle_monitor_update_release(node_id, funding_outpoint, Some(blocker));
5379                                         }
5380                                 },
5381                         }
5382                 }
5383         }
5384
5385         /// Handles a channel reentering a functional state, either due to reconnect or a monitor
5386         /// update completion.
5387         fn handle_channel_resumption(&self, pending_msg_events: &mut Vec<MessageSendEvent>,
5388                 channel: &mut Channel<SP>, raa: Option<msgs::RevokeAndACK>,
5389                 commitment_update: Option<msgs::CommitmentUpdate>, order: RAACommitmentOrder,
5390                 pending_forwards: Vec<(PendingHTLCInfo, u64)>, funding_broadcastable: Option<Transaction>,
5391                 channel_ready: Option<msgs::ChannelReady>, announcement_sigs: Option<msgs::AnnouncementSignatures>)
5392         -> Option<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> {
5393                 log_trace!(self.logger, "Handling channel resumption for channel {} with {} RAA, {} commitment update, {} pending forwards, {}broadcasting funding, {} channel ready, {} announcement",
5394                         &channel.context.channel_id(),
5395                         if raa.is_some() { "an" } else { "no" },
5396                         if commitment_update.is_some() { "a" } else { "no" }, pending_forwards.len(),
5397                         if funding_broadcastable.is_some() { "" } else { "not " },
5398                         if channel_ready.is_some() { "sending" } else { "without" },
5399                         if announcement_sigs.is_some() { "sending" } else { "without" });
5400
5401                 let mut htlc_forwards = None;
5402
5403                 let counterparty_node_id = channel.context.get_counterparty_node_id();
5404                 if !pending_forwards.is_empty() {
5405                         htlc_forwards = Some((channel.context.get_short_channel_id().unwrap_or(channel.context.outbound_scid_alias()),
5406                                 channel.context.get_funding_txo().unwrap(), channel.context.get_user_id(), pending_forwards));
5407                 }
5408
5409                 if let Some(msg) = channel_ready {
5410                         send_channel_ready!(self, pending_msg_events, channel, msg);
5411                 }
5412                 if let Some(msg) = announcement_sigs {
5413                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
5414                                 node_id: counterparty_node_id,
5415                                 msg,
5416                         });
5417                 }
5418
5419                 macro_rules! handle_cs { () => {
5420                         if let Some(update) = commitment_update {
5421                                 pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
5422                                         node_id: counterparty_node_id,
5423                                         updates: update,
5424                                 });
5425                         }
5426                 } }
5427                 macro_rules! handle_raa { () => {
5428                         if let Some(revoke_and_ack) = raa {
5429                                 pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
5430                                         node_id: counterparty_node_id,
5431                                         msg: revoke_and_ack,
5432                                 });
5433                         }
5434                 } }
5435                 match order {
5436                         RAACommitmentOrder::CommitmentFirst => {
5437                                 handle_cs!();
5438                                 handle_raa!();
5439                         },
5440                         RAACommitmentOrder::RevokeAndACKFirst => {
5441                                 handle_raa!();
5442                                 handle_cs!();
5443                         },
5444                 }
5445
5446                 if let Some(tx) = funding_broadcastable {
5447                         log_info!(self.logger, "Broadcasting funding transaction with txid {}", tx.txid());
5448                         self.tx_broadcaster.broadcast_transactions(&[&tx]);
5449                 }
5450
5451                 {
5452                         let mut pending_events = self.pending_events.lock().unwrap();
5453                         emit_channel_pending_event!(pending_events, channel);
5454                         emit_channel_ready_event!(pending_events, channel);
5455                 }
5456
5457                 htlc_forwards
5458         }
5459
5460         fn channel_monitor_updated(&self, funding_txo: &OutPoint, highest_applied_update_id: u64, counterparty_node_id: Option<&PublicKey>) {
5461                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
5462
5463                 let counterparty_node_id = match counterparty_node_id {
5464                         Some(cp_id) => cp_id.clone(),
5465                         None => {
5466                                 // TODO: Once we can rely on the counterparty_node_id from the
5467                                 // monitor event, this and the id_to_peer map should be removed.
5468                                 let id_to_peer = self.id_to_peer.lock().unwrap();
5469                                 match id_to_peer.get(&funding_txo.to_channel_id()) {
5470                                         Some(cp_id) => cp_id.clone(),
5471                                         None => return,
5472                                 }
5473                         }
5474                 };
5475                 let per_peer_state = self.per_peer_state.read().unwrap();
5476                 let mut peer_state_lock;
5477                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
5478                 if peer_state_mutex_opt.is_none() { return }
5479                 peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
5480                 let peer_state = &mut *peer_state_lock;
5481                 let channel =
5482                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&funding_txo.to_channel_id()) {
5483                                 chan
5484                         } else {
5485                                 let update_actions = peer_state.monitor_update_blocked_actions
5486                                         .remove(&funding_txo.to_channel_id()).unwrap_or(Vec::new());
5487                                 mem::drop(peer_state_lock);
5488                                 mem::drop(per_peer_state);
5489                                 self.handle_monitor_update_completion_actions(update_actions);
5490                                 return;
5491                         };
5492                 let remaining_in_flight =
5493                         if let Some(pending) = peer_state.in_flight_monitor_updates.get_mut(funding_txo) {
5494                                 pending.retain(|upd| upd.update_id > highest_applied_update_id);
5495                                 pending.len()
5496                         } else { 0 };
5497                 log_trace!(self.logger, "ChannelMonitor updated to {}. Current highest is {}. {} pending in-flight updates.",
5498                         highest_applied_update_id, channel.context.get_latest_monitor_update_id(),
5499                         remaining_in_flight);
5500                 if !channel.is_awaiting_monitor_update() || channel.context.get_latest_monitor_update_id() != highest_applied_update_id {
5501                         return;
5502                 }
5503                 handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, channel);
5504         }
5505
5506         /// Accepts a request to open a channel after a [`Event::OpenChannelRequest`].
5507         ///
5508         /// The `temporary_channel_id` parameter indicates which inbound channel should be accepted,
5509         /// and the `counterparty_node_id` parameter is the id of the peer which has requested to open
5510         /// the channel.
5511         ///
5512         /// The `user_channel_id` parameter will be provided back in
5513         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
5514         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
5515         ///
5516         /// Note that this method will return an error and reject the channel, if it requires support
5517         /// for zero confirmations. Instead, `accept_inbound_channel_from_trusted_peer_0conf` must be
5518         /// used to accept such channels.
5519         ///
5520         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
5521         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
5522         pub fn accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
5523                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, false, user_channel_id)
5524         }
5525
5526         /// Accepts a request to open a channel after a [`events::Event::OpenChannelRequest`], treating
5527         /// it as confirmed immediately.
5528         ///
5529         /// The `user_channel_id` parameter will be provided back in
5530         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
5531         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
5532         ///
5533         /// Unlike [`ChannelManager::accept_inbound_channel`], this method accepts the incoming channel
5534         /// and (if the counterparty agrees), enables forwarding of payments immediately.
5535         ///
5536         /// This fully trusts that the counterparty has honestly and correctly constructed the funding
5537         /// transaction and blindly assumes that it will eventually confirm.
5538         ///
5539         /// If it does not confirm before we decide to close the channel, or if the funding transaction
5540         /// does not pay to the correct script the correct amount, *you will lose funds*.
5541         ///
5542         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
5543         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
5544         pub fn accept_inbound_channel_from_trusted_peer_0conf(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
5545                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, true, user_channel_id)
5546         }
5547
5548         fn do_accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, accept_0conf: bool, user_channel_id: u128) -> Result<(), APIError> {
5549                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5550
5551                 let peers_without_funded_channels =
5552                         self.peers_without_funded_channels(|peer| { peer.total_channel_count() > 0 });
5553                 let per_peer_state = self.per_peer_state.read().unwrap();
5554                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5555                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
5556                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5557                 let peer_state = &mut *peer_state_lock;
5558                 let is_only_peer_channel = peer_state.total_channel_count() == 1;
5559
5560                 // Find (and remove) the channel in the unaccepted table. If it's not there, something weird is
5561                 // happening and return an error. N.B. that we create channel with an outbound SCID of zero so
5562                 // that we can delay allocating the SCID until after we're sure that the checks below will
5563                 // succeed.
5564                 let mut channel = match peer_state.inbound_channel_request_by_id.remove(temporary_channel_id) {
5565                         Some(unaccepted_channel) => {
5566                                 let best_block_height = self.best_block.read().unwrap().height();
5567                                 InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
5568                                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features,
5569                                         &unaccepted_channel.open_channel_msg, user_channel_id, &self.default_configuration, best_block_height,
5570                                         &self.logger, accept_0conf).map_err(|e| APIError::ChannelUnavailable { err: e.to_string() })
5571                         }
5572                         _ => Err(APIError::APIMisuseError { err: "No such channel awaiting to be accepted.".to_owned() })
5573                 }?;
5574
5575                 if accept_0conf {
5576                         // This should have been correctly configured by the call to InboundV1Channel::new.
5577                         debug_assert!(channel.context.minimum_depth().unwrap() == 0);
5578                 } else if channel.context.get_channel_type().requires_zero_conf() {
5579                         let send_msg_err_event = events::MessageSendEvent::HandleError {
5580                                 node_id: channel.context.get_counterparty_node_id(),
5581                                 action: msgs::ErrorAction::SendErrorMessage{
5582                                         msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "No zero confirmation channels accepted".to_owned(), }
5583                                 }
5584                         };
5585                         peer_state.pending_msg_events.push(send_msg_err_event);
5586                         return Err(APIError::APIMisuseError { err: "Please use accept_inbound_channel_from_trusted_peer_0conf to accept channels with zero confirmations.".to_owned() });
5587                 } else {
5588                         // If this peer already has some channels, a new channel won't increase our number of peers
5589                         // with unfunded channels, so as long as we aren't over the maximum number of unfunded
5590                         // channels per-peer we can accept channels from a peer with existing ones.
5591                         if is_only_peer_channel && peers_without_funded_channels >= MAX_UNFUNDED_CHANNEL_PEERS {
5592                                 let send_msg_err_event = events::MessageSendEvent::HandleError {
5593                                         node_id: channel.context.get_counterparty_node_id(),
5594                                         action: msgs::ErrorAction::SendErrorMessage{
5595                                                 msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "Have too many peers with unfunded channels, not accepting new ones".to_owned(), }
5596                                         }
5597                                 };
5598                                 peer_state.pending_msg_events.push(send_msg_err_event);
5599                                 return Err(APIError::APIMisuseError { err: "Too many peers with unfunded channels, refusing to accept new ones".to_owned() });
5600                         }
5601                 }
5602
5603                 // Now that we know we have a channel, assign an outbound SCID alias.
5604                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
5605                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
5606
5607                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
5608                         node_id: channel.context.get_counterparty_node_id(),
5609                         msg: channel.accept_inbound_channel(),
5610                 });
5611
5612                 peer_state.channel_by_id.insert(temporary_channel_id.clone(), ChannelPhase::UnfundedInboundV1(channel));
5613
5614                 Ok(())
5615         }
5616
5617         /// Gets the number of peers which match the given filter and do not have any funded, outbound,
5618         /// or 0-conf channels.
5619         ///
5620         /// The filter is called for each peer and provided with the number of unfunded, inbound, and
5621         /// non-0-conf channels we have with the peer.
5622         fn peers_without_funded_channels<Filter>(&self, maybe_count_peer: Filter) -> usize
5623         where Filter: Fn(&PeerState<SP>) -> bool {
5624                 let mut peers_without_funded_channels = 0;
5625                 let best_block_height = self.best_block.read().unwrap().height();
5626                 {
5627                         let peer_state_lock = self.per_peer_state.read().unwrap();
5628                         for (_, peer_mtx) in peer_state_lock.iter() {
5629                                 let peer = peer_mtx.lock().unwrap();
5630                                 if !maybe_count_peer(&*peer) { continue; }
5631                                 let num_unfunded_channels = Self::unfunded_channel_count(&peer, best_block_height);
5632                                 if num_unfunded_channels == peer.total_channel_count() {
5633                                         peers_without_funded_channels += 1;
5634                                 }
5635                         }
5636                 }
5637                 return peers_without_funded_channels;
5638         }
5639
5640         fn unfunded_channel_count(
5641                 peer: &PeerState<SP>, best_block_height: u32
5642         ) -> usize {
5643                 let mut num_unfunded_channels = 0;
5644                 for (_, phase) in peer.channel_by_id.iter() {
5645                         match phase {
5646                                 ChannelPhase::Funded(chan) => {
5647                                         // This covers non-zero-conf inbound `Channel`s that we are currently monitoring, but those
5648                                         // which have not yet had any confirmations on-chain.
5649                                         if !chan.context.is_outbound() && chan.context.minimum_depth().unwrap_or(1) != 0 &&
5650                                                 chan.context.get_funding_tx_confirmations(best_block_height) == 0
5651                                         {
5652                                                 num_unfunded_channels += 1;
5653                                         }
5654                                 },
5655                                 ChannelPhase::UnfundedInboundV1(chan) => {
5656                                         if chan.context.minimum_depth().unwrap_or(1) != 0 {
5657                                                 num_unfunded_channels += 1;
5658                                         }
5659                                 },
5660                                 ChannelPhase::UnfundedOutboundV1(_) => {
5661                                         // Outbound channels don't contribute to the unfunded count in the DoS context.
5662                                         continue;
5663                                 }
5664                         }
5665                 }
5666                 num_unfunded_channels + peer.inbound_channel_request_by_id.len()
5667         }
5668
5669         fn internal_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) -> Result<(), MsgHandleErrInternal> {
5670                 if msg.chain_hash != self.genesis_hash {
5671                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Unknown genesis block hash".to_owned(), msg.temporary_channel_id.clone()));
5672                 }
5673
5674                 if !self.default_configuration.accept_inbound_channels {
5675                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No inbound channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5676                 }
5677
5678                 // Get the number of peers with channels, but without funded ones. We don't care too much
5679                 // about peers that never open a channel, so we filter by peers that have at least one
5680                 // channel, and then limit the number of those with unfunded channels.
5681                 let channeled_peers_without_funding =
5682                         self.peers_without_funded_channels(|node| node.total_channel_count() > 0);
5683
5684                 let per_peer_state = self.per_peer_state.read().unwrap();
5685                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5686                     .ok_or_else(|| {
5687                                 debug_assert!(false);
5688                                 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())
5689                         })?;
5690                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5691                 let peer_state = &mut *peer_state_lock;
5692
5693                 // If this peer already has some channels, a new channel won't increase our number of peers
5694                 // with unfunded channels, so as long as we aren't over the maximum number of unfunded
5695                 // channels per-peer we can accept channels from a peer with existing ones.
5696                 if peer_state.total_channel_count() == 0 &&
5697                         channeled_peers_without_funding >= MAX_UNFUNDED_CHANNEL_PEERS &&
5698                         !self.default_configuration.manually_accept_inbound_channels
5699                 {
5700                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5701                                 "Have too many peers with unfunded channels, not accepting new ones".to_owned(),
5702                                 msg.temporary_channel_id.clone()));
5703                 }
5704
5705                 let best_block_height = self.best_block.read().unwrap().height();
5706                 if Self::unfunded_channel_count(peer_state, best_block_height) >= MAX_UNFUNDED_CHANS_PER_PEER {
5707                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5708                                 format!("Refusing more than {} unfunded channels.", MAX_UNFUNDED_CHANS_PER_PEER),
5709                                 msg.temporary_channel_id.clone()));
5710                 }
5711
5712                 let channel_id = msg.temporary_channel_id;
5713                 let channel_exists = peer_state.has_channel(&channel_id);
5714                 if channel_exists {
5715                         return Err(MsgHandleErrInternal::send_err_msg_no_close("temporary_channel_id collision for the same peer!".to_owned(), msg.temporary_channel_id.clone()));
5716                 }
5717
5718                 // If we're doing manual acceptance checks on the channel, then defer creation until we're sure we want to accept.
5719                 if self.default_configuration.manually_accept_inbound_channels {
5720                         let mut pending_events = self.pending_events.lock().unwrap();
5721                         pending_events.push_back((events::Event::OpenChannelRequest {
5722                                 temporary_channel_id: msg.temporary_channel_id.clone(),
5723                                 counterparty_node_id: counterparty_node_id.clone(),
5724                                 funding_satoshis: msg.funding_satoshis,
5725                                 push_msat: msg.push_msat,
5726                                 channel_type: msg.channel_type.clone().unwrap(),
5727                         }, None));
5728                         peer_state.inbound_channel_request_by_id.insert(channel_id, InboundChannelRequest {
5729                                 open_channel_msg: msg.clone(),
5730                                 ticks_remaining: UNACCEPTED_INBOUND_CHANNEL_AGE_LIMIT_TICKS,
5731                         });
5732                         return Ok(());
5733                 }
5734
5735                 // Otherwise create the channel right now.
5736                 let mut random_bytes = [0u8; 16];
5737                 random_bytes.copy_from_slice(&self.entropy_source.get_secure_random_bytes()[..16]);
5738                 let user_channel_id = u128::from_be_bytes(random_bytes);
5739                 let mut channel = match InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
5740                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features, msg, user_channel_id,
5741                         &self.default_configuration, best_block_height, &self.logger, /*is_0conf=*/false)
5742                 {
5743                         Err(e) => {
5744                                 return Err(MsgHandleErrInternal::from_chan_no_close(e, msg.temporary_channel_id));
5745                         },
5746                         Ok(res) => res
5747                 };
5748
5749                 let channel_type = channel.context.get_channel_type();
5750                 if channel_type.requires_zero_conf() {
5751                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No zero confirmation channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5752                 }
5753                 if channel_type.requires_anchors_zero_fee_htlc_tx() {
5754                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No channels with anchor outputs accepted".to_owned(), msg.temporary_channel_id.clone()));
5755                 }
5756
5757                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
5758                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
5759
5760                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
5761                         node_id: counterparty_node_id.clone(),
5762                         msg: channel.accept_inbound_channel(),
5763                 });
5764                 peer_state.channel_by_id.insert(channel_id, ChannelPhase::UnfundedInboundV1(channel));
5765                 Ok(())
5766         }
5767
5768         fn internal_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) -> Result<(), MsgHandleErrInternal> {
5769                 let (value, output_script, user_id) = {
5770                         let per_peer_state = self.per_peer_state.read().unwrap();
5771                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5772                                 .ok_or_else(|| {
5773                                         debug_assert!(false);
5774                                         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)
5775                                 })?;
5776                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5777                         let peer_state = &mut *peer_state_lock;
5778                         match peer_state.channel_by_id.entry(msg.temporary_channel_id) {
5779                                 hash_map::Entry::Occupied(mut phase) => {
5780                                         match phase.get_mut() {
5781                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
5782                                                         try_chan_phase_entry!(self, chan.accept_channel(&msg, &self.default_configuration.channel_handshake_limits, &peer_state.latest_features), phase);
5783                                                         (chan.context.get_value_satoshis(), chan.context.get_funding_redeemscript().to_v0_p2wsh(), chan.context.get_user_id())
5784                                                 },
5785                                                 _ => {
5786                                                         return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got an unexpected accept_channel message from peer with counterparty_node_id {}", counterparty_node_id), msg.temporary_channel_id));
5787                                                 }
5788                                         }
5789                                 },
5790                                 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))
5791                         }
5792                 };
5793                 let mut pending_events = self.pending_events.lock().unwrap();
5794                 pending_events.push_back((events::Event::FundingGenerationReady {
5795                         temporary_channel_id: msg.temporary_channel_id,
5796                         counterparty_node_id: *counterparty_node_id,
5797                         channel_value_satoshis: value,
5798                         output_script,
5799                         user_channel_id: user_id,
5800                 }, None));
5801                 Ok(())
5802         }
5803
5804         fn internal_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) -> Result<(), MsgHandleErrInternal> {
5805                 let best_block = *self.best_block.read().unwrap();
5806
5807                 let per_peer_state = self.per_peer_state.read().unwrap();
5808                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5809                         .ok_or_else(|| {
5810                                 debug_assert!(false);
5811                                 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)
5812                         })?;
5813
5814                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5815                 let peer_state = &mut *peer_state_lock;
5816                 let (chan, funding_msg, monitor) =
5817                         match peer_state.channel_by_id.remove(&msg.temporary_channel_id) {
5818                                 Some(ChannelPhase::UnfundedInboundV1(inbound_chan)) => {
5819                                         match inbound_chan.funding_created(msg, best_block, &self.signer_provider, &self.logger) {
5820                                                 Ok(res) => res,
5821                                                 Err((mut inbound_chan, err)) => {
5822                                                         // We've already removed this inbound channel from the map in `PeerState`
5823                                                         // above so at this point we just need to clean up any lingering entries
5824                                                         // concerning this channel as it is safe to do so.
5825                                                         update_maps_on_chan_removal!(self, &inbound_chan.context);
5826                                                         let user_id = inbound_chan.context.get_user_id();
5827                                                         let shutdown_res = inbound_chan.context.force_shutdown(false);
5828                                                         return Err(MsgHandleErrInternal::from_finish_shutdown(format!("{}", err),
5829                                                                 msg.temporary_channel_id, user_id, shutdown_res, None, inbound_chan.context.get_value_satoshis()));
5830                                                 },
5831                                         }
5832                                 },
5833                                 Some(ChannelPhase::Funded(_)) | Some(ChannelPhase::UnfundedOutboundV1(_)) => {
5834                                         return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got an unexpected funding_created message from peer with counterparty_node_id {}", counterparty_node_id), msg.temporary_channel_id));
5835                                 },
5836                                 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))
5837                         };
5838
5839                 match peer_state.channel_by_id.entry(funding_msg.channel_id) {
5840                         hash_map::Entry::Occupied(_) => {
5841                                 Err(MsgHandleErrInternal::send_err_msg_no_close("Already had channel with the new channel_id".to_owned(), funding_msg.channel_id))
5842                         },
5843                         hash_map::Entry::Vacant(e) => {
5844                                 match self.id_to_peer.lock().unwrap().entry(chan.context.channel_id()) {
5845                                         hash_map::Entry::Occupied(_) => {
5846                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close(
5847                                                         "The funding_created message had the same funding_txid as an existing channel - funding is not possible".to_owned(),
5848                                                         funding_msg.channel_id))
5849                                         },
5850                                         hash_map::Entry::Vacant(i_e) => {
5851                                                 i_e.insert(chan.context.get_counterparty_node_id());
5852                                         }
5853                                 }
5854
5855                                 // There's no problem signing a counterparty's funding transaction if our monitor
5856                                 // hasn't persisted to disk yet - we can't lose money on a transaction that we haven't
5857                                 // accepted payment from yet. We do, however, need to wait to send our channel_ready
5858                                 // until we have persisted our monitor.
5859                                 let new_channel_id = funding_msg.channel_id;
5860                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
5861                                         node_id: counterparty_node_id.clone(),
5862                                         msg: funding_msg,
5863                                 });
5864
5865                                 let monitor_res = self.chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor);
5866
5867                                 if let ChannelPhase::Funded(chan) = e.insert(ChannelPhase::Funded(chan)) {
5868                                         let mut res = handle_new_monitor_update!(self, monitor_res, peer_state_lock, peer_state,
5869                                                 per_peer_state, chan, MANUALLY_REMOVING_INITIAL_MONITOR,
5870                                                 { peer_state.channel_by_id.remove(&new_channel_id) });
5871
5872                                         // Note that we reply with the new channel_id in error messages if we gave up on the
5873                                         // channel, not the temporary_channel_id. This is compatible with ourselves, but the
5874                                         // spec is somewhat ambiguous here. Not a huge deal since we'll send error messages for
5875                                         // any messages referencing a previously-closed channel anyway.
5876                                         // We do not propagate the monitor update to the user as it would be for a monitor
5877                                         // that we didn't manage to store (and that we don't care about - we don't respond
5878                                         // with the funding_signed so the channel can never go on chain).
5879                                         if let Err(MsgHandleErrInternal { shutdown_finish: Some((res, _)), .. }) = &mut res {
5880                                                 res.0 = None;
5881                                         }
5882                                         res.map(|_| ())
5883                                 } else {
5884                                         unreachable!("This must be a funded channel as we just inserted it.");
5885                                 }
5886                         }
5887                 }
5888         }
5889
5890         fn internal_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) -> Result<(), MsgHandleErrInternal> {
5891                 let best_block = *self.best_block.read().unwrap();
5892                 let per_peer_state = self.per_peer_state.read().unwrap();
5893                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5894                         .ok_or_else(|| {
5895                                 debug_assert!(false);
5896                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5897                         })?;
5898
5899                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5900                 let peer_state = &mut *peer_state_lock;
5901                 match peer_state.channel_by_id.entry(msg.channel_id) {
5902                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
5903                                 match chan_phase_entry.get_mut() {
5904                                         ChannelPhase::Funded(ref mut chan) => {
5905                                                 let monitor = try_chan_phase_entry!(self,
5906                                                         chan.funding_signed(&msg, best_block, &self.signer_provider, &self.logger), chan_phase_entry);
5907                                                 let update_res = self.chain_monitor.watch_channel(chan.context.get_funding_txo().unwrap(), monitor);
5908                                                 let mut res = handle_new_monitor_update!(self, update_res, peer_state_lock, peer_state, per_peer_state, chan_phase_entry, INITIAL_MONITOR);
5909                                                 if let Err(MsgHandleErrInternal { ref mut shutdown_finish, .. }) = res {
5910                                                         // We weren't able to watch the channel to begin with, so no updates should be made on
5911                                                         // it. Previously, full_stack_target found an (unreachable) panic when the
5912                                                         // monitor update contained within `shutdown_finish` was applied.
5913                                                         if let Some((ref mut shutdown_finish, _)) = shutdown_finish {
5914                                                                 shutdown_finish.0.take();
5915                                                         }
5916                                                 }
5917                                                 res.map(|_| ())
5918                                         },
5919                                         _ => {
5920                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id));
5921                                         },
5922                                 }
5923                         },
5924                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
5925                 }
5926         }
5927
5928         fn internal_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) -> Result<(), MsgHandleErrInternal> {
5929                 let per_peer_state = self.per_peer_state.read().unwrap();
5930                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5931                         .ok_or_else(|| {
5932                                 debug_assert!(false);
5933                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5934                         })?;
5935                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5936                 let peer_state = &mut *peer_state_lock;
5937                 match peer_state.channel_by_id.entry(msg.channel_id) {
5938                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
5939                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
5940                                         let announcement_sigs_opt = try_chan_phase_entry!(self, chan.channel_ready(&msg, &self.node_signer,
5941                                                 self.genesis_hash.clone(), &self.default_configuration, &self.best_block.read().unwrap(), &self.logger), chan_phase_entry);
5942                                         if let Some(announcement_sigs) = announcement_sigs_opt {
5943                                                 log_trace!(self.logger, "Sending announcement_signatures for channel {}", chan.context.channel_id());
5944                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
5945                                                         node_id: counterparty_node_id.clone(),
5946                                                         msg: announcement_sigs,
5947                                                 });
5948                                         } else if chan.context.is_usable() {
5949                                                 // If we're sending an announcement_signatures, we'll send the (public)
5950                                                 // channel_update after sending a channel_announcement when we receive our
5951                                                 // counterparty's announcement_signatures. Thus, we only bother to send a
5952                                                 // channel_update here if the channel is not public, i.e. we're not sending an
5953                                                 // announcement_signatures.
5954                                                 log_trace!(self.logger, "Sending private initial channel_update for our counterparty on channel {}", chan.context.channel_id());
5955                                                 if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
5956                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
5957                                                                 node_id: counterparty_node_id.clone(),
5958                                                                 msg,
5959                                                         });
5960                                                 }
5961                                         }
5962
5963                                         {
5964                                                 let mut pending_events = self.pending_events.lock().unwrap();
5965                                                 emit_channel_ready_event!(pending_events, chan);
5966                                         }
5967
5968                                         Ok(())
5969                                 } else {
5970                                         try_chan_phase_entry!(self, Err(ChannelError::Close(
5971                                                 "Got a channel_ready message for an unfunded channel!".into())), chan_phase_entry)
5972                                 }
5973                         },
5974                         hash_map::Entry::Vacant(_) => {
5975                                 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))
5976                         }
5977                 }
5978         }
5979
5980         fn internal_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) -> Result<(), MsgHandleErrInternal> {
5981                 let mut dropped_htlcs: Vec<(HTLCSource, PaymentHash)>;
5982                 let result: Result<(), _> = loop {
5983                         let per_peer_state = self.per_peer_state.read().unwrap();
5984                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5985                                 .ok_or_else(|| {
5986                                         debug_assert!(false);
5987                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5988                                 })?;
5989                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5990                         let peer_state = &mut *peer_state_lock;
5991                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(msg.channel_id.clone()) {
5992                                 let phase = chan_phase_entry.get_mut();
5993                                 match phase {
5994                                         ChannelPhase::Funded(chan) => {
5995                                                 if !chan.received_shutdown() {
5996                                                         log_info!(self.logger, "Received a shutdown message from our counterparty for channel {}{}.",
5997                                                                 msg.channel_id,
5998                                                                 if chan.sent_shutdown() { " after we initiated shutdown" } else { "" });
5999                                                 }
6000
6001                                                 let funding_txo_opt = chan.context.get_funding_txo();
6002                                                 let (shutdown, monitor_update_opt, htlcs) = try_chan_phase_entry!(self,
6003                                                         chan.shutdown(&self.signer_provider, &peer_state.latest_features, &msg), chan_phase_entry);
6004                                                 dropped_htlcs = htlcs;
6005
6006                                                 if let Some(msg) = shutdown {
6007                                                         // We can send the `shutdown` message before updating the `ChannelMonitor`
6008                                                         // here as we don't need the monitor update to complete until we send a
6009                                                         // `shutdown_signed`, which we'll delay if we're pending a monitor update.
6010                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
6011                                                                 node_id: *counterparty_node_id,
6012                                                                 msg,
6013                                                         });
6014                                                 }
6015                                                 // Update the monitor with the shutdown script if necessary.
6016                                                 if let Some(monitor_update) = monitor_update_opt {
6017                                                         break handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
6018                                                                 peer_state_lock, peer_state, per_peer_state, chan_phase_entry).map(|_| ());
6019                                                 }
6020                                                 break Ok(());
6021                                         },
6022                                         ChannelPhase::UnfundedInboundV1(_) | ChannelPhase::UnfundedOutboundV1(_) => {
6023                                                 let context = phase.context_mut();
6024                                                 log_error!(self.logger, "Immediately closing unfunded channel {} as peer asked to cooperatively shut it down (which is unnecessary)", &msg.channel_id);
6025                                                 self.issue_channel_close_events(&context, ClosureReason::CounterpartyCoopClosedUnfundedChannel);
6026                                                 let mut chan = remove_channel_phase!(self, chan_phase_entry);
6027                                                 self.finish_force_close_channel(chan.context_mut().force_shutdown(false));
6028                                                 return Ok(());
6029                                         },
6030                                 }
6031                         } else {
6032                                 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))
6033                         }
6034                 };
6035                 for htlc_source in dropped_htlcs.drain(..) {
6036                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id: msg.channel_id };
6037                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
6038                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
6039                 }
6040
6041                 result
6042         }
6043
6044         fn internal_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) -> Result<(), MsgHandleErrInternal> {
6045                 let per_peer_state = self.per_peer_state.read().unwrap();
6046                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6047                         .ok_or_else(|| {
6048                                 debug_assert!(false);
6049                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6050                         })?;
6051                 let (tx, chan_option) = {
6052                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6053                         let peer_state = &mut *peer_state_lock;
6054                         match peer_state.channel_by_id.entry(msg.channel_id.clone()) {
6055                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6056                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6057                                                 let (closing_signed, tx) = try_chan_phase_entry!(self, chan.closing_signed(&self.fee_estimator, &msg), chan_phase_entry);
6058                                                 if let Some(msg) = closing_signed {
6059                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
6060                                                                 node_id: counterparty_node_id.clone(),
6061                                                                 msg,
6062                                                         });
6063                                                 }
6064                                                 if tx.is_some() {
6065                                                         // We're done with this channel, we've got a signed closing transaction and
6066                                                         // will send the closing_signed back to the remote peer upon return. This
6067                                                         // also implies there are no pending HTLCs left on the channel, so we can
6068                                                         // fully delete it from tracking (the channel monitor is still around to
6069                                                         // watch for old state broadcasts)!
6070                                                         (tx, Some(remove_channel_phase!(self, chan_phase_entry)))
6071                                                 } else { (tx, None) }
6072                                         } else {
6073                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6074                                                         "Got a closing_signed message for an unfunded channel!".into())), chan_phase_entry);
6075                                         }
6076                                 },
6077                                 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))
6078                         }
6079                 };
6080                 if let Some(broadcast_tx) = tx {
6081                         log_info!(self.logger, "Broadcasting {}", log_tx!(broadcast_tx));
6082                         self.tx_broadcaster.broadcast_transactions(&[&broadcast_tx]);
6083                 }
6084                 if let Some(ChannelPhase::Funded(chan)) = chan_option {
6085                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6086                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6087                                 let peer_state = &mut *peer_state_lock;
6088                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6089                                         msg: update
6090                                 });
6091                         }
6092                         self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
6093                 }
6094                 Ok(())
6095         }
6096
6097         fn internal_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) -> Result<(), MsgHandleErrInternal> {
6098                 //TODO: BOLT 4 points out a specific attack where a peer may re-send an onion packet and
6099                 //determine the state of the payment based on our response/if we forward anything/the time
6100                 //we take to respond. We should take care to avoid allowing such an attack.
6101                 //
6102                 //TODO: There exists a further attack where a node may garble the onion data, forward it to
6103                 //us repeatedly garbled in different ways, and compare our error messages, which are
6104                 //encrypted with the same key. It's not immediately obvious how to usefully exploit that,
6105                 //but we should prevent it anyway.
6106
6107                 let decoded_hop_res = self.decode_update_add_htlc_onion(msg);
6108                 let per_peer_state = self.per_peer_state.read().unwrap();
6109                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6110                         .ok_or_else(|| {
6111                                 debug_assert!(false);
6112                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6113                         })?;
6114                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6115                 let peer_state = &mut *peer_state_lock;
6116                 match peer_state.channel_by_id.entry(msg.channel_id) {
6117                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6118                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6119                                         let pending_forward_info = match decoded_hop_res {
6120                                                 Ok((next_hop, shared_secret, next_packet_pk_opt)) =>
6121                                                         self.construct_pending_htlc_status(msg, shared_secret, next_hop,
6122                                                                 chan.context.config().accept_underpaying_htlcs, next_packet_pk_opt),
6123                                                 Err(e) => PendingHTLCStatus::Fail(e)
6124                                         };
6125                                         let create_pending_htlc_status = |chan: &Channel<SP>, pending_forward_info: PendingHTLCStatus, error_code: u16| {
6126                                                 // If the update_add is completely bogus, the call will Err and we will close,
6127                                                 // but if we've sent a shutdown and they haven't acknowledged it yet, we just
6128                                                 // want to reject the new HTLC and fail it backwards instead of forwarding.
6129                                                 match pending_forward_info {
6130                                                         PendingHTLCStatus::Forward(PendingHTLCInfo { ref incoming_shared_secret, .. }) => {
6131                                                                 let reason = if (error_code & 0x1000) != 0 {
6132                                                                         let (real_code, error_data) = self.get_htlc_inbound_temp_fail_err_and_data(error_code, chan);
6133                                                                         HTLCFailReason::reason(real_code, error_data)
6134                                                                 } else {
6135                                                                         HTLCFailReason::from_failure_code(error_code)
6136                                                                 }.get_encrypted_failure_packet(incoming_shared_secret, &None);
6137                                                                 let msg = msgs::UpdateFailHTLC {
6138                                                                         channel_id: msg.channel_id,
6139                                                                         htlc_id: msg.htlc_id,
6140                                                                         reason
6141                                                                 };
6142                                                                 PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msg))
6143                                                         },
6144                                                         _ => pending_forward_info
6145                                                 }
6146                                         };
6147                                         try_chan_phase_entry!(self, chan.update_add_htlc(&msg, pending_forward_info, create_pending_htlc_status, &self.fee_estimator, &self.logger), chan_phase_entry);
6148                                 } else {
6149                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6150                                                 "Got an update_add_htlc message for an unfunded channel!".into())), chan_phase_entry);
6151                                 }
6152                         },
6153                         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))
6154                 }
6155                 Ok(())
6156         }
6157
6158         fn internal_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) -> Result<(), MsgHandleErrInternal> {
6159                 let funding_txo;
6160                 let (htlc_source, forwarded_htlc_value) = {
6161                         let per_peer_state = self.per_peer_state.read().unwrap();
6162                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6163                                 .ok_or_else(|| {
6164                                         debug_assert!(false);
6165                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6166                                 })?;
6167                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6168                         let peer_state = &mut *peer_state_lock;
6169                         match peer_state.channel_by_id.entry(msg.channel_id) {
6170                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6171                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6172                                                 let res = try_chan_phase_entry!(self, chan.update_fulfill_htlc(&msg), chan_phase_entry);
6173                                                 if let HTLCSource::PreviousHopData(prev_hop) = &res.0 {
6174                                                         peer_state.actions_blocking_raa_monitor_updates.entry(msg.channel_id)
6175                                                                 .or_insert_with(Vec::new)
6176                                                                 .push(RAAMonitorUpdateBlockingAction::from_prev_hop_data(&prev_hop));
6177                                                 }
6178                                                 // Note that we do not need to push an `actions_blocking_raa_monitor_updates`
6179                                                 // entry here, even though we *do* need to block the next RAA monitor update.
6180                                                 // We do this instead in the `claim_funds_internal` by attaching a
6181                                                 // `ReleaseRAAChannelMonitorUpdate` action to the event generated when the
6182                                                 // outbound HTLC is claimed. This is guaranteed to all complete before we
6183                                                 // process the RAA as messages are processed from single peers serially.
6184                                                 funding_txo = chan.context.get_funding_txo().expect("We won't accept a fulfill until funded");
6185                                                 res
6186                                         } else {
6187                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6188                                                         "Got an update_fulfill_htlc message for an unfunded channel!".into())), chan_phase_entry);
6189                                         }
6190                                 },
6191                                 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))
6192                         }
6193                 };
6194                 self.claim_funds_internal(htlc_source, msg.payment_preimage.clone(), Some(forwarded_htlc_value), false, Some(*counterparty_node_id), funding_txo);
6195                 Ok(())
6196         }
6197
6198         fn internal_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) -> Result<(), MsgHandleErrInternal> {
6199                 let per_peer_state = self.per_peer_state.read().unwrap();
6200                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6201                         .ok_or_else(|| {
6202                                 debug_assert!(false);
6203                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6204                         })?;
6205                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6206                 let peer_state = &mut *peer_state_lock;
6207                 match peer_state.channel_by_id.entry(msg.channel_id) {
6208                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6209                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6210                                         try_chan_phase_entry!(self, chan.update_fail_htlc(&msg, HTLCFailReason::from_msg(msg)), chan_phase_entry);
6211                                 } else {
6212                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6213                                                 "Got an update_fail_htlc message for an unfunded channel!".into())), chan_phase_entry);
6214                                 }
6215                         },
6216                         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))
6217                 }
6218                 Ok(())
6219         }
6220
6221         fn internal_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) -> Result<(), MsgHandleErrInternal> {
6222                 let per_peer_state = self.per_peer_state.read().unwrap();
6223                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6224                         .ok_or_else(|| {
6225                                 debug_assert!(false);
6226                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6227                         })?;
6228                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6229                 let peer_state = &mut *peer_state_lock;
6230                 match peer_state.channel_by_id.entry(msg.channel_id) {
6231                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6232                                 if (msg.failure_code & 0x8000) == 0 {
6233                                         let chan_err: ChannelError = ChannelError::Close("Got update_fail_malformed_htlc with BADONION not set".to_owned());
6234                                         try_chan_phase_entry!(self, Err(chan_err), chan_phase_entry);
6235                                 }
6236                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6237                                         try_chan_phase_entry!(self, chan.update_fail_malformed_htlc(&msg, HTLCFailReason::reason(msg.failure_code, msg.sha256_of_onion.to_vec())), chan_phase_entry);
6238                                 } else {
6239                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6240                                                 "Got an update_fail_malformed_htlc message for an unfunded channel!".into())), chan_phase_entry);
6241                                 }
6242                                 Ok(())
6243                         },
6244                         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))
6245                 }
6246         }
6247
6248         fn internal_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) -> Result<(), MsgHandleErrInternal> {
6249                 let per_peer_state = self.per_peer_state.read().unwrap();
6250                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6251                         .ok_or_else(|| {
6252                                 debug_assert!(false);
6253                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6254                         })?;
6255                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6256                 let peer_state = &mut *peer_state_lock;
6257                 match peer_state.channel_by_id.entry(msg.channel_id) {
6258                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6259                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6260                                         let funding_txo = chan.context.get_funding_txo();
6261                                         let monitor_update_opt = try_chan_phase_entry!(self, chan.commitment_signed(&msg, &self.logger), chan_phase_entry);
6262                                         if let Some(monitor_update) = monitor_update_opt {
6263                                                 handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update, peer_state_lock,
6264                                                         peer_state, per_peer_state, chan_phase_entry).map(|_| ())
6265                                         } else { Ok(()) }
6266                                 } else {
6267                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6268                                                 "Got a commitment_signed message for an unfunded channel!".into())), chan_phase_entry);
6269                                 }
6270                         },
6271                         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))
6272                 }
6273         }
6274
6275         #[inline]
6276         fn forward_htlcs(&self, per_source_pending_forwards: &mut [(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)]) {
6277                 for &mut (prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, ref mut pending_forwards) in per_source_pending_forwards {
6278                         let mut push_forward_event = false;
6279                         let mut new_intercept_events = VecDeque::new();
6280                         let mut failed_intercept_forwards = Vec::new();
6281                         if !pending_forwards.is_empty() {
6282                                 for (forward_info, prev_htlc_id) in pending_forwards.drain(..) {
6283                                         let scid = match forward_info.routing {
6284                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
6285                                                 PendingHTLCRouting::Receive { .. } => 0,
6286                                                 PendingHTLCRouting::ReceiveKeysend { .. } => 0,
6287                                         };
6288                                         // Pull this now to avoid introducing a lock order with `forward_htlcs`.
6289                                         let is_our_scid = self.short_to_chan_info.read().unwrap().contains_key(&scid);
6290
6291                                         let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
6292                                         let forward_htlcs_empty = forward_htlcs.is_empty();
6293                                         match forward_htlcs.entry(scid) {
6294                                                 hash_map::Entry::Occupied(mut entry) => {
6295                                                         entry.get_mut().push(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
6296                                                                 prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info }));
6297                                                 },
6298                                                 hash_map::Entry::Vacant(entry) => {
6299                                                         if !is_our_scid && forward_info.incoming_amt_msat.is_some() &&
6300                                                            fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, scid, &self.genesis_hash)
6301                                                         {
6302                                                                 let intercept_id = InterceptId(Sha256::hash(&forward_info.incoming_shared_secret).into_inner());
6303                                                                 let mut pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
6304                                                                 match pending_intercepts.entry(intercept_id) {
6305                                                                         hash_map::Entry::Vacant(entry) => {
6306                                                                                 new_intercept_events.push_back((events::Event::HTLCIntercepted {
6307                                                                                         requested_next_hop_scid: scid,
6308                                                                                         payment_hash: forward_info.payment_hash,
6309                                                                                         inbound_amount_msat: forward_info.incoming_amt_msat.unwrap(),
6310                                                                                         expected_outbound_amount_msat: forward_info.outgoing_amt_msat,
6311                                                                                         intercept_id
6312                                                                                 }, None));
6313                                                                                 entry.insert(PendingAddHTLCInfo {
6314                                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info });
6315                                                                         },
6316                                                                         hash_map::Entry::Occupied(_) => {
6317                                                                                 log_info!(self.logger, "Failed to forward incoming HTLC: detected duplicate intercepted payment over short channel id {}", scid);
6318                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
6319                                                                                         short_channel_id: prev_short_channel_id,
6320                                                                                         user_channel_id: Some(prev_user_channel_id),
6321                                                                                         outpoint: prev_funding_outpoint,
6322                                                                                         htlc_id: prev_htlc_id,
6323                                                                                         incoming_packet_shared_secret: forward_info.incoming_shared_secret,
6324                                                                                         phantom_shared_secret: None,
6325                                                                                 });
6326
6327                                                                                 failed_intercept_forwards.push((htlc_source, forward_info.payment_hash,
6328                                                                                                 HTLCFailReason::from_failure_code(0x4000 | 10),
6329                                                                                                 HTLCDestination::InvalidForward { requested_forward_scid: scid },
6330                                                                                 ));
6331                                                                         }
6332                                                                 }
6333                                                         } else {
6334                                                                 // We don't want to generate a PendingHTLCsForwardable event if only intercepted
6335                                                                 // payments are being processed.
6336                                                                 if forward_htlcs_empty {
6337                                                                         push_forward_event = true;
6338                                                                 }
6339                                                                 entry.insert(vec!(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
6340                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info })));
6341                                                         }
6342                                                 }
6343                                         }
6344                                 }
6345                         }
6346
6347                         for (htlc_source, payment_hash, failure_reason, destination) in failed_intercept_forwards.drain(..) {
6348                                 self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
6349                         }
6350
6351                         if !new_intercept_events.is_empty() {
6352                                 let mut events = self.pending_events.lock().unwrap();
6353                                 events.append(&mut new_intercept_events);
6354                         }
6355                         if push_forward_event { self.push_pending_forwards_ev() }
6356                 }
6357         }
6358
6359         fn push_pending_forwards_ev(&self) {
6360                 let mut pending_events = self.pending_events.lock().unwrap();
6361                 let is_processing_events = self.pending_events_processor.load(Ordering::Acquire);
6362                 let num_forward_events = pending_events.iter().filter(|(ev, _)|
6363                         if let events::Event::PendingHTLCsForwardable { .. } = ev { true } else { false }
6364                 ).count();
6365                 // We only want to push a PendingHTLCsForwardable event if no others are queued. Processing
6366                 // events is done in batches and they are not removed until we're done processing each
6367                 // batch. Since handling a `PendingHTLCsForwardable` event will call back into the
6368                 // `ChannelManager`, we'll still see the original forwarding event not removed. Phantom
6369                 // payments will need an additional forwarding event before being claimed to make them look
6370                 // real by taking more time.
6371                 if (is_processing_events && num_forward_events <= 1) || num_forward_events < 1 {
6372                         pending_events.push_back((Event::PendingHTLCsForwardable {
6373                                 time_forwardable: Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS),
6374                         }, None));
6375                 }
6376         }
6377
6378         /// Checks whether [`ChannelMonitorUpdate`]s generated by the receipt of a remote
6379         /// [`msgs::RevokeAndACK`] should be held for the given channel until some other action
6380         /// completes. Note that this needs to happen in the same [`PeerState`] mutex as any release of
6381         /// the [`ChannelMonitorUpdate`] in question.
6382         fn raa_monitor_updates_held(&self,
6383                 actions_blocking_raa_monitor_updates: &BTreeMap<ChannelId, Vec<RAAMonitorUpdateBlockingAction>>,
6384                 channel_funding_outpoint: OutPoint, counterparty_node_id: PublicKey
6385         ) -> bool {
6386                 actions_blocking_raa_monitor_updates
6387                         .get(&channel_funding_outpoint.to_channel_id()).map(|v| !v.is_empty()).unwrap_or(false)
6388                 || self.pending_events.lock().unwrap().iter().any(|(_, action)| {
6389                         action == &Some(EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
6390                                 channel_funding_outpoint,
6391                                 counterparty_node_id,
6392                         })
6393                 })
6394         }
6395
6396         #[cfg(any(test, feature = "_test_utils"))]
6397         pub(crate) fn test_raa_monitor_updates_held(&self,
6398                 counterparty_node_id: PublicKey, channel_id: ChannelId
6399         ) -> bool {
6400                 let per_peer_state = self.per_peer_state.read().unwrap();
6401                 if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
6402                         let mut peer_state_lck = peer_state_mtx.lock().unwrap();
6403                         let peer_state = &mut *peer_state_lck;
6404
6405                         if let Some(chan) = peer_state.channel_by_id.get(&channel_id) {
6406                                 return self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
6407                                         chan.context().get_funding_txo().unwrap(), counterparty_node_id);
6408                         }
6409                 }
6410                 false
6411         }
6412
6413         fn internal_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) -> Result<(), MsgHandleErrInternal> {
6414                 let (htlcs_to_fail, res) = {
6415                         let per_peer_state = self.per_peer_state.read().unwrap();
6416                         let mut peer_state_lock = per_peer_state.get(counterparty_node_id)
6417                                 .ok_or_else(|| {
6418                                         debug_assert!(false);
6419                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6420                                 }).map(|mtx| mtx.lock().unwrap())?;
6421                         let peer_state = &mut *peer_state_lock;
6422                         match peer_state.channel_by_id.entry(msg.channel_id) {
6423                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6424                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6425                                                 let funding_txo_opt = chan.context.get_funding_txo();
6426                                                 let mon_update_blocked = if let Some(funding_txo) = funding_txo_opt {
6427                                                         self.raa_monitor_updates_held(
6428                                                                 &peer_state.actions_blocking_raa_monitor_updates, funding_txo,
6429                                                                 *counterparty_node_id)
6430                                                 } else { false };
6431                                                 let (htlcs_to_fail, monitor_update_opt) = try_chan_phase_entry!(self,
6432                                                         chan.revoke_and_ack(&msg, &self.fee_estimator, &self.logger, mon_update_blocked), chan_phase_entry);
6433                                                 let res = if let Some(monitor_update) = monitor_update_opt {
6434                                                         let funding_txo = funding_txo_opt
6435                                                                 .expect("Funding outpoint must have been set for RAA handling to succeed");
6436                                                         handle_new_monitor_update!(self, funding_txo, monitor_update,
6437                                                                 peer_state_lock, peer_state, per_peer_state, chan_phase_entry).map(|_| ())
6438                                                 } else { Ok(()) };
6439                                                 (htlcs_to_fail, res)
6440                                         } else {
6441                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6442                                                         "Got a revoke_and_ack message for an unfunded channel!".into())), chan_phase_entry);
6443                                         }
6444                                 },
6445                                 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))
6446                         }
6447                 };
6448                 self.fail_holding_cell_htlcs(htlcs_to_fail, msg.channel_id, counterparty_node_id);
6449                 res
6450         }
6451
6452         fn internal_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) -> Result<(), MsgHandleErrInternal> {
6453                 let per_peer_state = self.per_peer_state.read().unwrap();
6454                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6455                         .ok_or_else(|| {
6456                                 debug_assert!(false);
6457                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6458                         })?;
6459                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6460                 let peer_state = &mut *peer_state_lock;
6461                 match peer_state.channel_by_id.entry(msg.channel_id) {
6462                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6463                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6464                                         try_chan_phase_entry!(self, chan.update_fee(&self.fee_estimator, &msg, &self.logger), chan_phase_entry);
6465                                 } else {
6466                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6467                                                 "Got an update_fee message for an unfunded channel!".into())), chan_phase_entry);
6468                                 }
6469                         },
6470                         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))
6471                 }
6472                 Ok(())
6473         }
6474
6475         fn internal_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) -> Result<(), MsgHandleErrInternal> {
6476                 let per_peer_state = self.per_peer_state.read().unwrap();
6477                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6478                         .ok_or_else(|| {
6479                                 debug_assert!(false);
6480                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6481                         })?;
6482                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6483                 let peer_state = &mut *peer_state_lock;
6484                 match peer_state.channel_by_id.entry(msg.channel_id) {
6485                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6486                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6487                                         if !chan.context.is_usable() {
6488                                                 return Err(MsgHandleErrInternal::from_no_close(LightningError{err: "Got an announcement_signatures before we were ready for it".to_owned(), action: msgs::ErrorAction::IgnoreError}));
6489                                         }
6490
6491                                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
6492                                                 msg: try_chan_phase_entry!(self, chan.announcement_signatures(
6493                                                         &self.node_signer, self.genesis_hash.clone(), self.best_block.read().unwrap().height(),
6494                                                         msg, &self.default_configuration
6495                                                 ), chan_phase_entry),
6496                                                 // Note that announcement_signatures fails if the channel cannot be announced,
6497                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
6498                                                 update_msg: Some(self.get_channel_update_for_broadcast(chan).unwrap()),
6499                                         });
6500                                 } else {
6501                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6502                                                 "Got an announcement_signatures message for an unfunded channel!".into())), chan_phase_entry);
6503                                 }
6504                         },
6505                         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))
6506                 }
6507                 Ok(())
6508         }
6509
6510         /// Returns ShouldPersist if anything changed, otherwise either SkipPersist or an Err.
6511         fn internal_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) -> Result<NotifyOption, MsgHandleErrInternal> {
6512                 let (chan_counterparty_node_id, chan_id) = match self.short_to_chan_info.read().unwrap().get(&msg.contents.short_channel_id) {
6513                         Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
6514                         None => {
6515                                 // It's not a local channel
6516                                 return Ok(NotifyOption::SkipPersist)
6517                         }
6518                 };
6519                 let per_peer_state = self.per_peer_state.read().unwrap();
6520                 let peer_state_mutex_opt = per_peer_state.get(&chan_counterparty_node_id);
6521                 if peer_state_mutex_opt.is_none() {
6522                         return Ok(NotifyOption::SkipPersist)
6523                 }
6524                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
6525                 let peer_state = &mut *peer_state_lock;
6526                 match peer_state.channel_by_id.entry(chan_id) {
6527                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6528                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6529                                         if chan.context.get_counterparty_node_id() != *counterparty_node_id {
6530                                                 if chan.context.should_announce() {
6531                                                         // If the announcement is about a channel of ours which is public, some
6532                                                         // other peer may simply be forwarding all its gossip to us. Don't provide
6533                                                         // a scary-looking error message and return Ok instead.
6534                                                         return Ok(NotifyOption::SkipPersist);
6535                                                 }
6536                                                 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));
6537                                         }
6538                                         let were_node_one = self.get_our_node_id().serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
6539                                         let msg_from_node_one = msg.contents.flags & 1 == 0;
6540                                         if were_node_one == msg_from_node_one {
6541                                                 return Ok(NotifyOption::SkipPersist);
6542                                         } else {
6543                                                 log_debug!(self.logger, "Received channel_update for channel {}.", chan_id);
6544                                                 try_chan_phase_entry!(self, chan.channel_update(&msg), chan_phase_entry);
6545                                         }
6546                                 } else {
6547                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6548                                                 "Got a channel_update for an unfunded channel!".into())), chan_phase_entry);
6549                                 }
6550                         },
6551                         hash_map::Entry::Vacant(_) => return Ok(NotifyOption::SkipPersist)
6552                 }
6553                 Ok(NotifyOption::DoPersist)
6554         }
6555
6556         fn internal_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) -> Result<(), MsgHandleErrInternal> {
6557                 let htlc_forwards;
6558                 let need_lnd_workaround = {
6559                         let per_peer_state = self.per_peer_state.read().unwrap();
6560
6561                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6562                                 .ok_or_else(|| {
6563                                         debug_assert!(false);
6564                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6565                                 })?;
6566                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6567                         let peer_state = &mut *peer_state_lock;
6568                         match peer_state.channel_by_id.entry(msg.channel_id) {
6569                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6570                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6571                                                 // Currently, we expect all holding cell update_adds to be dropped on peer
6572                                                 // disconnect, so Channel's reestablish will never hand us any holding cell
6573                                                 // freed HTLCs to fail backwards. If in the future we no longer drop pending
6574                                                 // add-HTLCs on disconnect, we may be handed HTLCs to fail backwards here.
6575                                                 let responses = try_chan_phase_entry!(self, chan.channel_reestablish(
6576                                                         msg, &self.logger, &self.node_signer, self.genesis_hash,
6577                                                         &self.default_configuration, &*self.best_block.read().unwrap()), chan_phase_entry);
6578                                                 let mut channel_update = None;
6579                                                 if let Some(msg) = responses.shutdown_msg {
6580                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
6581                                                                 node_id: counterparty_node_id.clone(),
6582                                                                 msg,
6583                                                         });
6584                                                 } else if chan.context.is_usable() {
6585                                                         // If the channel is in a usable state (ie the channel is not being shut
6586                                                         // down), send a unicast channel_update to our counterparty to make sure
6587                                                         // they have the latest channel parameters.
6588                                                         if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
6589                                                                 channel_update = Some(events::MessageSendEvent::SendChannelUpdate {
6590                                                                         node_id: chan.context.get_counterparty_node_id(),
6591                                                                         msg,
6592                                                                 });
6593                                                         }
6594                                                 }
6595                                                 let need_lnd_workaround = chan.context.workaround_lnd_bug_4006.take();
6596                                                 htlc_forwards = self.handle_channel_resumption(
6597                                                         &mut peer_state.pending_msg_events, chan, responses.raa, responses.commitment_update, responses.order,
6598                                                         Vec::new(), None, responses.channel_ready, responses.announcement_sigs);
6599                                                 if let Some(upd) = channel_update {
6600                                                         peer_state.pending_msg_events.push(upd);
6601                                                 }
6602                                                 need_lnd_workaround
6603                                         } else {
6604                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6605                                                         "Got a channel_reestablish message for an unfunded channel!".into())), chan_phase_entry);
6606                                         }
6607                                 },
6608                                 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))
6609                         }
6610                 };
6611
6612                 if let Some(forwards) = htlc_forwards {
6613                         self.forward_htlcs(&mut [forwards][..]);
6614                 }
6615
6616                 if let Some(channel_ready_msg) = need_lnd_workaround {
6617                         self.internal_channel_ready(counterparty_node_id, &channel_ready_msg)?;
6618                 }
6619                 Ok(())
6620         }
6621
6622         /// Process pending events from the [`chain::Watch`], returning whether any events were processed.
6623         fn process_pending_monitor_events(&self) -> bool {
6624                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
6625
6626                 let mut failed_channels = Vec::new();
6627                 let mut pending_monitor_events = self.chain_monitor.release_pending_monitor_events();
6628                 let has_pending_monitor_events = !pending_monitor_events.is_empty();
6629                 for (funding_outpoint, mut monitor_events, counterparty_node_id) in pending_monitor_events.drain(..) {
6630                         for monitor_event in monitor_events.drain(..) {
6631                                 match monitor_event {
6632                                         MonitorEvent::HTLCEvent(htlc_update) => {
6633                                                 if let Some(preimage) = htlc_update.payment_preimage {
6634                                                         log_trace!(self.logger, "Claiming HTLC with preimage {} from our monitor", preimage);
6635                                                         self.claim_funds_internal(htlc_update.source, preimage, htlc_update.htlc_value_satoshis.map(|v| v * 1000), true, counterparty_node_id, funding_outpoint);
6636                                                 } else {
6637                                                         log_trace!(self.logger, "Failing HTLC with hash {} from our monitor", &htlc_update.payment_hash);
6638                                                         let receiver = HTLCDestination::NextHopChannel { node_id: counterparty_node_id, channel_id: funding_outpoint.to_channel_id() };
6639                                                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
6640                                                         self.fail_htlc_backwards_internal(&htlc_update.source, &htlc_update.payment_hash, &reason, receiver);
6641                                                 }
6642                                         },
6643                                         MonitorEvent::CommitmentTxConfirmed(funding_outpoint) |
6644                                         MonitorEvent::UpdateFailed(funding_outpoint) => {
6645                                                 let counterparty_node_id_opt = match counterparty_node_id {
6646                                                         Some(cp_id) => Some(cp_id),
6647                                                         None => {
6648                                                                 // TODO: Once we can rely on the counterparty_node_id from the
6649                                                                 // monitor event, this and the id_to_peer map should be removed.
6650                                                                 let id_to_peer = self.id_to_peer.lock().unwrap();
6651                                                                 id_to_peer.get(&funding_outpoint.to_channel_id()).cloned()
6652                                                         }
6653                                                 };
6654                                                 if let Some(counterparty_node_id) = counterparty_node_id_opt {
6655                                                         let per_peer_state = self.per_peer_state.read().unwrap();
6656                                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
6657                                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6658                                                                 let peer_state = &mut *peer_state_lock;
6659                                                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6660                                                                 if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(funding_outpoint.to_channel_id()) {
6661                                                                         if let ChannelPhase::Funded(mut chan) = remove_channel_phase!(self, chan_phase_entry) {
6662                                                                                 failed_channels.push(chan.context.force_shutdown(false));
6663                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6664                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6665                                                                                                 msg: update
6666                                                                                         });
6667                                                                                 }
6668                                                                                 let reason = if let MonitorEvent::UpdateFailed(_) = monitor_event {
6669                                                                                         ClosureReason::ProcessingError { err: "Failed to persist ChannelMonitor update during chain sync".to_string() }
6670                                                                                 } else {
6671                                                                                         ClosureReason::CommitmentTxConfirmed
6672                                                                                 };
6673                                                                                 self.issue_channel_close_events(&chan.context, reason);
6674                                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
6675                                                                                         node_id: chan.context.get_counterparty_node_id(),
6676                                                                                         action: msgs::ErrorAction::SendErrorMessage {
6677                                                                                                 msg: msgs::ErrorMessage { channel_id: chan.context.channel_id(), data: "Channel force-closed".to_owned() }
6678                                                                                         },
6679                                                                                 });
6680                                                                         }
6681                                                                 }
6682                                                         }
6683                                                 }
6684                                         },
6685                                         MonitorEvent::Completed { funding_txo, monitor_update_id } => {
6686                                                 self.channel_monitor_updated(&funding_txo, monitor_update_id, counterparty_node_id.as_ref());
6687                                         },
6688                                 }
6689                         }
6690                 }
6691
6692                 for failure in failed_channels.drain(..) {
6693                         self.finish_force_close_channel(failure);
6694                 }
6695
6696                 has_pending_monitor_events
6697         }
6698
6699         /// In chanmon_consistency_target, we'd like to be able to restore monitor updating without
6700         /// handling all pending events (i.e. not PendingHTLCsForwardable). Thus, we expose monitor
6701         /// update events as a separate process method here.
6702         #[cfg(fuzzing)]
6703         pub fn process_monitor_events(&self) {
6704                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6705                 self.process_pending_monitor_events();
6706         }
6707
6708         /// Check the holding cell in each channel and free any pending HTLCs in them if possible.
6709         /// Returns whether there were any updates such as if pending HTLCs were freed or a monitor
6710         /// update was applied.
6711         fn check_free_holding_cells(&self) -> bool {
6712                 let mut has_monitor_update = false;
6713                 let mut failed_htlcs = Vec::new();
6714                 let mut handle_errors = Vec::new();
6715
6716                 // Walk our list of channels and find any that need to update. Note that when we do find an
6717                 // update, if it includes actions that must be taken afterwards, we have to drop the
6718                 // per-peer state lock as well as the top level per_peer_state lock. Thus, we loop until we
6719                 // manage to go through all our peers without finding a single channel to update.
6720                 'peer_loop: loop {
6721                         let per_peer_state = self.per_peer_state.read().unwrap();
6722                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6723                                 'chan_loop: loop {
6724                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6725                                         let peer_state: &mut PeerState<_> = &mut *peer_state_lock;
6726                                         for (channel_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
6727                                                 |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
6728                                         ) {
6729                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
6730                                                 let funding_txo = chan.context.get_funding_txo();
6731                                                 let (monitor_opt, holding_cell_failed_htlcs) =
6732                                                         chan.maybe_free_holding_cell_htlcs(&self.fee_estimator, &self.logger);
6733                                                 if !holding_cell_failed_htlcs.is_empty() {
6734                                                         failed_htlcs.push((holding_cell_failed_htlcs, *channel_id, counterparty_node_id));
6735                                                 }
6736                                                 if let Some(monitor_update) = monitor_opt {
6737                                                         has_monitor_update = true;
6738
6739                                                         let channel_id: ChannelId = *channel_id;
6740                                                         let res = handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update,
6741                                                                 peer_state_lock, peer_state, per_peer_state, chan, MANUALLY_REMOVING,
6742                                                                 peer_state.channel_by_id.remove(&channel_id));
6743                                                         if res.is_err() {
6744                                                                 handle_errors.push((counterparty_node_id, res));
6745                                                         }
6746                                                         continue 'peer_loop;
6747                                                 }
6748                                         }
6749                                         break 'chan_loop;
6750                                 }
6751                         }
6752                         break 'peer_loop;
6753                 }
6754
6755                 let has_update = has_monitor_update || !failed_htlcs.is_empty() || !handle_errors.is_empty();
6756                 for (failures, channel_id, counterparty_node_id) in failed_htlcs.drain(..) {
6757                         self.fail_holding_cell_htlcs(failures, channel_id, &counterparty_node_id);
6758                 }
6759
6760                 for (counterparty_node_id, err) in handle_errors.drain(..) {
6761                         let _ = handle_error!(self, err, counterparty_node_id);
6762                 }
6763
6764                 has_update
6765         }
6766
6767         /// Check whether any channels have finished removing all pending updates after a shutdown
6768         /// exchange and can now send a closing_signed.
6769         /// Returns whether any closing_signed messages were generated.
6770         fn maybe_generate_initial_closing_signed(&self) -> bool {
6771                 let mut handle_errors: Vec<(PublicKey, Result<(), _>)> = Vec::new();
6772                 let mut has_update = false;
6773                 {
6774                         let per_peer_state = self.per_peer_state.read().unwrap();
6775
6776                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6777                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6778                                 let peer_state = &mut *peer_state_lock;
6779                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6780                                 peer_state.channel_by_id.retain(|channel_id, phase| {
6781                                         match phase {
6782                                                 ChannelPhase::Funded(chan) => {
6783                                                         match chan.maybe_propose_closing_signed(&self.fee_estimator, &self.logger) {
6784                                                                 Ok((msg_opt, tx_opt)) => {
6785                                                                         if let Some(msg) = msg_opt {
6786                                                                                 has_update = true;
6787                                                                                 pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
6788                                                                                         node_id: chan.context.get_counterparty_node_id(), msg,
6789                                                                                 });
6790                                                                         }
6791                                                                         if let Some(tx) = tx_opt {
6792                                                                                 // We're done with this channel. We got a closing_signed and sent back
6793                                                                                 // a closing_signed with a closing transaction to broadcast.
6794                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6795                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6796                                                                                                 msg: update
6797                                                                                         });
6798                                                                                 }
6799
6800                                                                                 self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
6801
6802                                                                                 log_info!(self.logger, "Broadcasting {}", log_tx!(tx));
6803                                                                                 self.tx_broadcaster.broadcast_transactions(&[&tx]);
6804                                                                                 update_maps_on_chan_removal!(self, &chan.context);
6805                                                                                 false
6806                                                                         } else { true }
6807                                                                 },
6808                                                                 Err(e) => {
6809                                                                         has_update = true;
6810                                                                         let (close_channel, res) = convert_chan_phase_err!(self, e, chan, channel_id, FUNDED_CHANNEL);
6811                                                                         handle_errors.push((chan.context.get_counterparty_node_id(), Err(res)));
6812                                                                         !close_channel
6813                                                                 }
6814                                                         }
6815                                                 },
6816                                                 _ => true, // Retain unfunded channels if present.
6817                                         }
6818                                 });
6819                         }
6820                 }
6821
6822                 for (counterparty_node_id, err) in handle_errors.drain(..) {
6823                         let _ = handle_error!(self, err, counterparty_node_id);
6824                 }
6825
6826                 has_update
6827         }
6828
6829         /// Handle a list of channel failures during a block_connected or block_disconnected call,
6830         /// pushing the channel monitor update (if any) to the background events queue and removing the
6831         /// Channel object.
6832         fn handle_init_event_channel_failures(&self, mut failed_channels: Vec<ShutdownResult>) {
6833                 for mut failure in failed_channels.drain(..) {
6834                         // Either a commitment transactions has been confirmed on-chain or
6835                         // Channel::block_disconnected detected that the funding transaction has been
6836                         // reorganized out of the main chain.
6837                         // We cannot broadcast our latest local state via monitor update (as
6838                         // Channel::force_shutdown tries to make us do) as we may still be in initialization,
6839                         // so we track the update internally and handle it when the user next calls
6840                         // timer_tick_occurred, guaranteeing we're running normally.
6841                         if let Some((counterparty_node_id, funding_txo, update)) = failure.0.take() {
6842                                 assert_eq!(update.updates.len(), 1);
6843                                 if let ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } = update.updates[0] {
6844                                         assert!(should_broadcast);
6845                                 } else { unreachable!(); }
6846                                 self.pending_background_events.lock().unwrap().push(
6847                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
6848                                                 counterparty_node_id, funding_txo, update
6849                                         });
6850                         }
6851                         self.finish_force_close_channel(failure);
6852                 }
6853         }
6854
6855         /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
6856         /// to pay us.
6857         ///
6858         /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
6859         /// [`PaymentHash`] and [`PaymentPreimage`] for you.
6860         ///
6861         /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentClaimable`], which
6862         /// will have the [`PaymentClaimable::purpose`] be [`PaymentPurpose::InvoicePayment`] with
6863         /// its [`PaymentPurpose::InvoicePayment::payment_preimage`] field filled in. That should then be
6864         /// passed directly to [`claim_funds`].
6865         ///
6866         /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
6867         ///
6868         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
6869         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
6870         ///
6871         /// # Note
6872         ///
6873         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
6874         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
6875         ///
6876         /// Errors if `min_value_msat` is greater than total bitcoin supply.
6877         ///
6878         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
6879         /// on versions of LDK prior to 0.0.114.
6880         ///
6881         /// [`claim_funds`]: Self::claim_funds
6882         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
6883         /// [`PaymentClaimable::purpose`]: events::Event::PaymentClaimable::purpose
6884         /// [`PaymentPurpose::InvoicePayment`]: events::PaymentPurpose::InvoicePayment
6885         /// [`PaymentPurpose::InvoicePayment::payment_preimage`]: events::PaymentPurpose::InvoicePayment::payment_preimage
6886         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
6887         pub fn create_inbound_payment(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32,
6888                 min_final_cltv_expiry_delta: Option<u16>) -> Result<(PaymentHash, PaymentSecret), ()> {
6889                 inbound_payment::create(&self.inbound_payment_key, min_value_msat, invoice_expiry_delta_secs,
6890                         &self.entropy_source, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
6891                         min_final_cltv_expiry_delta)
6892         }
6893
6894         /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
6895         /// stored external to LDK.
6896         ///
6897         /// A [`PaymentClaimable`] event will only be generated if the [`PaymentSecret`] matches a
6898         /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
6899         /// the `min_value_msat` provided here, if one is provided.
6900         ///
6901         /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) should be globally unique, though
6902         /// note that LDK will not stop you from registering duplicate payment hashes for inbound
6903         /// payments.
6904         ///
6905         /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
6906         /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
6907         /// before a [`PaymentClaimable`] event will be generated, ensuring that we do not provide the
6908         /// sender "proof-of-payment" unless they have paid the required amount.
6909         ///
6910         /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
6911         /// in excess of the current time. This should roughly match the expiry time set in the invoice.
6912         /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
6913         /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
6914         /// invoices when no timeout is set.
6915         ///
6916         /// Note that we use block header time to time-out pending inbound payments (with some margin
6917         /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
6918         /// accept a payment and generate a [`PaymentClaimable`] event for some time after the expiry.
6919         /// If you need exact expiry semantics, you should enforce them upon receipt of
6920         /// [`PaymentClaimable`].
6921         ///
6922         /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry_delta`
6923         /// set to at least [`MIN_FINAL_CLTV_EXPIRY_DELTA`].
6924         ///
6925         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
6926         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
6927         ///
6928         /// # Note
6929         ///
6930         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
6931         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
6932         ///
6933         /// Errors if `min_value_msat` is greater than total bitcoin supply.
6934         ///
6935         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
6936         /// on versions of LDK prior to 0.0.114.
6937         ///
6938         /// [`create_inbound_payment`]: Self::create_inbound_payment
6939         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
6940         pub fn create_inbound_payment_for_hash(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>,
6941                 invoice_expiry_delta_secs: u32, min_final_cltv_expiry: Option<u16>) -> Result<PaymentSecret, ()> {
6942                 inbound_payment::create_from_hash(&self.inbound_payment_key, min_value_msat, payment_hash,
6943                         invoice_expiry_delta_secs, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
6944                         min_final_cltv_expiry)
6945         }
6946
6947         /// Gets an LDK-generated payment preimage from a payment hash and payment secret that were
6948         /// previously returned from [`create_inbound_payment`].
6949         ///
6950         /// [`create_inbound_payment`]: Self::create_inbound_payment
6951         pub fn get_payment_preimage(&self, payment_hash: PaymentHash, payment_secret: PaymentSecret) -> Result<PaymentPreimage, APIError> {
6952                 inbound_payment::get_payment_preimage(payment_hash, payment_secret, &self.inbound_payment_key)
6953         }
6954
6955         /// Gets a fake short channel id for use in receiving [phantom node payments]. These fake scids
6956         /// are used when constructing the phantom invoice's route hints.
6957         ///
6958         /// [phantom node payments]: crate::sign::PhantomKeysManager
6959         pub fn get_phantom_scid(&self) -> u64 {
6960                 let best_block_height = self.best_block.read().unwrap().height();
6961                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
6962                 loop {
6963                         let scid_candidate = fake_scid::Namespace::Phantom.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
6964                         // Ensure the generated scid doesn't conflict with a real channel.
6965                         match short_to_chan_info.get(&scid_candidate) {
6966                                 Some(_) => continue,
6967                                 None => return scid_candidate
6968                         }
6969                 }
6970         }
6971
6972         /// Gets route hints for use in receiving [phantom node payments].
6973         ///
6974         /// [phantom node payments]: crate::sign::PhantomKeysManager
6975         pub fn get_phantom_route_hints(&self) -> PhantomRouteHints {
6976                 PhantomRouteHints {
6977                         channels: self.list_usable_channels(),
6978                         phantom_scid: self.get_phantom_scid(),
6979                         real_node_pubkey: self.get_our_node_id(),
6980                 }
6981         }
6982
6983         /// Gets a fake short channel id for use in receiving intercepted payments. These fake scids are
6984         /// used when constructing the route hints for HTLCs intended to be intercepted. See
6985         /// [`ChannelManager::forward_intercepted_htlc`].
6986         ///
6987         /// Note that this method is not guaranteed to return unique values, you may need to call it a few
6988         /// times to get a unique scid.
6989         pub fn get_intercept_scid(&self) -> u64 {
6990                 let best_block_height = self.best_block.read().unwrap().height();
6991                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
6992                 loop {
6993                         let scid_candidate = fake_scid::Namespace::Intercept.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
6994                         // Ensure the generated scid doesn't conflict with a real channel.
6995                         if short_to_chan_info.contains_key(&scid_candidate) { continue }
6996                         return scid_candidate
6997                 }
6998         }
6999
7000         /// Gets inflight HTLC information by processing pending outbound payments that are in
7001         /// our channels. May be used during pathfinding to account for in-use channel liquidity.
7002         pub fn compute_inflight_htlcs(&self) -> InFlightHtlcs {
7003                 let mut inflight_htlcs = InFlightHtlcs::new();
7004
7005                 let per_peer_state = self.per_peer_state.read().unwrap();
7006                 for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7007                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7008                         let peer_state = &mut *peer_state_lock;
7009                         for chan in peer_state.channel_by_id.values().filter_map(
7010                                 |phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }
7011                         ) {
7012                                 for (htlc_source, _) in chan.inflight_htlc_sources() {
7013                                         if let HTLCSource::OutboundRoute { path, .. } = htlc_source {
7014                                                 inflight_htlcs.process_path(path, self.get_our_node_id());
7015                                         }
7016                                 }
7017                         }
7018                 }
7019
7020                 inflight_htlcs
7021         }
7022
7023         #[cfg(any(test, feature = "_test_utils"))]
7024         pub fn get_and_clear_pending_events(&self) -> Vec<events::Event> {
7025                 let events = core::cell::RefCell::new(Vec::new());
7026                 let event_handler = |event: events::Event| events.borrow_mut().push(event);
7027                 self.process_pending_events(&event_handler);
7028                 events.into_inner()
7029         }
7030
7031         #[cfg(feature = "_test_utils")]
7032         pub fn push_pending_event(&self, event: events::Event) {
7033                 let mut events = self.pending_events.lock().unwrap();
7034                 events.push_back((event, None));
7035         }
7036
7037         #[cfg(test)]
7038         pub fn pop_pending_event(&self) -> Option<events::Event> {
7039                 let mut events = self.pending_events.lock().unwrap();
7040                 events.pop_front().map(|(e, _)| e)
7041         }
7042
7043         #[cfg(test)]
7044         pub fn has_pending_payments(&self) -> bool {
7045                 self.pending_outbound_payments.has_pending_payments()
7046         }
7047
7048         #[cfg(test)]
7049         pub fn clear_pending_payments(&self) {
7050                 self.pending_outbound_payments.clear_pending_payments()
7051         }
7052
7053         /// When something which was blocking a channel from updating its [`ChannelMonitor`] (e.g. an
7054         /// [`Event`] being handled) completes, this should be called to restore the channel to normal
7055         /// operation. It will double-check that nothing *else* is also blocking the same channel from
7056         /// making progress and then let any blocked [`ChannelMonitorUpdate`]s fly.
7057         fn handle_monitor_update_release(&self, counterparty_node_id: PublicKey, channel_funding_outpoint: OutPoint, mut completed_blocker: Option<RAAMonitorUpdateBlockingAction>) {
7058                 let mut errors = Vec::new();
7059                 loop {
7060                         let per_peer_state = self.per_peer_state.read().unwrap();
7061                         if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
7062                                 let mut peer_state_lck = peer_state_mtx.lock().unwrap();
7063                                 let peer_state = &mut *peer_state_lck;
7064
7065                                 if let Some(blocker) = completed_blocker.take() {
7066                                         // Only do this on the first iteration of the loop.
7067                                         if let Some(blockers) = peer_state.actions_blocking_raa_monitor_updates
7068                                                 .get_mut(&channel_funding_outpoint.to_channel_id())
7069                                         {
7070                                                 blockers.retain(|iter| iter != &blocker);
7071                                         }
7072                                 }
7073
7074                                 if self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
7075                                         channel_funding_outpoint, counterparty_node_id) {
7076                                         // Check that, while holding the peer lock, we don't have anything else
7077                                         // blocking monitor updates for this channel. If we do, release the monitor
7078                                         // update(s) when those blockers complete.
7079                                         log_trace!(self.logger, "Delaying monitor unlock for channel {} as another channel's mon update needs to complete first",
7080                                                 &channel_funding_outpoint.to_channel_id());
7081                                         break;
7082                                 }
7083
7084                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(channel_funding_outpoint.to_channel_id()) {
7085                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7086                                                 debug_assert_eq!(chan.context.get_funding_txo().unwrap(), channel_funding_outpoint);
7087                                                 if let Some((monitor_update, further_update_exists)) = chan.unblock_next_blocked_monitor_update() {
7088                                                         log_debug!(self.logger, "Unlocking monitor updating for channel {} and updating monitor",
7089                                                                 channel_funding_outpoint.to_channel_id());
7090                                                         if let Err(e) = handle_new_monitor_update!(self, channel_funding_outpoint, monitor_update,
7091                                                                 peer_state_lck, peer_state, per_peer_state, chan_phase_entry)
7092                                                         {
7093                                                                 errors.push((e, counterparty_node_id));
7094                                                         }
7095                                                         if further_update_exists {
7096                                                                 // If there are more `ChannelMonitorUpdate`s to process, restart at the
7097                                                                 // top of the loop.
7098                                                                 continue;
7099                                                         }
7100                                                 } else {
7101                                                         log_trace!(self.logger, "Unlocked monitor updating for channel {} without monitors to update",
7102                                                                 channel_funding_outpoint.to_channel_id());
7103                                                 }
7104                                         }
7105                                 }
7106                         } else {
7107                                 log_debug!(self.logger,
7108                                         "Got a release post-RAA monitor update for peer {} but the channel is gone",
7109                                         log_pubkey!(counterparty_node_id));
7110                         }
7111                         break;
7112                 }
7113                 for (err, counterparty_node_id) in errors {
7114                         let res = Err::<(), _>(err);
7115                         let _ = handle_error!(self, res, counterparty_node_id);
7116                 }
7117         }
7118
7119         fn handle_post_event_actions(&self, actions: Vec<EventCompletionAction>) {
7120                 for action in actions {
7121                         match action {
7122                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
7123                                         channel_funding_outpoint, counterparty_node_id
7124                                 } => {
7125                                         self.handle_monitor_update_release(counterparty_node_id, channel_funding_outpoint, None);
7126                                 }
7127                         }
7128                 }
7129         }
7130
7131         /// Processes any events asynchronously in the order they were generated since the last call
7132         /// using the given event handler.
7133         ///
7134         /// See the trait-level documentation of [`EventsProvider`] for requirements.
7135         pub async fn process_pending_events_async<Future: core::future::Future, H: Fn(Event) -> Future>(
7136                 &self, handler: H
7137         ) {
7138                 let mut ev;
7139                 process_events_body!(self, ev, { handler(ev).await });
7140         }
7141 }
7142
7143 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>
7144 where
7145         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7146         T::Target: BroadcasterInterface,
7147         ES::Target: EntropySource,
7148         NS::Target: NodeSigner,
7149         SP::Target: SignerProvider,
7150         F::Target: FeeEstimator,
7151         R::Target: Router,
7152         L::Target: Logger,
7153 {
7154         /// Returns `MessageSendEvent`s strictly ordered per-peer, in the order they were generated.
7155         /// The returned array will contain `MessageSendEvent`s for different peers if
7156         /// `MessageSendEvent`s to more than one peer exists, but `MessageSendEvent`s to the same peer
7157         /// is always placed next to each other.
7158         ///
7159         /// Note that that while `MessageSendEvent`s are strictly ordered per-peer, the peer order for
7160         /// the chunks of `MessageSendEvent`s for different peers is random. I.e. if the array contains
7161         /// `MessageSendEvent`s  for both `node_a` and `node_b`, the `MessageSendEvent`s for `node_a`
7162         /// will randomly be placed first or last in the returned array.
7163         ///
7164         /// Note that even though `BroadcastChannelAnnouncement` and `BroadcastChannelUpdate`
7165         /// `MessageSendEvent`s are intended to be broadcasted to all peers, they will be pleaced among
7166         /// the `MessageSendEvent`s to the specific peer they were generated under.
7167         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent> {
7168                 let events = RefCell::new(Vec::new());
7169                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
7170                         let mut result = self.process_background_events();
7171
7172                         // TODO: This behavior should be documented. It's unintuitive that we query
7173                         // ChannelMonitors when clearing other events.
7174                         if self.process_pending_monitor_events() {
7175                                 result = NotifyOption::DoPersist;
7176                         }
7177
7178                         if self.check_free_holding_cells() {
7179                                 result = NotifyOption::DoPersist;
7180                         }
7181                         if self.maybe_generate_initial_closing_signed() {
7182                                 result = NotifyOption::DoPersist;
7183                         }
7184
7185                         let mut pending_events = Vec::new();
7186                         let per_peer_state = self.per_peer_state.read().unwrap();
7187                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7188                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7189                                 let peer_state = &mut *peer_state_lock;
7190                                 if peer_state.pending_msg_events.len() > 0 {
7191                                         pending_events.append(&mut peer_state.pending_msg_events);
7192                                 }
7193                         }
7194
7195                         if !pending_events.is_empty() {
7196                                 events.replace(pending_events);
7197                         }
7198
7199                         result
7200                 });
7201                 events.into_inner()
7202         }
7203 }
7204
7205 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>
7206 where
7207         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7208         T::Target: BroadcasterInterface,
7209         ES::Target: EntropySource,
7210         NS::Target: NodeSigner,
7211         SP::Target: SignerProvider,
7212         F::Target: FeeEstimator,
7213         R::Target: Router,
7214         L::Target: Logger,
7215 {
7216         /// Processes events that must be periodically handled.
7217         ///
7218         /// An [`EventHandler`] may safely call back to the provider in order to handle an event.
7219         /// However, it must not call [`Writeable::write`] as doing so would result in a deadlock.
7220         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler {
7221                 let mut ev;
7222                 process_events_body!(self, ev, handler.handle_event(ev));
7223         }
7224 }
7225
7226 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>
7227 where
7228         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7229         T::Target: BroadcasterInterface,
7230         ES::Target: EntropySource,
7231         NS::Target: NodeSigner,
7232         SP::Target: SignerProvider,
7233         F::Target: FeeEstimator,
7234         R::Target: Router,
7235         L::Target: Logger,
7236 {
7237         fn filtered_block_connected(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
7238                 {
7239                         let best_block = self.best_block.read().unwrap();
7240                         assert_eq!(best_block.block_hash(), header.prev_blockhash,
7241                                 "Blocks must be connected in chain-order - the connected header must build on the last connected header");
7242                         assert_eq!(best_block.height(), height - 1,
7243                                 "Blocks must be connected in chain-order - the connected block height must be one greater than the previous height");
7244                 }
7245
7246                 self.transactions_confirmed(header, txdata, height);
7247                 self.best_block_updated(header, height);
7248         }
7249
7250         fn block_disconnected(&self, header: &BlockHeader, height: u32) {
7251                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
7252                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
7253                 let new_height = height - 1;
7254                 {
7255                         let mut best_block = self.best_block.write().unwrap();
7256                         assert_eq!(best_block.block_hash(), header.block_hash(),
7257                                 "Blocks must be disconnected in chain-order - the disconnected header must be the last connected header");
7258                         assert_eq!(best_block.height(), height,
7259                                 "Blocks must be disconnected in chain-order - the disconnected block must have the correct height");
7260                         *best_block = BestBlock::new(header.prev_blockhash, new_height)
7261                 }
7262
7263                 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));
7264         }
7265 }
7266
7267 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>
7268 where
7269         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7270         T::Target: BroadcasterInterface,
7271         ES::Target: EntropySource,
7272         NS::Target: NodeSigner,
7273         SP::Target: SignerProvider,
7274         F::Target: FeeEstimator,
7275         R::Target: Router,
7276         L::Target: Logger,
7277 {
7278         fn transactions_confirmed(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
7279                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7280                 // during initialization prior to the chain_monitor being fully configured in some cases.
7281                 // See the docs for `ChannelManagerReadArgs` for more.
7282
7283                 let block_hash = header.block_hash();
7284                 log_trace!(self.logger, "{} transactions included in block {} at height {} provided", txdata.len(), block_hash, height);
7285
7286                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
7287                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
7288                 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)
7289                         .map(|(a, b)| (a, Vec::new(), b)));
7290
7291                 let last_best_block_height = self.best_block.read().unwrap().height();
7292                 if height < last_best_block_height {
7293                         let timestamp = self.highest_seen_timestamp.load(Ordering::Acquire);
7294                         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));
7295                 }
7296         }
7297
7298         fn best_block_updated(&self, header: &BlockHeader, height: u32) {
7299                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7300                 // during initialization prior to the chain_monitor being fully configured in some cases.
7301                 // See the docs for `ChannelManagerReadArgs` for more.
7302
7303                 let block_hash = header.block_hash();
7304                 log_trace!(self.logger, "New best block: {} at height {}", block_hash, height);
7305
7306                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
7307                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
7308                 *self.best_block.write().unwrap() = BestBlock::new(block_hash, height);
7309
7310                 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));
7311
7312                 macro_rules! max_time {
7313                         ($timestamp: expr) => {
7314                                 loop {
7315                                         // Update $timestamp to be the max of its current value and the block
7316                                         // timestamp. This should keep us close to the current time without relying on
7317                                         // having an explicit local time source.
7318                                         // Just in case we end up in a race, we loop until we either successfully
7319                                         // update $timestamp or decide we don't need to.
7320                                         let old_serial = $timestamp.load(Ordering::Acquire);
7321                                         if old_serial >= header.time as usize { break; }
7322                                         if $timestamp.compare_exchange(old_serial, header.time as usize, Ordering::AcqRel, Ordering::Relaxed).is_ok() {
7323                                                 break;
7324                                         }
7325                                 }
7326                         }
7327                 }
7328                 max_time!(self.highest_seen_timestamp);
7329                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
7330                 payment_secrets.retain(|_, inbound_payment| {
7331                         inbound_payment.expiry_time > header.time as u64
7332                 });
7333         }
7334
7335         fn get_relevant_txids(&self) -> Vec<(Txid, Option<BlockHash>)> {
7336                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
7337                 for (_cp_id, peer_state_mutex) in self.per_peer_state.read().unwrap().iter() {
7338                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7339                         let peer_state = &mut *peer_state_lock;
7340                         for chan in peer_state.channel_by_id.values().filter_map(|phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }) {
7341                                 if let (Some(funding_txo), Some(block_hash)) = (chan.context.get_funding_txo(), chan.context.get_funding_tx_confirmed_in()) {
7342                                         res.push((funding_txo.txid, Some(block_hash)));
7343                                 }
7344                         }
7345                 }
7346                 res
7347         }
7348
7349         fn transaction_unconfirmed(&self, txid: &Txid) {
7350                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
7351                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
7352                 self.do_chain_event(None, |channel| {
7353                         if let Some(funding_txo) = channel.context.get_funding_txo() {
7354                                 if funding_txo.txid == *txid {
7355                                         channel.funding_transaction_unconfirmed(&self.logger).map(|()| (None, Vec::new(), None))
7356                                 } else { Ok((None, Vec::new(), None)) }
7357                         } else { Ok((None, Vec::new(), None)) }
7358                 });
7359         }
7360 }
7361
7362 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>
7363 where
7364         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7365         T::Target: BroadcasterInterface,
7366         ES::Target: EntropySource,
7367         NS::Target: NodeSigner,
7368         SP::Target: SignerProvider,
7369         F::Target: FeeEstimator,
7370         R::Target: Router,
7371         L::Target: Logger,
7372 {
7373         /// Calls a function which handles an on-chain event (blocks dis/connected, transactions
7374         /// un/confirmed, etc) on each channel, handling any resulting errors or messages generated by
7375         /// the function.
7376         fn do_chain_event<FN: Fn(&mut Channel<SP>) -> Result<(Option<msgs::ChannelReady>, Vec<(HTLCSource, PaymentHash)>, Option<msgs::AnnouncementSignatures>), ClosureReason>>
7377                         (&self, height_opt: Option<u32>, f: FN) {
7378                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7379                 // during initialization prior to the chain_monitor being fully configured in some cases.
7380                 // See the docs for `ChannelManagerReadArgs` for more.
7381
7382                 let mut failed_channels = Vec::new();
7383                 let mut timed_out_htlcs = Vec::new();
7384                 {
7385                         let per_peer_state = self.per_peer_state.read().unwrap();
7386                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7387                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7388                                 let peer_state = &mut *peer_state_lock;
7389                                 let pending_msg_events = &mut peer_state.pending_msg_events;
7390                                 peer_state.channel_by_id.retain(|_, phase| {
7391                                         match phase {
7392                                                 // Retain unfunded channels.
7393                                                 ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => true,
7394                                                 ChannelPhase::Funded(channel) => {
7395                                                         let res = f(channel);
7396                                                         if let Ok((channel_ready_opt, mut timed_out_pending_htlcs, announcement_sigs)) = res {
7397                                                                 for (source, payment_hash) in timed_out_pending_htlcs.drain(..) {
7398                                                                         let (failure_code, data) = self.get_htlc_inbound_temp_fail_err_and_data(0x1000|14 /* expiry_too_soon */, &channel);
7399                                                                         timed_out_htlcs.push((source, payment_hash, HTLCFailReason::reason(failure_code, data),
7400                                                                                 HTLCDestination::NextHopChannel { node_id: Some(channel.context.get_counterparty_node_id()), channel_id: channel.context.channel_id() }));
7401                                                                 }
7402                                                                 if let Some(channel_ready) = channel_ready_opt {
7403                                                                         send_channel_ready!(self, pending_msg_events, channel, channel_ready);
7404                                                                         if channel.context.is_usable() {
7405                                                                                 log_trace!(self.logger, "Sending channel_ready with private initial channel_update for our counterparty on channel {}", channel.context.channel_id());
7406                                                                                 if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
7407                                                                                         pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
7408                                                                                                 node_id: channel.context.get_counterparty_node_id(),
7409                                                                                                 msg,
7410                                                                                         });
7411                                                                                 }
7412                                                                         } else {
7413                                                                                 log_trace!(self.logger, "Sending channel_ready WITHOUT channel_update for {}", channel.context.channel_id());
7414                                                                         }
7415                                                                 }
7416
7417                                                                 {
7418                                                                         let mut pending_events = self.pending_events.lock().unwrap();
7419                                                                         emit_channel_ready_event!(pending_events, channel);
7420                                                                 }
7421
7422                                                                 if let Some(announcement_sigs) = announcement_sigs {
7423                                                                         log_trace!(self.logger, "Sending announcement_signatures for channel {}", channel.context.channel_id());
7424                                                                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
7425                                                                                 node_id: channel.context.get_counterparty_node_id(),
7426                                                                                 msg: announcement_sigs,
7427                                                                         });
7428                                                                         if let Some(height) = height_opt {
7429                                                                                 if let Some(announcement) = channel.get_signed_channel_announcement(&self.node_signer, self.genesis_hash, height, &self.default_configuration) {
7430                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
7431                                                                                                 msg: announcement,
7432                                                                                                 // Note that announcement_signatures fails if the channel cannot be announced,
7433                                                                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
7434                                                                                                 update_msg: Some(self.get_channel_update_for_broadcast(channel).unwrap()),
7435                                                                                         });
7436                                                                                 }
7437                                                                         }
7438                                                                 }
7439                                                                 if channel.is_our_channel_ready() {
7440                                                                         if let Some(real_scid) = channel.context.get_short_channel_id() {
7441                                                                                 // If we sent a 0conf channel_ready, and now have an SCID, we add it
7442                                                                                 // to the short_to_chan_info map here. Note that we check whether we
7443                                                                                 // can relay using the real SCID at relay-time (i.e.
7444                                                                                 // enforce option_scid_alias then), and if the funding tx is ever
7445                                                                                 // un-confirmed we force-close the channel, ensuring short_to_chan_info
7446                                                                                 // is always consistent.
7447                                                                                 let mut short_to_chan_info = self.short_to_chan_info.write().unwrap();
7448                                                                                 let scid_insert = short_to_chan_info.insert(real_scid, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
7449                                                                                 assert!(scid_insert.is_none() || scid_insert.unwrap() == (channel.context.get_counterparty_node_id(), channel.context.channel_id()),
7450                                                                                         "SCIDs should never collide - ensure you weren't behind by a full {} blocks when creating channels",
7451                                                                                         fake_scid::MAX_SCID_BLOCKS_FROM_NOW);
7452                                                                         }
7453                                                                 }
7454                                                         } else if let Err(reason) = res {
7455                                                                 update_maps_on_chan_removal!(self, &channel.context);
7456                                                                 // It looks like our counterparty went on-chain or funding transaction was
7457                                                                 // reorged out of the main chain. Close the channel.
7458                                                                 failed_channels.push(channel.context.force_shutdown(true));
7459                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&channel) {
7460                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
7461                                                                                 msg: update
7462                                                                         });
7463                                                                 }
7464                                                                 let reason_message = format!("{}", reason);
7465                                                                 self.issue_channel_close_events(&channel.context, reason);
7466                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
7467                                                                         node_id: channel.context.get_counterparty_node_id(),
7468                                                                         action: msgs::ErrorAction::SendErrorMessage { msg: msgs::ErrorMessage {
7469                                                                                 channel_id: channel.context.channel_id(),
7470                                                                                 data: reason_message,
7471                                                                         } },
7472                                                                 });
7473                                                                 return false;
7474                                                         }
7475                                                         true
7476                                                 }
7477                                         }
7478                                 });
7479                         }
7480                 }
7481
7482                 if let Some(height) = height_opt {
7483                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
7484                                 payment.htlcs.retain(|htlc| {
7485                                         // If height is approaching the number of blocks we think it takes us to get
7486                                         // our commitment transaction confirmed before the HTLC expires, plus the
7487                                         // number of blocks we generally consider it to take to do a commitment update,
7488                                         // just give up on it and fail the HTLC.
7489                                         if height >= htlc.cltv_expiry - HTLC_FAIL_BACK_BUFFER {
7490                                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
7491                                                 htlc_msat_height_data.extend_from_slice(&height.to_be_bytes());
7492
7493                                                 timed_out_htlcs.push((HTLCSource::PreviousHopData(htlc.prev_hop.clone()), payment_hash.clone(),
7494                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
7495                                                         HTLCDestination::FailedPayment { payment_hash: payment_hash.clone() }));
7496                                                 false
7497                                         } else { true }
7498                                 });
7499                                 !payment.htlcs.is_empty() // Only retain this entry if htlcs has at least one entry.
7500                         });
7501
7502                         let mut intercepted_htlcs = self.pending_intercepted_htlcs.lock().unwrap();
7503                         intercepted_htlcs.retain(|_, htlc| {
7504                                 if height >= htlc.forward_info.outgoing_cltv_value - HTLC_FAIL_BACK_BUFFER {
7505                                         let prev_hop_data = HTLCSource::PreviousHopData(HTLCPreviousHopData {
7506                                                 short_channel_id: htlc.prev_short_channel_id,
7507                                                 user_channel_id: Some(htlc.prev_user_channel_id),
7508                                                 htlc_id: htlc.prev_htlc_id,
7509                                                 incoming_packet_shared_secret: htlc.forward_info.incoming_shared_secret,
7510                                                 phantom_shared_secret: None,
7511                                                 outpoint: htlc.prev_funding_outpoint,
7512                                         });
7513
7514                                         let requested_forward_scid /* intercept scid */ = match htlc.forward_info.routing {
7515                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
7516                                                 _ => unreachable!(),
7517                                         };
7518                                         timed_out_htlcs.push((prev_hop_data, htlc.forward_info.payment_hash,
7519                                                         HTLCFailReason::from_failure_code(0x2000 | 2),
7520                                                         HTLCDestination::InvalidForward { requested_forward_scid }));
7521                                         log_trace!(self.logger, "Timing out intercepted HTLC with requested forward scid {}", requested_forward_scid);
7522                                         false
7523                                 } else { true }
7524                         });
7525                 }
7526
7527                 self.handle_init_event_channel_failures(failed_channels);
7528
7529                 for (source, payment_hash, reason, destination) in timed_out_htlcs.drain(..) {
7530                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, destination);
7531                 }
7532         }
7533
7534         /// Gets a [`Future`] that completes when this [`ChannelManager`] needs to be persisted.
7535         ///
7536         /// Note that callbacks registered on the [`Future`] MUST NOT call back into this
7537         /// [`ChannelManager`] and should instead register actions to be taken later.
7538         ///
7539         pub fn get_persistable_update_future(&self) -> Future {
7540                 self.persistence_notifier.get_future()
7541         }
7542
7543         #[cfg(any(test, feature = "_test_utils"))]
7544         pub fn get_persistence_condvar_value(&self) -> bool {
7545                 self.persistence_notifier.notify_pending()
7546         }
7547
7548         /// Gets the latest best block which was connected either via the [`chain::Listen`] or
7549         /// [`chain::Confirm`] interfaces.
7550         pub fn current_best_block(&self) -> BestBlock {
7551                 self.best_block.read().unwrap().clone()
7552         }
7553
7554         /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
7555         /// [`ChannelManager`].
7556         pub fn node_features(&self) -> NodeFeatures {
7557                 provided_node_features(&self.default_configuration)
7558         }
7559
7560         /// Fetches the set of [`Bolt11InvoiceFeatures`] flags which are provided by or required by
7561         /// [`ChannelManager`].
7562         ///
7563         /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
7564         /// or not. Thus, this method is not public.
7565         #[cfg(any(feature = "_test_utils", test))]
7566         pub fn invoice_features(&self) -> Bolt11InvoiceFeatures {
7567                 provided_invoice_features(&self.default_configuration)
7568         }
7569
7570         /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
7571         /// [`ChannelManager`].
7572         pub fn channel_features(&self) -> ChannelFeatures {
7573                 provided_channel_features(&self.default_configuration)
7574         }
7575
7576         /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
7577         /// [`ChannelManager`].
7578         pub fn channel_type_features(&self) -> ChannelTypeFeatures {
7579                 provided_channel_type_features(&self.default_configuration)
7580         }
7581
7582         /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
7583         /// [`ChannelManager`].
7584         pub fn init_features(&self) -> InitFeatures {
7585                 provided_init_features(&self.default_configuration)
7586         }
7587 }
7588
7589 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
7590         ChannelMessageHandler for ChannelManager<M, T, ES, NS, SP, F, R, L>
7591 where
7592         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7593         T::Target: BroadcasterInterface,
7594         ES::Target: EntropySource,
7595         NS::Target: NodeSigner,
7596         SP::Target: SignerProvider,
7597         F::Target: FeeEstimator,
7598         R::Target: Router,
7599         L::Target: Logger,
7600 {
7601         fn handle_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) {
7602                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7603                 let _ = handle_error!(self, self.internal_open_channel(counterparty_node_id, msg), *counterparty_node_id);
7604         }
7605
7606         fn handle_open_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannelV2) {
7607                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7608                         "Dual-funded channels not supported".to_owned(),
7609                          msg.temporary_channel_id.clone())), *counterparty_node_id);
7610         }
7611
7612         fn handle_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) {
7613                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7614                 let _ = handle_error!(self, self.internal_accept_channel(counterparty_node_id, msg), *counterparty_node_id);
7615         }
7616
7617         fn handle_accept_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannelV2) {
7618                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7619                         "Dual-funded channels not supported".to_owned(),
7620                          msg.temporary_channel_id.clone())), *counterparty_node_id);
7621         }
7622
7623         fn handle_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) {
7624                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7625                 let _ = handle_error!(self, self.internal_funding_created(counterparty_node_id, msg), *counterparty_node_id);
7626         }
7627
7628         fn handle_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) {
7629                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7630                 let _ = handle_error!(self, self.internal_funding_signed(counterparty_node_id, msg), *counterparty_node_id);
7631         }
7632
7633         fn handle_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) {
7634                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7635                 let _ = handle_error!(self, self.internal_channel_ready(counterparty_node_id, msg), *counterparty_node_id);
7636         }
7637
7638         fn handle_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) {
7639                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7640                 let _ = handle_error!(self, self.internal_shutdown(counterparty_node_id, msg), *counterparty_node_id);
7641         }
7642
7643         fn handle_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) {
7644                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7645                 let _ = handle_error!(self, self.internal_closing_signed(counterparty_node_id, msg), *counterparty_node_id);
7646         }
7647
7648         fn handle_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) {
7649                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7650                 let _ = handle_error!(self, self.internal_update_add_htlc(counterparty_node_id, msg), *counterparty_node_id);
7651         }
7652
7653         fn handle_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) {
7654                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7655                 let _ = handle_error!(self, self.internal_update_fulfill_htlc(counterparty_node_id, msg), *counterparty_node_id);
7656         }
7657
7658         fn handle_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) {
7659                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7660                 let _ = handle_error!(self, self.internal_update_fail_htlc(counterparty_node_id, msg), *counterparty_node_id);
7661         }
7662
7663         fn handle_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) {
7664                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7665                 let _ = handle_error!(self, self.internal_update_fail_malformed_htlc(counterparty_node_id, msg), *counterparty_node_id);
7666         }
7667
7668         fn handle_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) {
7669                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7670                 let _ = handle_error!(self, self.internal_commitment_signed(counterparty_node_id, msg), *counterparty_node_id);
7671         }
7672
7673         fn handle_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) {
7674                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7675                 let _ = handle_error!(self, self.internal_revoke_and_ack(counterparty_node_id, msg), *counterparty_node_id);
7676         }
7677
7678         fn handle_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) {
7679                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7680                 let _ = handle_error!(self, self.internal_update_fee(counterparty_node_id, msg), *counterparty_node_id);
7681         }
7682
7683         fn handle_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) {
7684                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7685                 let _ = handle_error!(self, self.internal_announcement_signatures(counterparty_node_id, msg), *counterparty_node_id);
7686         }
7687
7688         fn handle_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) {
7689                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
7690                         let force_persist = self.process_background_events();
7691                         if let Ok(persist) = handle_error!(self, self.internal_channel_update(counterparty_node_id, msg), *counterparty_node_id) {
7692                                 if force_persist == NotifyOption::DoPersist { NotifyOption::DoPersist } else { persist }
7693                         } else {
7694                                 NotifyOption::SkipPersist
7695                         }
7696                 });
7697         }
7698
7699         fn handle_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) {
7700                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7701                 let _ = handle_error!(self, self.internal_channel_reestablish(counterparty_node_id, msg), *counterparty_node_id);
7702         }
7703
7704         fn peer_disconnected(&self, counterparty_node_id: &PublicKey) {
7705                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7706                 let mut failed_channels = Vec::new();
7707                 let mut per_peer_state = self.per_peer_state.write().unwrap();
7708                 let remove_peer = {
7709                         log_debug!(self.logger, "Marking channels with {} disconnected and generating channel_updates.",
7710                                 log_pubkey!(counterparty_node_id));
7711                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
7712                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7713                                 let peer_state = &mut *peer_state_lock;
7714                                 let pending_msg_events = &mut peer_state.pending_msg_events;
7715                                 peer_state.channel_by_id.retain(|_, phase| {
7716                                         let context = match phase {
7717                                                 ChannelPhase::Funded(chan) => {
7718                                                         chan.remove_uncommitted_htlcs_and_mark_paused(&self.logger);
7719                                                         // We only retain funded channels that are not shutdown.
7720                                                         if !chan.is_shutdown() {
7721                                                                 return true;
7722                                                         }
7723                                                         &chan.context
7724                                                 },
7725                                                 // Unfunded channels will always be removed.
7726                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
7727                                                         &chan.context
7728                                                 },
7729                                                 ChannelPhase::UnfundedInboundV1(chan) => {
7730                                                         &chan.context
7731                                                 },
7732                                         };
7733                                         // Clean up for removal.
7734                                         update_maps_on_chan_removal!(self, &context);
7735                                         self.issue_channel_close_events(&context, ClosureReason::DisconnectedPeer);
7736                                         false
7737                                 });
7738                                 // Note that we don't bother generating any events for pre-accept channels -
7739                                 // they're not considered "channels" yet from the PoV of our events interface.
7740                                 peer_state.inbound_channel_request_by_id.clear();
7741                                 pending_msg_events.retain(|msg| {
7742                                         match msg {
7743                                                 // V1 Channel Establishment
7744                                                 &events::MessageSendEvent::SendAcceptChannel { .. } => false,
7745                                                 &events::MessageSendEvent::SendOpenChannel { .. } => false,
7746                                                 &events::MessageSendEvent::SendFundingCreated { .. } => false,
7747                                                 &events::MessageSendEvent::SendFundingSigned { .. } => false,
7748                                                 // V2 Channel Establishment
7749                                                 &events::MessageSendEvent::SendAcceptChannelV2 { .. } => false,
7750                                                 &events::MessageSendEvent::SendOpenChannelV2 { .. } => false,
7751                                                 // Common Channel Establishment
7752                                                 &events::MessageSendEvent::SendChannelReady { .. } => false,
7753                                                 &events::MessageSendEvent::SendAnnouncementSignatures { .. } => false,
7754                                                 // Interactive Transaction Construction
7755                                                 &events::MessageSendEvent::SendTxAddInput { .. } => false,
7756                                                 &events::MessageSendEvent::SendTxAddOutput { .. } => false,
7757                                                 &events::MessageSendEvent::SendTxRemoveInput { .. } => false,
7758                                                 &events::MessageSendEvent::SendTxRemoveOutput { .. } => false,
7759                                                 &events::MessageSendEvent::SendTxComplete { .. } => false,
7760                                                 &events::MessageSendEvent::SendTxSignatures { .. } => false,
7761                                                 &events::MessageSendEvent::SendTxInitRbf { .. } => false,
7762                                                 &events::MessageSendEvent::SendTxAckRbf { .. } => false,
7763                                                 &events::MessageSendEvent::SendTxAbort { .. } => false,
7764                                                 // Channel Operations
7765                                                 &events::MessageSendEvent::UpdateHTLCs { .. } => false,
7766                                                 &events::MessageSendEvent::SendRevokeAndACK { .. } => false,
7767                                                 &events::MessageSendEvent::SendClosingSigned { .. } => false,
7768                                                 &events::MessageSendEvent::SendShutdown { .. } => false,
7769                                                 &events::MessageSendEvent::SendChannelReestablish { .. } => false,
7770                                                 &events::MessageSendEvent::HandleError { .. } => false,
7771                                                 // Gossip
7772                                                 &events::MessageSendEvent::SendChannelAnnouncement { .. } => false,
7773                                                 &events::MessageSendEvent::BroadcastChannelAnnouncement { .. } => true,
7774                                                 &events::MessageSendEvent::BroadcastChannelUpdate { .. } => true,
7775                                                 &events::MessageSendEvent::BroadcastNodeAnnouncement { .. } => true,
7776                                                 &events::MessageSendEvent::SendChannelUpdate { .. } => false,
7777                                                 &events::MessageSendEvent::SendChannelRangeQuery { .. } => false,
7778                                                 &events::MessageSendEvent::SendShortIdsQuery { .. } => false,
7779                                                 &events::MessageSendEvent::SendReplyChannelRange { .. } => false,
7780                                                 &events::MessageSendEvent::SendGossipTimestampFilter { .. } => false,
7781                                         }
7782                                 });
7783                                 debug_assert!(peer_state.is_connected, "A disconnected peer cannot disconnect");
7784                                 peer_state.is_connected = false;
7785                                 peer_state.ok_to_remove(true)
7786                         } else { debug_assert!(false, "Unconnected peer disconnected"); true }
7787                 };
7788                 if remove_peer {
7789                         per_peer_state.remove(counterparty_node_id);
7790                 }
7791                 mem::drop(per_peer_state);
7792
7793                 for failure in failed_channels.drain(..) {
7794                         self.finish_force_close_channel(failure);
7795                 }
7796         }
7797
7798         fn peer_connected(&self, counterparty_node_id: &PublicKey, init_msg: &msgs::Init, inbound: bool) -> Result<(), ()> {
7799                 if !init_msg.features.supports_static_remote_key() {
7800                         log_debug!(self.logger, "Peer {} does not support static remote key, disconnecting", log_pubkey!(counterparty_node_id));
7801                         return Err(());
7802                 }
7803
7804                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7805
7806                 // If we have too many peers connected which don't have funded channels, disconnect the
7807                 // peer immediately (as long as it doesn't have funded channels). If we have a bunch of
7808                 // unfunded channels taking up space in memory for disconnected peers, we still let new
7809                 // peers connect, but we'll reject new channels from them.
7810                 let connected_peers_without_funded_channels = self.peers_without_funded_channels(|node| node.is_connected);
7811                 let inbound_peer_limited = inbound && connected_peers_without_funded_channels >= MAX_NO_CHANNEL_PEERS;
7812
7813                 {
7814                         let mut peer_state_lock = self.per_peer_state.write().unwrap();
7815                         match peer_state_lock.entry(counterparty_node_id.clone()) {
7816                                 hash_map::Entry::Vacant(e) => {
7817                                         if inbound_peer_limited {
7818                                                 return Err(());
7819                                         }
7820                                         e.insert(Mutex::new(PeerState {
7821                                                 channel_by_id: HashMap::new(),
7822                                                 inbound_channel_request_by_id: HashMap::new(),
7823                                                 latest_features: init_msg.features.clone(),
7824                                                 pending_msg_events: Vec::new(),
7825                                                 in_flight_monitor_updates: BTreeMap::new(),
7826                                                 monitor_update_blocked_actions: BTreeMap::new(),
7827                                                 actions_blocking_raa_monitor_updates: BTreeMap::new(),
7828                                                 is_connected: true,
7829                                         }));
7830                                 },
7831                                 hash_map::Entry::Occupied(e) => {
7832                                         let mut peer_state = e.get().lock().unwrap();
7833                                         peer_state.latest_features = init_msg.features.clone();
7834
7835                                         let best_block_height = self.best_block.read().unwrap().height();
7836                                         if inbound_peer_limited &&
7837                                                 Self::unfunded_channel_count(&*peer_state, best_block_height) ==
7838                                                 peer_state.channel_by_id.len()
7839                                         {
7840                                                 return Err(());
7841                                         }
7842
7843                                         debug_assert!(!peer_state.is_connected, "A peer shouldn't be connected twice");
7844                                         peer_state.is_connected = true;
7845                                 },
7846                         }
7847                 }
7848
7849                 log_debug!(self.logger, "Generating channel_reestablish events for {}", log_pubkey!(counterparty_node_id));
7850
7851                 let per_peer_state = self.per_peer_state.read().unwrap();
7852                 if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
7853                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7854                         let peer_state = &mut *peer_state_lock;
7855                         let pending_msg_events = &mut peer_state.pending_msg_events;
7856
7857                         peer_state.channel_by_id.iter_mut().filter_map(|(_, phase)|
7858                                 if let ChannelPhase::Funded(chan) = phase { Some(chan) } else {
7859                                         // Since unfunded channel maps are cleared upon disconnecting a peer, and they're not persisted
7860                                         // (so won't be recovered after a crash), they shouldn't exist here and we would never need to
7861                                         // worry about closing and removing them.
7862                                         debug_assert!(false);
7863                                         None
7864                                 }
7865                         ).for_each(|chan| {
7866                                 pending_msg_events.push(events::MessageSendEvent::SendChannelReestablish {
7867                                         node_id: chan.context.get_counterparty_node_id(),
7868                                         msg: chan.get_channel_reestablish(&self.logger),
7869                                 });
7870                         });
7871                 }
7872                 //TODO: Also re-broadcast announcement_signatures
7873                 Ok(())
7874         }
7875
7876         fn handle_error(&self, counterparty_node_id: &PublicKey, msg: &msgs::ErrorMessage) {
7877                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7878
7879                 match &msg.data as &str {
7880                         "cannot co-op close channel w/ active htlcs"|
7881                         "link failed to shutdown" =>
7882                         {
7883                                 // LND hasn't properly handled shutdown messages ever, and force-closes any time we
7884                                 // send one while HTLCs are still present. The issue is tracked at
7885                                 // https://github.com/lightningnetwork/lnd/issues/6039 and has had multiple patches
7886                                 // to fix it but none so far have managed to land upstream. The issue appears to be
7887                                 // very low priority for the LND team despite being marked "P1".
7888                                 // We're not going to bother handling this in a sensible way, instead simply
7889                                 // repeating the Shutdown message on repeat until morale improves.
7890                                 if !msg.channel_id.is_zero() {
7891                                         let per_peer_state = self.per_peer_state.read().unwrap();
7892                                         let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
7893                                         if peer_state_mutex_opt.is_none() { return; }
7894                                         let mut peer_state = peer_state_mutex_opt.unwrap().lock().unwrap();
7895                                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get(&msg.channel_id) {
7896                                                 if let Some(msg) = chan.get_outbound_shutdown() {
7897                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
7898                                                                 node_id: *counterparty_node_id,
7899                                                                 msg,
7900                                                         });
7901                                                 }
7902                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::HandleError {
7903                                                         node_id: *counterparty_node_id,
7904                                                         action: msgs::ErrorAction::SendWarningMessage {
7905                                                                 msg: msgs::WarningMessage {
7906                                                                         channel_id: msg.channel_id,
7907                                                                         data: "You appear to be exhibiting LND bug 6039, we'll keep sending you shutdown messages until you handle them correctly".to_owned()
7908                                                                 },
7909                                                                 log_level: Level::Trace,
7910                                                         }
7911                                                 });
7912                                         }
7913                                 }
7914                                 return;
7915                         }
7916                         _ => {}
7917                 }
7918
7919                 if msg.channel_id.is_zero() {
7920                         let channel_ids: Vec<ChannelId> = {
7921                                 let per_peer_state = self.per_peer_state.read().unwrap();
7922                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
7923                                 if peer_state_mutex_opt.is_none() { return; }
7924                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
7925                                 let peer_state = &mut *peer_state_lock;
7926                                 // Note that we don't bother generating any events for pre-accept channels -
7927                                 // they're not considered "channels" yet from the PoV of our events interface.
7928                                 peer_state.inbound_channel_request_by_id.clear();
7929                                 peer_state.channel_by_id.keys().cloned().collect()
7930                         };
7931                         for channel_id in channel_ids {
7932                                 // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
7933                                 let _ = self.force_close_channel_with_peer(&channel_id, counterparty_node_id, Some(&msg.data), true);
7934                         }
7935                 } else {
7936                         {
7937                                 // First check if we can advance the channel type and try again.
7938                                 let per_peer_state = self.per_peer_state.read().unwrap();
7939                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
7940                                 if peer_state_mutex_opt.is_none() { return; }
7941                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
7942                                 let peer_state = &mut *peer_state_lock;
7943                                 if let Some(ChannelPhase::UnfundedOutboundV1(chan)) = peer_state.channel_by_id.get_mut(&msg.channel_id) {
7944                                         if let Ok(msg) = chan.maybe_handle_error_without_close(self.genesis_hash, &self.fee_estimator) {
7945                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
7946                                                         node_id: *counterparty_node_id,
7947                                                         msg,
7948                                                 });
7949                                                 return;
7950                                         }
7951                                 }
7952                         }
7953
7954                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
7955                         let _ = self.force_close_channel_with_peer(&msg.channel_id, counterparty_node_id, Some(&msg.data), true);
7956                 }
7957         }
7958
7959         fn provided_node_features(&self) -> NodeFeatures {
7960                 provided_node_features(&self.default_configuration)
7961         }
7962
7963         fn provided_init_features(&self, _their_init_features: &PublicKey) -> InitFeatures {
7964                 provided_init_features(&self.default_configuration)
7965         }
7966
7967         fn get_genesis_hashes(&self) -> Option<Vec<ChainHash>> {
7968                 Some(vec![ChainHash::from(&self.genesis_hash[..])])
7969         }
7970
7971         fn handle_tx_add_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddInput) {
7972                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7973                         "Dual-funded channels not supported".to_owned(),
7974                          msg.channel_id.clone())), *counterparty_node_id);
7975         }
7976
7977         fn handle_tx_add_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddOutput) {
7978                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7979                         "Dual-funded channels not supported".to_owned(),
7980                          msg.channel_id.clone())), *counterparty_node_id);
7981         }
7982
7983         fn handle_tx_remove_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveInput) {
7984                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7985                         "Dual-funded channels not supported".to_owned(),
7986                          msg.channel_id.clone())), *counterparty_node_id);
7987         }
7988
7989         fn handle_tx_remove_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveOutput) {
7990                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7991                         "Dual-funded channels not supported".to_owned(),
7992                          msg.channel_id.clone())), *counterparty_node_id);
7993         }
7994
7995         fn handle_tx_complete(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxComplete) {
7996                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7997                         "Dual-funded channels not supported".to_owned(),
7998                          msg.channel_id.clone())), *counterparty_node_id);
7999         }
8000
8001         fn handle_tx_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxSignatures) {
8002                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8003                         "Dual-funded channels not supported".to_owned(),
8004                          msg.channel_id.clone())), *counterparty_node_id);
8005         }
8006
8007         fn handle_tx_init_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxInitRbf) {
8008                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8009                         "Dual-funded channels not supported".to_owned(),
8010                          msg.channel_id.clone())), *counterparty_node_id);
8011         }
8012
8013         fn handle_tx_ack_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAckRbf) {
8014                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8015                         "Dual-funded channels not supported".to_owned(),
8016                          msg.channel_id.clone())), *counterparty_node_id);
8017         }
8018
8019         fn handle_tx_abort(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAbort) {
8020                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8021                         "Dual-funded channels not supported".to_owned(),
8022                          msg.channel_id.clone())), *counterparty_node_id);
8023         }
8024 }
8025
8026 /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
8027 /// [`ChannelManager`].
8028 pub(crate) fn provided_node_features(config: &UserConfig) -> NodeFeatures {
8029         let mut node_features = provided_init_features(config).to_context();
8030         node_features.set_keysend_optional();
8031         node_features
8032 }
8033
8034 /// Fetches the set of [`Bolt11InvoiceFeatures`] flags which are provided by or required by
8035 /// [`ChannelManager`].
8036 ///
8037 /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
8038 /// or not. Thus, this method is not public.
8039 #[cfg(any(feature = "_test_utils", test))]
8040 pub(crate) fn provided_invoice_features(config: &UserConfig) -> Bolt11InvoiceFeatures {
8041         provided_init_features(config).to_context()
8042 }
8043
8044 /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
8045 /// [`ChannelManager`].
8046 pub(crate) fn provided_channel_features(config: &UserConfig) -> ChannelFeatures {
8047         provided_init_features(config).to_context()
8048 }
8049
8050 /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
8051 /// [`ChannelManager`].
8052 pub(crate) fn provided_channel_type_features(config: &UserConfig) -> ChannelTypeFeatures {
8053         ChannelTypeFeatures::from_init(&provided_init_features(config))
8054 }
8055
8056 /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
8057 /// [`ChannelManager`].
8058 pub fn provided_init_features(config: &UserConfig) -> InitFeatures {
8059         // Note that if new features are added here which other peers may (eventually) require, we
8060         // should also add the corresponding (optional) bit to the [`ChannelMessageHandler`] impl for
8061         // [`ErroringMessageHandler`].
8062         let mut features = InitFeatures::empty();
8063         features.set_data_loss_protect_required();
8064         features.set_upfront_shutdown_script_optional();
8065         features.set_variable_length_onion_required();
8066         features.set_static_remote_key_required();
8067         features.set_payment_secret_required();
8068         features.set_basic_mpp_optional();
8069         features.set_wumbo_optional();
8070         features.set_shutdown_any_segwit_optional();
8071         features.set_channel_type_optional();
8072         features.set_scid_privacy_optional();
8073         features.set_zero_conf_optional();
8074         if config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx {
8075                 features.set_anchors_zero_fee_htlc_tx_optional();
8076         }
8077         features
8078 }
8079
8080 const SERIALIZATION_VERSION: u8 = 1;
8081 const MIN_SERIALIZATION_VERSION: u8 = 1;
8082
8083 impl_writeable_tlv_based!(CounterpartyForwardingInfo, {
8084         (2, fee_base_msat, required),
8085         (4, fee_proportional_millionths, required),
8086         (6, cltv_expiry_delta, required),
8087 });
8088
8089 impl_writeable_tlv_based!(ChannelCounterparty, {
8090         (2, node_id, required),
8091         (4, features, required),
8092         (6, unspendable_punishment_reserve, required),
8093         (8, forwarding_info, option),
8094         (9, outbound_htlc_minimum_msat, option),
8095         (11, outbound_htlc_maximum_msat, option),
8096 });
8097
8098 impl Writeable for ChannelDetails {
8099         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8100                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
8101                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
8102                 let user_channel_id_low = self.user_channel_id as u64;
8103                 let user_channel_id_high_opt = Some((self.user_channel_id >> 64) as u64);
8104                 write_tlv_fields!(writer, {
8105                         (1, self.inbound_scid_alias, option),
8106                         (2, self.channel_id, required),
8107                         (3, self.channel_type, option),
8108                         (4, self.counterparty, required),
8109                         (5, self.outbound_scid_alias, option),
8110                         (6, self.funding_txo, option),
8111                         (7, self.config, option),
8112                         (8, self.short_channel_id, option),
8113                         (9, self.confirmations, option),
8114                         (10, self.channel_value_satoshis, required),
8115                         (12, self.unspendable_punishment_reserve, option),
8116                         (14, user_channel_id_low, required),
8117                         (16, self.next_outbound_htlc_limit_msat, required),  // Forwards compatibility for removed balance_msat field.
8118                         (18, self.outbound_capacity_msat, required),
8119                         (19, self.next_outbound_htlc_limit_msat, required),
8120                         (20, self.inbound_capacity_msat, required),
8121                         (21, self.next_outbound_htlc_minimum_msat, required),
8122                         (22, self.confirmations_required, option),
8123                         (24, self.force_close_spend_delay, option),
8124                         (26, self.is_outbound, required),
8125                         (28, self.is_channel_ready, required),
8126                         (30, self.is_usable, required),
8127                         (32, self.is_public, required),
8128                         (33, self.inbound_htlc_minimum_msat, option),
8129                         (35, self.inbound_htlc_maximum_msat, option),
8130                         (37, user_channel_id_high_opt, option),
8131                         (39, self.feerate_sat_per_1000_weight, option),
8132                         (41, self.channel_shutdown_state, option),
8133                 });
8134                 Ok(())
8135         }
8136 }
8137
8138 impl Readable for ChannelDetails {
8139         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8140                 _init_and_read_len_prefixed_tlv_fields!(reader, {
8141                         (1, inbound_scid_alias, option),
8142                         (2, channel_id, required),
8143                         (3, channel_type, option),
8144                         (4, counterparty, required),
8145                         (5, outbound_scid_alias, option),
8146                         (6, funding_txo, option),
8147                         (7, config, option),
8148                         (8, short_channel_id, option),
8149                         (9, confirmations, option),
8150                         (10, channel_value_satoshis, required),
8151                         (12, unspendable_punishment_reserve, option),
8152                         (14, user_channel_id_low, required),
8153                         (16, _balance_msat, option),  // Backwards compatibility for removed balance_msat field.
8154                         (18, outbound_capacity_msat, required),
8155                         // Note that by the time we get past the required read above, outbound_capacity_msat will be
8156                         // filled in, so we can safely unwrap it here.
8157                         (19, next_outbound_htlc_limit_msat, (default_value, outbound_capacity_msat.0.unwrap() as u64)),
8158                         (20, inbound_capacity_msat, required),
8159                         (21, next_outbound_htlc_minimum_msat, (default_value, 0)),
8160                         (22, confirmations_required, option),
8161                         (24, force_close_spend_delay, option),
8162                         (26, is_outbound, required),
8163                         (28, is_channel_ready, required),
8164                         (30, is_usable, required),
8165                         (32, is_public, required),
8166                         (33, inbound_htlc_minimum_msat, option),
8167                         (35, inbound_htlc_maximum_msat, option),
8168                         (37, user_channel_id_high_opt, option),
8169                         (39, feerate_sat_per_1000_weight, option),
8170                         (41, channel_shutdown_state, option),
8171                 });
8172
8173                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
8174                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
8175                 let user_channel_id_low: u64 = user_channel_id_low.0.unwrap();
8176                 let user_channel_id = user_channel_id_low as u128 +
8177                         ((user_channel_id_high_opt.unwrap_or(0 as u64) as u128) << 64);
8178
8179                 let _balance_msat: Option<u64> = _balance_msat;
8180
8181                 Ok(Self {
8182                         inbound_scid_alias,
8183                         channel_id: channel_id.0.unwrap(),
8184                         channel_type,
8185                         counterparty: counterparty.0.unwrap(),
8186                         outbound_scid_alias,
8187                         funding_txo,
8188                         config,
8189                         short_channel_id,
8190                         channel_value_satoshis: channel_value_satoshis.0.unwrap(),
8191                         unspendable_punishment_reserve,
8192                         user_channel_id,
8193                         outbound_capacity_msat: outbound_capacity_msat.0.unwrap(),
8194                         next_outbound_htlc_limit_msat: next_outbound_htlc_limit_msat.0.unwrap(),
8195                         next_outbound_htlc_minimum_msat: next_outbound_htlc_minimum_msat.0.unwrap(),
8196                         inbound_capacity_msat: inbound_capacity_msat.0.unwrap(),
8197                         confirmations_required,
8198                         confirmations,
8199                         force_close_spend_delay,
8200                         is_outbound: is_outbound.0.unwrap(),
8201                         is_channel_ready: is_channel_ready.0.unwrap(),
8202                         is_usable: is_usable.0.unwrap(),
8203                         is_public: is_public.0.unwrap(),
8204                         inbound_htlc_minimum_msat,
8205                         inbound_htlc_maximum_msat,
8206                         feerate_sat_per_1000_weight,
8207                         channel_shutdown_state,
8208                 })
8209         }
8210 }
8211
8212 impl_writeable_tlv_based!(PhantomRouteHints, {
8213         (2, channels, required_vec),
8214         (4, phantom_scid, required),
8215         (6, real_node_pubkey, required),
8216 });
8217
8218 impl_writeable_tlv_based_enum!(PendingHTLCRouting,
8219         (0, Forward) => {
8220                 (0, onion_packet, required),
8221                 (2, short_channel_id, required),
8222         },
8223         (1, Receive) => {
8224                 (0, payment_data, required),
8225                 (1, phantom_shared_secret, option),
8226                 (2, incoming_cltv_expiry, required),
8227                 (3, payment_metadata, option),
8228                 (5, custom_tlvs, optional_vec),
8229         },
8230         (2, ReceiveKeysend) => {
8231                 (0, payment_preimage, required),
8232                 (2, incoming_cltv_expiry, required),
8233                 (3, payment_metadata, option),
8234                 (4, payment_data, option), // Added in 0.0.116
8235                 (5, custom_tlvs, optional_vec),
8236         },
8237 ;);
8238
8239 impl_writeable_tlv_based!(PendingHTLCInfo, {
8240         (0, routing, required),
8241         (2, incoming_shared_secret, required),
8242         (4, payment_hash, required),
8243         (6, outgoing_amt_msat, required),
8244         (8, outgoing_cltv_value, required),
8245         (9, incoming_amt_msat, option),
8246         (10, skimmed_fee_msat, option),
8247 });
8248
8249
8250 impl Writeable for HTLCFailureMsg {
8251         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8252                 match self {
8253                         HTLCFailureMsg::Relay(msgs::UpdateFailHTLC { channel_id, htlc_id, reason }) => {
8254                                 0u8.write(writer)?;
8255                                 channel_id.write(writer)?;
8256                                 htlc_id.write(writer)?;
8257                                 reason.write(writer)?;
8258                         },
8259                         HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
8260                                 channel_id, htlc_id, sha256_of_onion, failure_code
8261                         }) => {
8262                                 1u8.write(writer)?;
8263                                 channel_id.write(writer)?;
8264                                 htlc_id.write(writer)?;
8265                                 sha256_of_onion.write(writer)?;
8266                                 failure_code.write(writer)?;
8267                         },
8268                 }
8269                 Ok(())
8270         }
8271 }
8272
8273 impl Readable for HTLCFailureMsg {
8274         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8275                 let id: u8 = Readable::read(reader)?;
8276                 match id {
8277                         0 => {
8278                                 Ok(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
8279                                         channel_id: Readable::read(reader)?,
8280                                         htlc_id: Readable::read(reader)?,
8281                                         reason: Readable::read(reader)?,
8282                                 }))
8283                         },
8284                         1 => {
8285                                 Ok(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
8286                                         channel_id: Readable::read(reader)?,
8287                                         htlc_id: Readable::read(reader)?,
8288                                         sha256_of_onion: Readable::read(reader)?,
8289                                         failure_code: Readable::read(reader)?,
8290                                 }))
8291                         },
8292                         // In versions prior to 0.0.101, HTLCFailureMsg objects were written with type 0 or 1 but
8293                         // weren't length-prefixed and thus didn't support reading the TLV stream suffix of the network
8294                         // messages contained in the variants.
8295                         // In version 0.0.101, support for reading the variants with these types was added, and
8296                         // we should migrate to writing these variants when UpdateFailHTLC or
8297                         // UpdateFailMalformedHTLC get TLV fields.
8298                         2 => {
8299                                 let length: BigSize = Readable::read(reader)?;
8300                                 let mut s = FixedLengthReader::new(reader, length.0);
8301                                 let res = Readable::read(&mut s)?;
8302                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
8303                                 Ok(HTLCFailureMsg::Relay(res))
8304                         },
8305                         3 => {
8306                                 let length: BigSize = Readable::read(reader)?;
8307                                 let mut s = FixedLengthReader::new(reader, length.0);
8308                                 let res = Readable::read(&mut s)?;
8309                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
8310                                 Ok(HTLCFailureMsg::Malformed(res))
8311                         },
8312                         _ => Err(DecodeError::UnknownRequiredFeature),
8313                 }
8314         }
8315 }
8316
8317 impl_writeable_tlv_based_enum!(PendingHTLCStatus, ;
8318         (0, Forward),
8319         (1, Fail),
8320 );
8321
8322 impl_writeable_tlv_based!(HTLCPreviousHopData, {
8323         (0, short_channel_id, required),
8324         (1, phantom_shared_secret, option),
8325         (2, outpoint, required),
8326         (4, htlc_id, required),
8327         (6, incoming_packet_shared_secret, required),
8328         (7, user_channel_id, option),
8329 });
8330
8331 impl Writeable for ClaimableHTLC {
8332         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8333                 let (payment_data, keysend_preimage) = match &self.onion_payload {
8334                         OnionPayload::Invoice { _legacy_hop_data } => (_legacy_hop_data.as_ref(), None),
8335                         OnionPayload::Spontaneous(preimage) => (None, Some(preimage)),
8336                 };
8337                 write_tlv_fields!(writer, {
8338                         (0, self.prev_hop, required),
8339                         (1, self.total_msat, required),
8340                         (2, self.value, required),
8341                         (3, self.sender_intended_value, required),
8342                         (4, payment_data, option),
8343                         (5, self.total_value_received, option),
8344                         (6, self.cltv_expiry, required),
8345                         (8, keysend_preimage, option),
8346                         (10, self.counterparty_skimmed_fee_msat, option),
8347                 });
8348                 Ok(())
8349         }
8350 }
8351
8352 impl Readable for ClaimableHTLC {
8353         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8354                 _init_and_read_len_prefixed_tlv_fields!(reader, {
8355                         (0, prev_hop, required),
8356                         (1, total_msat, option),
8357                         (2, value_ser, required),
8358                         (3, sender_intended_value, option),
8359                         (4, payment_data_opt, option),
8360                         (5, total_value_received, option),
8361                         (6, cltv_expiry, required),
8362                         (8, keysend_preimage, option),
8363                         (10, counterparty_skimmed_fee_msat, option),
8364                 });
8365                 let payment_data: Option<msgs::FinalOnionHopData> = payment_data_opt;
8366                 let value = value_ser.0.unwrap();
8367                 let onion_payload = match keysend_preimage {
8368                         Some(p) => {
8369                                 if payment_data.is_some() {
8370                                         return Err(DecodeError::InvalidValue)
8371                                 }
8372                                 if total_msat.is_none() {
8373                                         total_msat = Some(value);
8374                                 }
8375                                 OnionPayload::Spontaneous(p)
8376                         },
8377                         None => {
8378                                 if total_msat.is_none() {
8379                                         if payment_data.is_none() {
8380                                                 return Err(DecodeError::InvalidValue)
8381                                         }
8382                                         total_msat = Some(payment_data.as_ref().unwrap().total_msat);
8383                                 }
8384                                 OnionPayload::Invoice { _legacy_hop_data: payment_data }
8385                         },
8386                 };
8387                 Ok(Self {
8388                         prev_hop: prev_hop.0.unwrap(),
8389                         timer_ticks: 0,
8390                         value,
8391                         sender_intended_value: sender_intended_value.unwrap_or(value),
8392                         total_value_received,
8393                         total_msat: total_msat.unwrap(),
8394                         onion_payload,
8395                         cltv_expiry: cltv_expiry.0.unwrap(),
8396                         counterparty_skimmed_fee_msat,
8397                 })
8398         }
8399 }
8400
8401 impl Readable for HTLCSource {
8402         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8403                 let id: u8 = Readable::read(reader)?;
8404                 match id {
8405                         0 => {
8406                                 let mut session_priv: crate::util::ser::RequiredWrapper<SecretKey> = crate::util::ser::RequiredWrapper(None);
8407                                 let mut first_hop_htlc_msat: u64 = 0;
8408                                 let mut path_hops = Vec::new();
8409                                 let mut payment_id = None;
8410                                 let mut payment_params: Option<PaymentParameters> = None;
8411                                 let mut blinded_tail: Option<BlindedTail> = None;
8412                                 read_tlv_fields!(reader, {
8413                                         (0, session_priv, required),
8414                                         (1, payment_id, option),
8415                                         (2, first_hop_htlc_msat, required),
8416                                         (4, path_hops, required_vec),
8417                                         (5, payment_params, (option: ReadableArgs, 0)),
8418                                         (6, blinded_tail, option),
8419                                 });
8420                                 if payment_id.is_none() {
8421                                         // For backwards compat, if there was no payment_id written, use the session_priv bytes
8422                                         // instead.
8423                                         payment_id = Some(PaymentId(*session_priv.0.unwrap().as_ref()));
8424                                 }
8425                                 let path = Path { hops: path_hops, blinded_tail };
8426                                 if path.hops.len() == 0 {
8427                                         return Err(DecodeError::InvalidValue);
8428                                 }
8429                                 if let Some(params) = payment_params.as_mut() {
8430                                         if let Payee::Clear { ref mut final_cltv_expiry_delta, .. } = params.payee {
8431                                                 if final_cltv_expiry_delta == &0 {
8432                                                         *final_cltv_expiry_delta = path.final_cltv_expiry_delta().ok_or(DecodeError::InvalidValue)?;
8433                                                 }
8434                                         }
8435                                 }
8436                                 Ok(HTLCSource::OutboundRoute {
8437                                         session_priv: session_priv.0.unwrap(),
8438                                         first_hop_htlc_msat,
8439                                         path,
8440                                         payment_id: payment_id.unwrap(),
8441                                 })
8442                         }
8443                         1 => Ok(HTLCSource::PreviousHopData(Readable::read(reader)?)),
8444                         _ => Err(DecodeError::UnknownRequiredFeature),
8445                 }
8446         }
8447 }
8448
8449 impl Writeable for HTLCSource {
8450         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), crate::io::Error> {
8451                 match self {
8452                         HTLCSource::OutboundRoute { ref session_priv, ref first_hop_htlc_msat, ref path, payment_id } => {
8453                                 0u8.write(writer)?;
8454                                 let payment_id_opt = Some(payment_id);
8455                                 write_tlv_fields!(writer, {
8456                                         (0, session_priv, required),
8457                                         (1, payment_id_opt, option),
8458                                         (2, first_hop_htlc_msat, required),
8459                                         // 3 was previously used to write a PaymentSecret for the payment.
8460                                         (4, path.hops, required_vec),
8461                                         (5, None::<PaymentParameters>, option), // payment_params in LDK versions prior to 0.0.115
8462                                         (6, path.blinded_tail, option),
8463                                  });
8464                         }
8465                         HTLCSource::PreviousHopData(ref field) => {
8466                                 1u8.write(writer)?;
8467                                 field.write(writer)?;
8468                         }
8469                 }
8470                 Ok(())
8471         }
8472 }
8473
8474 impl_writeable_tlv_based!(PendingAddHTLCInfo, {
8475         (0, forward_info, required),
8476         (1, prev_user_channel_id, (default_value, 0)),
8477         (2, prev_short_channel_id, required),
8478         (4, prev_htlc_id, required),
8479         (6, prev_funding_outpoint, required),
8480 });
8481
8482 impl_writeable_tlv_based_enum!(HTLCForwardInfo,
8483         (1, FailHTLC) => {
8484                 (0, htlc_id, required),
8485                 (2, err_packet, required),
8486         };
8487         (0, AddHTLC)
8488 );
8489
8490 impl_writeable_tlv_based!(PendingInboundPayment, {
8491         (0, payment_secret, required),
8492         (2, expiry_time, required),
8493         (4, user_payment_id, required),
8494         (6, payment_preimage, required),
8495         (8, min_value_msat, required),
8496 });
8497
8498 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>
8499 where
8500         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8501         T::Target: BroadcasterInterface,
8502         ES::Target: EntropySource,
8503         NS::Target: NodeSigner,
8504         SP::Target: SignerProvider,
8505         F::Target: FeeEstimator,
8506         R::Target: Router,
8507         L::Target: Logger,
8508 {
8509         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8510                 let _consistency_lock = self.total_consistency_lock.write().unwrap();
8511
8512                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
8513
8514                 self.genesis_hash.write(writer)?;
8515                 {
8516                         let best_block = self.best_block.read().unwrap();
8517                         best_block.height().write(writer)?;
8518                         best_block.block_hash().write(writer)?;
8519                 }
8520
8521                 let mut serializable_peer_count: u64 = 0;
8522                 {
8523                         let per_peer_state = self.per_peer_state.read().unwrap();
8524                         let mut number_of_funded_channels = 0;
8525                         for (_, peer_state_mutex) in per_peer_state.iter() {
8526                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8527                                 let peer_state = &mut *peer_state_lock;
8528                                 if !peer_state.ok_to_remove(false) {
8529                                         serializable_peer_count += 1;
8530                                 }
8531
8532                                 number_of_funded_channels += peer_state.channel_by_id.iter().filter(
8533                                         |(_, phase)| if let ChannelPhase::Funded(chan) = phase { chan.context.is_funding_initiated() } else { false }
8534                                 ).count();
8535                         }
8536
8537                         (number_of_funded_channels as u64).write(writer)?;
8538
8539                         for (_, peer_state_mutex) in per_peer_state.iter() {
8540                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8541                                 let peer_state = &mut *peer_state_lock;
8542                                 for channel in peer_state.channel_by_id.iter().filter_map(
8543                                         |(_, phase)| if let ChannelPhase::Funded(channel) = phase {
8544                                                 if channel.context.is_funding_initiated() { Some(channel) } else { None }
8545                                         } else { None }
8546                                 ) {
8547                                         channel.write(writer)?;
8548                                 }
8549                         }
8550                 }
8551
8552                 {
8553                         let forward_htlcs = self.forward_htlcs.lock().unwrap();
8554                         (forward_htlcs.len() as u64).write(writer)?;
8555                         for (short_channel_id, pending_forwards) in forward_htlcs.iter() {
8556                                 short_channel_id.write(writer)?;
8557                                 (pending_forwards.len() as u64).write(writer)?;
8558                                 for forward in pending_forwards {
8559                                         forward.write(writer)?;
8560                                 }
8561                         }
8562                 }
8563
8564                 let per_peer_state = self.per_peer_state.write().unwrap();
8565
8566                 let pending_inbound_payments = self.pending_inbound_payments.lock().unwrap();
8567                 let claimable_payments = self.claimable_payments.lock().unwrap();
8568                 let pending_outbound_payments = self.pending_outbound_payments.pending_outbound_payments.lock().unwrap();
8569
8570                 let mut htlc_purposes: Vec<&events::PaymentPurpose> = Vec::new();
8571                 let mut htlc_onion_fields: Vec<&_> = Vec::new();
8572                 (claimable_payments.claimable_payments.len() as u64).write(writer)?;
8573                 for (payment_hash, payment) in claimable_payments.claimable_payments.iter() {
8574                         payment_hash.write(writer)?;
8575                         (payment.htlcs.len() as u64).write(writer)?;
8576                         for htlc in payment.htlcs.iter() {
8577                                 htlc.write(writer)?;
8578                         }
8579                         htlc_purposes.push(&payment.purpose);
8580                         htlc_onion_fields.push(&payment.onion_fields);
8581                 }
8582
8583                 let mut monitor_update_blocked_actions_per_peer = None;
8584                 let mut peer_states = Vec::new();
8585                 for (_, peer_state_mutex) in per_peer_state.iter() {
8586                         // Because we're holding the owning `per_peer_state` write lock here there's no chance
8587                         // of a lockorder violation deadlock - no other thread can be holding any
8588                         // per_peer_state lock at all.
8589                         peer_states.push(peer_state_mutex.unsafe_well_ordered_double_lock_self());
8590                 }
8591
8592                 (serializable_peer_count).write(writer)?;
8593                 for ((peer_pubkey, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
8594                         // Peers which we have no channels to should be dropped once disconnected. As we
8595                         // disconnect all peers when shutting down and serializing the ChannelManager, we
8596                         // consider all peers as disconnected here. There's therefore no need write peers with
8597                         // no channels.
8598                         if !peer_state.ok_to_remove(false) {
8599                                 peer_pubkey.write(writer)?;
8600                                 peer_state.latest_features.write(writer)?;
8601                                 if !peer_state.monitor_update_blocked_actions.is_empty() {
8602                                         monitor_update_blocked_actions_per_peer
8603                                                 .get_or_insert_with(Vec::new)
8604                                                 .push((*peer_pubkey, &peer_state.monitor_update_blocked_actions));
8605                                 }
8606                         }
8607                 }
8608
8609                 let events = self.pending_events.lock().unwrap();
8610                 // LDK versions prior to 0.0.115 don't support post-event actions, thus if there's no
8611                 // actions at all, skip writing the required TLV. Otherwise, pre-0.0.115 versions will
8612                 // refuse to read the new ChannelManager.
8613                 let events_not_backwards_compatible = events.iter().any(|(_, action)| action.is_some());
8614                 if events_not_backwards_compatible {
8615                         // If we're gonna write a even TLV that will overwrite our events anyway we might as
8616                         // well save the space and not write any events here.
8617                         0u64.write(writer)?;
8618                 } else {
8619                         (events.len() as u64).write(writer)?;
8620                         for (event, _) in events.iter() {
8621                                 event.write(writer)?;
8622                         }
8623                 }
8624
8625                 // LDK versions prior to 0.0.116 wrote the `pending_background_events`
8626                 // `MonitorUpdateRegeneratedOnStartup`s here, however there was never a reason to do so -
8627                 // the closing monitor updates were always effectively replayed on startup (either directly
8628                 // by calling `broadcast_latest_holder_commitment_txn` on a `ChannelMonitor` during
8629                 // deserialization or, in 0.0.115, by regenerating the monitor update itself).
8630                 0u64.write(writer)?;
8631
8632                 // Prior to 0.0.111 we tracked node_announcement serials here, however that now happens in
8633                 // `PeerManager`, and thus we simply write the `highest_seen_timestamp` twice, which is
8634                 // likely to be identical.
8635                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
8636                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
8637
8638                 (pending_inbound_payments.len() as u64).write(writer)?;
8639                 for (hash, pending_payment) in pending_inbound_payments.iter() {
8640                         hash.write(writer)?;
8641                         pending_payment.write(writer)?;
8642                 }
8643
8644                 // For backwards compat, write the session privs and their total length.
8645                 let mut num_pending_outbounds_compat: u64 = 0;
8646                 for (_, outbound) in pending_outbound_payments.iter() {
8647                         if !outbound.is_fulfilled() && !outbound.abandoned() {
8648                                 num_pending_outbounds_compat += outbound.remaining_parts() as u64;
8649                         }
8650                 }
8651                 num_pending_outbounds_compat.write(writer)?;
8652                 for (_, outbound) in pending_outbound_payments.iter() {
8653                         match outbound {
8654                                 PendingOutboundPayment::Legacy { session_privs } |
8655                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
8656                                         for session_priv in session_privs.iter() {
8657                                                 session_priv.write(writer)?;
8658                                         }
8659                                 }
8660                                 PendingOutboundPayment::AwaitingInvoice { .. } => {},
8661                                 PendingOutboundPayment::InvoiceReceived { .. } => {},
8662                                 PendingOutboundPayment::Fulfilled { .. } => {},
8663                                 PendingOutboundPayment::Abandoned { .. } => {},
8664                         }
8665                 }
8666
8667                 // Encode without retry info for 0.0.101 compatibility.
8668                 let mut pending_outbound_payments_no_retry: HashMap<PaymentId, HashSet<[u8; 32]>> = HashMap::new();
8669                 for (id, outbound) in pending_outbound_payments.iter() {
8670                         match outbound {
8671                                 PendingOutboundPayment::Legacy { session_privs } |
8672                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
8673                                         pending_outbound_payments_no_retry.insert(*id, session_privs.clone());
8674                                 },
8675                                 _ => {},
8676                         }
8677                 }
8678
8679                 let mut pending_intercepted_htlcs = None;
8680                 let our_pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
8681                 if our_pending_intercepts.len() != 0 {
8682                         pending_intercepted_htlcs = Some(our_pending_intercepts);
8683                 }
8684
8685                 let mut pending_claiming_payments = Some(&claimable_payments.pending_claiming_payments);
8686                 if pending_claiming_payments.as_ref().unwrap().is_empty() {
8687                         // LDK versions prior to 0.0.113 do not know how to read the pending claimed payments
8688                         // map. Thus, if there are no entries we skip writing a TLV for it.
8689                         pending_claiming_payments = None;
8690                 }
8691
8692                 let mut in_flight_monitor_updates: Option<HashMap<(&PublicKey, &OutPoint), &Vec<ChannelMonitorUpdate>>> = None;
8693                 for ((counterparty_id, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
8694                         for (funding_outpoint, updates) in peer_state.in_flight_monitor_updates.iter() {
8695                                 if !updates.is_empty() {
8696                                         if in_flight_monitor_updates.is_none() { in_flight_monitor_updates = Some(HashMap::new()); }
8697                                         in_flight_monitor_updates.as_mut().unwrap().insert((counterparty_id, funding_outpoint), updates);
8698                                 }
8699                         }
8700                 }
8701
8702                 write_tlv_fields!(writer, {
8703                         (1, pending_outbound_payments_no_retry, required),
8704                         (2, pending_intercepted_htlcs, option),
8705                         (3, pending_outbound_payments, required),
8706                         (4, pending_claiming_payments, option),
8707                         (5, self.our_network_pubkey, required),
8708                         (6, monitor_update_blocked_actions_per_peer, option),
8709                         (7, self.fake_scid_rand_bytes, required),
8710                         (8, if events_not_backwards_compatible { Some(&*events) } else { None }, option),
8711                         (9, htlc_purposes, required_vec),
8712                         (10, in_flight_monitor_updates, option),
8713                         (11, self.probing_cookie_secret, required),
8714                         (13, htlc_onion_fields, optional_vec),
8715                 });
8716
8717                 Ok(())
8718         }
8719 }
8720
8721 impl Writeable for VecDeque<(Event, Option<EventCompletionAction>)> {
8722         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
8723                 (self.len() as u64).write(w)?;
8724                 for (event, action) in self.iter() {
8725                         event.write(w)?;
8726                         action.write(w)?;
8727                         #[cfg(debug_assertions)] {
8728                                 // Events are MaybeReadable, in some cases indicating that they shouldn't actually
8729                                 // be persisted and are regenerated on restart. However, if such an event has a
8730                                 // post-event-handling action we'll write nothing for the event and would have to
8731                                 // either forget the action or fail on deserialization (which we do below). Thus,
8732                                 // check that the event is sane here.
8733                                 let event_encoded = event.encode();
8734                                 let event_read: Option<Event> =
8735                                         MaybeReadable::read(&mut &event_encoded[..]).unwrap();
8736                                 if action.is_some() { assert!(event_read.is_some()); }
8737                         }
8738                 }
8739                 Ok(())
8740         }
8741 }
8742 impl Readable for VecDeque<(Event, Option<EventCompletionAction>)> {
8743         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8744                 let len: u64 = Readable::read(reader)?;
8745                 const MAX_ALLOC_SIZE: u64 = 1024 * 16;
8746                 let mut events: Self = VecDeque::with_capacity(cmp::min(
8747                         MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>() as u64,
8748                         len) as usize);
8749                 for _ in 0..len {
8750                         let ev_opt = MaybeReadable::read(reader)?;
8751                         let action = Readable::read(reader)?;
8752                         if let Some(ev) = ev_opt {
8753                                 events.push_back((ev, action));
8754                         } else if action.is_some() {
8755                                 return Err(DecodeError::InvalidValue);
8756                         }
8757                 }
8758                 Ok(events)
8759         }
8760 }
8761
8762 impl_writeable_tlv_based_enum!(ChannelShutdownState,
8763         (0, NotShuttingDown) => {},
8764         (2, ShutdownInitiated) => {},
8765         (4, ResolvingHTLCs) => {},
8766         (6, NegotiatingClosingFee) => {},
8767         (8, ShutdownComplete) => {}, ;
8768 );
8769
8770 /// Arguments for the creation of a ChannelManager that are not deserialized.
8771 ///
8772 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
8773 /// is:
8774 /// 1) Deserialize all stored [`ChannelMonitor`]s.
8775 /// 2) Deserialize the [`ChannelManager`] by filling in this struct and calling:
8776 ///    `<(BlockHash, ChannelManager)>::read(reader, args)`
8777 ///    This may result in closing some channels if the [`ChannelMonitor`] is newer than the stored
8778 ///    [`ChannelManager`] state to ensure no loss of funds. Thus, transactions may be broadcasted.
8779 /// 3) If you are not fetching full blocks, register all relevant [`ChannelMonitor`] outpoints the
8780 ///    same way you would handle a [`chain::Filter`] call using
8781 ///    [`ChannelMonitor::get_outputs_to_watch`] and [`ChannelMonitor::get_funding_txo`].
8782 /// 4) Reconnect blocks on your [`ChannelMonitor`]s.
8783 /// 5) Disconnect/connect blocks on the [`ChannelManager`].
8784 /// 6) Re-persist the [`ChannelMonitor`]s to ensure the latest state is on disk.
8785 ///    Note that if you're using a [`ChainMonitor`] for your [`chain::Watch`] implementation, you
8786 ///    will likely accomplish this as a side-effect of calling [`chain::Watch::watch_channel`] in
8787 ///    the next step.
8788 /// 7) Move the [`ChannelMonitor`]s into your local [`chain::Watch`]. If you're using a
8789 ///    [`ChainMonitor`], this is done by calling [`chain::Watch::watch_channel`].
8790 ///
8791 /// Note that the ordering of #4-7 is not of importance, however all four must occur before you
8792 /// call any other methods on the newly-deserialized [`ChannelManager`].
8793 ///
8794 /// Note that because some channels may be closed during deserialization, it is critical that you
8795 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
8796 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
8797 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
8798 /// not force-close the same channels but consider them live), you may end up revoking a state for
8799 /// which you've already broadcasted the transaction.
8800 ///
8801 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
8802 pub struct ChannelManagerReadArgs<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8803 where
8804         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8805         T::Target: BroadcasterInterface,
8806         ES::Target: EntropySource,
8807         NS::Target: NodeSigner,
8808         SP::Target: SignerProvider,
8809         F::Target: FeeEstimator,
8810         R::Target: Router,
8811         L::Target: Logger,
8812 {
8813         /// A cryptographically secure source of entropy.
8814         pub entropy_source: ES,
8815
8816         /// A signer that is able to perform node-scoped cryptographic operations.
8817         pub node_signer: NS,
8818
8819         /// The keys provider which will give us relevant keys. Some keys will be loaded during
8820         /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
8821         /// signing data.
8822         pub signer_provider: SP,
8823
8824         /// The fee_estimator for use in the ChannelManager in the future.
8825         ///
8826         /// No calls to the FeeEstimator will be made during deserialization.
8827         pub fee_estimator: F,
8828         /// The chain::Watch for use in the ChannelManager in the future.
8829         ///
8830         /// No calls to the chain::Watch will be made during deserialization. It is assumed that
8831         /// you have deserialized ChannelMonitors separately and will add them to your
8832         /// chain::Watch after deserializing this ChannelManager.
8833         pub chain_monitor: M,
8834
8835         /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
8836         /// used to broadcast the latest local commitment transactions of channels which must be
8837         /// force-closed during deserialization.
8838         pub tx_broadcaster: T,
8839         /// The router which will be used in the ChannelManager in the future for finding routes
8840         /// on-the-fly for trampoline payments. Absent in private nodes that don't support forwarding.
8841         ///
8842         /// No calls to the router will be made during deserialization.
8843         pub router: R,
8844         /// The Logger for use in the ChannelManager and which may be used to log information during
8845         /// deserialization.
8846         pub logger: L,
8847         /// Default settings used for new channels. Any existing channels will continue to use the
8848         /// runtime settings which were stored when the ChannelManager was serialized.
8849         pub default_config: UserConfig,
8850
8851         /// A map from channel funding outpoints to ChannelMonitors for those channels (ie
8852         /// value.context.get_funding_txo() should be the key).
8853         ///
8854         /// If a monitor is inconsistent with the channel state during deserialization the channel will
8855         /// be force-closed using the data in the ChannelMonitor and the channel will be dropped. This
8856         /// is true for missing channels as well. If there is a monitor missing for which we find
8857         /// channel data Err(DecodeError::InvalidValue) will be returned.
8858         ///
8859         /// In such cases the latest local transactions will be sent to the tx_broadcaster included in
8860         /// this struct.
8861         ///
8862         /// This is not exported to bindings users because we have no HashMap bindings
8863         pub channel_monitors: HashMap<OutPoint, &'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>,
8864 }
8865
8866 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8867                 ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>
8868 where
8869         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8870         T::Target: BroadcasterInterface,
8871         ES::Target: EntropySource,
8872         NS::Target: NodeSigner,
8873         SP::Target: SignerProvider,
8874         F::Target: FeeEstimator,
8875         R::Target: Router,
8876         L::Target: Logger,
8877 {
8878         /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
8879         /// HashMap for you. This is primarily useful for C bindings where it is not practical to
8880         /// populate a HashMap directly from C.
8881         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,
8882                         mut channel_monitors: Vec<&'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>) -> Self {
8883                 Self {
8884                         entropy_source, node_signer, signer_provider, fee_estimator, chain_monitor, tx_broadcaster, router, logger, default_config,
8885                         channel_monitors: channel_monitors.drain(..).map(|monitor| { (monitor.get_funding_txo().0, monitor) }).collect()
8886                 }
8887         }
8888 }
8889
8890 // Implement ReadableArgs for an Arc'd ChannelManager to make it a bit easier to work with the
8891 // SipmleArcChannelManager type:
8892 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8893         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, Arc<ChannelManager<M, T, ES, NS, SP, F, R, L>>)
8894 where
8895         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8896         T::Target: BroadcasterInterface,
8897         ES::Target: EntropySource,
8898         NS::Target: NodeSigner,
8899         SP::Target: SignerProvider,
8900         F::Target: FeeEstimator,
8901         R::Target: Router,
8902         L::Target: Logger,
8903 {
8904         fn read<Reader: io::Read>(reader: &mut Reader, args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
8905                 let (blockhash, chan_manager) = <(BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)>::read(reader, args)?;
8906                 Ok((blockhash, Arc::new(chan_manager)))
8907         }
8908 }
8909
8910 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8911         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)
8912 where
8913         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8914         T::Target: BroadcasterInterface,
8915         ES::Target: EntropySource,
8916         NS::Target: NodeSigner,
8917         SP::Target: SignerProvider,
8918         F::Target: FeeEstimator,
8919         R::Target: Router,
8920         L::Target: Logger,
8921 {
8922         fn read<Reader: io::Read>(reader: &mut Reader, mut args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
8923                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
8924
8925                 let genesis_hash: BlockHash = Readable::read(reader)?;
8926                 let best_block_height: u32 = Readable::read(reader)?;
8927                 let best_block_hash: BlockHash = Readable::read(reader)?;
8928
8929                 let mut failed_htlcs = Vec::new();
8930
8931                 let channel_count: u64 = Readable::read(reader)?;
8932                 let mut funding_txo_set = HashSet::with_capacity(cmp::min(channel_count as usize, 128));
8933                 let mut funded_peer_channels: HashMap<PublicKey, HashMap<ChannelId, ChannelPhase<SP>>> = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
8934                 let mut id_to_peer = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
8935                 let mut short_to_chan_info = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
8936                 let mut channel_closures = VecDeque::new();
8937                 let mut close_background_events = Vec::new();
8938                 for _ in 0..channel_count {
8939                         let mut channel: Channel<SP> = Channel::read(reader, (
8940                                 &args.entropy_source, &args.signer_provider, best_block_height, &provided_channel_type_features(&args.default_config)
8941                         ))?;
8942                         let funding_txo = channel.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
8943                         funding_txo_set.insert(funding_txo.clone());
8944                         if let Some(ref mut monitor) = args.channel_monitors.get_mut(&funding_txo) {
8945                                 if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() ||
8946                                                 channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() ||
8947                                                 channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() ||
8948                                                 channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
8949                                         // But if the channel is behind of the monitor, close the channel:
8950                                         log_error!(args.logger, "A ChannelManager is stale compared to the current ChannelMonitor!");
8951                                         log_error!(args.logger, " The channel will be force-closed and the latest commitment transaction from the ChannelMonitor broadcast.");
8952                                         if channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
8953                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
8954                                                         &channel.context.channel_id(), monitor.get_latest_update_id(), channel.context.get_latest_monitor_update_id());
8955                                         }
8956                                         if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() {
8957                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at holder commitment number {} but the ChannelManager is at holder commitment number {}.",
8958                                                         &channel.context.channel_id(), monitor.get_cur_holder_commitment_number(), channel.get_cur_holder_commitment_transaction_number());
8959                                         }
8960                                         if channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() {
8961                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at revoked counterparty transaction number {} but the ChannelManager is at revoked counterparty transaction number {}.",
8962                                                         &channel.context.channel_id(), monitor.get_min_seen_secret(), channel.get_revoked_counterparty_commitment_transaction_number());
8963                                         }
8964                                         if channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() {
8965                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at counterparty commitment transaction number {} but the ChannelManager is at counterparty commitment transaction number {}.",
8966                                                         &channel.context.channel_id(), monitor.get_cur_counterparty_commitment_number(), channel.get_cur_counterparty_commitment_transaction_number());
8967                                         }
8968                                         let (monitor_update, mut new_failed_htlcs) = channel.context.force_shutdown(true);
8969                                         if let Some((counterparty_node_id, funding_txo, update)) = monitor_update {
8970                                                 close_background_events.push(BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
8971                                                         counterparty_node_id, funding_txo, update
8972                                                 });
8973                                         }
8974                                         failed_htlcs.append(&mut new_failed_htlcs);
8975                                         channel_closures.push_back((events::Event::ChannelClosed {
8976                                                 channel_id: channel.context.channel_id(),
8977                                                 user_channel_id: channel.context.get_user_id(),
8978                                                 reason: ClosureReason::OutdatedChannelManager,
8979                                                 counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
8980                                                 channel_capacity_sats: Some(channel.context.get_value_satoshis()),
8981                                         }, None));
8982                                         for (channel_htlc_source, payment_hash) in channel.inflight_htlc_sources() {
8983                                                 let mut found_htlc = false;
8984                                                 for (monitor_htlc_source, _) in monitor.get_all_current_outbound_htlcs() {
8985                                                         if *channel_htlc_source == monitor_htlc_source { found_htlc = true; break; }
8986                                                 }
8987                                                 if !found_htlc {
8988                                                         // If we have some HTLCs in the channel which are not present in the newer
8989                                                         // ChannelMonitor, they have been removed and should be failed back to
8990                                                         // ensure we don't forget them entirely. Note that if the missing HTLC(s)
8991                                                         // were actually claimed we'd have generated and ensured the previous-hop
8992                                                         // claim update ChannelMonitor updates were persisted prior to persising
8993                                                         // the ChannelMonitor update for the forward leg, so attempting to fail the
8994                                                         // backwards leg of the HTLC will simply be rejected.
8995                                                         log_info!(args.logger,
8996                                                                 "Failing HTLC with hash {} as it is missing in the ChannelMonitor for channel {} but was present in the (stale) ChannelManager",
8997                                                                 &channel.context.channel_id(), &payment_hash);
8998                                                         failed_htlcs.push((channel_htlc_source.clone(), *payment_hash, channel.context.get_counterparty_node_id(), channel.context.channel_id()));
8999                                                 }
9000                                         }
9001                                 } else {
9002                                         log_info!(args.logger, "Successfully loaded channel {} at update_id {} against monitor at update id {}",
9003                                                 &channel.context.channel_id(), channel.context.get_latest_monitor_update_id(),
9004                                                 monitor.get_latest_update_id());
9005                                         if let Some(short_channel_id) = channel.context.get_short_channel_id() {
9006                                                 short_to_chan_info.insert(short_channel_id, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
9007                                         }
9008                                         if channel.context.is_funding_initiated() {
9009                                                 id_to_peer.insert(channel.context.channel_id(), channel.context.get_counterparty_node_id());
9010                                         }
9011                                         match funded_peer_channels.entry(channel.context.get_counterparty_node_id()) {
9012                                                 hash_map::Entry::Occupied(mut entry) => {
9013                                                         let by_id_map = entry.get_mut();
9014                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
9015                                                 },
9016                                                 hash_map::Entry::Vacant(entry) => {
9017                                                         let mut by_id_map = HashMap::new();
9018                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
9019                                                         entry.insert(by_id_map);
9020                                                 }
9021                                         }
9022                                 }
9023                         } else if channel.is_awaiting_initial_mon_persist() {
9024                                 // If we were persisted and shut down while the initial ChannelMonitor persistence
9025                                 // was in-progress, we never broadcasted the funding transaction and can still
9026                                 // safely discard the channel.
9027                                 let _ = channel.context.force_shutdown(false);
9028                                 channel_closures.push_back((events::Event::ChannelClosed {
9029                                         channel_id: channel.context.channel_id(),
9030                                         user_channel_id: channel.context.get_user_id(),
9031                                         reason: ClosureReason::DisconnectedPeer,
9032                                         counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
9033                                         channel_capacity_sats: Some(channel.context.get_value_satoshis()),
9034                                 }, None));
9035                         } else {
9036                                 log_error!(args.logger, "Missing ChannelMonitor for channel {} needed by ChannelManager.", &channel.context.channel_id());
9037                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
9038                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
9039                                 log_error!(args.logger, " Without the ChannelMonitor we cannot continue without risking funds.");
9040                                 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");
9041                                 return Err(DecodeError::InvalidValue);
9042                         }
9043                 }
9044
9045                 for (funding_txo, _) in args.channel_monitors.iter() {
9046                         if !funding_txo_set.contains(funding_txo) {
9047                                 log_info!(args.logger, "Queueing monitor update to ensure missing channel {} is force closed",
9048                                         &funding_txo.to_channel_id());
9049                                 let monitor_update = ChannelMonitorUpdate {
9050                                         update_id: CLOSED_CHANNEL_UPDATE_ID,
9051                                         updates: vec![ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast: true }],
9052                                 };
9053                                 close_background_events.push(BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((*funding_txo, monitor_update)));
9054                         }
9055                 }
9056
9057                 const MAX_ALLOC_SIZE: usize = 1024 * 64;
9058                 let forward_htlcs_count: u64 = Readable::read(reader)?;
9059                 let mut forward_htlcs = HashMap::with_capacity(cmp::min(forward_htlcs_count as usize, 128));
9060                 for _ in 0..forward_htlcs_count {
9061                         let short_channel_id = Readable::read(reader)?;
9062                         let pending_forwards_count: u64 = Readable::read(reader)?;
9063                         let mut pending_forwards = Vec::with_capacity(cmp::min(pending_forwards_count as usize, MAX_ALLOC_SIZE/mem::size_of::<HTLCForwardInfo>()));
9064                         for _ in 0..pending_forwards_count {
9065                                 pending_forwards.push(Readable::read(reader)?);
9066                         }
9067                         forward_htlcs.insert(short_channel_id, pending_forwards);
9068                 }
9069
9070                 let claimable_htlcs_count: u64 = Readable::read(reader)?;
9071                 let mut claimable_htlcs_list = Vec::with_capacity(cmp::min(claimable_htlcs_count as usize, 128));
9072                 for _ in 0..claimable_htlcs_count {
9073                         let payment_hash = Readable::read(reader)?;
9074                         let previous_hops_len: u64 = Readable::read(reader)?;
9075                         let mut previous_hops = Vec::with_capacity(cmp::min(previous_hops_len as usize, MAX_ALLOC_SIZE/mem::size_of::<ClaimableHTLC>()));
9076                         for _ in 0..previous_hops_len {
9077                                 previous_hops.push(<ClaimableHTLC as Readable>::read(reader)?);
9078                         }
9079                         claimable_htlcs_list.push((payment_hash, previous_hops));
9080                 }
9081
9082                 let peer_state_from_chans = |channel_by_id| {
9083                         PeerState {
9084                                 channel_by_id,
9085                                 inbound_channel_request_by_id: HashMap::new(),
9086                                 latest_features: InitFeatures::empty(),
9087                                 pending_msg_events: Vec::new(),
9088                                 in_flight_monitor_updates: BTreeMap::new(),
9089                                 monitor_update_blocked_actions: BTreeMap::new(),
9090                                 actions_blocking_raa_monitor_updates: BTreeMap::new(),
9091                                 is_connected: false,
9092                         }
9093                 };
9094
9095                 let peer_count: u64 = Readable::read(reader)?;
9096                 let mut per_peer_state = HashMap::with_capacity(cmp::min(peer_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(PublicKey, Mutex<PeerState<SP>>)>()));
9097                 for _ in 0..peer_count {
9098                         let peer_pubkey = Readable::read(reader)?;
9099                         let peer_chans = funded_peer_channels.remove(&peer_pubkey).unwrap_or(HashMap::new());
9100                         let mut peer_state = peer_state_from_chans(peer_chans);
9101                         peer_state.latest_features = Readable::read(reader)?;
9102                         per_peer_state.insert(peer_pubkey, Mutex::new(peer_state));
9103                 }
9104
9105                 let event_count: u64 = Readable::read(reader)?;
9106                 let mut pending_events_read: VecDeque<(events::Event, Option<EventCompletionAction>)> =
9107                         VecDeque::with_capacity(cmp::min(event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>()));
9108                 for _ in 0..event_count {
9109                         match MaybeReadable::read(reader)? {
9110                                 Some(event) => pending_events_read.push_back((event, None)),
9111                                 None => continue,
9112                         }
9113                 }
9114
9115                 let background_event_count: u64 = Readable::read(reader)?;
9116                 for _ in 0..background_event_count {
9117                         match <u8 as Readable>::read(reader)? {
9118                                 0 => {
9119                                         // LDK versions prior to 0.0.116 wrote pending `MonitorUpdateRegeneratedOnStartup`s here,
9120                                         // however we really don't (and never did) need them - we regenerate all
9121                                         // on-startup monitor updates.
9122                                         let _: OutPoint = Readable::read(reader)?;
9123                                         let _: ChannelMonitorUpdate = Readable::read(reader)?;
9124                                 }
9125                                 _ => return Err(DecodeError::InvalidValue),
9126                         }
9127                 }
9128
9129                 let _last_node_announcement_serial: u32 = Readable::read(reader)?; // Only used < 0.0.111
9130                 let highest_seen_timestamp: u32 = Readable::read(reader)?;
9131
9132                 let pending_inbound_payment_count: u64 = Readable::read(reader)?;
9133                 let mut pending_inbound_payments: HashMap<PaymentHash, PendingInboundPayment> = HashMap::with_capacity(cmp::min(pending_inbound_payment_count as usize, MAX_ALLOC_SIZE/(3*32)));
9134                 for _ in 0..pending_inbound_payment_count {
9135                         if pending_inbound_payments.insert(Readable::read(reader)?, Readable::read(reader)?).is_some() {
9136                                 return Err(DecodeError::InvalidValue);
9137                         }
9138                 }
9139
9140                 let pending_outbound_payments_count_compat: u64 = Readable::read(reader)?;
9141                 let mut pending_outbound_payments_compat: HashMap<PaymentId, PendingOutboundPayment> =
9142                         HashMap::with_capacity(cmp::min(pending_outbound_payments_count_compat as usize, MAX_ALLOC_SIZE/32));
9143                 for _ in 0..pending_outbound_payments_count_compat {
9144                         let session_priv = Readable::read(reader)?;
9145                         let payment = PendingOutboundPayment::Legacy {
9146                                 session_privs: [session_priv].iter().cloned().collect()
9147                         };
9148                         if pending_outbound_payments_compat.insert(PaymentId(session_priv), payment).is_some() {
9149                                 return Err(DecodeError::InvalidValue)
9150                         };
9151                 }
9152
9153                 // pending_outbound_payments_no_retry is for compatibility with 0.0.101 clients.
9154                 let mut pending_outbound_payments_no_retry: Option<HashMap<PaymentId, HashSet<[u8; 32]>>> = None;
9155                 let mut pending_outbound_payments = None;
9156                 let mut pending_intercepted_htlcs: Option<HashMap<InterceptId, PendingAddHTLCInfo>> = Some(HashMap::new());
9157                 let mut received_network_pubkey: Option<PublicKey> = None;
9158                 let mut fake_scid_rand_bytes: Option<[u8; 32]> = None;
9159                 let mut probing_cookie_secret: Option<[u8; 32]> = None;
9160                 let mut claimable_htlc_purposes = None;
9161                 let mut claimable_htlc_onion_fields = None;
9162                 let mut pending_claiming_payments = Some(HashMap::new());
9163                 let mut monitor_update_blocked_actions_per_peer: Option<Vec<(_, BTreeMap<_, Vec<_>>)>> = Some(Vec::new());
9164                 let mut events_override = None;
9165                 let mut in_flight_monitor_updates: Option<HashMap<(PublicKey, OutPoint), Vec<ChannelMonitorUpdate>>> = None;
9166                 read_tlv_fields!(reader, {
9167                         (1, pending_outbound_payments_no_retry, option),
9168                         (2, pending_intercepted_htlcs, option),
9169                         (3, pending_outbound_payments, option),
9170                         (4, pending_claiming_payments, option),
9171                         (5, received_network_pubkey, option),
9172                         (6, monitor_update_blocked_actions_per_peer, option),
9173                         (7, fake_scid_rand_bytes, option),
9174                         (8, events_override, option),
9175                         (9, claimable_htlc_purposes, optional_vec),
9176                         (10, in_flight_monitor_updates, option),
9177                         (11, probing_cookie_secret, option),
9178                         (13, claimable_htlc_onion_fields, optional_vec),
9179                 });
9180                 if fake_scid_rand_bytes.is_none() {
9181                         fake_scid_rand_bytes = Some(args.entropy_source.get_secure_random_bytes());
9182                 }
9183
9184                 if probing_cookie_secret.is_none() {
9185                         probing_cookie_secret = Some(args.entropy_source.get_secure_random_bytes());
9186                 }
9187
9188                 if let Some(events) = events_override {
9189                         pending_events_read = events;
9190                 }
9191
9192                 if !channel_closures.is_empty() {
9193                         pending_events_read.append(&mut channel_closures);
9194                 }
9195
9196                 if pending_outbound_payments.is_none() && pending_outbound_payments_no_retry.is_none() {
9197                         pending_outbound_payments = Some(pending_outbound_payments_compat);
9198                 } else if pending_outbound_payments.is_none() {
9199                         let mut outbounds = HashMap::new();
9200                         for (id, session_privs) in pending_outbound_payments_no_retry.unwrap().drain() {
9201                                 outbounds.insert(id, PendingOutboundPayment::Legacy { session_privs });
9202                         }
9203                         pending_outbound_payments = Some(outbounds);
9204                 }
9205                 let pending_outbounds = OutboundPayments {
9206                         pending_outbound_payments: Mutex::new(pending_outbound_payments.unwrap()),
9207                         retry_lock: Mutex::new(())
9208                 };
9209
9210                 // We have to replay (or skip, if they were completed after we wrote the `ChannelManager`)
9211                 // each `ChannelMonitorUpdate` in `in_flight_monitor_updates`. After doing so, we have to
9212                 // check that each channel we have isn't newer than the latest `ChannelMonitorUpdate`(s) we
9213                 // replayed, and for each monitor update we have to replay we have to ensure there's a
9214                 // `ChannelMonitor` for it.
9215                 //
9216                 // In order to do so we first walk all of our live channels (so that we can check their
9217                 // state immediately after doing the update replays, when we have the `update_id`s
9218                 // available) and then walk any remaining in-flight updates.
9219                 //
9220                 // Because the actual handling of the in-flight updates is the same, it's macro'ized here:
9221                 let mut pending_background_events = Vec::new();
9222                 macro_rules! handle_in_flight_updates {
9223                         ($counterparty_node_id: expr, $chan_in_flight_upds: expr, $funding_txo: expr,
9224                          $monitor: expr, $peer_state: expr, $channel_info_log: expr
9225                         ) => { {
9226                                 let mut max_in_flight_update_id = 0;
9227                                 $chan_in_flight_upds.retain(|upd| upd.update_id > $monitor.get_latest_update_id());
9228                                 for update in $chan_in_flight_upds.iter() {
9229                                         log_trace!(args.logger, "Replaying ChannelMonitorUpdate {} for {}channel {}",
9230                                                 update.update_id, $channel_info_log, &$funding_txo.to_channel_id());
9231                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id, update.update_id);
9232                                         pending_background_events.push(
9233                                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
9234                                                         counterparty_node_id: $counterparty_node_id,
9235                                                         funding_txo: $funding_txo,
9236                                                         update: update.clone(),
9237                                                 });
9238                                 }
9239                                 if $chan_in_flight_upds.is_empty() {
9240                                         // We had some updates to apply, but it turns out they had completed before we
9241                                         // were serialized, we just weren't notified of that. Thus, we may have to run
9242                                         // the completion actions for any monitor updates, but otherwise are done.
9243                                         pending_background_events.push(
9244                                                 BackgroundEvent::MonitorUpdatesComplete {
9245                                                         counterparty_node_id: $counterparty_node_id,
9246                                                         channel_id: $funding_txo.to_channel_id(),
9247                                                 });
9248                                 }
9249                                 if $peer_state.in_flight_monitor_updates.insert($funding_txo, $chan_in_flight_upds).is_some() {
9250                                         log_error!(args.logger, "Duplicate in-flight monitor update set for the same channel!");
9251                                         return Err(DecodeError::InvalidValue);
9252                                 }
9253                                 max_in_flight_update_id
9254                         } }
9255                 }
9256
9257                 for (counterparty_id, peer_state_mtx) in per_peer_state.iter_mut() {
9258                         let mut peer_state_lock = peer_state_mtx.lock().unwrap();
9259                         let peer_state = &mut *peer_state_lock;
9260                         for phase in peer_state.channel_by_id.values() {
9261                                 if let ChannelPhase::Funded(chan) = phase {
9262                                         // Channels that were persisted have to be funded, otherwise they should have been
9263                                         // discarded.
9264                                         let funding_txo = chan.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
9265                                         let monitor = args.channel_monitors.get(&funding_txo)
9266                                                 .expect("We already checked for monitor presence when loading channels");
9267                                         let mut max_in_flight_update_id = monitor.get_latest_update_id();
9268                                         if let Some(in_flight_upds) = &mut in_flight_monitor_updates {
9269                                                 if let Some(mut chan_in_flight_upds) = in_flight_upds.remove(&(*counterparty_id, funding_txo)) {
9270                                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id,
9271                                                                 handle_in_flight_updates!(*counterparty_id, chan_in_flight_upds,
9272                                                                         funding_txo, monitor, peer_state, ""));
9273                                                 }
9274                                         }
9275                                         if chan.get_latest_unblocked_monitor_update_id() > max_in_flight_update_id {
9276                                                 // If the channel is ahead of the monitor, return InvalidValue:
9277                                                 log_error!(args.logger, "A ChannelMonitor is stale compared to the current ChannelManager! This indicates a potentially-critical violation of the chain::Watch API!");
9278                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} with update_id through {} in-flight",
9279                                                         chan.context.channel_id(), monitor.get_latest_update_id(), max_in_flight_update_id);
9280                                                 log_error!(args.logger, " but the ChannelManager is at update_id {}.", chan.get_latest_unblocked_monitor_update_id());
9281                                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
9282                                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
9283                                                 log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
9284                                                 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");
9285                                                 return Err(DecodeError::InvalidValue);
9286                                         }
9287                                 } else {
9288                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
9289                                         // created in this `channel_by_id` map.
9290                                         debug_assert!(false);
9291                                         return Err(DecodeError::InvalidValue);
9292                                 }
9293                         }
9294                 }
9295
9296                 if let Some(in_flight_upds) = in_flight_monitor_updates {
9297                         for ((counterparty_id, funding_txo), mut chan_in_flight_updates) in in_flight_upds {
9298                                 if let Some(monitor) = args.channel_monitors.get(&funding_txo) {
9299                                         // Now that we've removed all the in-flight monitor updates for channels that are
9300                                         // still open, we need to replay any monitor updates that are for closed channels,
9301                                         // creating the neccessary peer_state entries as we go.
9302                                         let peer_state_mutex = per_peer_state.entry(counterparty_id).or_insert_with(|| {
9303                                                 Mutex::new(peer_state_from_chans(HashMap::new()))
9304                                         });
9305                                         let mut peer_state = peer_state_mutex.lock().unwrap();
9306                                         handle_in_flight_updates!(counterparty_id, chan_in_flight_updates,
9307                                                 funding_txo, monitor, peer_state, "closed ");
9308                                 } else {
9309                                         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!");
9310                                         log_error!(args.logger, " The ChannelMonitor for channel {} is missing.",
9311                                                 &funding_txo.to_channel_id());
9312                                         log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
9313                                         log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
9314                                         log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
9315                                         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");
9316                                         return Err(DecodeError::InvalidValue);
9317                                 }
9318                         }
9319                 }
9320
9321                 // Note that we have to do the above replays before we push new monitor updates.
9322                 pending_background_events.append(&mut close_background_events);
9323
9324                 // If there's any preimages for forwarded HTLCs hanging around in ChannelMonitors we
9325                 // should ensure we try them again on the inbound edge. We put them here and do so after we
9326                 // have a fully-constructed `ChannelManager` at the end.
9327                 let mut pending_claims_to_replay = Vec::new();
9328
9329                 {
9330                         // If we're tracking pending payments, ensure we haven't lost any by looking at the
9331                         // ChannelMonitor data for any channels for which we do not have authorative state
9332                         // (i.e. those for which we just force-closed above or we otherwise don't have a
9333                         // corresponding `Channel` at all).
9334                         // This avoids several edge-cases where we would otherwise "forget" about pending
9335                         // payments which are still in-flight via their on-chain state.
9336                         // We only rebuild the pending payments map if we were most recently serialized by
9337                         // 0.0.102+
9338                         for (_, monitor) in args.channel_monitors.iter() {
9339                                 let counterparty_opt = id_to_peer.get(&monitor.get_funding_txo().0.to_channel_id());
9340                                 if counterparty_opt.is_none() {
9341                                         for (htlc_source, (htlc, _)) in monitor.get_pending_or_resolved_outbound_htlcs() {
9342                                                 if let HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } = htlc_source {
9343                                                         if path.hops.is_empty() {
9344                                                                 log_error!(args.logger, "Got an empty path for a pending payment");
9345                                                                 return Err(DecodeError::InvalidValue);
9346                                                         }
9347
9348                                                         let path_amt = path.final_value_msat();
9349                                                         let mut session_priv_bytes = [0; 32];
9350                                                         session_priv_bytes[..].copy_from_slice(&session_priv[..]);
9351                                                         match pending_outbounds.pending_outbound_payments.lock().unwrap().entry(payment_id) {
9352                                                                 hash_map::Entry::Occupied(mut entry) => {
9353                                                                         let newly_added = entry.get_mut().insert(session_priv_bytes, &path);
9354                                                                         log_info!(args.logger, "{} a pending payment path for {} msat for session priv {} on an existing pending payment with payment hash {}",
9355                                                                                 if newly_added { "Added" } else { "Had" }, path_amt, log_bytes!(session_priv_bytes), &htlc.payment_hash);
9356                                                                 },
9357                                                                 hash_map::Entry::Vacant(entry) => {
9358                                                                         let path_fee = path.fee_msat();
9359                                                                         entry.insert(PendingOutboundPayment::Retryable {
9360                                                                                 retry_strategy: None,
9361                                                                                 attempts: PaymentAttempts::new(),
9362                                                                                 payment_params: None,
9363                                                                                 session_privs: [session_priv_bytes].iter().map(|a| *a).collect(),
9364                                                                                 payment_hash: htlc.payment_hash,
9365                                                                                 payment_secret: None, // only used for retries, and we'll never retry on startup
9366                                                                                 payment_metadata: None, // only used for retries, and we'll never retry on startup
9367                                                                                 keysend_preimage: None, // only used for retries, and we'll never retry on startup
9368                                                                                 custom_tlvs: Vec::new(), // only used for retries, and we'll never retry on startup
9369                                                                                 pending_amt_msat: path_amt,
9370                                                                                 pending_fee_msat: Some(path_fee),
9371                                                                                 total_msat: path_amt,
9372                                                                                 starting_block_height: best_block_height,
9373                                                                         });
9374                                                                         log_info!(args.logger, "Added a pending payment for {} msat with payment hash {} for path with session priv {}",
9375                                                                                 path_amt, &htlc.payment_hash,  log_bytes!(session_priv_bytes));
9376                                                                 }
9377                                                         }
9378                                                 }
9379                                         }
9380                                         for (htlc_source, (htlc, preimage_opt)) in monitor.get_all_current_outbound_htlcs() {
9381                                                 match htlc_source {
9382                                                         HTLCSource::PreviousHopData(prev_hop_data) => {
9383                                                                 let pending_forward_matches_htlc = |info: &PendingAddHTLCInfo| {
9384                                                                         info.prev_funding_outpoint == prev_hop_data.outpoint &&
9385                                                                                 info.prev_htlc_id == prev_hop_data.htlc_id
9386                                                                 };
9387                                                                 // The ChannelMonitor is now responsible for this HTLC's
9388                                                                 // failure/success and will let us know what its outcome is. If we
9389                                                                 // still have an entry for this HTLC in `forward_htlcs` or
9390                                                                 // `pending_intercepted_htlcs`, we were apparently not persisted after
9391                                                                 // the monitor was when forwarding the payment.
9392                                                                 forward_htlcs.retain(|_, forwards| {
9393                                                                         forwards.retain(|forward| {
9394                                                                                 if let HTLCForwardInfo::AddHTLC(htlc_info) = forward {
9395                                                                                         if pending_forward_matches_htlc(&htlc_info) {
9396                                                                                                 log_info!(args.logger, "Removing pending to-forward HTLC with hash {} as it was forwarded to the closed channel {}",
9397                                                                                                         &htlc.payment_hash, &monitor.get_funding_txo().0.to_channel_id());
9398                                                                                                 false
9399                                                                                         } else { true }
9400                                                                                 } else { true }
9401                                                                         });
9402                                                                         !forwards.is_empty()
9403                                                                 });
9404                                                                 pending_intercepted_htlcs.as_mut().unwrap().retain(|intercepted_id, htlc_info| {
9405                                                                         if pending_forward_matches_htlc(&htlc_info) {
9406                                                                                 log_info!(args.logger, "Removing pending intercepted HTLC with hash {} as it was forwarded to the closed channel {}",
9407                                                                                         &htlc.payment_hash, &monitor.get_funding_txo().0.to_channel_id());
9408                                                                                 pending_events_read.retain(|(event, _)| {
9409                                                                                         if let Event::HTLCIntercepted { intercept_id: ev_id, .. } = event {
9410                                                                                                 intercepted_id != ev_id
9411                                                                                         } else { true }
9412                                                                                 });
9413                                                                                 false
9414                                                                         } else { true }
9415                                                                 });
9416                                                         },
9417                                                         HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } => {
9418                                                                 if let Some(preimage) = preimage_opt {
9419                                                                         let pending_events = Mutex::new(pending_events_read);
9420                                                                         // Note that we set `from_onchain` to "false" here,
9421                                                                         // deliberately keeping the pending payment around forever.
9422                                                                         // Given it should only occur when we have a channel we're
9423                                                                         // force-closing for being stale that's okay.
9424                                                                         // The alternative would be to wipe the state when claiming,
9425                                                                         // generating a `PaymentPathSuccessful` event but regenerating
9426                                                                         // it and the `PaymentSent` on every restart until the
9427                                                                         // `ChannelMonitor` is removed.
9428                                                                         let compl_action =
9429                                                                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
9430                                                                                         channel_funding_outpoint: monitor.get_funding_txo().0,
9431                                                                                         counterparty_node_id: path.hops[0].pubkey,
9432                                                                                 };
9433                                                                         pending_outbounds.claim_htlc(payment_id, preimage, session_priv,
9434                                                                                 path, false, compl_action, &pending_events, &args.logger);
9435                                                                         pending_events_read = pending_events.into_inner().unwrap();
9436                                                                 }
9437                                                         },
9438                                                 }
9439                                         }
9440                                 }
9441
9442                                 // Whether the downstream channel was closed or not, try to re-apply any payment
9443                                 // preimages from it which may be needed in upstream channels for forwarded
9444                                 // payments.
9445                                 let outbound_claimed_htlcs_iter = monitor.get_all_current_outbound_htlcs()
9446                                         .into_iter()
9447                                         .filter_map(|(htlc_source, (htlc, preimage_opt))| {
9448                                                 if let HTLCSource::PreviousHopData(_) = htlc_source {
9449                                                         if let Some(payment_preimage) = preimage_opt {
9450                                                                 Some((htlc_source, payment_preimage, htlc.amount_msat,
9451                                                                         // Check if `counterparty_opt.is_none()` to see if the
9452                                                                         // downstream chan is closed (because we don't have a
9453                                                                         // channel_id -> peer map entry).
9454                                                                         counterparty_opt.is_none(),
9455                                                                         counterparty_opt.cloned().or(monitor.get_counterparty_node_id()),
9456                                                                         monitor.get_funding_txo().0))
9457                                                         } else { None }
9458                                                 } else {
9459                                                         // If it was an outbound payment, we've handled it above - if a preimage
9460                                                         // came in and we persisted the `ChannelManager` we either handled it and
9461                                                         // are good to go or the channel force-closed - we don't have to handle the
9462                                                         // channel still live case here.
9463                                                         None
9464                                                 }
9465                                         });
9466                                 for tuple in outbound_claimed_htlcs_iter {
9467                                         pending_claims_to_replay.push(tuple);
9468                                 }
9469                         }
9470                 }
9471
9472                 if !forward_htlcs.is_empty() || pending_outbounds.needs_abandon() {
9473                         // If we have pending HTLCs to forward, assume we either dropped a
9474                         // `PendingHTLCsForwardable` or the user received it but never processed it as they
9475                         // shut down before the timer hit. Either way, set the time_forwardable to a small
9476                         // constant as enough time has likely passed that we should simply handle the forwards
9477                         // now, or at least after the user gets a chance to reconnect to our peers.
9478                         pending_events_read.push_back((events::Event::PendingHTLCsForwardable {
9479                                 time_forwardable: Duration::from_secs(2),
9480                         }, None));
9481                 }
9482
9483                 let inbound_pmt_key_material = args.node_signer.get_inbound_payment_key_material();
9484                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
9485
9486                 let mut claimable_payments = HashMap::with_capacity(claimable_htlcs_list.len());
9487                 if let Some(purposes) = claimable_htlc_purposes {
9488                         if purposes.len() != claimable_htlcs_list.len() {
9489                                 return Err(DecodeError::InvalidValue);
9490                         }
9491                         if let Some(onion_fields) = claimable_htlc_onion_fields {
9492                                 if onion_fields.len() != claimable_htlcs_list.len() {
9493                                         return Err(DecodeError::InvalidValue);
9494                                 }
9495                                 for (purpose, (onion, (payment_hash, htlcs))) in
9496                                         purposes.into_iter().zip(onion_fields.into_iter().zip(claimable_htlcs_list.into_iter()))
9497                                 {
9498                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
9499                                                 purpose, htlcs, onion_fields: onion,
9500                                         });
9501                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
9502                                 }
9503                         } else {
9504                                 for (purpose, (payment_hash, htlcs)) in purposes.into_iter().zip(claimable_htlcs_list.into_iter()) {
9505                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
9506                                                 purpose, htlcs, onion_fields: None,
9507                                         });
9508                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
9509                                 }
9510                         }
9511                 } else {
9512                         // LDK versions prior to 0.0.107 did not write a `pending_htlc_purposes`, but do
9513                         // include a `_legacy_hop_data` in the `OnionPayload`.
9514                         for (payment_hash, htlcs) in claimable_htlcs_list.drain(..) {
9515                                 if htlcs.is_empty() {
9516                                         return Err(DecodeError::InvalidValue);
9517                                 }
9518                                 let purpose = match &htlcs[0].onion_payload {
9519                                         OnionPayload::Invoice { _legacy_hop_data } => {
9520                                                 if let Some(hop_data) = _legacy_hop_data {
9521                                                         events::PaymentPurpose::InvoicePayment {
9522                                                                 payment_preimage: match pending_inbound_payments.get(&payment_hash) {
9523                                                                         Some(inbound_payment) => inbound_payment.payment_preimage,
9524                                                                         None => match inbound_payment::verify(payment_hash, &hop_data, 0, &expanded_inbound_key, &args.logger) {
9525                                                                                 Ok((payment_preimage, _)) => payment_preimage,
9526                                                                                 Err(()) => {
9527                                                                                         log_error!(args.logger, "Failed to read claimable payment data for HTLC with payment hash {} - was not a pending inbound payment and didn't match our payment key", &payment_hash);
9528                                                                                         return Err(DecodeError::InvalidValue);
9529                                                                                 }
9530                                                                         }
9531                                                                 },
9532                                                                 payment_secret: hop_data.payment_secret,
9533                                                         }
9534                                                 } else { return Err(DecodeError::InvalidValue); }
9535                                         },
9536                                         OnionPayload::Spontaneous(payment_preimage) =>
9537                                                 events::PaymentPurpose::SpontaneousPayment(*payment_preimage),
9538                                 };
9539                                 claimable_payments.insert(payment_hash, ClaimablePayment {
9540                                         purpose, htlcs, onion_fields: None,
9541                                 });
9542                         }
9543                 }
9544
9545                 let mut secp_ctx = Secp256k1::new();
9546                 secp_ctx.seeded_randomize(&args.entropy_source.get_secure_random_bytes());
9547
9548                 let our_network_pubkey = match args.node_signer.get_node_id(Recipient::Node) {
9549                         Ok(key) => key,
9550                         Err(()) => return Err(DecodeError::InvalidValue)
9551                 };
9552                 if let Some(network_pubkey) = received_network_pubkey {
9553                         if network_pubkey != our_network_pubkey {
9554                                 log_error!(args.logger, "Key that was generated does not match the existing key.");
9555                                 return Err(DecodeError::InvalidValue);
9556                         }
9557                 }
9558
9559                 let mut outbound_scid_aliases = HashSet::new();
9560                 for (_peer_node_id, peer_state_mutex) in per_peer_state.iter_mut() {
9561                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9562                         let peer_state = &mut *peer_state_lock;
9563                         for (chan_id, phase) in peer_state.channel_by_id.iter_mut() {
9564                                 if let ChannelPhase::Funded(chan) = phase {
9565                                         if chan.context.outbound_scid_alias() == 0 {
9566                                                 let mut outbound_scid_alias;
9567                                                 loop {
9568                                                         outbound_scid_alias = fake_scid::Namespace::OutboundAlias
9569                                                                 .get_fake_scid(best_block_height, &genesis_hash, fake_scid_rand_bytes.as_ref().unwrap(), &args.entropy_source);
9570                                                         if outbound_scid_aliases.insert(outbound_scid_alias) { break; }
9571                                                 }
9572                                                 chan.context.set_outbound_scid_alias(outbound_scid_alias);
9573                                         } else if !outbound_scid_aliases.insert(chan.context.outbound_scid_alias()) {
9574                                                 // Note that in rare cases its possible to hit this while reading an older
9575                                                 // channel if we just happened to pick a colliding outbound alias above.
9576                                                 log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
9577                                                 return Err(DecodeError::InvalidValue);
9578                                         }
9579                                         if chan.context.is_usable() {
9580                                                 if short_to_chan_info.insert(chan.context.outbound_scid_alias(), (chan.context.get_counterparty_node_id(), *chan_id)).is_some() {
9581                                                         // Note that in rare cases its possible to hit this while reading an older
9582                                                         // channel if we just happened to pick a colliding outbound alias above.
9583                                                         log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
9584                                                         return Err(DecodeError::InvalidValue);
9585                                                 }
9586                                         }
9587                                 } else {
9588                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
9589                                         // created in this `channel_by_id` map.
9590                                         debug_assert!(false);
9591                                         return Err(DecodeError::InvalidValue);
9592                                 }
9593                         }
9594                 }
9595
9596                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(args.fee_estimator);
9597
9598                 for (_, monitor) in args.channel_monitors.iter() {
9599                         for (payment_hash, payment_preimage) in monitor.get_stored_preimages() {
9600                                 if let Some(payment) = claimable_payments.remove(&payment_hash) {
9601                                         log_info!(args.logger, "Re-claiming HTLCs with payment hash {} as we've released the preimage to a ChannelMonitor!", &payment_hash);
9602                                         let mut claimable_amt_msat = 0;
9603                                         let mut receiver_node_id = Some(our_network_pubkey);
9604                                         let phantom_shared_secret = payment.htlcs[0].prev_hop.phantom_shared_secret;
9605                                         if phantom_shared_secret.is_some() {
9606                                                 let phantom_pubkey = args.node_signer.get_node_id(Recipient::PhantomNode)
9607                                                         .expect("Failed to get node_id for phantom node recipient");
9608                                                 receiver_node_id = Some(phantom_pubkey)
9609                                         }
9610                                         for claimable_htlc in &payment.htlcs {
9611                                                 claimable_amt_msat += claimable_htlc.value;
9612
9613                                                 // Add a holding-cell claim of the payment to the Channel, which should be
9614                                                 // applied ~immediately on peer reconnection. Because it won't generate a
9615                                                 // new commitment transaction we can just provide the payment preimage to
9616                                                 // the corresponding ChannelMonitor and nothing else.
9617                                                 //
9618                                                 // We do so directly instead of via the normal ChannelMonitor update
9619                                                 // procedure as the ChainMonitor hasn't yet been initialized, implying
9620                                                 // we're not allowed to call it directly yet. Further, we do the update
9621                                                 // without incrementing the ChannelMonitor update ID as there isn't any
9622                                                 // reason to.
9623                                                 // If we were to generate a new ChannelMonitor update ID here and then
9624                                                 // crash before the user finishes block connect we'd end up force-closing
9625                                                 // this channel as well. On the flip side, there's no harm in restarting
9626                                                 // without the new monitor persisted - we'll end up right back here on
9627                                                 // restart.
9628                                                 let previous_channel_id = claimable_htlc.prev_hop.outpoint.to_channel_id();
9629                                                 if let Some(peer_node_id) = id_to_peer.get(&previous_channel_id){
9630                                                         let peer_state_mutex = per_peer_state.get(peer_node_id).unwrap();
9631                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9632                                                         let peer_state = &mut *peer_state_lock;
9633                                                         if let Some(ChannelPhase::Funded(channel)) = peer_state.channel_by_id.get_mut(&previous_channel_id) {
9634                                                                 channel.claim_htlc_while_disconnected_dropping_mon_update(claimable_htlc.prev_hop.htlc_id, payment_preimage, &args.logger);
9635                                                         }
9636                                                 }
9637                                                 if let Some(previous_hop_monitor) = args.channel_monitors.get(&claimable_htlc.prev_hop.outpoint) {
9638                                                         previous_hop_monitor.provide_payment_preimage(&payment_hash, &payment_preimage, &args.tx_broadcaster, &bounded_fee_estimator, &args.logger);
9639                                                 }
9640                                         }
9641                                         pending_events_read.push_back((events::Event::PaymentClaimed {
9642                                                 receiver_node_id,
9643                                                 payment_hash,
9644                                                 purpose: payment.purpose,
9645                                                 amount_msat: claimable_amt_msat,
9646                                                 htlcs: payment.htlcs.iter().map(events::ClaimedHTLC::from).collect(),
9647                                                 sender_intended_total_msat: payment.htlcs.first().map(|htlc| htlc.total_msat),
9648                                         }, None));
9649                                 }
9650                         }
9651                 }
9652
9653                 for (node_id, monitor_update_blocked_actions) in monitor_update_blocked_actions_per_peer.unwrap() {
9654                         if let Some(peer_state) = per_peer_state.get(&node_id) {
9655                                 for (_, actions) in monitor_update_blocked_actions.iter() {
9656                                         for action in actions.iter() {
9657                                                 if let MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
9658                                                         downstream_counterparty_and_funding_outpoint:
9659                                                                 Some((blocked_node_id, blocked_channel_outpoint, blocking_action)), ..
9660                                                 } = action {
9661                                                         if let Some(blocked_peer_state) = per_peer_state.get(&blocked_node_id) {
9662                                                                 blocked_peer_state.lock().unwrap().actions_blocking_raa_monitor_updates
9663                                                                         .entry(blocked_channel_outpoint.to_channel_id())
9664                                                                         .or_insert_with(Vec::new).push(blocking_action.clone());
9665                                                         } else {
9666                                                                 // If the channel we were blocking has closed, we don't need to
9667                                                                 // worry about it - the blocked monitor update should never have
9668                                                                 // been released from the `Channel` object so it can't have
9669                                                                 // completed, and if the channel closed there's no reason to bother
9670                                                                 // anymore.
9671                                                         }
9672                                                 }
9673                                         }
9674                                 }
9675                                 peer_state.lock().unwrap().monitor_update_blocked_actions = monitor_update_blocked_actions;
9676                         } else {
9677                                 log_error!(args.logger, "Got blocked actions without a per-peer-state for {}", node_id);
9678                                 return Err(DecodeError::InvalidValue);
9679                         }
9680                 }
9681
9682                 let channel_manager = ChannelManager {
9683                         genesis_hash,
9684                         fee_estimator: bounded_fee_estimator,
9685                         chain_monitor: args.chain_monitor,
9686                         tx_broadcaster: args.tx_broadcaster,
9687                         router: args.router,
9688
9689                         best_block: RwLock::new(BestBlock::new(best_block_hash, best_block_height)),
9690
9691                         inbound_payment_key: expanded_inbound_key,
9692                         pending_inbound_payments: Mutex::new(pending_inbound_payments),
9693                         pending_outbound_payments: pending_outbounds,
9694                         pending_intercepted_htlcs: Mutex::new(pending_intercepted_htlcs.unwrap()),
9695
9696                         forward_htlcs: Mutex::new(forward_htlcs),
9697                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments, pending_claiming_payments: pending_claiming_payments.unwrap() }),
9698                         outbound_scid_aliases: Mutex::new(outbound_scid_aliases),
9699                         id_to_peer: Mutex::new(id_to_peer),
9700                         short_to_chan_info: FairRwLock::new(short_to_chan_info),
9701                         fake_scid_rand_bytes: fake_scid_rand_bytes.unwrap(),
9702
9703                         probing_cookie_secret: probing_cookie_secret.unwrap(),
9704
9705                         our_network_pubkey,
9706                         secp_ctx,
9707
9708                         highest_seen_timestamp: AtomicUsize::new(highest_seen_timestamp as usize),
9709
9710                         per_peer_state: FairRwLock::new(per_peer_state),
9711
9712                         pending_events: Mutex::new(pending_events_read),
9713                         pending_events_processor: AtomicBool::new(false),
9714                         pending_background_events: Mutex::new(pending_background_events),
9715                         total_consistency_lock: RwLock::new(()),
9716                         background_events_processed_since_startup: AtomicBool::new(false),
9717                         persistence_notifier: Notifier::new(),
9718
9719                         entropy_source: args.entropy_source,
9720                         node_signer: args.node_signer,
9721                         signer_provider: args.signer_provider,
9722
9723                         logger: args.logger,
9724                         default_configuration: args.default_config,
9725                 };
9726
9727                 for htlc_source in failed_htlcs.drain(..) {
9728                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
9729                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
9730                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
9731                         channel_manager.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
9732                 }
9733
9734                 for (source, preimage, downstream_value, downstream_closed, downstream_node_id, downstream_funding) in pending_claims_to_replay {
9735                         // We use `downstream_closed` in place of `from_onchain` here just as a guess - we
9736                         // don't remember in the `ChannelMonitor` where we got a preimage from, but if the
9737                         // channel is closed we just assume that it probably came from an on-chain claim.
9738                         channel_manager.claim_funds_internal(source, preimage, Some(downstream_value),
9739                                 downstream_closed, downstream_node_id, downstream_funding);
9740                 }
9741
9742                 //TODO: Broadcast channel update for closed channels, but only after we've made a
9743                 //connection or two.
9744
9745                 Ok((best_block_hash.clone(), channel_manager))
9746         }
9747 }
9748
9749 #[cfg(test)]
9750 mod tests {
9751         use bitcoin::hashes::Hash;
9752         use bitcoin::hashes::sha256::Hash as Sha256;
9753         use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
9754         use core::sync::atomic::Ordering;
9755         use crate::events::{Event, HTLCDestination, MessageSendEvent, MessageSendEventsProvider, ClosureReason};
9756         use crate::ln::{PaymentPreimage, PaymentHash, PaymentSecret};
9757         use crate::ln::ChannelId;
9758         use crate::ln::channelmanager::{inbound_payment, PaymentId, PaymentSendFailure, RecipientOnionFields, InterceptId};
9759         use crate::ln::functional_test_utils::*;
9760         use crate::ln::msgs::{self, ErrorAction};
9761         use crate::ln::msgs::ChannelMessageHandler;
9762         use crate::routing::router::{PaymentParameters, RouteParameters, find_route};
9763         use crate::util::errors::APIError;
9764         use crate::util::test_utils;
9765         use crate::util::config::{ChannelConfig, ChannelConfigUpdate};
9766         use crate::sign::EntropySource;
9767
9768         #[test]
9769         fn test_notify_limits() {
9770                 // Check that a few cases which don't require the persistence of a new ChannelManager,
9771                 // indeed, do not cause the persistence of a new ChannelManager.
9772                 let chanmon_cfgs = create_chanmon_cfgs(3);
9773                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
9774                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
9775                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
9776
9777                 // All nodes start with a persistable update pending as `create_network` connects each node
9778                 // with all other nodes to make most tests simpler.
9779                 assert!(nodes[0].node.get_persistable_update_future().poll_is_complete());
9780                 assert!(nodes[1].node.get_persistable_update_future().poll_is_complete());
9781                 assert!(nodes[2].node.get_persistable_update_future().poll_is_complete());
9782
9783                 let mut chan = create_announced_chan_between_nodes(&nodes, 0, 1);
9784
9785                 // We check that the channel info nodes have doesn't change too early, even though we try
9786                 // to connect messages with new values
9787                 chan.0.contents.fee_base_msat *= 2;
9788                 chan.1.contents.fee_base_msat *= 2;
9789                 let node_a_chan_info = nodes[0].node.list_channels_with_counterparty(
9790                         &nodes[1].node.get_our_node_id()).pop().unwrap();
9791                 let node_b_chan_info = nodes[1].node.list_channels_with_counterparty(
9792                         &nodes[0].node.get_our_node_id()).pop().unwrap();
9793
9794                 // The first two nodes (which opened a channel) should now require fresh persistence
9795                 assert!(nodes[0].node.get_persistable_update_future().poll_is_complete());
9796                 assert!(nodes[1].node.get_persistable_update_future().poll_is_complete());
9797                 // ... but the last node should not.
9798                 assert!(!nodes[2].node.get_persistable_update_future().poll_is_complete());
9799                 // After persisting the first two nodes they should no longer need fresh persistence.
9800                 assert!(!nodes[0].node.get_persistable_update_future().poll_is_complete());
9801                 assert!(!nodes[1].node.get_persistable_update_future().poll_is_complete());
9802
9803                 // Node 3, unrelated to the only channel, shouldn't care if it receives a channel_update
9804                 // about the channel.
9805                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.0);
9806                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.1);
9807                 assert!(!nodes[2].node.get_persistable_update_future().poll_is_complete());
9808
9809                 // The nodes which are a party to the channel should also ignore messages from unrelated
9810                 // parties.
9811                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
9812                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
9813                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
9814                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
9815                 assert!(!nodes[0].node.get_persistable_update_future().poll_is_complete());
9816                 assert!(!nodes[1].node.get_persistable_update_future().poll_is_complete());
9817
9818                 // At this point the channel info given by peers should still be the same.
9819                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
9820                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
9821
9822                 // An earlier version of handle_channel_update didn't check the directionality of the
9823                 // update message and would always update the local fee info, even if our peer was
9824                 // (spuriously) forwarding us our own channel_update.
9825                 let as_node_one = nodes[0].node.get_our_node_id().serialize()[..] < nodes[1].node.get_our_node_id().serialize()[..];
9826                 let as_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.0 } else { &chan.1 };
9827                 let bs_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.1 } else { &chan.0 };
9828
9829                 // First deliver each peers' own message, checking that the node doesn't need to be
9830                 // persisted and that its channel info remains the same.
9831                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &as_update);
9832                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &bs_update);
9833                 assert!(!nodes[0].node.get_persistable_update_future().poll_is_complete());
9834                 assert!(!nodes[1].node.get_persistable_update_future().poll_is_complete());
9835                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
9836                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
9837
9838                 // Finally, deliver the other peers' message, ensuring each node needs to be persisted and
9839                 // the channel info has updated.
9840                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &bs_update);
9841                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &as_update);
9842                 assert!(nodes[0].node.get_persistable_update_future().poll_is_complete());
9843                 assert!(nodes[1].node.get_persistable_update_future().poll_is_complete());
9844                 assert_ne!(nodes[0].node.list_channels()[0], node_a_chan_info);
9845                 assert_ne!(nodes[1].node.list_channels()[0], node_b_chan_info);
9846         }
9847
9848         #[test]
9849         fn test_keysend_dup_hash_partial_mpp() {
9850                 // Test that a keysend payment with a duplicate hash to an existing partial MPP payment fails as
9851                 // expected.
9852                 let chanmon_cfgs = create_chanmon_cfgs(2);
9853                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9854                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9855                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9856                 create_announced_chan_between_nodes(&nodes, 0, 1);
9857
9858                 // First, send a partial MPP payment.
9859                 let (route, our_payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100_000);
9860                 let mut mpp_route = route.clone();
9861                 mpp_route.paths.push(mpp_route.paths[0].clone());
9862
9863                 let payment_id = PaymentId([42; 32]);
9864                 // Use the utility function send_payment_along_path to send the payment with MPP data which
9865                 // indicates there are more HTLCs coming.
9866                 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.
9867                 let session_privs = nodes[0].node.test_add_new_pending_payment(our_payment_hash,
9868                         RecipientOnionFields::secret_only(payment_secret), payment_id, &mpp_route).unwrap();
9869                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[0], &our_payment_hash,
9870                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[0]).unwrap();
9871                 check_added_monitors!(nodes[0], 1);
9872                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9873                 assert_eq!(events.len(), 1);
9874                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), false, None);
9875
9876                 // Next, send a keysend payment with the same payment_hash and make sure it fails.
9877                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9878                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
9879                 check_added_monitors!(nodes[0], 1);
9880                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9881                 assert_eq!(events.len(), 1);
9882                 let ev = events.drain(..).next().unwrap();
9883                 let payment_event = SendEvent::from_event(ev);
9884                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9885                 check_added_monitors!(nodes[1], 0);
9886                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9887                 expect_pending_htlcs_forwardable!(nodes[1]);
9888                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
9889                 check_added_monitors!(nodes[1], 1);
9890                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9891                 assert!(updates.update_add_htlcs.is_empty());
9892                 assert!(updates.update_fulfill_htlcs.is_empty());
9893                 assert_eq!(updates.update_fail_htlcs.len(), 1);
9894                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9895                 assert!(updates.update_fee.is_none());
9896                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
9897                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
9898                 expect_payment_failed!(nodes[0], our_payment_hash, true);
9899
9900                 // Send the second half of the original MPP payment.
9901                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[1], &our_payment_hash,
9902                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[1]).unwrap();
9903                 check_added_monitors!(nodes[0], 1);
9904                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9905                 assert_eq!(events.len(), 1);
9906                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), true, None);
9907
9908                 // Claim the full MPP payment. Note that we can't use a test utility like
9909                 // claim_funds_along_route because the ordering of the messages causes the second half of the
9910                 // payment to be put in the holding cell, which confuses the test utilities. So we exchange the
9911                 // lightning messages manually.
9912                 nodes[1].node.claim_funds(payment_preimage);
9913                 expect_payment_claimed!(nodes[1], our_payment_hash, 200_000);
9914                 check_added_monitors!(nodes[1], 2);
9915
9916                 let bs_first_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9917                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_first_updates.update_fulfill_htlcs[0]);
9918                 expect_payment_sent(&nodes[0], payment_preimage, None, false, false);
9919                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_first_updates.commitment_signed);
9920                 check_added_monitors!(nodes[0], 1);
9921                 let (as_first_raa, as_first_cs) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
9922                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_first_raa);
9923                 check_added_monitors!(nodes[1], 1);
9924                 let bs_second_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9925                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_first_cs);
9926                 check_added_monitors!(nodes[1], 1);
9927                 let bs_first_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
9928                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_second_updates.update_fulfill_htlcs[0]);
9929                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_second_updates.commitment_signed);
9930                 check_added_monitors!(nodes[0], 1);
9931                 let as_second_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
9932                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_first_raa);
9933                 let as_second_updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
9934                 check_added_monitors!(nodes[0], 1);
9935                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_second_raa);
9936                 check_added_monitors!(nodes[1], 1);
9937                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_second_updates.commitment_signed);
9938                 check_added_monitors!(nodes[1], 1);
9939                 let bs_third_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
9940                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_third_raa);
9941                 check_added_monitors!(nodes[0], 1);
9942
9943                 // Note that successful MPP payments will generate a single PaymentSent event upon the first
9944                 // path's success and a PaymentPathSuccessful event for each path's success.
9945                 let events = nodes[0].node.get_and_clear_pending_events();
9946                 assert_eq!(events.len(), 2);
9947                 match events[0] {
9948                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
9949                                 assert_eq!(payment_id, *actual_payment_id);
9950                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
9951                                 assert_eq!(route.paths[0], *path);
9952                         },
9953                         _ => panic!("Unexpected event"),
9954                 }
9955                 match events[1] {
9956                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
9957                                 assert_eq!(payment_id, *actual_payment_id);
9958                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
9959                                 assert_eq!(route.paths[0], *path);
9960                         },
9961                         _ => panic!("Unexpected event"),
9962                 }
9963         }
9964
9965         #[test]
9966         fn test_keysend_dup_payment_hash() {
9967                 do_test_keysend_dup_payment_hash(false);
9968                 do_test_keysend_dup_payment_hash(true);
9969         }
9970
9971         fn do_test_keysend_dup_payment_hash(accept_mpp_keysend: bool) {
9972                 // (1): Test that a keysend payment with a duplicate payment hash to an existing pending
9973                 //      outbound regular payment fails as expected.
9974                 // (2): Test that a regular payment with a duplicate payment hash to an existing keysend payment
9975                 //      fails as expected.
9976                 // (3): Test that a keysend payment with a duplicate payment hash to an existing keysend
9977                 //      payment fails as expected. When `accept_mpp_keysend` is false, this tests that we
9978                 //      reject MPP keysend payments, since in this case where the payment has no payment
9979                 //      secret, a keysend payment with a duplicate hash is basically an MPP keysend. If
9980                 //      `accept_mpp_keysend` is true, this tests that we only accept MPP keysends with
9981                 //      payment secrets and reject otherwise.
9982                 let chanmon_cfgs = create_chanmon_cfgs(2);
9983                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9984                 let mut mpp_keysend_cfg = test_default_channel_config();
9985                 mpp_keysend_cfg.accept_mpp_keysend = accept_mpp_keysend;
9986                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(mpp_keysend_cfg)]);
9987                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9988                 create_announced_chan_between_nodes(&nodes, 0, 1);
9989                 let scorer = test_utils::TestScorer::new();
9990                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
9991
9992                 // To start (1), send a regular payment but don't claim it.
9993                 let expected_route = [&nodes[1]];
9994                 let (payment_preimage, payment_hash, ..) = route_payment(&nodes[0], &expected_route, 100_000);
9995
9996                 // Next, attempt a keysend payment and make sure it fails.
9997                 let route_params = RouteParameters::from_payment_params_and_value(
9998                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(),
9999                         TEST_FINAL_CLTV, false), 100_000);
10000                 let route = find_route(
10001                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
10002                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
10003                 ).unwrap();
10004                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10005                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
10006                 check_added_monitors!(nodes[0], 1);
10007                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10008                 assert_eq!(events.len(), 1);
10009                 let ev = events.drain(..).next().unwrap();
10010                 let payment_event = SendEvent::from_event(ev);
10011                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
10012                 check_added_monitors!(nodes[1], 0);
10013                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
10014                 // We have to forward pending HTLCs twice - once tries to forward the payment forward (and
10015                 // fails), the second will process the resulting failure and fail the HTLC backward
10016                 expect_pending_htlcs_forwardable!(nodes[1]);
10017                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
10018                 check_added_monitors!(nodes[1], 1);
10019                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10020                 assert!(updates.update_add_htlcs.is_empty());
10021                 assert!(updates.update_fulfill_htlcs.is_empty());
10022                 assert_eq!(updates.update_fail_htlcs.len(), 1);
10023                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10024                 assert!(updates.update_fee.is_none());
10025                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
10026                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
10027                 expect_payment_failed!(nodes[0], payment_hash, true);
10028
10029                 // Finally, claim the original payment.
10030                 claim_payment(&nodes[0], &expected_route, payment_preimage);
10031
10032                 // To start (2), send a keysend payment but don't claim it.
10033                 let payment_preimage = PaymentPreimage([42; 32]);
10034                 let route = find_route(
10035                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
10036                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
10037                 ).unwrap();
10038                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10039                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
10040                 check_added_monitors!(nodes[0], 1);
10041                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10042                 assert_eq!(events.len(), 1);
10043                 let event = events.pop().unwrap();
10044                 let path = vec![&nodes[1]];
10045                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
10046
10047                 // Next, attempt a regular payment and make sure it fails.
10048                 let payment_secret = PaymentSecret([43; 32]);
10049                 nodes[0].node.send_payment_with_route(&route, payment_hash,
10050                         RecipientOnionFields::secret_only(payment_secret), PaymentId(payment_hash.0)).unwrap();
10051                 check_added_monitors!(nodes[0], 1);
10052                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10053                 assert_eq!(events.len(), 1);
10054                 let ev = events.drain(..).next().unwrap();
10055                 let payment_event = SendEvent::from_event(ev);
10056                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
10057                 check_added_monitors!(nodes[1], 0);
10058                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
10059                 expect_pending_htlcs_forwardable!(nodes[1]);
10060                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
10061                 check_added_monitors!(nodes[1], 1);
10062                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10063                 assert!(updates.update_add_htlcs.is_empty());
10064                 assert!(updates.update_fulfill_htlcs.is_empty());
10065                 assert_eq!(updates.update_fail_htlcs.len(), 1);
10066                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10067                 assert!(updates.update_fee.is_none());
10068                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
10069                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
10070                 expect_payment_failed!(nodes[0], payment_hash, true);
10071
10072                 // Finally, succeed the keysend payment.
10073                 claim_payment(&nodes[0], &expected_route, payment_preimage);
10074
10075                 // To start (3), send a keysend payment but don't claim it.
10076                 let payment_id_1 = PaymentId([44; 32]);
10077                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10078                         RecipientOnionFields::spontaneous_empty(), payment_id_1).unwrap();
10079                 check_added_monitors!(nodes[0], 1);
10080                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10081                 assert_eq!(events.len(), 1);
10082                 let event = events.pop().unwrap();
10083                 let path = vec![&nodes[1]];
10084                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
10085
10086                 // Next, attempt a keysend payment and make sure it fails.
10087                 let route_params = RouteParameters::from_payment_params_and_value(
10088                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(), TEST_FINAL_CLTV, false),
10089                         100_000
10090                 );
10091                 let route = find_route(
10092                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
10093                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
10094                 ).unwrap();
10095                 let payment_id_2 = PaymentId([45; 32]);
10096                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10097                         RecipientOnionFields::spontaneous_empty(), payment_id_2).unwrap();
10098                 check_added_monitors!(nodes[0], 1);
10099                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10100                 assert_eq!(events.len(), 1);
10101                 let ev = events.drain(..).next().unwrap();
10102                 let payment_event = SendEvent::from_event(ev);
10103                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
10104                 check_added_monitors!(nodes[1], 0);
10105                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
10106                 expect_pending_htlcs_forwardable!(nodes[1]);
10107                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
10108                 check_added_monitors!(nodes[1], 1);
10109                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10110                 assert!(updates.update_add_htlcs.is_empty());
10111                 assert!(updates.update_fulfill_htlcs.is_empty());
10112                 assert_eq!(updates.update_fail_htlcs.len(), 1);
10113                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10114                 assert!(updates.update_fee.is_none());
10115                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
10116                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
10117                 expect_payment_failed!(nodes[0], payment_hash, true);
10118
10119                 // Finally, claim the original payment.
10120                 claim_payment(&nodes[0], &expected_route, payment_preimage);
10121         }
10122
10123         #[test]
10124         fn test_keysend_hash_mismatch() {
10125                 // Test that if we receive a keysend `update_add_htlc` msg, we fail as expected if the keysend
10126                 // preimage doesn't match the msg's payment hash.
10127                 let chanmon_cfgs = create_chanmon_cfgs(2);
10128                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10129                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10130                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10131
10132                 let payer_pubkey = nodes[0].node.get_our_node_id();
10133                 let payee_pubkey = nodes[1].node.get_our_node_id();
10134
10135                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
10136                 let route_params = RouteParameters::from_payment_params_and_value(
10137                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
10138                 let network_graph = nodes[0].network_graph.clone();
10139                 let first_hops = nodes[0].node.list_usable_channels();
10140                 let scorer = test_utils::TestScorer::new();
10141                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
10142                 let route = find_route(
10143                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
10144                         nodes[0].logger, &scorer, &(), &random_seed_bytes
10145                 ).unwrap();
10146
10147                 let test_preimage = PaymentPreimage([42; 32]);
10148                 let mismatch_payment_hash = PaymentHash([43; 32]);
10149                 let session_privs = nodes[0].node.test_add_new_pending_payment(mismatch_payment_hash,
10150                         RecipientOnionFields::spontaneous_empty(), PaymentId(mismatch_payment_hash.0), &route).unwrap();
10151                 nodes[0].node.test_send_payment_internal(&route, mismatch_payment_hash,
10152                         RecipientOnionFields::spontaneous_empty(), Some(test_preimage), PaymentId(mismatch_payment_hash.0), None, session_privs).unwrap();
10153                 check_added_monitors!(nodes[0], 1);
10154
10155                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10156                 assert_eq!(updates.update_add_htlcs.len(), 1);
10157                 assert!(updates.update_fulfill_htlcs.is_empty());
10158                 assert!(updates.update_fail_htlcs.is_empty());
10159                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10160                 assert!(updates.update_fee.is_none());
10161                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
10162
10163                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "Payment preimage didn't match payment hash", 1);
10164         }
10165
10166         #[test]
10167         fn test_keysend_msg_with_secret_err() {
10168                 // Test that we error as expected if we receive a keysend payment that includes a payment
10169                 // secret when we don't support MPP keysend.
10170                 let mut reject_mpp_keysend_cfg = test_default_channel_config();
10171                 reject_mpp_keysend_cfg.accept_mpp_keysend = false;
10172                 let chanmon_cfgs = create_chanmon_cfgs(2);
10173                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10174                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(reject_mpp_keysend_cfg)]);
10175                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10176
10177                 let payer_pubkey = nodes[0].node.get_our_node_id();
10178                 let payee_pubkey = nodes[1].node.get_our_node_id();
10179
10180                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
10181                 let route_params = RouteParameters::from_payment_params_and_value(
10182                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
10183                 let network_graph = nodes[0].network_graph.clone();
10184                 let first_hops = nodes[0].node.list_usable_channels();
10185                 let scorer = test_utils::TestScorer::new();
10186                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
10187                 let route = find_route(
10188                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
10189                         nodes[0].logger, &scorer, &(), &random_seed_bytes
10190                 ).unwrap();
10191
10192                 let test_preimage = PaymentPreimage([42; 32]);
10193                 let test_secret = PaymentSecret([43; 32]);
10194                 let payment_hash = PaymentHash(Sha256::hash(&test_preimage.0).into_inner());
10195                 let session_privs = nodes[0].node.test_add_new_pending_payment(payment_hash,
10196                         RecipientOnionFields::secret_only(test_secret), PaymentId(payment_hash.0), &route).unwrap();
10197                 nodes[0].node.test_send_payment_internal(&route, payment_hash,
10198                         RecipientOnionFields::secret_only(test_secret), Some(test_preimage),
10199                         PaymentId(payment_hash.0), None, session_privs).unwrap();
10200                 check_added_monitors!(nodes[0], 1);
10201
10202                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10203                 assert_eq!(updates.update_add_htlcs.len(), 1);
10204                 assert!(updates.update_fulfill_htlcs.is_empty());
10205                 assert!(updates.update_fail_htlcs.is_empty());
10206                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10207                 assert!(updates.update_fee.is_none());
10208                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
10209
10210                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "We don't support MPP keysend payments", 1);
10211         }
10212
10213         #[test]
10214         fn test_multi_hop_missing_secret() {
10215                 let chanmon_cfgs = create_chanmon_cfgs(4);
10216                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
10217                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
10218                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
10219
10220                 let chan_1_id = create_announced_chan_between_nodes(&nodes, 0, 1).0.contents.short_channel_id;
10221                 let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2).0.contents.short_channel_id;
10222                 let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3).0.contents.short_channel_id;
10223                 let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3).0.contents.short_channel_id;
10224
10225                 // Marshall an MPP route.
10226                 let (mut route, payment_hash, _, _) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
10227                 let path = route.paths[0].clone();
10228                 route.paths.push(path);
10229                 route.paths[0].hops[0].pubkey = nodes[1].node.get_our_node_id();
10230                 route.paths[0].hops[0].short_channel_id = chan_1_id;
10231                 route.paths[0].hops[1].short_channel_id = chan_3_id;
10232                 route.paths[1].hops[0].pubkey = nodes[2].node.get_our_node_id();
10233                 route.paths[1].hops[0].short_channel_id = chan_2_id;
10234                 route.paths[1].hops[1].short_channel_id = chan_4_id;
10235
10236                 match nodes[0].node.send_payment_with_route(&route, payment_hash,
10237                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_hash.0))
10238                 .unwrap_err() {
10239                         PaymentSendFailure::ParameterError(APIError::APIMisuseError { ref err }) => {
10240                                 assert!(regex::Regex::new(r"Payment secret is required for multi-path payments").unwrap().is_match(err))
10241                         },
10242                         _ => panic!("unexpected error")
10243                 }
10244         }
10245
10246         #[test]
10247         fn test_drop_disconnected_peers_when_removing_channels() {
10248                 let chanmon_cfgs = create_chanmon_cfgs(2);
10249                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10250                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10251                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10252
10253                 let chan = create_announced_chan_between_nodes(&nodes, 0, 1);
10254
10255                 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
10256                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10257
10258                 nodes[0].node.force_close_broadcasting_latest_txn(&chan.2, &nodes[1].node.get_our_node_id()).unwrap();
10259                 check_closed_broadcast!(nodes[0], true);
10260                 check_added_monitors!(nodes[0], 1);
10261                 check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed, [nodes[1].node.get_our_node_id()], 100000);
10262
10263                 {
10264                         // Assert that nodes[1] is awaiting removal for nodes[0] once nodes[1] has been
10265                         // disconnected and the channel between has been force closed.
10266                         let nodes_0_per_peer_state = nodes[0].node.per_peer_state.read().unwrap();
10267                         // Assert that nodes[1] isn't removed before `timer_tick_occurred` has been executed.
10268                         assert_eq!(nodes_0_per_peer_state.len(), 1);
10269                         assert!(nodes_0_per_peer_state.get(&nodes[1].node.get_our_node_id()).is_some());
10270                 }
10271
10272                 nodes[0].node.timer_tick_occurred();
10273
10274                 {
10275                         // Assert that nodes[1] has now been removed.
10276                         assert_eq!(nodes[0].node.per_peer_state.read().unwrap().len(), 0);
10277                 }
10278         }
10279
10280         #[test]
10281         fn bad_inbound_payment_hash() {
10282                 // Add coverage for checking that a user-provided payment hash matches the payment secret.
10283                 let chanmon_cfgs = create_chanmon_cfgs(2);
10284                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10285                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10286                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10287
10288                 let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[0]);
10289                 let payment_data = msgs::FinalOnionHopData {
10290                         payment_secret,
10291                         total_msat: 100_000,
10292                 };
10293
10294                 // Ensure that if the payment hash given to `inbound_payment::verify` differs from the original,
10295                 // payment verification fails as expected.
10296                 let mut bad_payment_hash = payment_hash.clone();
10297                 bad_payment_hash.0[0] += 1;
10298                 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) {
10299                         Ok(_) => panic!("Unexpected ok"),
10300                         Err(()) => {
10301                                 nodes[0].logger.assert_log_contains("lightning::ln::inbound_payment", "Failing HTLC with user-generated payment_hash", 1);
10302                         }
10303                 }
10304
10305                 // Check that using the original payment hash succeeds.
10306                 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());
10307         }
10308
10309         #[test]
10310         fn test_id_to_peer_coverage() {
10311                 // Test that the `ChannelManager:id_to_peer` contains channels which have been assigned
10312                 // a `channel_id` (i.e. have had the funding tx created), and that they are removed once
10313                 // the channel is successfully closed.
10314                 let chanmon_cfgs = create_chanmon_cfgs(2);
10315                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10316                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10317                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10318
10319                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1_000_000, 500_000_000, 42, None).unwrap();
10320                 let open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10321                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel);
10322                 let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10323                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
10324
10325                 let (temporary_channel_id, tx, _funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 1_000_000, 42);
10326                 let channel_id = ChannelId::from_bytes(tx.txid().into_inner());
10327                 {
10328                         // Ensure that the `id_to_peer` map is empty until either party has received the
10329                         // funding transaction, and have the real `channel_id`.
10330                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
10331                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10332                 }
10333
10334                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
10335                 {
10336                         // Assert that `nodes[0]`'s `id_to_peer` map is populated with the channel as soon as
10337                         // as it has the funding transaction.
10338                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10339                         assert_eq!(nodes_0_lock.len(), 1);
10340                         assert!(nodes_0_lock.contains_key(&channel_id));
10341                 }
10342
10343                 assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10344
10345                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
10346
10347                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
10348                 {
10349                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10350                         assert_eq!(nodes_0_lock.len(), 1);
10351                         assert!(nodes_0_lock.contains_key(&channel_id));
10352                 }
10353                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
10354
10355                 {
10356                         // Assert that `nodes[1]`'s `id_to_peer` map is populated with the channel as soon as
10357                         // as it has the funding transaction.
10358                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10359                         assert_eq!(nodes_1_lock.len(), 1);
10360                         assert!(nodes_1_lock.contains_key(&channel_id));
10361                 }
10362                 check_added_monitors!(nodes[1], 1);
10363                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
10364                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
10365                 check_added_monitors!(nodes[0], 1);
10366                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
10367                 let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
10368                 let (announcement, nodes_0_update, nodes_1_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
10369                 update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &nodes_0_update, &nodes_1_update);
10370
10371                 nodes[0].node.close_channel(&channel_id, &nodes[1].node.get_our_node_id()).unwrap();
10372                 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()));
10373                 let nodes_1_shutdown = get_event_msg!(nodes[1], MessageSendEvent::SendShutdown, nodes[0].node.get_our_node_id());
10374                 nodes[0].node.handle_shutdown(&nodes[1].node.get_our_node_id(), &nodes_1_shutdown);
10375
10376                 let closing_signed_node_0 = get_event_msg!(nodes[0], MessageSendEvent::SendClosingSigned, nodes[1].node.get_our_node_id());
10377                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0);
10378                 {
10379                         // Assert that the channel is kept in the `id_to_peer` map for both nodes until the
10380                         // channel can be fully closed by both parties (i.e. no outstanding htlcs exists, the
10381                         // fee for the closing transaction has been negotiated and the parties has the other
10382                         // party's signature for the fee negotiated closing transaction.)
10383                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10384                         assert_eq!(nodes_0_lock.len(), 1);
10385                         assert!(nodes_0_lock.contains_key(&channel_id));
10386                 }
10387
10388                 {
10389                         // At this stage, `nodes[1]` has proposed a fee for the closing transaction in the
10390                         // `handle_closing_signed` call above. As `nodes[1]` has not yet received the signature
10391                         // from `nodes[0]` for the closing transaction with the proposed fee, the channel is
10392                         // kept in the `nodes[1]`'s `id_to_peer` map.
10393                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10394                         assert_eq!(nodes_1_lock.len(), 1);
10395                         assert!(nodes_1_lock.contains_key(&channel_id));
10396                 }
10397
10398                 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()));
10399                 {
10400                         // `nodes[0]` accepts `nodes[1]`'s proposed fee for the closing transaction, and
10401                         // therefore has all it needs to fully close the channel (both signatures for the
10402                         // closing transaction).
10403                         // Assert that the channel is removed from `nodes[0]`'s `id_to_peer` map as it can be
10404                         // fully closed by `nodes[0]`.
10405                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
10406
10407                         // Assert that the channel is still in `nodes[1]`'s  `id_to_peer` map, as `nodes[1]`
10408                         // doesn't have `nodes[0]`'s signature for the closing transaction yet.
10409                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10410                         assert_eq!(nodes_1_lock.len(), 1);
10411                         assert!(nodes_1_lock.contains_key(&channel_id));
10412                 }
10413
10414                 let (_nodes_0_update, closing_signed_node_0) = get_closing_signed_broadcast!(nodes[0].node, nodes[1].node.get_our_node_id());
10415
10416                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0.unwrap());
10417                 {
10418                         // Assert that the channel has now been removed from both parties `id_to_peer` map once
10419                         // they both have everything required to fully close the channel.
10420                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10421                 }
10422                 let (_nodes_1_update, _none) = get_closing_signed_broadcast!(nodes[1].node, nodes[0].node.get_our_node_id());
10423
10424                 check_closed_event!(nodes[0], 1, ClosureReason::CooperativeClosure, [nodes[1].node.get_our_node_id()], 1000000);
10425                 check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure, [nodes[0].node.get_our_node_id()], 1000000);
10426         }
10427
10428         fn check_not_connected_to_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
10429                 let expected_message = format!("Not connected to node: {}", expected_public_key);
10430                 check_api_error_message(expected_message, res_err)
10431         }
10432
10433         fn check_unkown_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
10434                 let expected_message = format!("Can't find a peer matching the passed counterparty node_id {}", expected_public_key);
10435                 check_api_error_message(expected_message, res_err)
10436         }
10437
10438         fn check_api_error_message<T>(expected_err_message: String, res_err: Result<T, APIError>) {
10439                 match res_err {
10440                         Err(APIError::APIMisuseError { err }) => {
10441                                 assert_eq!(err, expected_err_message);
10442                         },
10443                         Err(APIError::ChannelUnavailable { err }) => {
10444                                 assert_eq!(err, expected_err_message);
10445                         },
10446                         Ok(_) => panic!("Unexpected Ok"),
10447                         Err(_) => panic!("Unexpected Error"),
10448                 }
10449         }
10450
10451         #[test]
10452         fn test_api_calls_with_unkown_counterparty_node() {
10453                 // Tests that our API functions that expects a `counterparty_node_id` as input, behaves as
10454                 // expected if the `counterparty_node_id` is an unkown peer in the
10455                 // `ChannelManager::per_peer_state` map.
10456                 let chanmon_cfg = create_chanmon_cfgs(2);
10457                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
10458                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[None, None]);
10459                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
10460
10461                 // Dummy values
10462                 let channel_id = ChannelId::from_bytes([4; 32]);
10463                 let unkown_public_key = PublicKey::from_secret_key(&Secp256k1::signing_only(), &SecretKey::from_slice(&[42; 32]).unwrap());
10464                 let intercept_id = InterceptId([0; 32]);
10465
10466                 // Test the API functions.
10467                 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);
10468
10469                 check_unkown_peer_error(nodes[0].node.accept_inbound_channel(&channel_id, &unkown_public_key, 42), unkown_public_key);
10470
10471                 check_unkown_peer_error(nodes[0].node.close_channel(&channel_id, &unkown_public_key), unkown_public_key);
10472
10473                 check_unkown_peer_error(nodes[0].node.force_close_broadcasting_latest_txn(&channel_id, &unkown_public_key), unkown_public_key);
10474
10475                 check_unkown_peer_error(nodes[0].node.force_close_without_broadcasting_txn(&channel_id, &unkown_public_key), unkown_public_key);
10476
10477                 check_unkown_peer_error(nodes[0].node.forward_intercepted_htlc(intercept_id, &channel_id, unkown_public_key, 1_000_000), unkown_public_key);
10478
10479                 check_unkown_peer_error(nodes[0].node.update_channel_config(&unkown_public_key, &[channel_id], &ChannelConfig::default()), unkown_public_key);
10480         }
10481
10482         #[test]
10483         fn test_connection_limiting() {
10484                 // Test that we limit un-channel'd peers and un-funded channels properly.
10485                 let chanmon_cfgs = create_chanmon_cfgs(2);
10486                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10487                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10488                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10489
10490                 // Note that create_network connects the nodes together for us
10491
10492                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10493                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10494
10495                 let mut funding_tx = None;
10496                 for idx in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
10497                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10498                         let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10499
10500                         if idx == 0 {
10501                                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
10502                                 let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100_000, 42);
10503                                 funding_tx = Some(tx.clone());
10504                                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx).unwrap();
10505                                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
10506
10507                                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
10508                                 check_added_monitors!(nodes[1], 1);
10509                                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
10510
10511                                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
10512
10513                                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
10514                                 check_added_monitors!(nodes[0], 1);
10515                                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
10516                         }
10517                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10518                 }
10519
10520                 // A MAX_UNFUNDED_CHANS_PER_PEER + 1 channel will be summarily rejected
10521                 open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10522                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10523                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10524                         open_channel_msg.temporary_channel_id);
10525
10526                 // Further, because all of our channels with nodes[0] are inbound, and none of them funded,
10527                 // it doesn't count as a "protected" peer, i.e. it counts towards the MAX_NO_CHANNEL_PEERS
10528                 // limit.
10529                 let mut peer_pks = Vec::with_capacity(super::MAX_NO_CHANNEL_PEERS);
10530                 for _ in 1..super::MAX_NO_CHANNEL_PEERS {
10531                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10532                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10533                         peer_pks.push(random_pk);
10534                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
10535                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10536                         }, true).unwrap();
10537                 }
10538                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10539                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10540                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10541                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10542                 }, true).unwrap_err();
10543
10544                 // Also importantly, because nodes[0] isn't "protected", we will refuse a reconnection from
10545                 // them if we have too many un-channel'd peers.
10546                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10547                 let chan_closed_events = nodes[1].node.get_and_clear_pending_events();
10548                 assert_eq!(chan_closed_events.len(), super::MAX_UNFUNDED_CHANS_PER_PEER - 1);
10549                 for ev in chan_closed_events {
10550                         if let Event::ChannelClosed { .. } = ev { } else { panic!(); }
10551                 }
10552                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10553                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10554                 }, true).unwrap();
10555                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10556                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10557                 }, true).unwrap_err();
10558
10559                 // but of course if the connection is outbound its allowed...
10560                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10561                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10562                 }, false).unwrap();
10563                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10564
10565                 // Now nodes[0] is disconnected but still has a pending, un-funded channel lying around.
10566                 // Even though we accept one more connection from new peers, we won't actually let them
10567                 // open channels.
10568                 assert!(peer_pks.len() > super::MAX_UNFUNDED_CHANNEL_PEERS - 1);
10569                 for i in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
10570                         nodes[1].node.handle_open_channel(&peer_pks[i], &open_channel_msg);
10571                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, peer_pks[i]);
10572                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10573                 }
10574                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10575                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
10576                         open_channel_msg.temporary_channel_id);
10577
10578                 // Of course, however, outbound channels are always allowed
10579                 nodes[1].node.create_channel(last_random_pk, 100_000, 0, 42, None).unwrap();
10580                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, last_random_pk);
10581
10582                 // If we fund the first channel, nodes[0] has a live on-chain channel with us, it is now
10583                 // "protected" and can connect again.
10584                 mine_transaction(&nodes[1], funding_tx.as_ref().unwrap());
10585                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10586                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10587                 }, true).unwrap();
10588                 get_event_msg!(nodes[1], MessageSendEvent::SendChannelReestablish, nodes[0].node.get_our_node_id());
10589
10590                 // Further, because the first channel was funded, we can open another channel with
10591                 // last_random_pk.
10592                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10593                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
10594         }
10595
10596         #[test]
10597         fn test_outbound_chans_unlimited() {
10598                 // Test that we never refuse an outbound channel even if a peer is unfuned-channel-limited
10599                 let chanmon_cfgs = create_chanmon_cfgs(2);
10600                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10601                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10602                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10603
10604                 // Note that create_network connects the nodes together for us
10605
10606                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10607                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10608
10609                 for _ in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
10610                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10611                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10612                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10613                 }
10614
10615                 // Once we have MAX_UNFUNDED_CHANS_PER_PEER unfunded channels, new inbound channels will be
10616                 // rejected.
10617                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10618                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10619                         open_channel_msg.temporary_channel_id);
10620
10621                 // but we can still open an outbound channel.
10622                 nodes[1].node.create_channel(nodes[0].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10623                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
10624
10625                 // but even with such an outbound channel, additional inbound channels will still fail.
10626                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10627                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10628                         open_channel_msg.temporary_channel_id);
10629         }
10630
10631         #[test]
10632         fn test_0conf_limiting() {
10633                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
10634                 // flag set and (sometimes) accept channels as 0conf.
10635                 let chanmon_cfgs = create_chanmon_cfgs(2);
10636                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10637                 let mut settings = test_default_channel_config();
10638                 settings.manually_accept_inbound_channels = true;
10639                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(settings)]);
10640                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10641
10642                 // Note that create_network connects the nodes together for us
10643
10644                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10645                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10646
10647                 // First, get us up to MAX_UNFUNDED_CHANNEL_PEERS so we can test at the edge
10648                 for _ in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
10649                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10650                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10651                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
10652                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10653                         }, true).unwrap();
10654
10655                         nodes[1].node.handle_open_channel(&random_pk, &open_channel_msg);
10656                         let events = nodes[1].node.get_and_clear_pending_events();
10657                         match events[0] {
10658                                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
10659                                         nodes[1].node.accept_inbound_channel(&temporary_channel_id, &random_pk, 23).unwrap();
10660                                 }
10661                                 _ => panic!("Unexpected event"),
10662                         }
10663                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, random_pk);
10664                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10665                 }
10666
10667                 // If we try to accept a channel from another peer non-0conf it will fail.
10668                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10669                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10670                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10671                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10672                 }, true).unwrap();
10673                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10674                 let events = nodes[1].node.get_and_clear_pending_events();
10675                 match events[0] {
10676                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10677                                 match nodes[1].node.accept_inbound_channel(&temporary_channel_id, &last_random_pk, 23) {
10678                                         Err(APIError::APIMisuseError { err }) =>
10679                                                 assert_eq!(err, "Too many peers with unfunded channels, refusing to accept new ones"),
10680                                         _ => panic!(),
10681                                 }
10682                         }
10683                         _ => panic!("Unexpected event"),
10684                 }
10685                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
10686                         open_channel_msg.temporary_channel_id);
10687
10688                 // ...however if we accept the same channel 0conf it should work just fine.
10689                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10690                 let events = nodes[1].node.get_and_clear_pending_events();
10691                 match events[0] {
10692                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10693                                 nodes[1].node.accept_inbound_channel_from_trusted_peer_0conf(&temporary_channel_id, &last_random_pk, 23).unwrap();
10694                         }
10695                         _ => panic!("Unexpected event"),
10696                 }
10697                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
10698         }
10699
10700         #[test]
10701         fn reject_excessively_underpaying_htlcs() {
10702                 let chanmon_cfg = create_chanmon_cfgs(1);
10703                 let node_cfg = create_node_cfgs(1, &chanmon_cfg);
10704                 let node_chanmgr = create_node_chanmgrs(1, &node_cfg, &[None]);
10705                 let node = create_network(1, &node_cfg, &node_chanmgr);
10706                 let sender_intended_amt_msat = 100;
10707                 let extra_fee_msat = 10;
10708                 let hop_data = msgs::InboundOnionPayload::Receive {
10709                         amt_msat: 100,
10710                         outgoing_cltv_value: 42,
10711                         payment_metadata: None,
10712                         keysend_preimage: None,
10713                         payment_data: Some(msgs::FinalOnionHopData {
10714                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
10715                         }),
10716                         custom_tlvs: Vec::new(),
10717                 };
10718                 // Check that if the amount we received + the penultimate hop extra fee is less than the sender
10719                 // intended amount, we fail the payment.
10720                 if let Err(crate::ln::channelmanager::InboundOnionErr { err_code, .. }) =
10721                         node[0].node.construct_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
10722                                 sender_intended_amt_msat - extra_fee_msat - 1, 42, None, true, Some(extra_fee_msat))
10723                 {
10724                         assert_eq!(err_code, 19);
10725                 } else { panic!(); }
10726
10727                 // If amt_received + extra_fee is equal to the sender intended amount, we're fine.
10728                 let hop_data = msgs::InboundOnionPayload::Receive { // This is the same payload as above, InboundOnionPayload doesn't implement Clone
10729                         amt_msat: 100,
10730                         outgoing_cltv_value: 42,
10731                         payment_metadata: None,
10732                         keysend_preimage: None,
10733                         payment_data: Some(msgs::FinalOnionHopData {
10734                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
10735                         }),
10736                         custom_tlvs: Vec::new(),
10737                 };
10738                 assert!(node[0].node.construct_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
10739                         sender_intended_amt_msat - extra_fee_msat, 42, None, true, Some(extra_fee_msat)).is_ok());
10740         }
10741
10742         #[test]
10743         fn test_inbound_anchors_manual_acceptance() {
10744                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
10745                 // flag set and (sometimes) accept channels as 0conf.
10746                 let mut anchors_cfg = test_default_channel_config();
10747                 anchors_cfg.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
10748
10749                 let mut anchors_manual_accept_cfg = anchors_cfg.clone();
10750                 anchors_manual_accept_cfg.manually_accept_inbound_channels = true;
10751
10752                 let chanmon_cfgs = create_chanmon_cfgs(3);
10753                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
10754                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs,
10755                         &[Some(anchors_cfg.clone()), Some(anchors_cfg.clone()), Some(anchors_manual_accept_cfg.clone())]);
10756                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
10757
10758                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10759                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10760
10761                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10762                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
10763                 let msg_events = nodes[1].node.get_and_clear_pending_msg_events();
10764                 match &msg_events[0] {
10765                         MessageSendEvent::HandleError { node_id, action } => {
10766                                 assert_eq!(*node_id, nodes[0].node.get_our_node_id());
10767                                 match action {
10768                                         ErrorAction::SendErrorMessage { msg } =>
10769                                                 assert_eq!(msg.data, "No channels with anchor outputs accepted".to_owned()),
10770                                         _ => panic!("Unexpected error action"),
10771                                 }
10772                         }
10773                         _ => panic!("Unexpected event"),
10774                 }
10775
10776                 nodes[2].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10777                 let events = nodes[2].node.get_and_clear_pending_events();
10778                 match events[0] {
10779                         Event::OpenChannelRequest { temporary_channel_id, .. } =>
10780                                 nodes[2].node.accept_inbound_channel(&temporary_channel_id, &nodes[0].node.get_our_node_id(), 23).unwrap(),
10781                         _ => panic!("Unexpected event"),
10782                 }
10783                 get_event_msg!(nodes[2], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10784         }
10785
10786         #[test]
10787         fn test_anchors_zero_fee_htlc_tx_fallback() {
10788                 // Tests that if both nodes support anchors, but the remote node does not want to accept
10789                 // anchor channels at the moment, an error it sent to the local node such that it can retry
10790                 // the channel without the anchors feature.
10791                 let chanmon_cfgs = create_chanmon_cfgs(2);
10792                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10793                 let mut anchors_config = test_default_channel_config();
10794                 anchors_config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
10795                 anchors_config.manually_accept_inbound_channels = true;
10796                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(anchors_config.clone()), Some(anchors_config.clone())]);
10797                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10798
10799                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 0, None).unwrap();
10800                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10801                 assert!(open_channel_msg.channel_type.as_ref().unwrap().supports_anchors_zero_fee_htlc_tx());
10802
10803                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10804                 let events = nodes[1].node.get_and_clear_pending_events();
10805                 match events[0] {
10806                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10807                                 nodes[1].node.force_close_broadcasting_latest_txn(&temporary_channel_id, &nodes[0].node.get_our_node_id()).unwrap();
10808                         }
10809                         _ => panic!("Unexpected event"),
10810                 }
10811
10812                 let error_msg = get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id());
10813                 nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &error_msg);
10814
10815                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10816                 assert!(!open_channel_msg.channel_type.unwrap().supports_anchors_zero_fee_htlc_tx());
10817
10818                 // Since nodes[1] should not have accepted the channel, it should
10819                 // not have generated any events.
10820                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
10821         }
10822
10823         #[test]
10824         fn test_update_channel_config() {
10825                 let chanmon_cfg = create_chanmon_cfgs(2);
10826                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
10827                 let mut user_config = test_default_channel_config();
10828                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config), Some(user_config)]);
10829                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
10830                 let _ = create_announced_chan_between_nodes(&nodes, 0, 1);
10831                 let channel = &nodes[0].node.list_channels()[0];
10832
10833                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
10834                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10835                 assert_eq!(events.len(), 0);
10836
10837                 user_config.channel_config.forwarding_fee_base_msat += 10;
10838                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
10839                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_base_msat, user_config.channel_config.forwarding_fee_base_msat);
10840                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10841                 assert_eq!(events.len(), 1);
10842                 match &events[0] {
10843                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
10844                         _ => panic!("expected BroadcastChannelUpdate event"),
10845                 }
10846
10847                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate::default()).unwrap();
10848                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10849                 assert_eq!(events.len(), 0);
10850
10851                 let new_cltv_expiry_delta = user_config.channel_config.cltv_expiry_delta + 6;
10852                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
10853                         cltv_expiry_delta: Some(new_cltv_expiry_delta),
10854                         ..Default::default()
10855                 }).unwrap();
10856                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
10857                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10858                 assert_eq!(events.len(), 1);
10859                 match &events[0] {
10860                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
10861                         _ => panic!("expected BroadcastChannelUpdate event"),
10862                 }
10863
10864                 let new_fee = user_config.channel_config.forwarding_fee_proportional_millionths + 100;
10865                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
10866                         forwarding_fee_proportional_millionths: Some(new_fee),
10867                         ..Default::default()
10868                 }).unwrap();
10869                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
10870                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, new_fee);
10871                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10872                 assert_eq!(events.len(), 1);
10873                 match &events[0] {
10874                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
10875                         _ => panic!("expected BroadcastChannelUpdate event"),
10876                 }
10877
10878                 // If we provide a channel_id not associated with the peer, we should get an error and no updates
10879                 // should be applied to ensure update atomicity as specified in the API docs.
10880                 let bad_channel_id = ChannelId::v1_from_funding_txid(&[10; 32], 10);
10881                 let current_fee = nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths;
10882                 let new_fee = current_fee + 100;
10883                 assert!(
10884                         matches!(
10885                                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id, bad_channel_id], &ChannelConfigUpdate {
10886                                         forwarding_fee_proportional_millionths: Some(new_fee),
10887                                         ..Default::default()
10888                                 }),
10889                                 Err(APIError::ChannelUnavailable { err: _ }),
10890                         )
10891                 );
10892                 // Check that the fee hasn't changed for the channel that exists.
10893                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, current_fee);
10894                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10895                 assert_eq!(events.len(), 0);
10896         }
10897
10898         #[test]
10899         fn test_payment_display() {
10900                 let payment_id = PaymentId([42; 32]);
10901                 assert_eq!(format!("{}", &payment_id), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
10902                 let payment_hash = PaymentHash([42; 32]);
10903                 assert_eq!(format!("{}", &payment_hash), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
10904                 let payment_preimage = PaymentPreimage([42; 32]);
10905                 assert_eq!(format!("{}", &payment_preimage), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
10906         }
10907 }
10908
10909 #[cfg(ldk_bench)]
10910 pub mod bench {
10911         use crate::chain::Listen;
10912         use crate::chain::chainmonitor::{ChainMonitor, Persist};
10913         use crate::sign::{KeysManager, InMemorySigner};
10914         use crate::events::{Event, MessageSendEvent, MessageSendEventsProvider};
10915         use crate::ln::channelmanager::{BestBlock, ChainParameters, ChannelManager, PaymentHash, PaymentPreimage, PaymentId, RecipientOnionFields, Retry};
10916         use crate::ln::functional_test_utils::*;
10917         use crate::ln::msgs::{ChannelMessageHandler, Init};
10918         use crate::routing::gossip::NetworkGraph;
10919         use crate::routing::router::{PaymentParameters, RouteParameters};
10920         use crate::util::test_utils;
10921         use crate::util::config::{UserConfig, MaxDustHTLCExposure};
10922
10923         use bitcoin::hashes::Hash;
10924         use bitcoin::hashes::sha256::Hash as Sha256;
10925         use bitcoin::{Block, BlockHeader, PackedLockTime, Transaction, TxMerkleNode, TxOut};
10926
10927         use crate::sync::{Arc, Mutex, RwLock};
10928
10929         use criterion::Criterion;
10930
10931         type Manager<'a, P> = ChannelManager<
10932                 &'a ChainMonitor<InMemorySigner, &'a test_utils::TestChainSource,
10933                         &'a test_utils::TestBroadcaster, &'a test_utils::TestFeeEstimator,
10934                         &'a test_utils::TestLogger, &'a P>,
10935                 &'a test_utils::TestBroadcaster, &'a KeysManager, &'a KeysManager, &'a KeysManager,
10936                 &'a test_utils::TestFeeEstimator, &'a test_utils::TestRouter<'a>,
10937                 &'a test_utils::TestLogger>;
10938
10939         struct ANodeHolder<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> {
10940                 node: &'node_cfg Manager<'chan_mon_cfg, P>,
10941         }
10942         impl<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> NodeHolder for ANodeHolder<'node_cfg, 'chan_mon_cfg, P> {
10943                 type CM = Manager<'chan_mon_cfg, P>;
10944                 #[inline]
10945                 fn node(&self) -> &Manager<'chan_mon_cfg, P> { self.node }
10946                 #[inline]
10947                 fn chain_monitor(&self) -> Option<&test_utils::TestChainMonitor> { None }
10948         }
10949
10950         pub fn bench_sends(bench: &mut Criterion) {
10951                 bench_two_sends(bench, "bench_sends", test_utils::TestPersister::new(), test_utils::TestPersister::new());
10952         }
10953
10954         pub fn bench_two_sends<P: Persist<InMemorySigner>>(bench: &mut Criterion, bench_name: &str, persister_a: P, persister_b: P) {
10955                 // Do a simple benchmark of sending a payment back and forth between two nodes.
10956                 // Note that this is unrealistic as each payment send will require at least two fsync
10957                 // calls per node.
10958                 let network = bitcoin::Network::Testnet;
10959                 let genesis_block = bitcoin::blockdata::constants::genesis_block(network);
10960
10961                 let tx_broadcaster = test_utils::TestBroadcaster::new(network);
10962                 let fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
10963                 let logger_a = test_utils::TestLogger::with_id("node a".to_owned());
10964                 let scorer = RwLock::new(test_utils::TestScorer::new());
10965                 let router = test_utils::TestRouter::new(Arc::new(NetworkGraph::new(network, &logger_a)), &scorer);
10966
10967                 let mut config: UserConfig = Default::default();
10968                 config.channel_config.max_dust_htlc_exposure = MaxDustHTLCExposure::FeeRateMultiplier(5_000_000 / 253);
10969                 config.channel_handshake_config.minimum_depth = 1;
10970
10971                 let chain_monitor_a = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_a);
10972                 let seed_a = [1u8; 32];
10973                 let keys_manager_a = KeysManager::new(&seed_a, 42, 42);
10974                 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 {
10975                         network,
10976                         best_block: BestBlock::from_network(network),
10977                 }, genesis_block.header.time);
10978                 let node_a_holder = ANodeHolder { node: &node_a };
10979
10980                 let logger_b = test_utils::TestLogger::with_id("node a".to_owned());
10981                 let chain_monitor_b = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_b);
10982                 let seed_b = [2u8; 32];
10983                 let keys_manager_b = KeysManager::new(&seed_b, 42, 42);
10984                 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 {
10985                         network,
10986                         best_block: BestBlock::from_network(network),
10987                 }, genesis_block.header.time);
10988                 let node_b_holder = ANodeHolder { node: &node_b };
10989
10990                 node_a.peer_connected(&node_b.get_our_node_id(), &Init {
10991                         features: node_b.init_features(), networks: None, remote_network_address: None
10992                 }, true).unwrap();
10993                 node_b.peer_connected(&node_a.get_our_node_id(), &Init {
10994                         features: node_a.init_features(), networks: None, remote_network_address: None
10995                 }, false).unwrap();
10996                 node_a.create_channel(node_b.get_our_node_id(), 8_000_000, 100_000_000, 42, None).unwrap();
10997                 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()));
10998                 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()));
10999
11000                 let tx;
11001                 if let Event::FundingGenerationReady { temporary_channel_id, output_script, .. } = get_event!(node_a_holder, Event::FundingGenerationReady) {
11002                         tx = Transaction { version: 2, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: vec![TxOut {
11003                                 value: 8_000_000, script_pubkey: output_script,
11004                         }]};
11005                         node_a.funding_transaction_generated(&temporary_channel_id, &node_b.get_our_node_id(), tx.clone()).unwrap();
11006                 } else { panic!(); }
11007
11008                 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()));
11009                 let events_b = node_b.get_and_clear_pending_events();
11010                 assert_eq!(events_b.len(), 1);
11011                 match events_b[0] {
11012                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
11013                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
11014                         },
11015                         _ => panic!("Unexpected event"),
11016                 }
11017
11018                 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()));
11019                 let events_a = node_a.get_and_clear_pending_events();
11020                 assert_eq!(events_a.len(), 1);
11021                 match events_a[0] {
11022                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
11023                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
11024                         },
11025                         _ => panic!("Unexpected event"),
11026                 }
11027
11028                 assert_eq!(&tx_broadcaster.txn_broadcasted.lock().unwrap()[..], &[tx.clone()]);
11029
11030                 let block = create_dummy_block(BestBlock::from_network(network).block_hash(), 42, vec![tx]);
11031                 Listen::block_connected(&node_a, &block, 1);
11032                 Listen::block_connected(&node_b, &block, 1);
11033
11034                 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()));
11035                 let msg_events = node_a.get_and_clear_pending_msg_events();
11036                 assert_eq!(msg_events.len(), 2);
11037                 match msg_events[0] {
11038                         MessageSendEvent::SendChannelReady { ref msg, .. } => {
11039                                 node_b.handle_channel_ready(&node_a.get_our_node_id(), msg);
11040                                 get_event_msg!(node_b_holder, MessageSendEvent::SendChannelUpdate, node_a.get_our_node_id());
11041                         },
11042                         _ => panic!(),
11043                 }
11044                 match msg_events[1] {
11045                         MessageSendEvent::SendChannelUpdate { .. } => {},
11046                         _ => panic!(),
11047                 }
11048
11049                 let events_a = node_a.get_and_clear_pending_events();
11050                 assert_eq!(events_a.len(), 1);
11051                 match events_a[0] {
11052                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
11053                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
11054                         },
11055                         _ => panic!("Unexpected event"),
11056                 }
11057
11058                 let events_b = node_b.get_and_clear_pending_events();
11059                 assert_eq!(events_b.len(), 1);
11060                 match events_b[0] {
11061                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
11062                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
11063                         },
11064                         _ => panic!("Unexpected event"),
11065                 }
11066
11067                 let mut payment_count: u64 = 0;
11068                 macro_rules! send_payment {
11069                         ($node_a: expr, $node_b: expr) => {
11070                                 let payment_params = PaymentParameters::from_node_id($node_b.get_our_node_id(), TEST_FINAL_CLTV)
11071                                         .with_bolt11_features($node_b.invoice_features()).unwrap();
11072                                 let mut payment_preimage = PaymentPreimage([0; 32]);
11073                                 payment_preimage.0[0..8].copy_from_slice(&payment_count.to_le_bytes());
11074                                 payment_count += 1;
11075                                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner());
11076                                 let payment_secret = $node_b.create_inbound_payment_for_hash(payment_hash, None, 7200, None).unwrap();
11077
11078                                 $node_a.send_payment(payment_hash, RecipientOnionFields::secret_only(payment_secret),
11079                                         PaymentId(payment_hash.0),
11080                                         RouteParameters::from_payment_params_and_value(payment_params, 10_000),
11081                                         Retry::Attempts(0)).unwrap();
11082                                 let payment_event = SendEvent::from_event($node_a.get_and_clear_pending_msg_events().pop().unwrap());
11083                                 $node_b.handle_update_add_htlc(&$node_a.get_our_node_id(), &payment_event.msgs[0]);
11084                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &payment_event.commitment_msg);
11085                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_b }, &$node_a.get_our_node_id());
11086                                 $node_a.handle_revoke_and_ack(&$node_b.get_our_node_id(), &raa);
11087                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &cs);
11088                                 $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()));
11089
11090                                 expect_pending_htlcs_forwardable!(ANodeHolder { node: &$node_b });
11091                                 expect_payment_claimable!(ANodeHolder { node: &$node_b }, payment_hash, payment_secret, 10_000);
11092                                 $node_b.claim_funds(payment_preimage);
11093                                 expect_payment_claimed!(ANodeHolder { node: &$node_b }, payment_hash, 10_000);
11094
11095                                 match $node_b.get_and_clear_pending_msg_events().pop().unwrap() {
11096                                         MessageSendEvent::UpdateHTLCs { node_id, updates } => {
11097                                                 assert_eq!(node_id, $node_a.get_our_node_id());
11098                                                 $node_a.handle_update_fulfill_htlc(&$node_b.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
11099                                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &updates.commitment_signed);
11100                                         },
11101                                         _ => panic!("Failed to generate claim event"),
11102                                 }
11103
11104                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_a }, &$node_b.get_our_node_id());
11105                                 $node_b.handle_revoke_and_ack(&$node_a.get_our_node_id(), &raa);
11106                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &cs);
11107                                 $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()));
11108
11109                                 expect_payment_sent!(ANodeHolder { node: &$node_a }, payment_preimage);
11110                         }
11111                 }
11112
11113                 bench.bench_function(bench_name, |b| b.iter(|| {
11114                         send_payment!(node_a, node_b);
11115                         send_payment!(node_b, node_a);
11116                 }));
11117         }
11118 }