Update `channelmanager::NotifyOption` to indicate persist or event
[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, Retry, RetryableSendFailure, RecipientOnionFields};
81 use crate::ln::script::ShutdownScript;
82
83 // We hold various information about HTLC relay in the HTLC objects in Channel itself:
84 //
85 // Upon receipt of an HTLC from a peer, we'll give it a PendingHTLCStatus indicating if it should
86 // forward the HTLC with information it will give back to us when it does so, or if it should Fail
87 // the HTLC with the relevant message for the Channel to handle giving to the remote peer.
88 //
89 // Once said HTLC is committed in the Channel, if the PendingHTLCStatus indicated Forward, the
90 // Channel will return the PendingHTLCInfo back to us, and we will create an HTLCForwardInfo
91 // with it to track where it came from (in case of onwards-forward error), waiting a random delay
92 // before we forward it.
93 //
94 // We will then use HTLCForwardInfo's PendingHTLCInfo to construct an outbound HTLC, with a
95 // relevant HTLCSource::PreviousHopData filled in to indicate where it came from (which we can use
96 // to either fail-backwards or fulfill the HTLC backwards along the relevant path).
97 // Alternatively, we can fill an outbound HTLC with a HTLCSource::OutboundRoute indicating this is
98 // our payment, which we can use to decode errors or inform the user that the payment was sent.
99
100 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
101 pub(super) enum PendingHTLCRouting {
102         Forward {
103                 onion_packet: msgs::OnionPacket,
104                 /// The SCID from the onion that we should forward to. This could be a real SCID or a fake one
105                 /// generated using `get_fake_scid` from the scid_utils::fake_scid module.
106                 short_channel_id: u64, // This should be NonZero<u64> eventually when we bump MSRV
107         },
108         Receive {
109                 payment_data: msgs::FinalOnionHopData,
110                 payment_metadata: Option<Vec<u8>>,
111                 incoming_cltv_expiry: u32, // Used to track when we should expire pending HTLCs that go unclaimed
112                 phantom_shared_secret: Option<[u8; 32]>,
113                 /// See [`RecipientOnionFields::custom_tlvs`] for more info.
114                 custom_tlvs: Vec<(u64, Vec<u8>)>,
115         },
116         ReceiveKeysend {
117                 /// This was added in 0.0.116 and will break deserialization on downgrades.
118                 payment_data: Option<msgs::FinalOnionHopData>,
119                 payment_preimage: PaymentPreimage,
120                 payment_metadata: Option<Vec<u8>>,
121                 incoming_cltv_expiry: u32, // Used to track when we should expire pending HTLCs that go unclaimed
122                 /// See [`RecipientOnionFields::custom_tlvs`] for more info.
123                 custom_tlvs: Vec<(u64, Vec<u8>)>,
124         },
125 }
126
127 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
128 pub(super) struct PendingHTLCInfo {
129         pub(super) routing: PendingHTLCRouting,
130         pub(super) incoming_shared_secret: [u8; 32],
131         payment_hash: PaymentHash,
132         /// Amount received
133         pub(super) incoming_amt_msat: Option<u64>, // Added in 0.0.113
134         /// Sender intended amount to forward or receive (actual amount received
135         /// may overshoot this in either case)
136         pub(super) outgoing_amt_msat: u64,
137         pub(super) outgoing_cltv_value: u32,
138         /// The fee being skimmed off the top of this HTLC. If this is a forward, it'll be the fee we are
139         /// skimming. If we're receiving this HTLC, it's the fee that our counterparty skimmed.
140         pub(super) skimmed_fee_msat: Option<u64>,
141 }
142
143 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
144 pub(super) enum HTLCFailureMsg {
145         Relay(msgs::UpdateFailHTLC),
146         Malformed(msgs::UpdateFailMalformedHTLC),
147 }
148
149 /// Stores whether we can't forward an HTLC or relevant forwarding info
150 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
151 pub(super) enum PendingHTLCStatus {
152         Forward(PendingHTLCInfo),
153         Fail(HTLCFailureMsg),
154 }
155
156 pub(super) struct PendingAddHTLCInfo {
157         pub(super) forward_info: PendingHTLCInfo,
158
159         // These fields are produced in `forward_htlcs()` and consumed in
160         // `process_pending_htlc_forwards()` for constructing the
161         // `HTLCSource::PreviousHopData` for failed and forwarded
162         // HTLCs.
163         //
164         // Note that this may be an outbound SCID alias for the associated channel.
165         prev_short_channel_id: u64,
166         prev_htlc_id: u64,
167         prev_funding_outpoint: OutPoint,
168         prev_user_channel_id: u128,
169 }
170
171 pub(super) enum HTLCForwardInfo {
172         AddHTLC(PendingAddHTLCInfo),
173         FailHTLC {
174                 htlc_id: u64,
175                 err_packet: msgs::OnionErrorPacket,
176         },
177 }
178
179 /// Tracks the inbound corresponding to an outbound HTLC
180 #[derive(Clone, Hash, PartialEq, Eq)]
181 pub(crate) struct HTLCPreviousHopData {
182         // Note that this may be an outbound SCID alias for the associated channel.
183         short_channel_id: u64,
184         user_channel_id: Option<u128>,
185         htlc_id: u64,
186         incoming_packet_shared_secret: [u8; 32],
187         phantom_shared_secret: Option<[u8; 32]>,
188
189         // This field is consumed by `claim_funds_from_hop()` when updating a force-closed backwards
190         // channel with a preimage provided by the forward channel.
191         outpoint: OutPoint,
192 }
193
194 enum OnionPayload {
195         /// Indicates this incoming onion payload is for the purpose of paying an invoice.
196         Invoice {
197                 /// This is only here for backwards-compatibility in serialization, in the future it can be
198                 /// removed, breaking clients running 0.0.106 and earlier.
199                 _legacy_hop_data: Option<msgs::FinalOnionHopData>,
200         },
201         /// Contains the payer-provided preimage.
202         Spontaneous(PaymentPreimage),
203 }
204
205 /// HTLCs that are to us and can be failed/claimed by the user
206 struct ClaimableHTLC {
207         prev_hop: HTLCPreviousHopData,
208         cltv_expiry: u32,
209         /// The amount (in msats) of this MPP part
210         value: u64,
211         /// The amount (in msats) that the sender intended to be sent in this MPP
212         /// part (used for validating total MPP amount)
213         sender_intended_value: u64,
214         onion_payload: OnionPayload,
215         timer_ticks: u8,
216         /// The total value received for a payment (sum of all MPP parts if the payment is a MPP).
217         /// Gets set to the amount reported when pushing [`Event::PaymentClaimable`].
218         total_value_received: Option<u64>,
219         /// The sender intended sum total of all MPP parts specified in the onion
220         total_msat: u64,
221         /// The extra fee our counterparty skimmed off the top of this HTLC.
222         counterparty_skimmed_fee_msat: Option<u64>,
223 }
224
225 impl From<&ClaimableHTLC> for events::ClaimedHTLC {
226         fn from(val: &ClaimableHTLC) -> Self {
227                 events::ClaimedHTLC {
228                         channel_id: val.prev_hop.outpoint.to_channel_id(),
229                         user_channel_id: val.prev_hop.user_channel_id.unwrap_or(0),
230                         cltv_expiry: val.cltv_expiry,
231                         value_msat: val.value,
232                 }
233         }
234 }
235
236 /// A payment identifier used to uniquely identify a payment to LDK.
237 ///
238 /// This is not exported to bindings users as we just use [u8; 32] directly
239 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
240 pub struct PaymentId(pub [u8; Self::LENGTH]);
241
242 impl PaymentId {
243         /// Number of bytes in the id.
244         pub const LENGTH: usize = 32;
245 }
246
247 impl Writeable for PaymentId {
248         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
249                 self.0.write(w)
250         }
251 }
252
253 impl Readable for PaymentId {
254         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
255                 let buf: [u8; 32] = Readable::read(r)?;
256                 Ok(PaymentId(buf))
257         }
258 }
259
260 impl core::fmt::Display for PaymentId {
261         fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
262                 crate::util::logger::DebugBytes(&self.0).fmt(f)
263         }
264 }
265
266 /// An identifier used to uniquely identify an intercepted HTLC to LDK.
267 ///
268 /// This is not exported to bindings users as we just use [u8; 32] directly
269 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
270 pub struct InterceptId(pub [u8; 32]);
271
272 impl Writeable for InterceptId {
273         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
274                 self.0.write(w)
275         }
276 }
277
278 impl Readable for InterceptId {
279         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
280                 let buf: [u8; 32] = Readable::read(r)?;
281                 Ok(InterceptId(buf))
282         }
283 }
284
285 #[derive(Clone, Copy, PartialEq, Eq, Hash)]
286 /// Uniquely describes an HTLC by its source. Just the guaranteed-unique subset of [`HTLCSource`].
287 pub(crate) enum SentHTLCId {
288         PreviousHopData { short_channel_id: u64, htlc_id: u64 },
289         OutboundRoute { session_priv: SecretKey },
290 }
291 impl SentHTLCId {
292         pub(crate) fn from_source(source: &HTLCSource) -> Self {
293                 match source {
294                         HTLCSource::PreviousHopData(hop_data) => Self::PreviousHopData {
295                                 short_channel_id: hop_data.short_channel_id,
296                                 htlc_id: hop_data.htlc_id,
297                         },
298                         HTLCSource::OutboundRoute { session_priv, .. } =>
299                                 Self::OutboundRoute { session_priv: *session_priv },
300                 }
301         }
302 }
303 impl_writeable_tlv_based_enum!(SentHTLCId,
304         (0, PreviousHopData) => {
305                 (0, short_channel_id, required),
306                 (2, htlc_id, required),
307         },
308         (2, OutboundRoute) => {
309                 (0, session_priv, required),
310         };
311 );
312
313
314 /// Tracks the inbound corresponding to an outbound HTLC
315 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
316 #[derive(Clone, PartialEq, Eq)]
317 pub(crate) enum HTLCSource {
318         PreviousHopData(HTLCPreviousHopData),
319         OutboundRoute {
320                 path: Path,
321                 session_priv: SecretKey,
322                 /// Technically we can recalculate this from the route, but we cache it here to avoid
323                 /// doing a double-pass on route when we get a failure back
324                 first_hop_htlc_msat: u64,
325                 payment_id: PaymentId,
326         },
327 }
328 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
329 impl core::hash::Hash for HTLCSource {
330         fn hash<H: core::hash::Hasher>(&self, hasher: &mut H) {
331                 match self {
332                         HTLCSource::PreviousHopData(prev_hop_data) => {
333                                 0u8.hash(hasher);
334                                 prev_hop_data.hash(hasher);
335                         },
336                         HTLCSource::OutboundRoute { path, session_priv, payment_id, first_hop_htlc_msat } => {
337                                 1u8.hash(hasher);
338                                 path.hash(hasher);
339                                 session_priv[..].hash(hasher);
340                                 payment_id.hash(hasher);
341                                 first_hop_htlc_msat.hash(hasher);
342                         },
343                 }
344         }
345 }
346 impl HTLCSource {
347         #[cfg(all(feature = "_test_vectors", not(feature = "grind_signatures")))]
348         #[cfg(test)]
349         pub fn dummy() -> Self {
350                 HTLCSource::OutboundRoute {
351                         path: Path { hops: Vec::new(), blinded_tail: None },
352                         session_priv: SecretKey::from_slice(&[1; 32]).unwrap(),
353                         first_hop_htlc_msat: 0,
354                         payment_id: PaymentId([2; 32]),
355                 }
356         }
357
358         #[cfg(debug_assertions)]
359         /// Checks whether this HTLCSource could possibly match the given HTLC output in a commitment
360         /// transaction. Useful to ensure different datastructures match up.
361         pub(crate) fn possibly_matches_output(&self, htlc: &super::chan_utils::HTLCOutputInCommitment) -> bool {
362                 if let HTLCSource::OutboundRoute { first_hop_htlc_msat, .. } = self {
363                         *first_hop_htlc_msat == htlc.amount_msat
364                 } else {
365                         // There's nothing we can check for forwarded HTLCs
366                         true
367                 }
368         }
369 }
370
371 struct InboundOnionErr {
372         err_code: u16,
373         err_data: Vec<u8>,
374         msg: &'static str,
375 }
376
377 /// This enum is used to specify which error data to send to peers when failing back an HTLC
378 /// using [`ChannelManager::fail_htlc_backwards_with_reason`].
379 ///
380 /// For more info on failure codes, see <https://github.com/lightning/bolts/blob/master/04-onion-routing.md#failure-messages>.
381 #[derive(Clone, Copy)]
382 pub enum FailureCode {
383         /// We had a temporary error processing the payment. Useful if no other error codes fit
384         /// and you want to indicate that the payer may want to retry.
385         TemporaryNodeFailure,
386         /// We have a required feature which was not in this onion. For example, you may require
387         /// some additional metadata that was not provided with this payment.
388         RequiredNodeFeatureMissing,
389         /// You may wish to use this when a `payment_preimage` is unknown, or the CLTV expiry of
390         /// the HTLC is too close to the current block height for safe handling.
391         /// Using this failure code in [`ChannelManager::fail_htlc_backwards_with_reason`] is
392         /// equivalent to calling [`ChannelManager::fail_htlc_backwards`].
393         IncorrectOrUnknownPaymentDetails,
394         /// We failed to process the payload after the onion was decrypted. You may wish to
395         /// use this when receiving custom HTLC TLVs with even type numbers that you don't recognize.
396         ///
397         /// If available, the tuple data may include the type number and byte offset in the
398         /// decrypted byte stream where the failure occurred.
399         InvalidOnionPayload(Option<(u64, u16)>),
400 }
401
402 impl Into<u16> for FailureCode {
403     fn into(self) -> u16 {
404                 match self {
405                         FailureCode::TemporaryNodeFailure => 0x2000 | 2,
406                         FailureCode::RequiredNodeFeatureMissing => 0x4000 | 0x2000 | 3,
407                         FailureCode::IncorrectOrUnknownPaymentDetails => 0x4000 | 15,
408                         FailureCode::InvalidOnionPayload(_) => 0x4000 | 22,
409                 }
410         }
411 }
412
413 /// Error type returned across the peer_state mutex boundary. When an Err is generated for a
414 /// Channel, we generally end up with a ChannelError::Close for which we have to close the channel
415 /// immediately (ie with no further calls on it made). Thus, this step happens inside a
416 /// peer_state lock. We then return the set of things that need to be done outside the lock in
417 /// this struct and call handle_error!() on it.
418
419 struct MsgHandleErrInternal {
420         err: msgs::LightningError,
421         chan_id: Option<(ChannelId, u128)>, // If Some a channel of ours has been closed
422         shutdown_finish: Option<(ShutdownResult, Option<msgs::ChannelUpdate>)>,
423         channel_capacity: Option<u64>,
424 }
425 impl MsgHandleErrInternal {
426         #[inline]
427         fn send_err_msg_no_close(err: String, channel_id: ChannelId) -> Self {
428                 Self {
429                         err: LightningError {
430                                 err: err.clone(),
431                                 action: msgs::ErrorAction::SendErrorMessage {
432                                         msg: msgs::ErrorMessage {
433                                                 channel_id,
434                                                 data: err
435                                         },
436                                 },
437                         },
438                         chan_id: None,
439                         shutdown_finish: None,
440                         channel_capacity: None,
441                 }
442         }
443         #[inline]
444         fn from_no_close(err: msgs::LightningError) -> Self {
445                 Self { err, chan_id: None, shutdown_finish: None, channel_capacity: None }
446         }
447         #[inline]
448         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 {
449                 Self {
450                         err: LightningError {
451                                 err: err.clone(),
452                                 action: msgs::ErrorAction::SendErrorMessage {
453                                         msg: msgs::ErrorMessage {
454                                                 channel_id,
455                                                 data: err
456                                         },
457                                 },
458                         },
459                         chan_id: Some((channel_id, user_channel_id)),
460                         shutdown_finish: Some((shutdown_res, channel_update)),
461                         channel_capacity: Some(channel_capacity)
462                 }
463         }
464         #[inline]
465         fn from_chan_no_close(err: ChannelError, channel_id: ChannelId) -> Self {
466                 Self {
467                         err: match err {
468                                 ChannelError::Warn(msg) =>  LightningError {
469                                         err: msg.clone(),
470                                         action: msgs::ErrorAction::SendWarningMessage {
471                                                 msg: msgs::WarningMessage {
472                                                         channel_id,
473                                                         data: msg
474                                                 },
475                                                 log_level: Level::Warn,
476                                         },
477                                 },
478                                 ChannelError::Ignore(msg) => LightningError {
479                                         err: msg,
480                                         action: msgs::ErrorAction::IgnoreError,
481                                 },
482                                 ChannelError::Close(msg) => LightningError {
483                                         err: msg.clone(),
484                                         action: msgs::ErrorAction::SendErrorMessage {
485                                                 msg: msgs::ErrorMessage {
486                                                         channel_id,
487                                                         data: msg
488                                                 },
489                                         },
490                                 },
491                         },
492                         chan_id: None,
493                         shutdown_finish: None,
494                         channel_capacity: None,
495                 }
496         }
497 }
498
499 /// We hold back HTLCs we intend to relay for a random interval greater than this (see
500 /// Event::PendingHTLCsForwardable for the API guidelines indicating how long should be waited).
501 /// This provides some limited amount of privacy. Ideally this would range from somewhere like one
502 /// second to 30 seconds, but people expect lightning to be, you know, kinda fast, sadly.
503 pub(super) const MIN_HTLC_RELAY_HOLDING_CELL_MILLIS: u64 = 100;
504
505 /// For events which result in both a RevokeAndACK and a CommitmentUpdate, by default they should
506 /// be sent in the order they appear in the return value, however sometimes the order needs to be
507 /// variable at runtime (eg Channel::channel_reestablish needs to re-send messages in the order
508 /// they were originally sent). In those cases, this enum is also returned.
509 #[derive(Clone, PartialEq)]
510 pub(super) enum RAACommitmentOrder {
511         /// Send the CommitmentUpdate messages first
512         CommitmentFirst,
513         /// Send the RevokeAndACK message first
514         RevokeAndACKFirst,
515 }
516
517 /// Information about a payment which is currently being claimed.
518 struct ClaimingPayment {
519         amount_msat: u64,
520         payment_purpose: events::PaymentPurpose,
521         receiver_node_id: PublicKey,
522         htlcs: Vec<events::ClaimedHTLC>,
523         sender_intended_value: Option<u64>,
524 }
525 impl_writeable_tlv_based!(ClaimingPayment, {
526         (0, amount_msat, required),
527         (2, payment_purpose, required),
528         (4, receiver_node_id, required),
529         (5, htlcs, optional_vec),
530         (7, sender_intended_value, option),
531 });
532
533 struct ClaimablePayment {
534         purpose: events::PaymentPurpose,
535         onion_fields: Option<RecipientOnionFields>,
536         htlcs: Vec<ClaimableHTLC>,
537 }
538
539 /// Information about claimable or being-claimed payments
540 struct ClaimablePayments {
541         /// Map from payment hash to the payment data and any HTLCs which are to us and can be
542         /// failed/claimed by the user.
543         ///
544         /// Note that, no consistency guarantees are made about the channels given here actually
545         /// existing anymore by the time you go to read them!
546         ///
547         /// When adding to the map, [`Self::pending_claiming_payments`] must also be checked to ensure
548         /// we don't get a duplicate payment.
549         claimable_payments: HashMap<PaymentHash, ClaimablePayment>,
550
551         /// Map from payment hash to the payment data for HTLCs which we have begun claiming, but which
552         /// are waiting on a [`ChannelMonitorUpdate`] to complete in order to be surfaced to the user
553         /// as an [`events::Event::PaymentClaimed`].
554         pending_claiming_payments: HashMap<PaymentHash, ClaimingPayment>,
555 }
556
557 /// Events which we process internally but cannot be processed immediately at the generation site
558 /// usually because we're running pre-full-init. They are handled immediately once we detect we are
559 /// running normally, and specifically must be processed before any other non-background
560 /// [`ChannelMonitorUpdate`]s are applied.
561 enum BackgroundEvent {
562         /// Handle a ChannelMonitorUpdate which closes the channel or for an already-closed channel.
563         /// This is only separated from [`Self::MonitorUpdateRegeneratedOnStartup`] as the
564         /// maybe-non-closing variant needs a public key to handle channel resumption, whereas if the
565         /// channel has been force-closed we do not need the counterparty node_id.
566         ///
567         /// Note that any such events are lost on shutdown, so in general they must be updates which
568         /// are regenerated on startup.
569         ClosedMonitorUpdateRegeneratedOnStartup((OutPoint, ChannelMonitorUpdate)),
570         /// Handle a ChannelMonitorUpdate which may or may not close the channel and may unblock the
571         /// channel to continue normal operation.
572         ///
573         /// In general this should be used rather than
574         /// [`Self::ClosedMonitorUpdateRegeneratedOnStartup`], however in cases where the
575         /// `counterparty_node_id` is not available as the channel has closed from a [`ChannelMonitor`]
576         /// error the other variant is acceptable.
577         ///
578         /// Note that any such events are lost on shutdown, so in general they must be updates which
579         /// are regenerated on startup.
580         MonitorUpdateRegeneratedOnStartup {
581                 counterparty_node_id: PublicKey,
582                 funding_txo: OutPoint,
583                 update: ChannelMonitorUpdate
584         },
585         /// Some [`ChannelMonitorUpdate`] (s) completed before we were serialized but we still have
586         /// them marked pending, thus we need to run any [`MonitorUpdateCompletionAction`] (s) pending
587         /// on a channel.
588         MonitorUpdatesComplete {
589                 counterparty_node_id: PublicKey,
590                 channel_id: ChannelId,
591         },
592 }
593
594 #[derive(Debug)]
595 pub(crate) enum MonitorUpdateCompletionAction {
596         /// Indicates that a payment ultimately destined for us was claimed and we should emit an
597         /// [`events::Event::PaymentClaimed`] to the user if we haven't yet generated such an event for
598         /// this payment. Note that this is only best-effort. On restart it's possible such a duplicate
599         /// event can be generated.
600         PaymentClaimed { payment_hash: PaymentHash },
601         /// Indicates an [`events::Event`] should be surfaced to the user and possibly resume the
602         /// operation of another channel.
603         ///
604         /// This is usually generated when we've forwarded an HTLC and want to block the outbound edge
605         /// from completing a monitor update which removes the payment preimage until the inbound edge
606         /// completes a monitor update containing the payment preimage. In that case, after the inbound
607         /// edge completes, we will surface an [`Event::PaymentForwarded`] as well as unblock the
608         /// outbound edge.
609         EmitEventAndFreeOtherChannel {
610                 event: events::Event,
611                 downstream_counterparty_and_funding_outpoint: Option<(PublicKey, OutPoint, RAAMonitorUpdateBlockingAction)>,
612         },
613 }
614
615 impl_writeable_tlv_based_enum_upgradable!(MonitorUpdateCompletionAction,
616         (0, PaymentClaimed) => { (0, payment_hash, required) },
617         (2, EmitEventAndFreeOtherChannel) => {
618                 (0, event, upgradable_required),
619                 // LDK prior to 0.0.116 did not have this field as the monitor update application order was
620                 // required by clients. If we downgrade to something prior to 0.0.116 this may result in
621                 // monitor updates which aren't properly blocked or resumed, however that's fine - we don't
622                 // support async monitor updates even in LDK 0.0.116 and once we do we'll require no
623                 // downgrades to prior versions.
624                 (1, downstream_counterparty_and_funding_outpoint, option),
625         },
626 );
627
628 #[derive(Clone, Debug, PartialEq, Eq)]
629 pub(crate) enum EventCompletionAction {
630         ReleaseRAAChannelMonitorUpdate {
631                 counterparty_node_id: PublicKey,
632                 channel_funding_outpoint: OutPoint,
633         },
634 }
635 impl_writeable_tlv_based_enum!(EventCompletionAction,
636         (0, ReleaseRAAChannelMonitorUpdate) => {
637                 (0, channel_funding_outpoint, required),
638                 (2, counterparty_node_id, required),
639         };
640 );
641
642 #[derive(Clone, PartialEq, Eq, Debug)]
643 /// If something is blocked on the completion of an RAA-generated [`ChannelMonitorUpdate`] we track
644 /// the blocked action here. See enum variants for more info.
645 pub(crate) enum RAAMonitorUpdateBlockingAction {
646         /// A forwarded payment was claimed. We block the downstream channel completing its monitor
647         /// update which removes the HTLC preimage until the upstream channel has gotten the preimage
648         /// durably to disk.
649         ForwardedPaymentInboundClaim {
650                 /// The upstream channel ID (i.e. the inbound edge).
651                 channel_id: ChannelId,
652                 /// The HTLC ID on the inbound edge.
653                 htlc_id: u64,
654         },
655 }
656
657 impl RAAMonitorUpdateBlockingAction {
658         #[allow(unused)]
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         event_persist_notifier: Notifier,
1189         needs_persist_flag: AtomicBool,
1190
1191         entropy_source: ES,
1192         node_signer: NS,
1193         signer_provider: SP,
1194
1195         logger: L,
1196 }
1197
1198 /// Chain-related parameters used to construct a new `ChannelManager`.
1199 ///
1200 /// Typically, the block-specific parameters are derived from the best block hash for the network,
1201 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
1202 /// are not needed when deserializing a previously constructed `ChannelManager`.
1203 #[derive(Clone, Copy, PartialEq)]
1204 pub struct ChainParameters {
1205         /// The network for determining the `chain_hash` in Lightning messages.
1206         pub network: Network,
1207
1208         /// The hash and height of the latest block successfully connected.
1209         ///
1210         /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
1211         pub best_block: BestBlock,
1212 }
1213
1214 #[derive(Copy, Clone, PartialEq)]
1215 #[must_use]
1216 enum NotifyOption {
1217         DoPersist,
1218         SkipPersistHandleEvents,
1219         SkipPersistNoEvents,
1220 }
1221
1222 /// Whenever we release the `ChannelManager`'s `total_consistency_lock`, from read mode, it is
1223 /// desirable to notify any listeners on `await_persistable_update_timeout`/
1224 /// `await_persistable_update` when new updates are available for persistence. Therefore, this
1225 /// struct is responsible for locking the total consistency lock and, upon going out of scope,
1226 /// sending the aforementioned notification (since the lock being released indicates that the
1227 /// updates are ready for persistence).
1228 ///
1229 /// We allow callers to either always notify by constructing with `notify_on_drop` or choose to
1230 /// notify or not based on whether relevant changes have been made, providing a closure to
1231 /// `optionally_notify` which returns a `NotifyOption`.
1232 struct PersistenceNotifierGuard<'a, F: Fn() -> NotifyOption> {
1233         event_persist_notifier: &'a Notifier,
1234         needs_persist_flag: &'a AtomicBool,
1235         should_persist: F,
1236         // We hold onto this result so the lock doesn't get released immediately.
1237         _read_guard: RwLockReadGuard<'a, ()>,
1238 }
1239
1240 impl<'a> PersistenceNotifierGuard<'a, fn() -> NotifyOption> { // We don't care what the concrete F is here, it's unused
1241         fn notify_on_drop<C: AChannelManager>(cm: &'a C) -> PersistenceNotifierGuard<'a, impl Fn() -> NotifyOption> {
1242                 Self::optionally_notify(cm, || -> NotifyOption { NotifyOption::DoPersist })
1243         }
1244
1245         fn optionally_notify<F: Fn() -> NotifyOption, C: AChannelManager>(cm: &'a C, persist_check: F)
1246         -> PersistenceNotifierGuard<'a, impl Fn() -> NotifyOption> {
1247                 let read_guard = cm.get_cm().total_consistency_lock.read().unwrap();
1248                 let force_notify = cm.get_cm().process_background_events();
1249
1250                 PersistenceNotifierGuard {
1251                         event_persist_notifier: &cm.get_cm().event_persist_notifier,
1252                         needs_persist_flag: &cm.get_cm().needs_persist_flag,
1253                         should_persist: move || {
1254                                 // Pick the "most" action between `persist_check` and the background events
1255                                 // processing and return that.
1256                                 let notify = persist_check();
1257                                 match (notify, force_notify) {
1258                                         (NotifyOption::DoPersist, _) => NotifyOption::DoPersist,
1259                                         (_, NotifyOption::DoPersist) => NotifyOption::DoPersist,
1260                                         (NotifyOption::SkipPersistHandleEvents, _) => NotifyOption::SkipPersistHandleEvents,
1261                                         (_, NotifyOption::SkipPersistHandleEvents) => NotifyOption::SkipPersistHandleEvents,
1262                                         _ => NotifyOption::SkipPersistNoEvents,
1263                                 }
1264                         },
1265                         _read_guard: read_guard,
1266                 }
1267         }
1268
1269         /// Note that if any [`ChannelMonitorUpdate`]s are possibly generated,
1270         /// [`ChannelManager::process_background_events`] MUST be called first (or
1271         /// [`Self::optionally_notify`] used).
1272         fn optionally_notify_skipping_background_events<F: Fn() -> NotifyOption, C: AChannelManager>
1273         (cm: &'a C, persist_check: F) -> PersistenceNotifierGuard<'a, F> {
1274                 let read_guard = cm.get_cm().total_consistency_lock.read().unwrap();
1275
1276                 PersistenceNotifierGuard {
1277                         event_persist_notifier: &cm.get_cm().event_persist_notifier,
1278                         needs_persist_flag: &cm.get_cm().needs_persist_flag,
1279                         should_persist: persist_check,
1280                         _read_guard: read_guard,
1281                 }
1282         }
1283 }
1284
1285 impl<'a, F: Fn() -> NotifyOption> Drop for PersistenceNotifierGuard<'a, F> {
1286         fn drop(&mut self) {
1287                 match (self.should_persist)() {
1288                         NotifyOption::DoPersist => {
1289                                 self.needs_persist_flag.store(true, Ordering::Release);
1290                                 self.event_persist_notifier.notify()
1291                         },
1292                         NotifyOption::SkipPersistHandleEvents =>
1293                                 self.event_persist_notifier.notify(),
1294                         NotifyOption::SkipPersistNoEvents => {},
1295                 }
1296         }
1297 }
1298
1299 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
1300 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
1301 ///
1302 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
1303 ///
1304 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
1305 pub const BREAKDOWN_TIMEOUT: u16 = 6 * 24;
1306 /// The amount of time in blocks we're willing to wait to claim money back to us. This matches
1307 /// the maximum required amount in lnd as of March 2021.
1308 pub(crate) const MAX_LOCAL_BREAKDOWN_TIMEOUT: u16 = 2 * 6 * 24 * 7;
1309
1310 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
1311 /// HTLC's CLTV. The current default represents roughly seven hours of blocks at six blocks/hour.
1312 ///
1313 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
1314 ///
1315 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
1316 // This should always be a few blocks greater than channelmonitor::CLTV_CLAIM_BUFFER,
1317 // i.e. the node we forwarded the payment on to should always have enough room to reliably time out
1318 // the HTLC via a full update_fail_htlc/commitment_signed dance before we hit the
1319 // CLTV_CLAIM_BUFFER point (we static assert that it's at least 3 blocks more).
1320 pub const MIN_CLTV_EXPIRY_DELTA: u16 = 6*7;
1321 // This should be long enough to allow a payment path drawn across multiple routing hops with substantial
1322 // `cltv_expiry_delta`. Indeed, the length of those values is the reaction delay offered to a routing node
1323 // in case of HTLC on-chain settlement. While appearing less competitive, a node operator could decide to
1324 // scale them up to suit its security policy. At the network-level, we shouldn't constrain them too much,
1325 // while avoiding to introduce a DoS vector. Further, a low CTLV_FAR_FAR_AWAY could be a source of
1326 // routing failure for any HTLC sender picking up an LDK node among the first hops.
1327 pub(super) const CLTV_FAR_FAR_AWAY: u32 = 14 * 24 * 6;
1328
1329 /// Minimum CLTV difference between the current block height and received inbound payments.
1330 /// Invoices generated for payment to us must set their `min_final_cltv_expiry_delta` field to at least
1331 /// this value.
1332 // Note that we fail if exactly HTLC_FAIL_BACK_BUFFER + 1 was used, so we need to add one for
1333 // any payments to succeed. Further, we don't want payments to fail if a block was found while
1334 // a payment was being routed, so we add an extra block to be safe.
1335 pub const MIN_FINAL_CLTV_EXPIRY_DELTA: u16 = HTLC_FAIL_BACK_BUFFER as u16 + 3;
1336
1337 // Check that our CLTV_EXPIRY is at least CLTV_CLAIM_BUFFER + ANTI_REORG_DELAY + LATENCY_GRACE_PERIOD_BLOCKS,
1338 // ie that if the next-hop peer fails the HTLC within
1339 // LATENCY_GRACE_PERIOD_BLOCKS then we'll still have CLTV_CLAIM_BUFFER left to timeout it onchain,
1340 // then waiting ANTI_REORG_DELAY to be reorg-safe on the outbound HLTC and
1341 // failing the corresponding htlc backward, and us now seeing the last block of ANTI_REORG_DELAY before
1342 // LATENCY_GRACE_PERIOD_BLOCKS.
1343 #[deny(const_err)]
1344 #[allow(dead_code)]
1345 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;
1346
1347 // Check for ability of an attacker to make us fail on-chain by delaying an HTLC claim. See
1348 // ChannelMonitor::should_broadcast_holder_commitment_txn for a description of why this is needed.
1349 #[deny(const_err)]
1350 #[allow(dead_code)]
1351 const CHECK_CLTV_EXPIRY_SANITY_2: u32 = MIN_CLTV_EXPIRY_DELTA as u32 - LATENCY_GRACE_PERIOD_BLOCKS - 2*CLTV_CLAIM_BUFFER;
1352
1353 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until expiry of incomplete MPPs
1354 pub(crate) const MPP_TIMEOUT_TICKS: u8 = 3;
1355
1356 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is disconnected
1357 /// until we mark the channel disabled and gossip the update.
1358 pub(crate) const DISABLE_GOSSIP_TICKS: u8 = 10;
1359
1360 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is connected until
1361 /// we mark the channel enabled and gossip the update.
1362 pub(crate) const ENABLE_GOSSIP_TICKS: u8 = 5;
1363
1364 /// The maximum number of unfunded channels we can have per-peer before we start rejecting new
1365 /// (inbound) ones. The number of peers with unfunded channels is limited separately in
1366 /// [`MAX_UNFUNDED_CHANNEL_PEERS`].
1367 const MAX_UNFUNDED_CHANS_PER_PEER: usize = 4;
1368
1369 /// The maximum number of peers from which we will allow pending unfunded channels. Once we reach
1370 /// this many peers we reject new (inbound) channels from peers with which we don't have a channel.
1371 const MAX_UNFUNDED_CHANNEL_PEERS: usize = 50;
1372
1373 /// The maximum number of peers which we do not have a (funded) channel with. Once we reach this
1374 /// many peers we reject new (inbound) connections.
1375 const MAX_NO_CHANNEL_PEERS: usize = 250;
1376
1377 /// Information needed for constructing an invoice route hint for this channel.
1378 #[derive(Clone, Debug, PartialEq)]
1379 pub struct CounterpartyForwardingInfo {
1380         /// Base routing fee in millisatoshis.
1381         pub fee_base_msat: u32,
1382         /// Amount in millionths of a satoshi the channel will charge per transferred satoshi.
1383         pub fee_proportional_millionths: u32,
1384         /// The minimum difference in cltv_expiry between an ingoing HTLC and its outgoing counterpart,
1385         /// such that the outgoing HTLC is forwardable to this counterparty. See `msgs::ChannelUpdate`'s
1386         /// `cltv_expiry_delta` for more details.
1387         pub cltv_expiry_delta: u16,
1388 }
1389
1390 /// Channel parameters which apply to our counterparty. These are split out from [`ChannelDetails`]
1391 /// to better separate parameters.
1392 #[derive(Clone, Debug, PartialEq)]
1393 pub struct ChannelCounterparty {
1394         /// The node_id of our counterparty
1395         pub node_id: PublicKey,
1396         /// The Features the channel counterparty provided upon last connection.
1397         /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
1398         /// many routing-relevant features are present in the init context.
1399         pub features: InitFeatures,
1400         /// The value, in satoshis, that must always be held in the channel for our counterparty. This
1401         /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
1402         /// claiming at least this value on chain.
1403         ///
1404         /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
1405         ///
1406         /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
1407         pub unspendable_punishment_reserve: u64,
1408         /// Information on the fees and requirements that the counterparty requires when forwarding
1409         /// payments to us through this channel.
1410         pub forwarding_info: Option<CounterpartyForwardingInfo>,
1411         /// The smallest value HTLC (in msat) the remote peer will accept, for this channel. This field
1412         /// is only `None` before we have received either the `OpenChannel` or `AcceptChannel` message
1413         /// from the remote peer, or for `ChannelCounterparty` objects serialized prior to LDK 0.0.107.
1414         pub outbound_htlc_minimum_msat: Option<u64>,
1415         /// The largest value HTLC (in msat) the remote peer currently will accept, for this channel.
1416         pub outbound_htlc_maximum_msat: Option<u64>,
1417 }
1418
1419 /// Details of a channel, as returned by [`ChannelManager::list_channels`] and [`ChannelManager::list_usable_channels`]
1420 ///
1421 /// Balances of a channel are available through [`ChainMonitor::get_claimable_balances`] and
1422 /// [`ChannelMonitor::get_claimable_balances`], calculated with respect to the corresponding on-chain
1423 /// transactions.
1424 ///
1425 /// [`ChainMonitor::get_claimable_balances`]: crate::chain::chainmonitor::ChainMonitor::get_claimable_balances
1426 #[derive(Clone, Debug, PartialEq)]
1427 pub struct ChannelDetails {
1428         /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
1429         /// thereafter this is the txid of the funding transaction xor the funding transaction output).
1430         /// Note that this means this value is *not* persistent - it can change once during the
1431         /// lifetime of the channel.
1432         pub channel_id: ChannelId,
1433         /// Parameters which apply to our counterparty. See individual fields for more information.
1434         pub counterparty: ChannelCounterparty,
1435         /// The Channel's funding transaction output, if we've negotiated the funding transaction with
1436         /// our counterparty already.
1437         ///
1438         /// Note that, if this has been set, `channel_id` will be equivalent to
1439         /// `funding_txo.unwrap().to_channel_id()`.
1440         pub funding_txo: Option<OutPoint>,
1441         /// The features which this channel operates with. See individual features for more info.
1442         ///
1443         /// `None` until negotiation completes and the channel type is finalized.
1444         pub channel_type: Option<ChannelTypeFeatures>,
1445         /// The position of the funding transaction in the chain. None if the funding transaction has
1446         /// not yet been confirmed and the channel fully opened.
1447         ///
1448         /// Note that if [`inbound_scid_alias`] is set, it must be used for invoices and inbound
1449         /// payments instead of this. See [`get_inbound_payment_scid`].
1450         ///
1451         /// For channels with [`confirmations_required`] set to `Some(0)`, [`outbound_scid_alias`] may
1452         /// be used in place of this in outbound routes. See [`get_outbound_payment_scid`].
1453         ///
1454         /// [`inbound_scid_alias`]: Self::inbound_scid_alias
1455         /// [`outbound_scid_alias`]: Self::outbound_scid_alias
1456         /// [`get_inbound_payment_scid`]: Self::get_inbound_payment_scid
1457         /// [`get_outbound_payment_scid`]: Self::get_outbound_payment_scid
1458         /// [`confirmations_required`]: Self::confirmations_required
1459         pub short_channel_id: Option<u64>,
1460         /// An optional [`short_channel_id`] alias for this channel, randomly generated by us and
1461         /// usable in place of [`short_channel_id`] to reference the channel in outbound routes when
1462         /// the channel has not yet been confirmed (as long as [`confirmations_required`] is
1463         /// `Some(0)`).
1464         ///
1465         /// This will be `None` as long as the channel is not available for routing outbound payments.
1466         ///
1467         /// [`short_channel_id`]: Self::short_channel_id
1468         /// [`confirmations_required`]: Self::confirmations_required
1469         pub outbound_scid_alias: Option<u64>,
1470         /// An optional [`short_channel_id`] alias for this channel, randomly generated by our
1471         /// counterparty and usable in place of [`short_channel_id`] in invoice route hints. Our
1472         /// counterparty will recognize the alias provided here in place of the [`short_channel_id`]
1473         /// when they see a payment to be routed to us.
1474         ///
1475         /// Our counterparty may choose to rotate this value at any time, though will always recognize
1476         /// previous values for inbound payment forwarding.
1477         ///
1478         /// [`short_channel_id`]: Self::short_channel_id
1479         pub inbound_scid_alias: Option<u64>,
1480         /// The value, in satoshis, of this channel as appears in the funding output
1481         pub channel_value_satoshis: u64,
1482         /// The value, in satoshis, that must always be held in the channel for us. This value ensures
1483         /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
1484         /// this value on chain.
1485         ///
1486         /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
1487         ///
1488         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1489         ///
1490         /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
1491         pub unspendable_punishment_reserve: Option<u64>,
1492         /// The `user_channel_id` value passed in to [`ChannelManager::create_channel`] for outbound
1493         /// channels, or to [`ChannelManager::accept_inbound_channel`] for inbound channels if
1494         /// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true. Otherwise
1495         /// `user_channel_id` will be randomized for an inbound channel.  This may be zero for objects
1496         /// serialized with LDK versions prior to 0.0.113.
1497         ///
1498         /// [`ChannelManager::create_channel`]: crate::ln::channelmanager::ChannelManager::create_channel
1499         /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
1500         /// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
1501         pub user_channel_id: u128,
1502         /// The currently negotiated fee rate denominated in satoshi per 1000 weight units,
1503         /// which is applied to commitment and HTLC transactions.
1504         ///
1505         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.115.
1506         pub feerate_sat_per_1000_weight: Option<u32>,
1507         /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
1508         /// any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1509         /// available for inclusion in new outbound HTLCs). This further does not include any pending
1510         /// outgoing HTLCs which are awaiting some other resolution to be sent.
1511         ///
1512         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1513         /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
1514         /// should be able to spend nearly this amount.
1515         pub outbound_capacity_msat: u64,
1516         /// The available outbound capacity for sending a single HTLC to the remote peer. This is
1517         /// similar to [`ChannelDetails::outbound_capacity_msat`] but it may be further restricted by
1518         /// the current state and per-HTLC limit(s). This is intended for use when routing, allowing us
1519         /// to use a limit as close as possible to the HTLC limit we can currently send.
1520         ///
1521         /// See also [`ChannelDetails::next_outbound_htlc_minimum_msat`] and
1522         /// [`ChannelDetails::outbound_capacity_msat`].
1523         pub next_outbound_htlc_limit_msat: u64,
1524         /// The minimum value for sending a single HTLC to the remote peer. This is the equivalent of
1525         /// [`ChannelDetails::next_outbound_htlc_limit_msat`] but represents a lower-bound, rather than
1526         /// an upper-bound. This is intended for use when routing, allowing us to ensure we pick a
1527         /// route which is valid.
1528         pub next_outbound_htlc_minimum_msat: u64,
1529         /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
1530         /// include any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1531         /// available for inclusion in new inbound HTLCs).
1532         /// Note that there are some corner cases not fully handled here, so the actual available
1533         /// inbound capacity may be slightly higher than this.
1534         ///
1535         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1536         /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
1537         /// However, our counterparty should be able to spend nearly this amount.
1538         pub inbound_capacity_msat: u64,
1539         /// The number of required confirmations on the funding transaction before the funding will be
1540         /// considered "locked". This number is selected by the channel fundee (i.e. us if
1541         /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
1542         /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
1543         /// [`ChannelHandshakeLimits::max_minimum_depth`].
1544         ///
1545         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1546         ///
1547         /// [`is_outbound`]: ChannelDetails::is_outbound
1548         /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
1549         /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
1550         pub confirmations_required: Option<u32>,
1551         /// The current number of confirmations on the funding transaction.
1552         ///
1553         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.113.
1554         pub confirmations: Option<u32>,
1555         /// The number of blocks (after our commitment transaction confirms) that we will need to wait
1556         /// until we can claim our funds after we force-close the channel. During this time our
1557         /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
1558         /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
1559         /// time to claim our non-HTLC-encumbered funds.
1560         ///
1561         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1562         pub force_close_spend_delay: Option<u16>,
1563         /// True if the channel was initiated (and thus funded) by us.
1564         pub is_outbound: bool,
1565         /// True if the channel is confirmed, channel_ready messages have been exchanged, and the
1566         /// channel is not currently being shut down. `channel_ready` message exchange implies the
1567         /// required confirmation count has been reached (and we were connected to the peer at some
1568         /// point after the funding transaction received enough confirmations). The required
1569         /// confirmation count is provided in [`confirmations_required`].
1570         ///
1571         /// [`confirmations_required`]: ChannelDetails::confirmations_required
1572         pub is_channel_ready: bool,
1573         /// The stage of the channel's shutdown.
1574         /// `None` for `ChannelDetails` serialized on LDK versions prior to 0.0.116.
1575         pub channel_shutdown_state: Option<ChannelShutdownState>,
1576         /// True if the channel is (a) confirmed and channel_ready messages have been exchanged, (b)
1577         /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
1578         ///
1579         /// This is a strict superset of `is_channel_ready`.
1580         pub is_usable: bool,
1581         /// True if this channel is (or will be) publicly-announced.
1582         pub is_public: bool,
1583         /// The smallest value HTLC (in msat) we will accept, for this channel. This field
1584         /// is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.107
1585         pub inbound_htlc_minimum_msat: Option<u64>,
1586         /// The largest value HTLC (in msat) we currently will accept, for this channel.
1587         pub inbound_htlc_maximum_msat: Option<u64>,
1588         /// Set of configurable parameters that affect channel operation.
1589         ///
1590         /// This field is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.109.
1591         pub config: Option<ChannelConfig>,
1592 }
1593
1594 impl ChannelDetails {
1595         /// Gets the current SCID which should be used to identify this channel for inbound payments.
1596         /// This should be used for providing invoice hints or in any other context where our
1597         /// counterparty will forward a payment to us.
1598         ///
1599         /// This is either the [`ChannelDetails::inbound_scid_alias`], if set, or the
1600         /// [`ChannelDetails::short_channel_id`]. See those for more information.
1601         pub fn get_inbound_payment_scid(&self) -> Option<u64> {
1602                 self.inbound_scid_alias.or(self.short_channel_id)
1603         }
1604
1605         /// Gets the current SCID which should be used to identify this channel for outbound payments.
1606         /// This should be used in [`Route`]s to describe the first hop or in other contexts where
1607         /// we're sending or forwarding a payment outbound over this channel.
1608         ///
1609         /// This is either the [`ChannelDetails::short_channel_id`], if set, or the
1610         /// [`ChannelDetails::outbound_scid_alias`]. See those for more information.
1611         pub fn get_outbound_payment_scid(&self) -> Option<u64> {
1612                 self.short_channel_id.or(self.outbound_scid_alias)
1613         }
1614
1615         fn from_channel_context<SP: Deref, F: Deref>(
1616                 context: &ChannelContext<SP>, best_block_height: u32, latest_features: InitFeatures,
1617                 fee_estimator: &LowerBoundedFeeEstimator<F>
1618         ) -> Self
1619         where
1620                 SP::Target: SignerProvider,
1621                 F::Target: FeeEstimator
1622         {
1623                 let balance = context.get_available_balances(fee_estimator);
1624                 let (to_remote_reserve_satoshis, to_self_reserve_satoshis) =
1625                         context.get_holder_counterparty_selected_channel_reserve_satoshis();
1626                 ChannelDetails {
1627                         channel_id: context.channel_id(),
1628                         counterparty: ChannelCounterparty {
1629                                 node_id: context.get_counterparty_node_id(),
1630                                 features: latest_features,
1631                                 unspendable_punishment_reserve: to_remote_reserve_satoshis,
1632                                 forwarding_info: context.counterparty_forwarding_info(),
1633                                 // Ensures that we have actually received the `htlc_minimum_msat` value
1634                                 // from the counterparty through the `OpenChannel` or `AcceptChannel`
1635                                 // message (as they are always the first message from the counterparty).
1636                                 // Else `Channel::get_counterparty_htlc_minimum_msat` could return the
1637                                 // default `0` value set by `Channel::new_outbound`.
1638                                 outbound_htlc_minimum_msat: if context.have_received_message() {
1639                                         Some(context.get_counterparty_htlc_minimum_msat()) } else { None },
1640                                 outbound_htlc_maximum_msat: context.get_counterparty_htlc_maximum_msat(),
1641                         },
1642                         funding_txo: context.get_funding_txo(),
1643                         // Note that accept_channel (or open_channel) is always the first message, so
1644                         // `have_received_message` indicates that type negotiation has completed.
1645                         channel_type: if context.have_received_message() { Some(context.get_channel_type().clone()) } else { None },
1646                         short_channel_id: context.get_short_channel_id(),
1647                         outbound_scid_alias: if context.is_usable() { Some(context.outbound_scid_alias()) } else { None },
1648                         inbound_scid_alias: context.latest_inbound_scid_alias(),
1649                         channel_value_satoshis: context.get_value_satoshis(),
1650                         feerate_sat_per_1000_weight: Some(context.get_feerate_sat_per_1000_weight()),
1651                         unspendable_punishment_reserve: to_self_reserve_satoshis,
1652                         inbound_capacity_msat: balance.inbound_capacity_msat,
1653                         outbound_capacity_msat: balance.outbound_capacity_msat,
1654                         next_outbound_htlc_limit_msat: balance.next_outbound_htlc_limit_msat,
1655                         next_outbound_htlc_minimum_msat: balance.next_outbound_htlc_minimum_msat,
1656                         user_channel_id: context.get_user_id(),
1657                         confirmations_required: context.minimum_depth(),
1658                         confirmations: Some(context.get_funding_tx_confirmations(best_block_height)),
1659                         force_close_spend_delay: context.get_counterparty_selected_contest_delay(),
1660                         is_outbound: context.is_outbound(),
1661                         is_channel_ready: context.is_usable(),
1662                         is_usable: context.is_live(),
1663                         is_public: context.should_announce(),
1664                         inbound_htlc_minimum_msat: Some(context.get_holder_htlc_minimum_msat()),
1665                         inbound_htlc_maximum_msat: context.get_holder_htlc_maximum_msat(),
1666                         config: Some(context.config()),
1667                         channel_shutdown_state: Some(context.shutdown_state()),
1668                 }
1669         }
1670 }
1671
1672 #[derive(Clone, Copy, Debug, PartialEq, Eq)]
1673 /// Further information on the details of the channel shutdown.
1674 /// Upon channels being forced closed (i.e. commitment transaction confirmation detected
1675 /// by `ChainMonitor`), ChannelShutdownState will be set to `ShutdownComplete` or
1676 /// the channel will be removed shortly.
1677 /// Also note, that in normal operation, peers could disconnect at any of these states
1678 /// and require peer re-connection before making progress onto other states
1679 pub enum ChannelShutdownState {
1680         /// Channel has not sent or received a shutdown message.
1681         NotShuttingDown,
1682         /// Local node has sent a shutdown message for this channel.
1683         ShutdownInitiated,
1684         /// Shutdown message exchanges have concluded and the channels are in the midst of
1685         /// resolving all existing open HTLCs before closing can continue.
1686         ResolvingHTLCs,
1687         /// All HTLCs have been resolved, nodes are currently negotiating channel close onchain fee rates.
1688         NegotiatingClosingFee,
1689         /// We've successfully negotiated a closing_signed dance. At this point `ChannelManager` is about
1690         /// to drop the channel.
1691         ShutdownComplete,
1692 }
1693
1694 /// Used by [`ChannelManager::list_recent_payments`] to express the status of recent payments.
1695 /// These include payments that have yet to find a successful path, or have unresolved HTLCs.
1696 #[derive(Debug, PartialEq)]
1697 pub enum RecentPaymentDetails {
1698         /// When an invoice was requested and thus a payment has not yet been sent.
1699         AwaitingInvoice {
1700                 /// Identifier for the payment to ensure idempotency.
1701                 payment_id: PaymentId,
1702         },
1703         /// When a payment is still being sent and awaiting successful delivery.
1704         Pending {
1705                 /// Hash of the payment that is currently being sent but has yet to be fulfilled or
1706                 /// abandoned.
1707                 payment_hash: PaymentHash,
1708                 /// Total amount (in msat, excluding fees) across all paths for this payment,
1709                 /// not just the amount currently inflight.
1710                 total_msat: u64,
1711         },
1712         /// When a pending payment is fulfilled, we continue tracking it until all pending HTLCs have
1713         /// been resolved. Upon receiving [`Event::PaymentSent`], we delay for a few minutes before the
1714         /// payment is removed from tracking.
1715         Fulfilled {
1716                 /// Hash of the payment that was claimed. `None` for serializations of [`ChannelManager`]
1717                 /// made before LDK version 0.0.104.
1718                 payment_hash: Option<PaymentHash>,
1719         },
1720         /// After a payment's retries are exhausted per the provided [`Retry`], or it is explicitly
1721         /// abandoned via [`ChannelManager::abandon_payment`], it is marked as abandoned until all
1722         /// pending HTLCs for this payment resolve and an [`Event::PaymentFailed`] is generated.
1723         Abandoned {
1724                 /// Hash of the payment that we have given up trying to send.
1725                 payment_hash: PaymentHash,
1726         },
1727 }
1728
1729 /// Route hints used in constructing invoices for [phantom node payents].
1730 ///
1731 /// [phantom node payments]: crate::sign::PhantomKeysManager
1732 #[derive(Clone)]
1733 pub struct PhantomRouteHints {
1734         /// The list of channels to be included in the invoice route hints.
1735         pub channels: Vec<ChannelDetails>,
1736         /// A fake scid used for representing the phantom node's fake channel in generating the invoice
1737         /// route hints.
1738         pub phantom_scid: u64,
1739         /// The pubkey of the real backing node that would ultimately receive the payment.
1740         pub real_node_pubkey: PublicKey,
1741 }
1742
1743 macro_rules! handle_error {
1744         ($self: ident, $internal: expr, $counterparty_node_id: expr) => { {
1745                 // In testing, ensure there are no deadlocks where the lock is already held upon
1746                 // entering the macro.
1747                 debug_assert_ne!($self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
1748                 debug_assert_ne!($self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
1749
1750                 match $internal {
1751                         Ok(msg) => Ok(msg),
1752                         Err(MsgHandleErrInternal { err, chan_id, shutdown_finish, channel_capacity }) => {
1753                                 let mut msg_events = Vec::with_capacity(2);
1754
1755                                 if let Some((shutdown_res, update_option)) = shutdown_finish {
1756                                         $self.finish_force_close_channel(shutdown_res);
1757                                         if let Some(update) = update_option {
1758                                                 msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
1759                                                         msg: update
1760                                                 });
1761                                         }
1762                                         if let Some((channel_id, user_channel_id)) = chan_id {
1763                                                 $self.pending_events.lock().unwrap().push_back((events::Event::ChannelClosed {
1764                                                         channel_id, user_channel_id,
1765                                                         reason: ClosureReason::ProcessingError { err: err.err.clone() },
1766                                                         counterparty_node_id: Some($counterparty_node_id),
1767                                                         channel_capacity_sats: channel_capacity,
1768                                                 }, None));
1769                                         }
1770                                 }
1771
1772                                 log_error!($self.logger, "{}", err.err);
1773                                 if let msgs::ErrorAction::IgnoreError = err.action {
1774                                 } else {
1775                                         msg_events.push(events::MessageSendEvent::HandleError {
1776                                                 node_id: $counterparty_node_id,
1777                                                 action: err.action.clone()
1778                                         });
1779                                 }
1780
1781                                 if !msg_events.is_empty() {
1782                                         let per_peer_state = $self.per_peer_state.read().unwrap();
1783                                         if let Some(peer_state_mutex) = per_peer_state.get(&$counterparty_node_id) {
1784                                                 let mut peer_state = peer_state_mutex.lock().unwrap();
1785                                                 peer_state.pending_msg_events.append(&mut msg_events);
1786                                         }
1787                                 }
1788
1789                                 // Return error in case higher-API need one
1790                                 Err(err)
1791                         },
1792                 }
1793         } };
1794         ($self: ident, $internal: expr) => {
1795                 match $internal {
1796                         Ok(res) => Ok(res),
1797                         Err((chan, msg_handle_err)) => {
1798                                 let counterparty_node_id = chan.get_counterparty_node_id();
1799                                 handle_error!($self, Err(msg_handle_err), counterparty_node_id).map_err(|err| (chan, err))
1800                         },
1801                 }
1802         };
1803 }
1804
1805 macro_rules! update_maps_on_chan_removal {
1806         ($self: expr, $channel_context: expr) => {{
1807                 $self.id_to_peer.lock().unwrap().remove(&$channel_context.channel_id());
1808                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1809                 if let Some(short_id) = $channel_context.get_short_channel_id() {
1810                         short_to_chan_info.remove(&short_id);
1811                 } else {
1812                         // If the channel was never confirmed on-chain prior to its closure, remove the
1813                         // outbound SCID alias we used for it from the collision-prevention set. While we
1814                         // generally want to avoid ever re-using an outbound SCID alias across all channels, we
1815                         // also don't want a counterparty to be able to trivially cause a memory leak by simply
1816                         // opening a million channels with us which are closed before we ever reach the funding
1817                         // stage.
1818                         let alias_removed = $self.outbound_scid_aliases.lock().unwrap().remove(&$channel_context.outbound_scid_alias());
1819                         debug_assert!(alias_removed);
1820                 }
1821                 short_to_chan_info.remove(&$channel_context.outbound_scid_alias());
1822         }}
1823 }
1824
1825 /// Returns (boolean indicating if we should remove the Channel object from memory, a mapped error)
1826 macro_rules! convert_chan_phase_err {
1827         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, MANUAL_CHANNEL_UPDATE, $channel_update: expr) => {
1828                 match $err {
1829                         ChannelError::Warn(msg) => {
1830                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Warn(msg), *$channel_id))
1831                         },
1832                         ChannelError::Ignore(msg) => {
1833                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore(msg), *$channel_id))
1834                         },
1835                         ChannelError::Close(msg) => {
1836                                 log_error!($self.logger, "Closing channel {} due to close-required error: {}", $channel_id, msg);
1837                                 update_maps_on_chan_removal!($self, $channel.context);
1838                                 let shutdown_res = $channel.context.force_shutdown(true);
1839                                 let user_id = $channel.context.get_user_id();
1840                                 let channel_capacity_satoshis = $channel.context.get_value_satoshis();
1841
1842                                 (true, MsgHandleErrInternal::from_finish_shutdown(msg, *$channel_id, user_id,
1843                                         shutdown_res, $channel_update, channel_capacity_satoshis))
1844                         },
1845                 }
1846         };
1847         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, FUNDED_CHANNEL) => {
1848                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, { $self.get_channel_update_for_broadcast($channel).ok() })
1849         };
1850         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, UNFUNDED_CHANNEL) => {
1851                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, None)
1852         };
1853         ($self: ident, $err: expr, $channel_phase: expr, $channel_id: expr) => {
1854                 match $channel_phase {
1855                         ChannelPhase::Funded(channel) => {
1856                                 convert_chan_phase_err!($self, $err, channel, $channel_id, FUNDED_CHANNEL)
1857                         },
1858                         ChannelPhase::UnfundedOutboundV1(channel) => {
1859                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
1860                         },
1861                         ChannelPhase::UnfundedInboundV1(channel) => {
1862                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
1863                         },
1864                 }
1865         };
1866 }
1867
1868 macro_rules! break_chan_phase_entry {
1869         ($self: ident, $res: expr, $entry: expr) => {
1870                 match $res {
1871                         Ok(res) => res,
1872                         Err(e) => {
1873                                 let key = *$entry.key();
1874                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
1875                                 if drop {
1876                                         $entry.remove_entry();
1877                                 }
1878                                 break Err(res);
1879                         }
1880                 }
1881         }
1882 }
1883
1884 macro_rules! try_chan_phase_entry {
1885         ($self: ident, $res: expr, $entry: expr) => {
1886                 match $res {
1887                         Ok(res) => res,
1888                         Err(e) => {
1889                                 let key = *$entry.key();
1890                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
1891                                 if drop {
1892                                         $entry.remove_entry();
1893                                 }
1894                                 return Err(res);
1895                         }
1896                 }
1897         }
1898 }
1899
1900 macro_rules! remove_channel_phase {
1901         ($self: expr, $entry: expr) => {
1902                 {
1903                         let channel = $entry.remove_entry().1;
1904                         update_maps_on_chan_removal!($self, &channel.context());
1905                         channel
1906                 }
1907         }
1908 }
1909
1910 macro_rules! send_channel_ready {
1911         ($self: ident, $pending_msg_events: expr, $channel: expr, $channel_ready_msg: expr) => {{
1912                 $pending_msg_events.push(events::MessageSendEvent::SendChannelReady {
1913                         node_id: $channel.context.get_counterparty_node_id(),
1914                         msg: $channel_ready_msg,
1915                 });
1916                 // Note that we may send a `channel_ready` multiple times for a channel if we reconnect, so
1917                 // we allow collisions, but we shouldn't ever be updating the channel ID pointed to.
1918                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1919                 let outbound_alias_insert = short_to_chan_info.insert($channel.context.outbound_scid_alias(), ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
1920                 assert!(outbound_alias_insert.is_none() || outbound_alias_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
1921                         "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1922                 if let Some(real_scid) = $channel.context.get_short_channel_id() {
1923                         let scid_insert = short_to_chan_info.insert(real_scid, ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
1924                         assert!(scid_insert.is_none() || scid_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
1925                                 "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1926                 }
1927         }}
1928 }
1929
1930 macro_rules! emit_channel_pending_event {
1931         ($locked_events: expr, $channel: expr) => {
1932                 if $channel.context.should_emit_channel_pending_event() {
1933                         $locked_events.push_back((events::Event::ChannelPending {
1934                                 channel_id: $channel.context.channel_id(),
1935                                 former_temporary_channel_id: $channel.context.temporary_channel_id(),
1936                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
1937                                 user_channel_id: $channel.context.get_user_id(),
1938                                 funding_txo: $channel.context.get_funding_txo().unwrap().into_bitcoin_outpoint(),
1939                         }, None));
1940                         $channel.context.set_channel_pending_event_emitted();
1941                 }
1942         }
1943 }
1944
1945 macro_rules! emit_channel_ready_event {
1946         ($locked_events: expr, $channel: expr) => {
1947                 if $channel.context.should_emit_channel_ready_event() {
1948                         debug_assert!($channel.context.channel_pending_event_emitted());
1949                         $locked_events.push_back((events::Event::ChannelReady {
1950                                 channel_id: $channel.context.channel_id(),
1951                                 user_channel_id: $channel.context.get_user_id(),
1952                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
1953                                 channel_type: $channel.context.get_channel_type().clone(),
1954                         }, None));
1955                         $channel.context.set_channel_ready_event_emitted();
1956                 }
1957         }
1958 }
1959
1960 macro_rules! handle_monitor_update_completion {
1961         ($self: ident, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr) => { {
1962                 let mut updates = $chan.monitor_updating_restored(&$self.logger,
1963                         &$self.node_signer, $self.genesis_hash, &$self.default_configuration,
1964                         $self.best_block.read().unwrap().height());
1965                 let counterparty_node_id = $chan.context.get_counterparty_node_id();
1966                 let channel_update = if updates.channel_ready.is_some() && $chan.context.is_usable() {
1967                         // We only send a channel_update in the case where we are just now sending a
1968                         // channel_ready and the channel is in a usable state. We may re-send a
1969                         // channel_update later through the announcement_signatures process for public
1970                         // channels, but there's no reason not to just inform our counterparty of our fees
1971                         // now.
1972                         if let Ok(msg) = $self.get_channel_update_for_unicast($chan) {
1973                                 Some(events::MessageSendEvent::SendChannelUpdate {
1974                                         node_id: counterparty_node_id,
1975                                         msg,
1976                                 })
1977                         } else { None }
1978                 } else { None };
1979
1980                 let update_actions = $peer_state.monitor_update_blocked_actions
1981                         .remove(&$chan.context.channel_id()).unwrap_or(Vec::new());
1982
1983                 let htlc_forwards = $self.handle_channel_resumption(
1984                         &mut $peer_state.pending_msg_events, $chan, updates.raa,
1985                         updates.commitment_update, updates.order, updates.accepted_htlcs,
1986                         updates.funding_broadcastable, updates.channel_ready,
1987                         updates.announcement_sigs);
1988                 if let Some(upd) = channel_update {
1989                         $peer_state.pending_msg_events.push(upd);
1990                 }
1991
1992                 let channel_id = $chan.context.channel_id();
1993                 core::mem::drop($peer_state_lock);
1994                 core::mem::drop($per_peer_state_lock);
1995
1996                 $self.handle_monitor_update_completion_actions(update_actions);
1997
1998                 if let Some(forwards) = htlc_forwards {
1999                         $self.forward_htlcs(&mut [forwards][..]);
2000                 }
2001                 $self.finalize_claims(updates.finalized_claimed_htlcs);
2002                 for failure in updates.failed_htlcs.drain(..) {
2003                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2004                         $self.fail_htlc_backwards_internal(&failure.0, &failure.1, &failure.2, receiver);
2005                 }
2006         } }
2007 }
2008
2009 macro_rules! handle_new_monitor_update {
2010         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr, _internal, $remove: expr, $completed: expr) => { {
2011                 // update_maps_on_chan_removal needs to be able to take id_to_peer, so make sure we can in
2012                 // any case so that it won't deadlock.
2013                 debug_assert_ne!($self.id_to_peer.held_by_thread(), LockHeldState::HeldByThread);
2014                 debug_assert!($self.background_events_processed_since_startup.load(Ordering::Acquire));
2015                 match $update_res {
2016                         ChannelMonitorUpdateStatus::InProgress => {
2017                                 log_debug!($self.logger, "ChannelMonitor update for {} in flight, holding messages until the update completes.",
2018                                         &$chan.context.channel_id());
2019                                 Ok(false)
2020                         },
2021                         ChannelMonitorUpdateStatus::PermanentFailure => {
2022                                 log_error!($self.logger, "Closing channel {} due to monitor update ChannelMonitorUpdateStatus::PermanentFailure",
2023                                         &$chan.context.channel_id());
2024                                 update_maps_on_chan_removal!($self, &$chan.context);
2025                                 let res = Err(MsgHandleErrInternal::from_finish_shutdown(
2026                                         "ChannelMonitor storage failure".to_owned(), $chan.context.channel_id(),
2027                                         $chan.context.get_user_id(), $chan.context.force_shutdown(false),
2028                                         $self.get_channel_update_for_broadcast(&$chan).ok(), $chan.context.get_value_satoshis()));
2029                                 $remove;
2030                                 res
2031                         },
2032                         ChannelMonitorUpdateStatus::Completed => {
2033                                 $completed;
2034                                 Ok(true)
2035                         },
2036                 }
2037         } };
2038         ($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) => {
2039                 handle_new_monitor_update!($self, $update_res, $peer_state_lock, $peer_state,
2040                         $per_peer_state_lock, $chan, _internal, $remove,
2041                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan))
2042         };
2043         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan_entry: expr, INITIAL_MONITOR) => {
2044                 if let ChannelPhase::Funded(chan) = $chan_entry.get_mut() {
2045                         handle_new_monitor_update!($self, $update_res, $peer_state_lock, $peer_state,
2046                                 $per_peer_state_lock, chan, MANUALLY_REMOVING_INITIAL_MONITOR, { $chan_entry.remove() })
2047                 } else {
2048                         // We're not supposed to handle monitor updates for unfunded channels (they have no monitors to
2049                         // update).
2050                         debug_assert!(false);
2051                         let channel_id = *$chan_entry.key();
2052                         let (_, err) = convert_chan_phase_err!($self, ChannelError::Close(
2053                                 "Cannot update monitor for unfunded channels as they don't have monitors yet".into()),
2054                                 $chan_entry.get_mut(), &channel_id);
2055                         $chan_entry.remove();
2056                         Err(err)
2057                 }
2058         };
2059         ($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) => { {
2060                 let in_flight_updates = $peer_state.in_flight_monitor_updates.entry($funding_txo)
2061                         .or_insert_with(Vec::new);
2062                 // During startup, we push monitor updates as background events through to here in
2063                 // order to replay updates that were in-flight when we shut down. Thus, we have to
2064                 // filter for uniqueness here.
2065                 let idx = in_flight_updates.iter().position(|upd| upd == &$update)
2066                         .unwrap_or_else(|| {
2067                                 in_flight_updates.push($update);
2068                                 in_flight_updates.len() - 1
2069                         });
2070                 let update_res = $self.chain_monitor.update_channel($funding_txo, &in_flight_updates[idx]);
2071                 handle_new_monitor_update!($self, update_res, $peer_state_lock, $peer_state,
2072                         $per_peer_state_lock, $chan, _internal, $remove,
2073                         {
2074                                 let _ = in_flight_updates.remove(idx);
2075                                 if in_flight_updates.is_empty() && $chan.blocked_monitor_updates_pending() == 0 {
2076                                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan);
2077                                 }
2078                         })
2079         } };
2080         ($self: ident, $funding_txo: expr, $update: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan_entry: expr) => {
2081                 if let ChannelPhase::Funded(chan) = $chan_entry.get_mut() {
2082                         handle_new_monitor_update!($self, $funding_txo, $update, $peer_state_lock, $peer_state,
2083                                 $per_peer_state_lock, chan, MANUALLY_REMOVING, { $chan_entry.remove() })
2084                 } else {
2085                         // We're not supposed to handle monitor updates for unfunded channels (they have no monitors to
2086                         // update).
2087                         debug_assert!(false);
2088                         let channel_id = *$chan_entry.key();
2089                         let (_, err) = convert_chan_phase_err!($self, ChannelError::Close(
2090                                 "Cannot update monitor for unfunded channels as they don't have monitors yet".into()),
2091                                 $chan_entry.get_mut(), &channel_id);
2092                         $chan_entry.remove();
2093                         Err(err)
2094                 }
2095         }
2096 }
2097
2098 macro_rules! process_events_body {
2099         ($self: expr, $event_to_handle: expr, $handle_event: expr) => {
2100                 let mut processed_all_events = false;
2101                 while !processed_all_events {
2102                         if $self.pending_events_processor.compare_exchange(false, true, Ordering::Acquire, Ordering::Relaxed).is_err() {
2103                                 return;
2104                         }
2105
2106                         let mut result;
2107
2108                         {
2109                                 // We'll acquire our total consistency lock so that we can be sure no other
2110                                 // persists happen while processing monitor events.
2111                                 let _read_guard = $self.total_consistency_lock.read().unwrap();
2112
2113                                 // Because `handle_post_event_actions` may send `ChannelMonitorUpdate`s to the user we must
2114                                 // ensure any startup-generated background events are handled first.
2115                                 result = $self.process_background_events();
2116
2117                                 // TODO: This behavior should be documented. It's unintuitive that we query
2118                                 // ChannelMonitors when clearing other events.
2119                                 if $self.process_pending_monitor_events() {
2120                                         result = NotifyOption::DoPersist;
2121                                 }
2122                         }
2123
2124                         let pending_events = $self.pending_events.lock().unwrap().clone();
2125                         let num_events = pending_events.len();
2126                         if !pending_events.is_empty() {
2127                                 result = NotifyOption::DoPersist;
2128                         }
2129
2130                         let mut post_event_actions = Vec::new();
2131
2132                         for (event, action_opt) in pending_events {
2133                                 $event_to_handle = event;
2134                                 $handle_event;
2135                                 if let Some(action) = action_opt {
2136                                         post_event_actions.push(action);
2137                                 }
2138                         }
2139
2140                         {
2141                                 let mut pending_events = $self.pending_events.lock().unwrap();
2142                                 pending_events.drain(..num_events);
2143                                 processed_all_events = pending_events.is_empty();
2144                                 // Note that `push_pending_forwards_ev` relies on `pending_events_processor` being
2145                                 // updated here with the `pending_events` lock acquired.
2146                                 $self.pending_events_processor.store(false, Ordering::Release);
2147                         }
2148
2149                         if !post_event_actions.is_empty() {
2150                                 $self.handle_post_event_actions(post_event_actions);
2151                                 // If we had some actions, go around again as we may have more events now
2152                                 processed_all_events = false;
2153                         }
2154
2155                         if result == NotifyOption::DoPersist {
2156                                 $self.needs_persist_flag.store(true, Ordering::Release);
2157                                 $self.event_persist_notifier.notify();
2158                         }
2159                 }
2160         }
2161 }
2162
2163 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>
2164 where
2165         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
2166         T::Target: BroadcasterInterface,
2167         ES::Target: EntropySource,
2168         NS::Target: NodeSigner,
2169         SP::Target: SignerProvider,
2170         F::Target: FeeEstimator,
2171         R::Target: Router,
2172         L::Target: Logger,
2173 {
2174         /// Constructs a new `ChannelManager` to hold several channels and route between them.
2175         ///
2176         /// The current time or latest block header time can be provided as the `current_timestamp`.
2177         ///
2178         /// This is the main "logic hub" for all channel-related actions, and implements
2179         /// [`ChannelMessageHandler`].
2180         ///
2181         /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
2182         ///
2183         /// Users need to notify the new `ChannelManager` when a new block is connected or
2184         /// disconnected using its [`block_connected`] and [`block_disconnected`] methods, starting
2185         /// from after [`params.best_block.block_hash`]. See [`chain::Listen`] and [`chain::Confirm`] for
2186         /// more details.
2187         ///
2188         /// [`block_connected`]: chain::Listen::block_connected
2189         /// [`block_disconnected`]: chain::Listen::block_disconnected
2190         /// [`params.best_block.block_hash`]: chain::BestBlock::block_hash
2191         pub fn new(
2192                 fee_est: F, chain_monitor: M, tx_broadcaster: T, router: R, logger: L, entropy_source: ES,
2193                 node_signer: NS, signer_provider: SP, config: UserConfig, params: ChainParameters,
2194                 current_timestamp: u32,
2195         ) -> Self {
2196                 let mut secp_ctx = Secp256k1::new();
2197                 secp_ctx.seeded_randomize(&entropy_source.get_secure_random_bytes());
2198                 let inbound_pmt_key_material = node_signer.get_inbound_payment_key_material();
2199                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
2200                 ChannelManager {
2201                         default_configuration: config.clone(),
2202                         genesis_hash: genesis_block(params.network).header.block_hash(),
2203                         fee_estimator: LowerBoundedFeeEstimator::new(fee_est),
2204                         chain_monitor,
2205                         tx_broadcaster,
2206                         router,
2207
2208                         best_block: RwLock::new(params.best_block),
2209
2210                         outbound_scid_aliases: Mutex::new(HashSet::new()),
2211                         pending_inbound_payments: Mutex::new(HashMap::new()),
2212                         pending_outbound_payments: OutboundPayments::new(),
2213                         forward_htlcs: Mutex::new(HashMap::new()),
2214                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments: HashMap::new(), pending_claiming_payments: HashMap::new() }),
2215                         pending_intercepted_htlcs: Mutex::new(HashMap::new()),
2216                         id_to_peer: Mutex::new(HashMap::new()),
2217                         short_to_chan_info: FairRwLock::new(HashMap::new()),
2218
2219                         our_network_pubkey: node_signer.get_node_id(Recipient::Node).unwrap(),
2220                         secp_ctx,
2221
2222                         inbound_payment_key: expanded_inbound_key,
2223                         fake_scid_rand_bytes: entropy_source.get_secure_random_bytes(),
2224
2225                         probing_cookie_secret: entropy_source.get_secure_random_bytes(),
2226
2227                         highest_seen_timestamp: AtomicUsize::new(current_timestamp as usize),
2228
2229                         per_peer_state: FairRwLock::new(HashMap::new()),
2230
2231                         pending_events: Mutex::new(VecDeque::new()),
2232                         pending_events_processor: AtomicBool::new(false),
2233                         pending_background_events: Mutex::new(Vec::new()),
2234                         total_consistency_lock: RwLock::new(()),
2235                         background_events_processed_since_startup: AtomicBool::new(false),
2236
2237                         event_persist_notifier: Notifier::new(),
2238                         needs_persist_flag: AtomicBool::new(false),
2239
2240                         entropy_source,
2241                         node_signer,
2242                         signer_provider,
2243
2244                         logger,
2245                 }
2246         }
2247
2248         /// Gets the current configuration applied to all new channels.
2249         pub fn get_current_default_configuration(&self) -> &UserConfig {
2250                 &self.default_configuration
2251         }
2252
2253         fn create_and_insert_outbound_scid_alias(&self) -> u64 {
2254                 let height = self.best_block.read().unwrap().height();
2255                 let mut outbound_scid_alias = 0;
2256                 let mut i = 0;
2257                 loop {
2258                         if cfg!(fuzzing) { // fuzzing chacha20 doesn't use the key at all so we always get the same alias
2259                                 outbound_scid_alias += 1;
2260                         } else {
2261                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias.get_fake_scid(height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
2262                         }
2263                         if outbound_scid_alias != 0 && self.outbound_scid_aliases.lock().unwrap().insert(outbound_scid_alias) {
2264                                 break;
2265                         }
2266                         i += 1;
2267                         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"); }
2268                 }
2269                 outbound_scid_alias
2270         }
2271
2272         /// Creates a new outbound channel to the given remote node and with the given value.
2273         ///
2274         /// `user_channel_id` will be provided back as in
2275         /// [`Event::FundingGenerationReady::user_channel_id`] to allow tracking of which events
2276         /// correspond with which `create_channel` call. Note that the `user_channel_id` defaults to a
2277         /// randomized value for inbound channels. `user_channel_id` has no meaning inside of LDK, it
2278         /// is simply copied to events and otherwise ignored.
2279         ///
2280         /// Raises [`APIError::APIMisuseError`] when `channel_value_satoshis` > 2**24 or `push_msat` is
2281         /// greater than `channel_value_satoshis * 1k` or `channel_value_satoshis < 1000`.
2282         ///
2283         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be opened due to failing to
2284         /// generate a shutdown scriptpubkey or destination script set by
2285         /// [`SignerProvider::get_shutdown_scriptpubkey`] or [`SignerProvider::get_destination_script`].
2286         ///
2287         /// Note that we do not check if you are currently connected to the given peer. If no
2288         /// connection is available, the outbound `open_channel` message may fail to send, resulting in
2289         /// the channel eventually being silently forgotten (dropped on reload).
2290         ///
2291         /// Returns the new Channel's temporary `channel_id`. This ID will appear as
2292         /// [`Event::FundingGenerationReady::temporary_channel_id`] and in
2293         /// [`ChannelDetails::channel_id`] until after
2294         /// [`ChannelManager::funding_transaction_generated`] is called, swapping the Channel's ID for
2295         /// one derived from the funding transaction's TXID. If the counterparty rejects the channel
2296         /// immediately, this temporary ID will appear in [`Event::ChannelClosed::channel_id`].
2297         ///
2298         /// [`Event::FundingGenerationReady::user_channel_id`]: events::Event::FundingGenerationReady::user_channel_id
2299         /// [`Event::FundingGenerationReady::temporary_channel_id`]: events::Event::FundingGenerationReady::temporary_channel_id
2300         /// [`Event::ChannelClosed::channel_id`]: events::Event::ChannelClosed::channel_id
2301         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> {
2302                 if channel_value_satoshis < 1000 {
2303                         return Err(APIError::APIMisuseError { err: format!("Channel value must be at least 1000 satoshis. It was {}", channel_value_satoshis) });
2304                 }
2305
2306                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2307                 // We want to make sure the lock is actually acquired by PersistenceNotifierGuard.
2308                 debug_assert!(&self.total_consistency_lock.try_write().is_err());
2309
2310                 let per_peer_state = self.per_peer_state.read().unwrap();
2311
2312                 let peer_state_mutex = per_peer_state.get(&their_network_key)
2313                         .ok_or_else(|| APIError::APIMisuseError{ err: format!("Not connected to node: {}", their_network_key) })?;
2314
2315                 let mut peer_state = peer_state_mutex.lock().unwrap();
2316                 let channel = {
2317                         let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
2318                         let their_features = &peer_state.latest_features;
2319                         let config = if override_config.is_some() { override_config.as_ref().unwrap() } else { &self.default_configuration };
2320                         match OutboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider, their_network_key,
2321                                 their_features, channel_value_satoshis, push_msat, user_channel_id, config,
2322                                 self.best_block.read().unwrap().height(), outbound_scid_alias)
2323                         {
2324                                 Ok(res) => res,
2325                                 Err(e) => {
2326                                         self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
2327                                         return Err(e);
2328                                 },
2329                         }
2330                 };
2331                 let res = channel.get_open_channel(self.genesis_hash.clone());
2332
2333                 let temporary_channel_id = channel.context.channel_id();
2334                 match peer_state.channel_by_id.entry(temporary_channel_id) {
2335                         hash_map::Entry::Occupied(_) => {
2336                                 if cfg!(fuzzing) {
2337                                         return Err(APIError::APIMisuseError { err: "Fuzzy bad RNG".to_owned() });
2338                                 } else {
2339                                         panic!("RNG is bad???");
2340                                 }
2341                         },
2342                         hash_map::Entry::Vacant(entry) => { entry.insert(ChannelPhase::UnfundedOutboundV1(channel)); }
2343                 }
2344
2345                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
2346                         node_id: their_network_key,
2347                         msg: res,
2348                 });
2349                 Ok(temporary_channel_id)
2350         }
2351
2352         fn list_funded_channels_with_filter<Fn: FnMut(&(&ChannelId, &Channel<SP>)) -> bool + Copy>(&self, f: Fn) -> Vec<ChannelDetails> {
2353                 // Allocate our best estimate of the number of channels we have in the `res`
2354                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2355                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2356                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2357                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2358                 // the same channel.
2359                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2360                 {
2361                         let best_block_height = self.best_block.read().unwrap().height();
2362                         let per_peer_state = self.per_peer_state.read().unwrap();
2363                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2364                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2365                                 let peer_state = &mut *peer_state_lock;
2366                                 res.extend(peer_state.channel_by_id.iter()
2367                                         .filter_map(|(chan_id, phase)| match phase {
2368                                                 // Only `Channels` in the `ChannelPhase::Funded` phase can be considered funded.
2369                                                 ChannelPhase::Funded(chan) => Some((chan_id, chan)),
2370                                                 _ => None,
2371                                         })
2372                                         .filter(f)
2373                                         .map(|(_channel_id, channel)| {
2374                                                 ChannelDetails::from_channel_context(&channel.context, best_block_height,
2375                                                         peer_state.latest_features.clone(), &self.fee_estimator)
2376                                         })
2377                                 );
2378                         }
2379                 }
2380                 res
2381         }
2382
2383         /// Gets the list of open channels, in random order. See [`ChannelDetails`] field documentation for
2384         /// more information.
2385         pub fn list_channels(&self) -> Vec<ChannelDetails> {
2386                 // Allocate our best estimate of the number of channels we have in the `res`
2387                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2388                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2389                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2390                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2391                 // the same channel.
2392                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2393                 {
2394                         let best_block_height = self.best_block.read().unwrap().height();
2395                         let per_peer_state = self.per_peer_state.read().unwrap();
2396                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2397                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2398                                 let peer_state = &mut *peer_state_lock;
2399                                 for context in peer_state.channel_by_id.iter().map(|(_, phase)| phase.context()) {
2400                                         let details = ChannelDetails::from_channel_context(context, best_block_height,
2401                                                 peer_state.latest_features.clone(), &self.fee_estimator);
2402                                         res.push(details);
2403                                 }
2404                         }
2405                 }
2406                 res
2407         }
2408
2409         /// Gets the list of usable channels, in random order. Useful as an argument to
2410         /// [`Router::find_route`] to ensure non-announced channels are used.
2411         ///
2412         /// These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
2413         /// documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
2414         /// are.
2415         pub fn list_usable_channels(&self) -> Vec<ChannelDetails> {
2416                 // Note we use is_live here instead of usable which leads to somewhat confused
2417                 // internal/external nomenclature, but that's ok cause that's probably what the user
2418                 // really wanted anyway.
2419                 self.list_funded_channels_with_filter(|&(_, ref channel)| channel.context.is_live())
2420         }
2421
2422         /// Gets the list of channels we have with a given counterparty, in random order.
2423         pub fn list_channels_with_counterparty(&self, counterparty_node_id: &PublicKey) -> Vec<ChannelDetails> {
2424                 let best_block_height = self.best_block.read().unwrap().height();
2425                 let per_peer_state = self.per_peer_state.read().unwrap();
2426
2427                 if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
2428                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2429                         let peer_state = &mut *peer_state_lock;
2430                         let features = &peer_state.latest_features;
2431                         let context_to_details = |context| {
2432                                 ChannelDetails::from_channel_context(context, best_block_height, features.clone(), &self.fee_estimator)
2433                         };
2434                         return peer_state.channel_by_id
2435                                 .iter()
2436                                 .map(|(_, phase)| phase.context())
2437                                 .map(context_to_details)
2438                                 .collect();
2439                 }
2440                 vec![]
2441         }
2442
2443         /// Returns in an undefined order recent payments that -- if not fulfilled -- have yet to find a
2444         /// successful path, or have unresolved HTLCs.
2445         ///
2446         /// This can be useful for payments that may have been prepared, but ultimately not sent, as a
2447         /// result of a crash. If such a payment exists, is not listed here, and an
2448         /// [`Event::PaymentSent`] has not been received, you may consider resending the payment.
2449         ///
2450         /// [`Event::PaymentSent`]: events::Event::PaymentSent
2451         pub fn list_recent_payments(&self) -> Vec<RecentPaymentDetails> {
2452                 self.pending_outbound_payments.pending_outbound_payments.lock().unwrap().iter()
2453                         .filter_map(|(payment_id, pending_outbound_payment)| match pending_outbound_payment {
2454                                 PendingOutboundPayment::AwaitingInvoice { .. } => {
2455                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
2456                                 },
2457                                 // InvoiceReceived is an intermediate state and doesn't need to be exposed
2458                                 PendingOutboundPayment::InvoiceReceived { .. } => {
2459                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
2460                                 },
2461                                 PendingOutboundPayment::Retryable { payment_hash, total_msat, .. } => {
2462                                         Some(RecentPaymentDetails::Pending {
2463                                                 payment_hash: *payment_hash,
2464                                                 total_msat: *total_msat,
2465                                         })
2466                                 },
2467                                 PendingOutboundPayment::Abandoned { payment_hash, .. } => {
2468                                         Some(RecentPaymentDetails::Abandoned { payment_hash: *payment_hash })
2469                                 },
2470                                 PendingOutboundPayment::Fulfilled { payment_hash, .. } => {
2471                                         Some(RecentPaymentDetails::Fulfilled { payment_hash: *payment_hash })
2472                                 },
2473                                 PendingOutboundPayment::Legacy { .. } => None
2474                         })
2475                         .collect()
2476         }
2477
2478         /// Helper function that issues the channel close events
2479         fn issue_channel_close_events(&self, context: &ChannelContext<SP>, closure_reason: ClosureReason) {
2480                 let mut pending_events_lock = self.pending_events.lock().unwrap();
2481                 match context.unbroadcasted_funding() {
2482                         Some(transaction) => {
2483                                 pending_events_lock.push_back((events::Event::DiscardFunding {
2484                                         channel_id: context.channel_id(), transaction
2485                                 }, None));
2486                         },
2487                         None => {},
2488                 }
2489                 pending_events_lock.push_back((events::Event::ChannelClosed {
2490                         channel_id: context.channel_id(),
2491                         user_channel_id: context.get_user_id(),
2492                         reason: closure_reason,
2493                         counterparty_node_id: Some(context.get_counterparty_node_id()),
2494                         channel_capacity_sats: Some(context.get_value_satoshis()),
2495                 }, None));
2496         }
2497
2498         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> {
2499                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2500
2501                 let mut failed_htlcs: Vec<(HTLCSource, PaymentHash)>;
2502                 let result: Result<(), _> = loop {
2503                         {
2504                                 let per_peer_state = self.per_peer_state.read().unwrap();
2505
2506                                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
2507                                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
2508
2509                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2510                                 let peer_state = &mut *peer_state_lock;
2511
2512                                 match peer_state.channel_by_id.entry(channel_id.clone()) {
2513                                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
2514                                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
2515                                                         let funding_txo_opt = chan.context.get_funding_txo();
2516                                                         let their_features = &peer_state.latest_features;
2517                                                         let (shutdown_msg, mut monitor_update_opt, htlcs) =
2518                                                                 chan.get_shutdown(&self.signer_provider, their_features, target_feerate_sats_per_1000_weight, override_shutdown_script)?;
2519                                                         failed_htlcs = htlcs;
2520
2521                                                         // We can send the `shutdown` message before updating the `ChannelMonitor`
2522                                                         // here as we don't need the monitor update to complete until we send a
2523                                                         // `shutdown_signed`, which we'll delay if we're pending a monitor update.
2524                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
2525                                                                 node_id: *counterparty_node_id,
2526                                                                 msg: shutdown_msg,
2527                                                         });
2528
2529                                                         // Update the monitor with the shutdown script if necessary.
2530                                                         if let Some(monitor_update) = monitor_update_opt.take() {
2531                                                                 break handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
2532                                                                         peer_state_lock, peer_state, per_peer_state, chan_phase_entry).map(|_| ());
2533                                                         }
2534
2535                                                         if chan.is_shutdown() {
2536                                                                 if let ChannelPhase::Funded(chan) = remove_channel_phase!(self, chan_phase_entry) {
2537                                                                         if let Ok(channel_update) = self.get_channel_update_for_broadcast(&chan) {
2538                                                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2539                                                                                         msg: channel_update
2540                                                                                 });
2541                                                                         }
2542                                                                         self.issue_channel_close_events(&chan.context, ClosureReason::HolderForceClosed);
2543                                                                 }
2544                                                         }
2545                                                         break Ok(());
2546                                                 }
2547                                         },
2548                                         hash_map::Entry::Vacant(_) => (),
2549                                 }
2550                         }
2551                         // If we reach this point, it means that the channel_id either refers to an unfunded channel or
2552                         // it does not exist for this peer. Either way, we can attempt to force-close it.
2553                         //
2554                         // An appropriate error will be returned for non-existence of the channel if that's the case.
2555                         return self.force_close_channel_with_peer(&channel_id, counterparty_node_id, None, false).map(|_| ())
2556                 };
2557
2558                 for htlc_source in failed_htlcs.drain(..) {
2559                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2560                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(*counterparty_node_id), channel_id: *channel_id };
2561                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
2562                 }
2563
2564                 let _ = handle_error!(self, result, *counterparty_node_id);
2565                 Ok(())
2566         }
2567
2568         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2569         /// will be accepted on the given channel, and after additional timeout/the closing of all
2570         /// pending HTLCs, the channel will be closed on chain.
2571         ///
2572         ///  * If we are the channel initiator, we will pay between our [`Background`] and
2573         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2574         ///    estimate.
2575         ///  * If our counterparty is the channel initiator, we will require a channel closing
2576         ///    transaction feerate of at least our [`Background`] feerate or the feerate which
2577         ///    would appear on a force-closure transaction, whichever is lower. We will allow our
2578         ///    counterparty to pay as much fee as they'd like, however.
2579         ///
2580         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2581         ///
2582         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2583         /// generate a shutdown scriptpubkey or destination script set by
2584         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2585         /// channel.
2586         ///
2587         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2588         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2589         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2590         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2591         pub fn close_channel(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey) -> Result<(), APIError> {
2592                 self.close_channel_internal(channel_id, counterparty_node_id, None, None)
2593         }
2594
2595         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2596         /// will be accepted on the given channel, and after additional timeout/the closing of all
2597         /// pending HTLCs, the channel will be closed on chain.
2598         ///
2599         /// `target_feerate_sat_per_1000_weight` has different meanings depending on if we initiated
2600         /// the channel being closed or not:
2601         ///  * If we are the channel initiator, we will pay at least this feerate on the closing
2602         ///    transaction. The upper-bound is set by
2603         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2604         ///    estimate (or `target_feerate_sat_per_1000_weight`, if it is greater).
2605         ///  * If our counterparty is the channel initiator, we will refuse to accept a channel closure
2606         ///    transaction feerate below `target_feerate_sat_per_1000_weight` (or the feerate which
2607         ///    will appear on a force-closure transaction, whichever is lower).
2608         ///
2609         /// The `shutdown_script` provided  will be used as the `scriptPubKey` for the closing transaction.
2610         /// Will fail if a shutdown script has already been set for this channel by
2611         /// ['ChannelHandshakeConfig::commit_upfront_shutdown_pubkey`]. The given shutdown script must
2612         /// also be compatible with our and the counterparty's features.
2613         ///
2614         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2615         ///
2616         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2617         /// generate a shutdown scriptpubkey or destination script set by
2618         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2619         /// channel.
2620         ///
2621         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2622         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2623         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2624         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2625         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> {
2626                 self.close_channel_internal(channel_id, counterparty_node_id, target_feerate_sats_per_1000_weight, shutdown_script)
2627         }
2628
2629         #[inline]
2630         fn finish_force_close_channel(&self, shutdown_res: ShutdownResult) {
2631                 let (monitor_update_option, mut failed_htlcs) = shutdown_res;
2632                 log_debug!(self.logger, "Finishing force-closure of channel with {} HTLCs to fail", failed_htlcs.len());
2633                 for htlc_source in failed_htlcs.drain(..) {
2634                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
2635                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2636                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2637                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
2638                 }
2639                 if let Some((_, funding_txo, monitor_update)) = monitor_update_option {
2640                         // There isn't anything we can do if we get an update failure - we're already
2641                         // force-closing. The monitor update on the required in-memory copy should broadcast
2642                         // the latest local state, which is the best we can do anyway. Thus, it is safe to
2643                         // ignore the result here.
2644                         let _ = self.chain_monitor.update_channel(funding_txo, &monitor_update);
2645                 }
2646         }
2647
2648         /// `peer_msg` should be set when we receive a message from a peer, but not set when the
2649         /// user closes, which will be re-exposed as the `ChannelClosed` reason.
2650         fn force_close_channel_with_peer(&self, channel_id: &ChannelId, peer_node_id: &PublicKey, peer_msg: Option<&String>, broadcast: bool)
2651         -> Result<PublicKey, APIError> {
2652                 let per_peer_state = self.per_peer_state.read().unwrap();
2653                 let peer_state_mutex = per_peer_state.get(peer_node_id)
2654                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", peer_node_id) })?;
2655                 let (update_opt, counterparty_node_id) = {
2656                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2657                         let peer_state = &mut *peer_state_lock;
2658                         let closure_reason = if let Some(peer_msg) = peer_msg {
2659                                 ClosureReason::CounterpartyForceClosed { peer_msg: UntrustedString(peer_msg.to_string()) }
2660                         } else {
2661                                 ClosureReason::HolderForceClosed
2662                         };
2663                         if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(channel_id.clone()) {
2664                                 log_error!(self.logger, "Force-closing channel {}", channel_id);
2665                                 self.issue_channel_close_events(&chan_phase_entry.get().context(), closure_reason);
2666                                 let mut chan_phase = remove_channel_phase!(self, chan_phase_entry);
2667                                 match chan_phase {
2668                                         ChannelPhase::Funded(mut chan) => {
2669                                                 self.finish_force_close_channel(chan.context.force_shutdown(broadcast));
2670                                                 (self.get_channel_update_for_broadcast(&chan).ok(), chan.context.get_counterparty_node_id())
2671                                         },
2672                                         ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => {
2673                                                 self.finish_force_close_channel(chan_phase.context_mut().force_shutdown(false));
2674                                                 // Unfunded channel has no update
2675                                                 (None, chan_phase.context().get_counterparty_node_id())
2676                                         },
2677                                 }
2678                         } else if peer_state.inbound_channel_request_by_id.remove(channel_id).is_some() {
2679                                 log_error!(self.logger, "Force-closing channel {}", &channel_id);
2680                                 // N.B. that we don't send any channel close event here: we
2681                                 // don't have a user_channel_id, and we never sent any opening
2682                                 // events anyway.
2683                                 (None, *peer_node_id)
2684                         } else {
2685                                 return Err(APIError::ChannelUnavailable{ err: format!("Channel with id {} not found for the passed counterparty node_id {}", channel_id, peer_node_id) });
2686                         }
2687                 };
2688                 if let Some(update) = update_opt {
2689                         let mut peer_state = peer_state_mutex.lock().unwrap();
2690                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2691                                 msg: update
2692                         });
2693                 }
2694
2695                 Ok(counterparty_node_id)
2696         }
2697
2698         fn force_close_sending_error(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, broadcast: bool) -> Result<(), APIError> {
2699                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2700                 match self.force_close_channel_with_peer(channel_id, counterparty_node_id, None, broadcast) {
2701                         Ok(counterparty_node_id) => {
2702                                 let per_peer_state = self.per_peer_state.read().unwrap();
2703                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2704                                         let mut peer_state = peer_state_mutex.lock().unwrap();
2705                                         peer_state.pending_msg_events.push(
2706                                                 events::MessageSendEvent::HandleError {
2707                                                         node_id: counterparty_node_id,
2708                                                         action: msgs::ErrorAction::SendErrorMessage {
2709                                                                 msg: msgs::ErrorMessage { channel_id: *channel_id, data: "Channel force-closed".to_owned() }
2710                                                         },
2711                                                 }
2712                                         );
2713                                 }
2714                                 Ok(())
2715                         },
2716                         Err(e) => Err(e)
2717                 }
2718         }
2719
2720         /// Force closes a channel, immediately broadcasting the latest local transaction(s) and
2721         /// rejecting new HTLCs on the given channel. Fails if `channel_id` is unknown to
2722         /// the manager, or if the `counterparty_node_id` isn't the counterparty of the corresponding
2723         /// channel.
2724         pub fn force_close_broadcasting_latest_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey)
2725         -> Result<(), APIError> {
2726                 self.force_close_sending_error(channel_id, counterparty_node_id, true)
2727         }
2728
2729         /// Force closes a channel, rejecting new HTLCs on the given channel but skips broadcasting
2730         /// the latest local transaction(s). Fails if `channel_id` is unknown to the manager, or if the
2731         /// `counterparty_node_id` isn't the counterparty of the corresponding channel.
2732         ///
2733         /// You can always get the latest local transaction(s) to broadcast from
2734         /// [`ChannelMonitor::get_latest_holder_commitment_txn`].
2735         pub fn force_close_without_broadcasting_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey)
2736         -> Result<(), APIError> {
2737                 self.force_close_sending_error(channel_id, counterparty_node_id, false)
2738         }
2739
2740         /// Force close all channels, immediately broadcasting the latest local commitment transaction
2741         /// for each to the chain and rejecting new HTLCs on each.
2742         pub fn force_close_all_channels_broadcasting_latest_txn(&self) {
2743                 for chan in self.list_channels() {
2744                         let _ = self.force_close_broadcasting_latest_txn(&chan.channel_id, &chan.counterparty.node_id);
2745                 }
2746         }
2747
2748         /// Force close all channels rejecting new HTLCs on each but without broadcasting the latest
2749         /// local transaction(s).
2750         pub fn force_close_all_channels_without_broadcasting_txn(&self) {
2751                 for chan in self.list_channels() {
2752                         let _ = self.force_close_without_broadcasting_txn(&chan.channel_id, &chan.counterparty.node_id);
2753                 }
2754         }
2755
2756         fn construct_fwd_pending_htlc_info(
2757                 &self, msg: &msgs::UpdateAddHTLC, hop_data: msgs::InboundOnionPayload, hop_hmac: [u8; 32],
2758                 new_packet_bytes: [u8; onion_utils::ONION_DATA_LEN], shared_secret: [u8; 32],
2759                 next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>
2760         ) -> Result<PendingHTLCInfo, InboundOnionErr> {
2761                 debug_assert!(next_packet_pubkey_opt.is_some());
2762                 let outgoing_packet = msgs::OnionPacket {
2763                         version: 0,
2764                         public_key: next_packet_pubkey_opt.unwrap_or(Err(secp256k1::Error::InvalidPublicKey)),
2765                         hop_data: new_packet_bytes,
2766                         hmac: hop_hmac,
2767                 };
2768
2769                 let (short_channel_id, amt_to_forward, outgoing_cltv_value) = match hop_data {
2770                         msgs::InboundOnionPayload::Forward { short_channel_id, amt_to_forward, outgoing_cltv_value } =>
2771                                 (short_channel_id, amt_to_forward, outgoing_cltv_value),
2772                         msgs::InboundOnionPayload::Receive { .. } =>
2773                                 return Err(InboundOnionErr {
2774                                         msg: "Final Node OnionHopData provided for us as an intermediary node",
2775                                         err_code: 0x4000 | 22,
2776                                         err_data: Vec::new(),
2777                                 }),
2778                 };
2779
2780                 Ok(PendingHTLCInfo {
2781                         routing: PendingHTLCRouting::Forward {
2782                                 onion_packet: outgoing_packet,
2783                                 short_channel_id,
2784                         },
2785                         payment_hash: msg.payment_hash,
2786                         incoming_shared_secret: shared_secret,
2787                         incoming_amt_msat: Some(msg.amount_msat),
2788                         outgoing_amt_msat: amt_to_forward,
2789                         outgoing_cltv_value,
2790                         skimmed_fee_msat: None,
2791                 })
2792         }
2793
2794         fn construct_recv_pending_htlc_info(
2795                 &self, hop_data: msgs::InboundOnionPayload, shared_secret: [u8; 32], payment_hash: PaymentHash,
2796                 amt_msat: u64, cltv_expiry: u32, phantom_shared_secret: Option<[u8; 32]>, allow_underpay: bool,
2797                 counterparty_skimmed_fee_msat: Option<u64>,
2798         ) -> Result<PendingHTLCInfo, InboundOnionErr> {
2799                 let (payment_data, keysend_preimage, custom_tlvs, onion_amt_msat, outgoing_cltv_value, payment_metadata) = match hop_data {
2800                         msgs::InboundOnionPayload::Receive {
2801                                 payment_data, keysend_preimage, custom_tlvs, amt_msat, outgoing_cltv_value, payment_metadata, ..
2802                         } =>
2803                                 (payment_data, keysend_preimage, custom_tlvs, amt_msat, outgoing_cltv_value, payment_metadata),
2804                         _ =>
2805                                 return Err(InboundOnionErr {
2806                                         err_code: 0x4000|22,
2807                                         err_data: Vec::new(),
2808                                         msg: "Got non final data with an HMAC of 0",
2809                                 }),
2810                 };
2811                 // final_incorrect_cltv_expiry
2812                 if outgoing_cltv_value > cltv_expiry {
2813                         return Err(InboundOnionErr {
2814                                 msg: "Upstream node set CLTV to less than the CLTV set by the sender",
2815                                 err_code: 18,
2816                                 err_data: cltv_expiry.to_be_bytes().to_vec()
2817                         })
2818                 }
2819                 // final_expiry_too_soon
2820                 // We have to have some headroom to broadcast on chain if we have the preimage, so make sure
2821                 // we have at least HTLC_FAIL_BACK_BUFFER blocks to go.
2822                 //
2823                 // Also, ensure that, in the case of an unknown preimage for the received payment hash, our
2824                 // payment logic has enough time to fail the HTLC backward before our onchain logic triggers a
2825                 // channel closure (see HTLC_FAIL_BACK_BUFFER rationale).
2826                 let current_height: u32 = self.best_block.read().unwrap().height();
2827                 if (outgoing_cltv_value as u64) <= current_height as u64 + HTLC_FAIL_BACK_BUFFER as u64 + 1 {
2828                         let mut err_data = Vec::with_capacity(12);
2829                         err_data.extend_from_slice(&amt_msat.to_be_bytes());
2830                         err_data.extend_from_slice(&current_height.to_be_bytes());
2831                         return Err(InboundOnionErr {
2832                                 err_code: 0x4000 | 15, err_data,
2833                                 msg: "The final CLTV expiry is too soon to handle",
2834                         });
2835                 }
2836                 if (!allow_underpay && onion_amt_msat > amt_msat) ||
2837                         (allow_underpay && onion_amt_msat >
2838                          amt_msat.saturating_add(counterparty_skimmed_fee_msat.unwrap_or(0)))
2839                 {
2840                         return Err(InboundOnionErr {
2841                                 err_code: 19,
2842                                 err_data: amt_msat.to_be_bytes().to_vec(),
2843                                 msg: "Upstream node sent less than we were supposed to receive in payment",
2844                         });
2845                 }
2846
2847                 let routing = if let Some(payment_preimage) = keysend_preimage {
2848                         // We need to check that the sender knows the keysend preimage before processing this
2849                         // payment further. Otherwise, an intermediary routing hop forwarding non-keysend-HTLC X
2850                         // could discover the final destination of X, by probing the adjacent nodes on the route
2851                         // with a keysend payment of identical payment hash to X and observing the processing
2852                         // time discrepancies due to a hash collision with X.
2853                         let hashed_preimage = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
2854                         if hashed_preimage != payment_hash {
2855                                 return Err(InboundOnionErr {
2856                                         err_code: 0x4000|22,
2857                                         err_data: Vec::new(),
2858                                         msg: "Payment preimage didn't match payment hash",
2859                                 });
2860                         }
2861                         if !self.default_configuration.accept_mpp_keysend && payment_data.is_some() {
2862                                 return Err(InboundOnionErr {
2863                                         err_code: 0x4000|22,
2864                                         err_data: Vec::new(),
2865                                         msg: "We don't support MPP keysend payments",
2866                                 });
2867                         }
2868                         PendingHTLCRouting::ReceiveKeysend {
2869                                 payment_data,
2870                                 payment_preimage,
2871                                 payment_metadata,
2872                                 incoming_cltv_expiry: outgoing_cltv_value,
2873                                 custom_tlvs,
2874                         }
2875                 } else if let Some(data) = payment_data {
2876                         PendingHTLCRouting::Receive {
2877                                 payment_data: data,
2878                                 payment_metadata,
2879                                 incoming_cltv_expiry: outgoing_cltv_value,
2880                                 phantom_shared_secret,
2881                                 custom_tlvs,
2882                         }
2883                 } else {
2884                         return Err(InboundOnionErr {
2885                                 err_code: 0x4000|0x2000|3,
2886                                 err_data: Vec::new(),
2887                                 msg: "We require payment_secrets",
2888                         });
2889                 };
2890                 Ok(PendingHTLCInfo {
2891                         routing,
2892                         payment_hash,
2893                         incoming_shared_secret: shared_secret,
2894                         incoming_amt_msat: Some(amt_msat),
2895                         outgoing_amt_msat: onion_amt_msat,
2896                         outgoing_cltv_value,
2897                         skimmed_fee_msat: counterparty_skimmed_fee_msat,
2898                 })
2899         }
2900
2901         fn decode_update_add_htlc_onion(
2902                 &self, msg: &msgs::UpdateAddHTLC
2903         ) -> Result<(onion_utils::Hop, [u8; 32], Option<Result<PublicKey, secp256k1::Error>>), HTLCFailureMsg> {
2904                 macro_rules! return_malformed_err {
2905                         ($msg: expr, $err_code: expr) => {
2906                                 {
2907                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2908                                         return Err(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
2909                                                 channel_id: msg.channel_id,
2910                                                 htlc_id: msg.htlc_id,
2911                                                 sha256_of_onion: Sha256::hash(&msg.onion_routing_packet.hop_data).into_inner(),
2912                                                 failure_code: $err_code,
2913                                         }));
2914                                 }
2915                         }
2916                 }
2917
2918                 if let Err(_) = msg.onion_routing_packet.public_key {
2919                         return_malformed_err!("invalid ephemeral pubkey", 0x8000 | 0x4000 | 6);
2920                 }
2921
2922                 let shared_secret = self.node_signer.ecdh(
2923                         Recipient::Node, &msg.onion_routing_packet.public_key.unwrap(), None
2924                 ).unwrap().secret_bytes();
2925
2926                 if msg.onion_routing_packet.version != 0 {
2927                         //TODO: Spec doesn't indicate if we should only hash hop_data here (and in other
2928                         //sha256_of_onion error data packets), or the entire onion_routing_packet. Either way,
2929                         //the hash doesn't really serve any purpose - in the case of hashing all data, the
2930                         //receiving node would have to brute force to figure out which version was put in the
2931                         //packet by the node that send us the message, in the case of hashing the hop_data, the
2932                         //node knows the HMAC matched, so they already know what is there...
2933                         return_malformed_err!("Unknown onion packet version", 0x8000 | 0x4000 | 4);
2934                 }
2935                 macro_rules! return_err {
2936                         ($msg: expr, $err_code: expr, $data: expr) => {
2937                                 {
2938                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2939                                         return Err(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
2940                                                 channel_id: msg.channel_id,
2941                                                 htlc_id: msg.htlc_id,
2942                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
2943                                                         .get_encrypted_failure_packet(&shared_secret, &None),
2944                                         }));
2945                                 }
2946                         }
2947                 }
2948
2949                 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) {
2950                         Ok(res) => res,
2951                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
2952                                 return_malformed_err!(err_msg, err_code);
2953                         },
2954                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
2955                                 return_err!(err_msg, err_code, &[0; 0]);
2956                         },
2957                 };
2958                 let (outgoing_scid, outgoing_amt_msat, outgoing_cltv_value, next_packet_pk_opt) = match next_hop {
2959                         onion_utils::Hop::Forward {
2960                                 next_hop_data: msgs::InboundOnionPayload::Forward {
2961                                         short_channel_id, amt_to_forward, outgoing_cltv_value
2962                                 }, ..
2963                         } => {
2964                                 let next_packet_pk = onion_utils::next_hop_pubkey(&self.secp_ctx,
2965                                         msg.onion_routing_packet.public_key.unwrap(), &shared_secret);
2966                                 (short_channel_id, amt_to_forward, outgoing_cltv_value, Some(next_packet_pk))
2967                         },
2968                         // We'll do receive checks in [`Self::construct_pending_htlc_info`] so we have access to the
2969                         // inbound channel's state.
2970                         onion_utils::Hop::Receive { .. } => return Ok((next_hop, shared_secret, None)),
2971                         onion_utils::Hop::Forward { next_hop_data: msgs::InboundOnionPayload::Receive { .. }, .. } => {
2972                                 return_err!("Final Node OnionHopData provided for us as an intermediary node", 0x4000 | 22, &[0; 0]);
2973                         }
2974                 };
2975
2976                 // Perform outbound checks here instead of in [`Self::construct_pending_htlc_info`] because we
2977                 // can't hold the outbound peer state lock at the same time as the inbound peer state lock.
2978                 if let Some((err, mut code, chan_update)) = loop {
2979                         let id_option = self.short_to_chan_info.read().unwrap().get(&outgoing_scid).cloned();
2980                         let forwarding_chan_info_opt = match id_option {
2981                                 None => { // unknown_next_peer
2982                                         // Note that this is likely a timing oracle for detecting whether an scid is a
2983                                         // phantom or an intercept.
2984                                         if (self.default_configuration.accept_intercept_htlcs &&
2985                                                 fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, outgoing_scid, &self.genesis_hash)) ||
2986                                                 fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, outgoing_scid, &self.genesis_hash)
2987                                         {
2988                                                 None
2989                                         } else {
2990                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2991                                         }
2992                                 },
2993                                 Some((cp_id, id)) => Some((cp_id.clone(), id.clone())),
2994                         };
2995                         let chan_update_opt = if let Some((counterparty_node_id, forwarding_id)) = forwarding_chan_info_opt {
2996                                 let per_peer_state = self.per_peer_state.read().unwrap();
2997                                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
2998                                 if peer_state_mutex_opt.is_none() {
2999                                         break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
3000                                 }
3001                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
3002                                 let peer_state = &mut *peer_state_lock;
3003                                 let chan = match peer_state.channel_by_id.get_mut(&forwarding_id).map(
3004                                         |chan_phase| if let ChannelPhase::Funded(chan) = chan_phase { Some(chan) } else { None }
3005                                 ).flatten() {
3006                                         None => {
3007                                                 // Channel was removed. The short_to_chan_info and channel_by_id maps
3008                                                 // have no consistency guarantees.
3009                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
3010                                         },
3011                                         Some(chan) => chan
3012                                 };
3013                                 if !chan.context.should_announce() && !self.default_configuration.accept_forwards_to_priv_channels {
3014                                         // Note that the behavior here should be identical to the above block - we
3015                                         // should NOT reveal the existence or non-existence of a private channel if
3016                                         // we don't allow forwards outbound over them.
3017                                         break Some(("Refusing to forward to a private channel based on our config.", 0x4000 | 10, None));
3018                                 }
3019                                 if chan.context.get_channel_type().supports_scid_privacy() && outgoing_scid != chan.context.outbound_scid_alias() {
3020                                         // `option_scid_alias` (referred to in LDK as `scid_privacy`) means
3021                                         // "refuse to forward unless the SCID alias was used", so we pretend
3022                                         // we don't have the channel here.
3023                                         break Some(("Refusing to forward over real channel SCID as our counterparty requested.", 0x4000 | 10, None));
3024                                 }
3025                                 let chan_update_opt = self.get_channel_update_for_onion(outgoing_scid, chan).ok();
3026
3027                                 // Note that we could technically not return an error yet here and just hope
3028                                 // that the connection is reestablished or monitor updated by the time we get
3029                                 // around to doing the actual forward, but better to fail early if we can and
3030                                 // hopefully an attacker trying to path-trace payments cannot make this occur
3031                                 // on a small/per-node/per-channel scale.
3032                                 if !chan.context.is_live() { // channel_disabled
3033                                         // If the channel_update we're going to return is disabled (i.e. the
3034                                         // peer has been disabled for some time), return `channel_disabled`,
3035                                         // otherwise return `temporary_channel_failure`.
3036                                         if chan_update_opt.as_ref().map(|u| u.contents.flags & 2 == 2).unwrap_or(false) {
3037                                                 break Some(("Forwarding channel has been disconnected for some time.", 0x1000 | 20, chan_update_opt));
3038                                         } else {
3039                                                 break Some(("Forwarding channel is not in a ready state.", 0x1000 | 7, chan_update_opt));
3040                                         }
3041                                 }
3042                                 if outgoing_amt_msat < chan.context.get_counterparty_htlc_minimum_msat() { // amount_below_minimum
3043                                         break Some(("HTLC amount was below the htlc_minimum_msat", 0x1000 | 11, chan_update_opt));
3044                                 }
3045                                 if let Err((err, code)) = chan.htlc_satisfies_config(&msg, outgoing_amt_msat, outgoing_cltv_value) {
3046                                         break Some((err, code, chan_update_opt));
3047                                 }
3048                                 chan_update_opt
3049                         } else {
3050                                 if (msg.cltv_expiry as u64) < (outgoing_cltv_value) as u64 + MIN_CLTV_EXPIRY_DELTA as u64 {
3051                                         // We really should set `incorrect_cltv_expiry` here but as we're not
3052                                         // forwarding over a real channel we can't generate a channel_update
3053                                         // for it. Instead we just return a generic temporary_node_failure.
3054                                         break Some((
3055                                                         "Forwarding node has tampered with the intended HTLC values or origin node has an obsolete cltv_expiry_delta",
3056                                                         0x2000 | 2, None,
3057                                         ));
3058                                 }
3059                                 None
3060                         };
3061
3062                         let cur_height = self.best_block.read().unwrap().height() + 1;
3063                         // Theoretically, channel counterparty shouldn't send us a HTLC expiring now,
3064                         // but we want to be robust wrt to counterparty packet sanitization (see
3065                         // HTLC_FAIL_BACK_BUFFER rationale).
3066                         if msg.cltv_expiry <= cur_height + HTLC_FAIL_BACK_BUFFER as u32 { // expiry_too_soon
3067                                 break Some(("CLTV expiry is too close", 0x1000 | 14, chan_update_opt));
3068                         }
3069                         if msg.cltv_expiry > cur_height + CLTV_FAR_FAR_AWAY as u32 { // expiry_too_far
3070                                 break Some(("CLTV expiry is too far in the future", 21, None));
3071                         }
3072                         // If the HTLC expires ~now, don't bother trying to forward it to our
3073                         // counterparty. They should fail it anyway, but we don't want to bother with
3074                         // the round-trips or risk them deciding they definitely want the HTLC and
3075                         // force-closing to ensure they get it if we're offline.
3076                         // We previously had a much more aggressive check here which tried to ensure
3077                         // our counterparty receives an HTLC which has *our* risk threshold met on it,
3078                         // but there is no need to do that, and since we're a bit conservative with our
3079                         // risk threshold it just results in failing to forward payments.
3080                         if (outgoing_cltv_value) as u64 <= (cur_height + LATENCY_GRACE_PERIOD_BLOCKS) as u64 {
3081                                 break Some(("Outgoing CLTV value is too soon", 0x1000 | 14, chan_update_opt));
3082                         }
3083
3084                         break None;
3085                 }
3086                 {
3087                         let mut res = VecWriter(Vec::with_capacity(chan_update.serialized_length() + 2 + 8 + 2));
3088                         if let Some(chan_update) = chan_update {
3089                                 if code == 0x1000 | 11 || code == 0x1000 | 12 {
3090                                         msg.amount_msat.write(&mut res).expect("Writes cannot fail");
3091                                 }
3092                                 else if code == 0x1000 | 13 {
3093                                         msg.cltv_expiry.write(&mut res).expect("Writes cannot fail");
3094                                 }
3095                                 else if code == 0x1000 | 20 {
3096                                         // TODO: underspecified, follow https://github.com/lightning/bolts/issues/791
3097                                         0u16.write(&mut res).expect("Writes cannot fail");
3098                                 }
3099                                 (chan_update.serialized_length() as u16 + 2).write(&mut res).expect("Writes cannot fail");
3100                                 msgs::ChannelUpdate::TYPE.write(&mut res).expect("Writes cannot fail");
3101                                 chan_update.write(&mut res).expect("Writes cannot fail");
3102                         } else if code & 0x1000 == 0x1000 {
3103                                 // If we're trying to return an error that requires a `channel_update` but
3104                                 // we're forwarding to a phantom or intercept "channel" (i.e. cannot
3105                                 // generate an update), just use the generic "temporary_node_failure"
3106                                 // instead.
3107                                 code = 0x2000 | 2;
3108                         }
3109                         return_err!(err, code, &res.0[..]);
3110                 }
3111                 Ok((next_hop, shared_secret, next_packet_pk_opt))
3112         }
3113
3114         fn construct_pending_htlc_status<'a>(
3115                 &self, msg: &msgs::UpdateAddHTLC, shared_secret: [u8; 32], decoded_hop: onion_utils::Hop,
3116                 allow_underpay: bool, next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>
3117         ) -> PendingHTLCStatus {
3118                 macro_rules! return_err {
3119                         ($msg: expr, $err_code: expr, $data: expr) => {
3120                                 {
3121                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3122                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
3123                                                 channel_id: msg.channel_id,
3124                                                 htlc_id: msg.htlc_id,
3125                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
3126                                                         .get_encrypted_failure_packet(&shared_secret, &None),
3127                                         }));
3128                                 }
3129                         }
3130                 }
3131                 match decoded_hop {
3132                         onion_utils::Hop::Receive(next_hop_data) => {
3133                                 // OUR PAYMENT!
3134                                 match self.construct_recv_pending_htlc_info(next_hop_data, shared_secret, msg.payment_hash,
3135                                         msg.amount_msat, msg.cltv_expiry, None, allow_underpay, msg.skimmed_fee_msat)
3136                                 {
3137                                         Ok(info) => {
3138                                                 // Note that we could obviously respond immediately with an update_fulfill_htlc
3139                                                 // message, however that would leak that we are the recipient of this payment, so
3140                                                 // instead we stay symmetric with the forwarding case, only responding (after a
3141                                                 // delay) once they've send us a commitment_signed!
3142                                                 PendingHTLCStatus::Forward(info)
3143                                         },
3144                                         Err(InboundOnionErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3145                                 }
3146                         },
3147                         onion_utils::Hop::Forward { next_hop_data, next_hop_hmac, new_packet_bytes } => {
3148                                 match self.construct_fwd_pending_htlc_info(msg, next_hop_data, next_hop_hmac,
3149                                         new_packet_bytes, shared_secret, next_packet_pubkey_opt) {
3150                                         Ok(info) => PendingHTLCStatus::Forward(info),
3151                                         Err(InboundOnionErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3152                                 }
3153                         }
3154                 }
3155         }
3156
3157         /// Gets the current [`channel_update`] for the given channel. This first checks if the channel is
3158         /// public, and thus should be called whenever the result is going to be passed out in a
3159         /// [`MessageSendEvent::BroadcastChannelUpdate`] event.
3160         ///
3161         /// Note that in [`internal_closing_signed`], this function is called without the `peer_state`
3162         /// corresponding to the channel's counterparty locked, as the channel been removed from the
3163         /// storage and the `peer_state` lock has been dropped.
3164         ///
3165         /// [`channel_update`]: msgs::ChannelUpdate
3166         /// [`internal_closing_signed`]: Self::internal_closing_signed
3167         fn get_channel_update_for_broadcast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3168                 if !chan.context.should_announce() {
3169                         return Err(LightningError {
3170                                 err: "Cannot broadcast a channel_update for a private channel".to_owned(),
3171                                 action: msgs::ErrorAction::IgnoreError
3172                         });
3173                 }
3174                 if chan.context.get_short_channel_id().is_none() {
3175                         return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError});
3176                 }
3177                 log_trace!(self.logger, "Attempting to generate broadcast channel update for channel {}", &chan.context.channel_id());
3178                 self.get_channel_update_for_unicast(chan)
3179         }
3180
3181         /// Gets the current [`channel_update`] for the given channel. This does not check if the channel
3182         /// is public (only returning an `Err` if the channel does not yet have an assigned SCID),
3183         /// and thus MUST NOT be called unless the recipient of the resulting message has already
3184         /// provided evidence that they know about the existence of the channel.
3185         ///
3186         /// Note that through [`internal_closing_signed`], this function is called without the
3187         /// `peer_state`  corresponding to the channel's counterparty locked, as the channel been
3188         /// removed from the storage and the `peer_state` lock has been dropped.
3189         ///
3190         /// [`channel_update`]: msgs::ChannelUpdate
3191         /// [`internal_closing_signed`]: Self::internal_closing_signed
3192         fn get_channel_update_for_unicast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3193                 log_trace!(self.logger, "Attempting to generate channel update for channel {}", &chan.context.channel_id());
3194                 let short_channel_id = match chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias()) {
3195                         None => return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError}),
3196                         Some(id) => id,
3197                 };
3198
3199                 self.get_channel_update_for_onion(short_channel_id, chan)
3200         }
3201
3202         fn get_channel_update_for_onion(&self, short_channel_id: u64, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3203                 log_trace!(self.logger, "Generating channel update for channel {}", &chan.context.channel_id());
3204                 let were_node_one = self.our_network_pubkey.serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
3205
3206                 let enabled = chan.context.is_usable() && match chan.channel_update_status() {
3207                         ChannelUpdateStatus::Enabled => true,
3208                         ChannelUpdateStatus::DisabledStaged(_) => true,
3209                         ChannelUpdateStatus::Disabled => false,
3210                         ChannelUpdateStatus::EnabledStaged(_) => false,
3211                 };
3212
3213                 let unsigned = msgs::UnsignedChannelUpdate {
3214                         chain_hash: self.genesis_hash,
3215                         short_channel_id,
3216                         timestamp: chan.context.get_update_time_counter(),
3217                         flags: (!were_node_one) as u8 | ((!enabled as u8) << 1),
3218                         cltv_expiry_delta: chan.context.get_cltv_expiry_delta(),
3219                         htlc_minimum_msat: chan.context.get_counterparty_htlc_minimum_msat(),
3220                         htlc_maximum_msat: chan.context.get_announced_htlc_max_msat(),
3221                         fee_base_msat: chan.context.get_outbound_forwarding_fee_base_msat(),
3222                         fee_proportional_millionths: chan.context.get_fee_proportional_millionths(),
3223                         excess_data: Vec::new(),
3224                 };
3225                 // Panic on failure to signal LDK should be restarted to retry signing the `ChannelUpdate`.
3226                 // If we returned an error and the `node_signer` cannot provide a signature for whatever
3227                 // reason`, we wouldn't be able to receive inbound payments through the corresponding
3228                 // channel.
3229                 let sig = self.node_signer.sign_gossip_message(msgs::UnsignedGossipMessage::ChannelUpdate(&unsigned)).unwrap();
3230
3231                 Ok(msgs::ChannelUpdate {
3232                         signature: sig,
3233                         contents: unsigned
3234                 })
3235         }
3236
3237         #[cfg(test)]
3238         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> {
3239                 let _lck = self.total_consistency_lock.read().unwrap();
3240                 self.send_payment_along_path(SendAlongPathArgs {
3241                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
3242                         session_priv_bytes
3243                 })
3244         }
3245
3246         fn send_payment_along_path(&self, args: SendAlongPathArgs) -> Result<(), APIError> {
3247                 let SendAlongPathArgs {
3248                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
3249                         session_priv_bytes
3250                 } = args;
3251                 // The top-level caller should hold the total_consistency_lock read lock.
3252                 debug_assert!(self.total_consistency_lock.try_write().is_err());
3253
3254                 log_trace!(self.logger,
3255                         "Attempting to send payment with payment hash {} along path with next hop {}",
3256                         payment_hash, path.hops.first().unwrap().short_channel_id);
3257                 let prng_seed = self.entropy_source.get_secure_random_bytes();
3258                 let session_priv = SecretKey::from_slice(&session_priv_bytes[..]).expect("RNG is busted");
3259
3260                 let onion_keys = onion_utils::construct_onion_keys(&self.secp_ctx, &path, &session_priv)
3261                         .map_err(|_| APIError::InvalidRoute{err: "Pubkey along hop was maliciously selected".to_owned()})?;
3262                 let (onion_payloads, htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(path, total_value, recipient_onion, cur_height, keysend_preimage)?;
3263
3264                 let onion_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, prng_seed, payment_hash)
3265                         .map_err(|_| APIError::InvalidRoute { err: "Route size too large considering onion data".to_owned()})?;
3266
3267                 let err: Result<(), _> = loop {
3268                         let (counterparty_node_id, id) = match self.short_to_chan_info.read().unwrap().get(&path.hops.first().unwrap().short_channel_id) {
3269                                 None => return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()}),
3270                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
3271                         };
3272
3273                         let per_peer_state = self.per_peer_state.read().unwrap();
3274                         let peer_state_mutex = per_peer_state.get(&counterparty_node_id)
3275                                 .ok_or_else(|| APIError::ChannelUnavailable{err: "No peer matching the path's first hop found!".to_owned() })?;
3276                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3277                         let peer_state = &mut *peer_state_lock;
3278                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(id) {
3279                                 match chan_phase_entry.get_mut() {
3280                                         ChannelPhase::Funded(chan) => {
3281                                                 if !chan.context.is_live() {
3282                                                         return Err(APIError::ChannelUnavailable{err: "Peer for first hop currently disconnected".to_owned()});
3283                                                 }
3284                                                 let funding_txo = chan.context.get_funding_txo().unwrap();
3285                                                 let send_res = chan.send_htlc_and_commit(htlc_msat, payment_hash.clone(),
3286                                                         htlc_cltv, HTLCSource::OutboundRoute {
3287                                                                 path: path.clone(),
3288                                                                 session_priv: session_priv.clone(),
3289                                                                 first_hop_htlc_msat: htlc_msat,
3290                                                                 payment_id,
3291                                                         }, onion_packet, None, &self.fee_estimator, &self.logger);
3292                                                 match break_chan_phase_entry!(self, send_res, chan_phase_entry) {
3293                                                         Some(monitor_update) => {
3294                                                                 match handle_new_monitor_update!(self, funding_txo, monitor_update, peer_state_lock, peer_state, per_peer_state, chan_phase_entry) {
3295                                                                         Err(e) => break Err(e),
3296                                                                         Ok(false) => {
3297                                                                                 // Note that MonitorUpdateInProgress here indicates (per function
3298                                                                                 // docs) that we will resend the commitment update once monitor
3299                                                                                 // updating completes. Therefore, we must return an error
3300                                                                                 // indicating that it is unsafe to retry the payment wholesale,
3301                                                                                 // which we do in the send_payment check for
3302                                                                                 // MonitorUpdateInProgress, below.
3303                                                                                 return Err(APIError::MonitorUpdateInProgress);
3304                                                                         },
3305                                                                         Ok(true) => {},
3306                                                                 }
3307                                                         },
3308                                                         None => {},
3309                                                 }
3310                                         },
3311                                         _ => return Err(APIError::ChannelUnavailable{err: "Channel to first hop is unfunded".to_owned()}),
3312                                 };
3313                         } else {
3314                                 // The channel was likely removed after we fetched the id from the
3315                                 // `short_to_chan_info` map, but before we successfully locked the
3316                                 // `channel_by_id` map.
3317                                 // This can occur as no consistency guarantees exists between the two maps.
3318                                 return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()});
3319                         }
3320                         return Ok(());
3321                 };
3322
3323                 match handle_error!(self, err, path.hops.first().unwrap().pubkey) {
3324                         Ok(_) => unreachable!(),
3325                         Err(e) => {
3326                                 Err(APIError::ChannelUnavailable { err: e.err })
3327                         },
3328                 }
3329         }
3330
3331         /// Sends a payment along a given route.
3332         ///
3333         /// Value parameters are provided via the last hop in route, see documentation for [`RouteHop`]
3334         /// fields for more info.
3335         ///
3336         /// May generate [`UpdateHTLCs`] message(s) event on success, which should be relayed (e.g. via
3337         /// [`PeerManager::process_events`]).
3338         ///
3339         /// # Avoiding Duplicate Payments
3340         ///
3341         /// If a pending payment is currently in-flight with the same [`PaymentId`] provided, this
3342         /// method will error with an [`APIError::InvalidRoute`]. Note, however, that once a payment
3343         /// is no longer pending (either via [`ChannelManager::abandon_payment`], or handling of an
3344         /// [`Event::PaymentSent`] or [`Event::PaymentFailed`]) LDK will not stop you from sending a
3345         /// second payment with the same [`PaymentId`].
3346         ///
3347         /// Thus, in order to ensure duplicate payments are not sent, you should implement your own
3348         /// tracking of payments, including state to indicate once a payment has completed. Because you
3349         /// should also ensure that [`PaymentHash`]es are not re-used, for simplicity, you should
3350         /// consider using the [`PaymentHash`] as the key for tracking payments. In that case, the
3351         /// [`PaymentId`] should be a copy of the [`PaymentHash`] bytes.
3352         ///
3353         /// Additionally, in the scenario where we begin the process of sending a payment, but crash
3354         /// before `send_payment` returns (or prior to [`ChannelMonitorUpdate`] persistence if you're
3355         /// using [`ChannelMonitorUpdateStatus::InProgress`]), the payment may be lost on restart. See
3356         /// [`ChannelManager::list_recent_payments`] for more information.
3357         ///
3358         /// # Possible Error States on [`PaymentSendFailure`]
3359         ///
3360         /// Each path may have a different return value, and [`PaymentSendFailure`] may return a `Vec` with
3361         /// each entry matching the corresponding-index entry in the route paths, see
3362         /// [`PaymentSendFailure`] for more info.
3363         ///
3364         /// In general, a path may raise:
3365         ///  * [`APIError::InvalidRoute`] when an invalid route or forwarding parameter (cltv_delta, fee,
3366         ///    node public key) is specified.
3367         ///  * [`APIError::ChannelUnavailable`] if the next-hop channel is not available for updates
3368         ///    (including due to previous monitor update failure or new permanent monitor update
3369         ///    failure).
3370         ///  * [`APIError::MonitorUpdateInProgress`] if a new monitor update failure prevented sending the
3371         ///    relevant updates.
3372         ///
3373         /// Note that depending on the type of the [`PaymentSendFailure`] the HTLC may have been
3374         /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
3375         /// different route unless you intend to pay twice!
3376         ///
3377         /// [`RouteHop`]: crate::routing::router::RouteHop
3378         /// [`Event::PaymentSent`]: events::Event::PaymentSent
3379         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
3380         /// [`UpdateHTLCs`]: events::MessageSendEvent::UpdateHTLCs
3381         /// [`PeerManager::process_events`]: crate::ln::peer_handler::PeerManager::process_events
3382         /// [`ChannelMonitorUpdateStatus::InProgress`]: crate::chain::ChannelMonitorUpdateStatus::InProgress
3383         pub fn send_payment_with_route(&self, route: &Route, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<(), PaymentSendFailure> {
3384                 let best_block_height = self.best_block.read().unwrap().height();
3385                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3386                 self.pending_outbound_payments
3387                         .send_payment_with_route(route, payment_hash, recipient_onion, payment_id,
3388                                 &self.entropy_source, &self.node_signer, best_block_height,
3389                                 |args| self.send_payment_along_path(args))
3390         }
3391
3392         /// Similar to [`ChannelManager::send_payment_with_route`], but will automatically find a route based on
3393         /// `route_params` and retry failed payment paths based on `retry_strategy`.
3394         pub fn send_payment(&self, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId, route_params: RouteParameters, retry_strategy: Retry) -> Result<(), RetryableSendFailure> {
3395                 let best_block_height = self.best_block.read().unwrap().height();
3396                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3397                 self.pending_outbound_payments
3398                         .send_payment(payment_hash, recipient_onion, payment_id, retry_strategy, route_params,
3399                                 &self.router, self.list_usable_channels(), || self.compute_inflight_htlcs(),
3400                                 &self.entropy_source, &self.node_signer, best_block_height, &self.logger,
3401                                 &self.pending_events, |args| self.send_payment_along_path(args))
3402         }
3403
3404         #[cfg(test)]
3405         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> {
3406                 let best_block_height = self.best_block.read().unwrap().height();
3407                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3408                 self.pending_outbound_payments.test_send_payment_internal(route, payment_hash, recipient_onion,
3409                         keysend_preimage, payment_id, recv_value_msat, onion_session_privs, &self.node_signer,
3410                         best_block_height, |args| self.send_payment_along_path(args))
3411         }
3412
3413         #[cfg(test)]
3414         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> {
3415                 let best_block_height = self.best_block.read().unwrap().height();
3416                 self.pending_outbound_payments.test_add_new_pending_payment(payment_hash, recipient_onion, payment_id, route, None, &self.entropy_source, best_block_height)
3417         }
3418
3419         #[cfg(test)]
3420         pub(crate) fn test_set_payment_metadata(&self, payment_id: PaymentId, new_payment_metadata: Option<Vec<u8>>) {
3421                 self.pending_outbound_payments.test_set_payment_metadata(payment_id, new_payment_metadata);
3422         }
3423
3424
3425         /// Signals that no further attempts for the given payment should occur. Useful if you have a
3426         /// pending outbound payment with retries remaining, but wish to stop retrying the payment before
3427         /// retries are exhausted.
3428         ///
3429         /// # Event Generation
3430         ///
3431         /// If no [`Event::PaymentFailed`] event had been generated before, one will be generated as soon
3432         /// as there are no remaining pending HTLCs for this payment.
3433         ///
3434         /// Note that calling this method does *not* prevent a payment from succeeding. You must still
3435         /// wait until you receive either a [`Event::PaymentFailed`] or [`Event::PaymentSent`] event to
3436         /// determine the ultimate status of a payment.
3437         ///
3438         /// # Requested Invoices
3439         ///
3440         /// In the case of paying a [`Bolt12Invoice`], abandoning the payment prior to receiving the
3441         /// invoice will result in an [`Event::InvoiceRequestFailed`] and prevent any attempts at paying
3442         /// it once received. The other events may only be generated once the invoice has been received.
3443         ///
3444         /// # Restart Behavior
3445         ///
3446         /// If an [`Event::PaymentFailed`] is generated and we restart without first persisting the
3447         /// [`ChannelManager`], another [`Event::PaymentFailed`] may be generated; likewise for
3448         /// [`Event::InvoiceRequestFailed`].
3449         ///
3450         /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
3451         pub fn abandon_payment(&self, payment_id: PaymentId) {
3452                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3453                 self.pending_outbound_payments.abandon_payment(payment_id, PaymentFailureReason::UserAbandoned, &self.pending_events);
3454         }
3455
3456         /// Send a spontaneous payment, which is a payment that does not require the recipient to have
3457         /// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
3458         /// the preimage, it must be a cryptographically secure random value that no intermediate node
3459         /// would be able to guess -- otherwise, an intermediate node may claim the payment and it will
3460         /// never reach the recipient.
3461         ///
3462         /// See [`send_payment`] documentation for more details on the return value of this function
3463         /// and idempotency guarantees provided by the [`PaymentId`] key.
3464         ///
3465         /// Similar to regular payments, you MUST NOT reuse a `payment_preimage` value. See
3466         /// [`send_payment`] for more information about the risks of duplicate preimage usage.
3467         ///
3468         /// [`send_payment`]: Self::send_payment
3469         pub fn send_spontaneous_payment(&self, route: &Route, payment_preimage: Option<PaymentPreimage>, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<PaymentHash, PaymentSendFailure> {
3470                 let best_block_height = self.best_block.read().unwrap().height();
3471                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3472                 self.pending_outbound_payments.send_spontaneous_payment_with_route(
3473                         route, payment_preimage, recipient_onion, payment_id, &self.entropy_source,
3474                         &self.node_signer, best_block_height, |args| self.send_payment_along_path(args))
3475         }
3476
3477         /// Similar to [`ChannelManager::send_spontaneous_payment`], but will automatically find a route
3478         /// based on `route_params` and retry failed payment paths based on `retry_strategy`.
3479         ///
3480         /// See [`PaymentParameters::for_keysend`] for help in constructing `route_params` for spontaneous
3481         /// payments.
3482         ///
3483         /// [`PaymentParameters::for_keysend`]: crate::routing::router::PaymentParameters::for_keysend
3484         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> {
3485                 let best_block_height = self.best_block.read().unwrap().height();
3486                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3487                 self.pending_outbound_payments.send_spontaneous_payment(payment_preimage, recipient_onion,
3488                         payment_id, retry_strategy, route_params, &self.router, self.list_usable_channels(),
3489                         || self.compute_inflight_htlcs(),  &self.entropy_source, &self.node_signer, best_block_height,
3490                         &self.logger, &self.pending_events, |args| self.send_payment_along_path(args))
3491         }
3492
3493         /// Send a payment that is probing the given route for liquidity. We calculate the
3494         /// [`PaymentHash`] of probes based on a static secret and a random [`PaymentId`], which allows
3495         /// us to easily discern them from real payments.
3496         pub fn send_probe(&self, path: Path) -> Result<(PaymentHash, PaymentId), PaymentSendFailure> {
3497                 let best_block_height = self.best_block.read().unwrap().height();
3498                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3499                 self.pending_outbound_payments.send_probe(path, self.probing_cookie_secret,
3500                         &self.entropy_source, &self.node_signer, best_block_height,
3501                         |args| self.send_payment_along_path(args))
3502         }
3503
3504         /// Returns whether a payment with the given [`PaymentHash`] and [`PaymentId`] is, in fact, a
3505         /// payment probe.
3506         #[cfg(test)]
3507         pub(crate) fn payment_is_probe(&self, payment_hash: &PaymentHash, payment_id: &PaymentId) -> bool {
3508                 outbound_payment::payment_is_probe(payment_hash, payment_id, self.probing_cookie_secret)
3509         }
3510
3511         /// Handles the generation of a funding transaction, optionally (for tests) with a function
3512         /// which checks the correctness of the funding transaction given the associated channel.
3513         fn funding_transaction_generated_intern<FundingOutput: Fn(&OutboundV1Channel<SP>, &Transaction) -> Result<OutPoint, APIError>>(
3514                 &self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, find_funding_output: FundingOutput
3515         ) -> Result<(), APIError> {
3516                 let per_peer_state = self.per_peer_state.read().unwrap();
3517                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3518                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3519
3520                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3521                 let peer_state = &mut *peer_state_lock;
3522                 let (chan, msg) = match peer_state.channel_by_id.remove(temporary_channel_id) {
3523                         Some(ChannelPhase::UnfundedOutboundV1(chan)) => {
3524                                 let funding_txo = find_funding_output(&chan, &funding_transaction)?;
3525
3526                                 let funding_res = chan.get_funding_created(funding_transaction, funding_txo, &self.logger)
3527                                         .map_err(|(mut chan, e)| if let ChannelError::Close(msg) = e {
3528                                                 let channel_id = chan.context.channel_id();
3529                                                 let user_id = chan.context.get_user_id();
3530                                                 let shutdown_res = chan.context.force_shutdown(false);
3531                                                 let channel_capacity = chan.context.get_value_satoshis();
3532                                                 (chan, MsgHandleErrInternal::from_finish_shutdown(msg, channel_id, user_id, shutdown_res, None, channel_capacity))
3533                                         } else { unreachable!(); });
3534                                 match funding_res {
3535                                         Ok((chan, funding_msg)) => (chan, funding_msg),
3536                                         Err((chan, err)) => {
3537                                                 mem::drop(peer_state_lock);
3538                                                 mem::drop(per_peer_state);
3539
3540                                                 let _: Result<(), _> = handle_error!(self, Err(err), chan.context.get_counterparty_node_id());
3541                                                 return Err(APIError::ChannelUnavailable {
3542                                                         err: "Signer refused to sign the initial commitment transaction".to_owned()
3543                                                 });
3544                                         },
3545                                 }
3546                         },
3547                         Some(phase) => {
3548                                 peer_state.channel_by_id.insert(*temporary_channel_id, phase);
3549                                 return Err(APIError::APIMisuseError {
3550                                         err: format!(
3551                                                 "Channel with id {} for the passed counterparty node_id {} is not an unfunded, outbound V1 channel",
3552                                                 temporary_channel_id, counterparty_node_id),
3553                                 })
3554                         },
3555                         None => return Err(APIError::ChannelUnavailable {err: format!(
3556                                 "Channel with id {} not found for the passed counterparty node_id {}",
3557                                 temporary_channel_id, counterparty_node_id),
3558                                 }),
3559                 };
3560
3561                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
3562                         node_id: chan.context.get_counterparty_node_id(),
3563                         msg,
3564                 });
3565                 match peer_state.channel_by_id.entry(chan.context.channel_id()) {
3566                         hash_map::Entry::Occupied(_) => {
3567                                 panic!("Generated duplicate funding txid?");
3568                         },
3569                         hash_map::Entry::Vacant(e) => {
3570                                 let mut id_to_peer = self.id_to_peer.lock().unwrap();
3571                                 if id_to_peer.insert(chan.context.channel_id(), chan.context.get_counterparty_node_id()).is_some() {
3572                                         panic!("id_to_peer map already contained funding txid, which shouldn't be possible");
3573                                 }
3574                                 e.insert(ChannelPhase::Funded(chan));
3575                         }
3576                 }
3577                 Ok(())
3578         }
3579
3580         #[cfg(test)]
3581         pub(crate) fn funding_transaction_generated_unchecked(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, output_index: u16) -> Result<(), APIError> {
3582                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |_, tx| {
3583                         Ok(OutPoint { txid: tx.txid(), index: output_index })
3584                 })
3585         }
3586
3587         /// Call this upon creation of a funding transaction for the given channel.
3588         ///
3589         /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
3590         /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
3591         ///
3592         /// Returns [`APIError::APIMisuseError`] if the funding transaction is not final for propagation
3593         /// across the p2p network.
3594         ///
3595         /// Returns [`APIError::ChannelUnavailable`] if a funding transaction has already been provided
3596         /// for the channel or if the channel has been closed as indicated by [`Event::ChannelClosed`].
3597         ///
3598         /// May panic if the output found in the funding transaction is duplicative with some other
3599         /// channel (note that this should be trivially prevented by using unique funding transaction
3600         /// keys per-channel).
3601         ///
3602         /// Do NOT broadcast the funding transaction yourself. When we have safely received our
3603         /// counterparty's signature the funding transaction will automatically be broadcast via the
3604         /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
3605         ///
3606         /// Note that this includes RBF or similar transaction replacement strategies - lightning does
3607         /// not currently support replacing a funding transaction on an existing channel. Instead,
3608         /// create a new channel with a conflicting funding transaction.
3609         ///
3610         /// Note to keep the miner incentives aligned in moving the blockchain forward, we recommend
3611         /// the wallet software generating the funding transaction to apply anti-fee sniping as
3612         /// implemented by Bitcoin Core wallet. See <https://bitcoinops.org/en/topics/fee-sniping/>
3613         /// for more details.
3614         ///
3615         /// [`Event::FundingGenerationReady`]: crate::events::Event::FundingGenerationReady
3616         /// [`Event::ChannelClosed`]: crate::events::Event::ChannelClosed
3617         pub fn funding_transaction_generated(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction) -> Result<(), APIError> {
3618                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3619
3620                 if !funding_transaction.is_coin_base() {
3621                         for inp in funding_transaction.input.iter() {
3622                                 if inp.witness.is_empty() {
3623                                         return Err(APIError::APIMisuseError {
3624                                                 err: "Funding transaction must be fully signed and spend Segwit outputs".to_owned()
3625                                         });
3626                                 }
3627                         }
3628                 }
3629                 {
3630                         let height = self.best_block.read().unwrap().height();
3631                         // Transactions are evaluated as final by network mempools if their locktime is strictly
3632                         // lower than the next block height. However, the modules constituting our Lightning
3633                         // node might not have perfect sync about their blockchain views. Thus, if the wallet
3634                         // module is ahead of LDK, only allow one more block of headroom.
3635                         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 {
3636                                 return Err(APIError::APIMisuseError {
3637                                         err: "Funding transaction absolute timelock is non-final".to_owned()
3638                                 });
3639                         }
3640                 }
3641                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |chan, tx| {
3642                         if tx.output.len() > u16::max_value() as usize {
3643                                 return Err(APIError::APIMisuseError {
3644                                         err: "Transaction had more than 2^16 outputs, which is not supported".to_owned()
3645                                 });
3646                         }
3647
3648                         let mut output_index = None;
3649                         let expected_spk = chan.context.get_funding_redeemscript().to_v0_p2wsh();
3650                         for (idx, outp) in tx.output.iter().enumerate() {
3651                                 if outp.script_pubkey == expected_spk && outp.value == chan.context.get_value_satoshis() {
3652                                         if output_index.is_some() {
3653                                                 return Err(APIError::APIMisuseError {
3654                                                         err: "Multiple outputs matched the expected script and value".to_owned()
3655                                                 });
3656                                         }
3657                                         output_index = Some(idx as u16);
3658                                 }
3659                         }
3660                         if output_index.is_none() {
3661                                 return Err(APIError::APIMisuseError {
3662                                         err: "No output matched the script_pubkey and value in the FundingGenerationReady event".to_owned()
3663                                 });
3664                         }
3665                         Ok(OutPoint { txid: tx.txid(), index: output_index.unwrap() })
3666                 })
3667         }
3668
3669         /// Atomically applies partial updates to the [`ChannelConfig`] of the given channels.
3670         ///
3671         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3672         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3673         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3674         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3675         ///
3676         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3677         /// `counterparty_node_id` is provided.
3678         ///
3679         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3680         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3681         ///
3682         /// If an error is returned, none of the updates should be considered applied.
3683         ///
3684         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3685         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3686         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3687         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3688         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3689         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3690         /// [`APIMisuseError`]: APIError::APIMisuseError
3691         pub fn update_partial_channel_config(
3692                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config_update: &ChannelConfigUpdate,
3693         ) -> Result<(), APIError> {
3694                 if config_update.cltv_expiry_delta.map(|delta| delta < MIN_CLTV_EXPIRY_DELTA).unwrap_or(false) {
3695                         return Err(APIError::APIMisuseError {
3696                                 err: format!("The chosen CLTV expiry delta is below the minimum of {}", MIN_CLTV_EXPIRY_DELTA),
3697                         });
3698                 }
3699
3700                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3701                 let per_peer_state = self.per_peer_state.read().unwrap();
3702                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3703                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3704                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3705                 let peer_state = &mut *peer_state_lock;
3706                 for channel_id in channel_ids {
3707                         if !peer_state.has_channel(channel_id) {
3708                                 return Err(APIError::ChannelUnavailable {
3709                                         err: format!("Channel with ID {} was not found for the passed counterparty_node_id {}", channel_id, counterparty_node_id),
3710                                 });
3711                         };
3712                 }
3713                 for channel_id in channel_ids {
3714                         if let Some(channel_phase) = peer_state.channel_by_id.get_mut(channel_id) {
3715                                 let mut config = channel_phase.context().config();
3716                                 config.apply(config_update);
3717                                 if !channel_phase.context_mut().update_config(&config) {
3718                                         continue;
3719                                 }
3720                                 if let ChannelPhase::Funded(channel) = channel_phase {
3721                                         if let Ok(msg) = self.get_channel_update_for_broadcast(channel) {
3722                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate { msg });
3723                                         } else if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
3724                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
3725                                                         node_id: channel.context.get_counterparty_node_id(),
3726                                                         msg,
3727                                                 });
3728                                         }
3729                                 }
3730                                 continue;
3731                         } else {
3732                                 // This should not be reachable as we've already checked for non-existence in the previous channel_id loop.
3733                                 debug_assert!(false);
3734                                 return Err(APIError::ChannelUnavailable {
3735                                         err: format!(
3736                                                 "Channel with ID {} for passed counterparty_node_id {} disappeared after we confirmed its existence - this should not be reachable!",
3737                                                 channel_id, counterparty_node_id),
3738                                 });
3739                         };
3740                 }
3741                 Ok(())
3742         }
3743
3744         /// Atomically updates the [`ChannelConfig`] for the given channels.
3745         ///
3746         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3747         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3748         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3749         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3750         ///
3751         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3752         /// `counterparty_node_id` is provided.
3753         ///
3754         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3755         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3756         ///
3757         /// If an error is returned, none of the updates should be considered applied.
3758         ///
3759         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3760         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3761         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3762         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3763         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3764         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3765         /// [`APIMisuseError`]: APIError::APIMisuseError
3766         pub fn update_channel_config(
3767                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config: &ChannelConfig,
3768         ) -> Result<(), APIError> {
3769                 return self.update_partial_channel_config(counterparty_node_id, channel_ids, &(*config).into());
3770         }
3771
3772         /// Attempts to forward an intercepted HTLC over the provided channel id and with the provided
3773         /// amount to forward. Should only be called in response to an [`HTLCIntercepted`] event.
3774         ///
3775         /// Intercepted HTLCs can be useful for Lightning Service Providers (LSPs) to open a just-in-time
3776         /// channel to a receiving node if the node lacks sufficient inbound liquidity.
3777         ///
3778         /// To make use of intercepted HTLCs, set [`UserConfig::accept_intercept_htlcs`] and use
3779         /// [`ChannelManager::get_intercept_scid`] to generate short channel id(s) to put in the
3780         /// receiver's invoice route hints. These route hints will signal to LDK to generate an
3781         /// [`HTLCIntercepted`] event when it receives the forwarded HTLC, and this method or
3782         /// [`ChannelManager::fail_intercepted_htlc`] MUST be called in response to the event.
3783         ///
3784         /// Note that LDK does not enforce fee requirements in `amt_to_forward_msat`, and will not stop
3785         /// you from forwarding more than you received. See
3786         /// [`HTLCIntercepted::expected_outbound_amount_msat`] for more on forwarding a different amount
3787         /// than expected.
3788         ///
3789         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
3790         /// backwards.
3791         ///
3792         /// [`UserConfig::accept_intercept_htlcs`]: crate::util::config::UserConfig::accept_intercept_htlcs
3793         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
3794         /// [`HTLCIntercepted::expected_outbound_amount_msat`]: events::Event::HTLCIntercepted::expected_outbound_amount_msat
3795         // TODO: when we move to deciding the best outbound channel at forward time, only take
3796         // `next_node_id` and not `next_hop_channel_id`
3797         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> {
3798                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3799
3800                 let next_hop_scid = {
3801                         let peer_state_lock = self.per_peer_state.read().unwrap();
3802                         let peer_state_mutex = peer_state_lock.get(&next_node_id)
3803                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", next_node_id) })?;
3804                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3805                         let peer_state = &mut *peer_state_lock;
3806                         match peer_state.channel_by_id.get(next_hop_channel_id) {
3807                                 Some(ChannelPhase::Funded(chan)) => {
3808                                         if !chan.context.is_usable() {
3809                                                 return Err(APIError::ChannelUnavailable {
3810                                                         err: format!("Channel with id {} not fully established", next_hop_channel_id)
3811                                                 })
3812                                         }
3813                                         chan.context.get_short_channel_id().unwrap_or(chan.context.outbound_scid_alias())
3814                                 },
3815                                 Some(_) => return Err(APIError::ChannelUnavailable {
3816                                         err: format!("Channel with id {} for the passed counterparty node_id {} is still opening.",
3817                                                 next_hop_channel_id, next_node_id)
3818                                 }),
3819                                 None => return Err(APIError::ChannelUnavailable {
3820                                         err: format!("Channel with id {} not found for the passed counterparty node_id {}.",
3821                                                 next_hop_channel_id, next_node_id)
3822                                 })
3823                         }
3824                 };
3825
3826                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
3827                         .ok_or_else(|| APIError::APIMisuseError {
3828                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
3829                         })?;
3830
3831                 let routing = match payment.forward_info.routing {
3832                         PendingHTLCRouting::Forward { onion_packet, .. } => {
3833                                 PendingHTLCRouting::Forward { onion_packet, short_channel_id: next_hop_scid }
3834                         },
3835                         _ => unreachable!() // Only `PendingHTLCRouting::Forward`s are intercepted
3836                 };
3837                 let skimmed_fee_msat =
3838                         payment.forward_info.outgoing_amt_msat.saturating_sub(amt_to_forward_msat);
3839                 let pending_htlc_info = PendingHTLCInfo {
3840                         skimmed_fee_msat: if skimmed_fee_msat == 0 { None } else { Some(skimmed_fee_msat) },
3841                         outgoing_amt_msat: amt_to_forward_msat, routing, ..payment.forward_info
3842                 };
3843
3844                 let mut per_source_pending_forward = [(
3845                         payment.prev_short_channel_id,
3846                         payment.prev_funding_outpoint,
3847                         payment.prev_user_channel_id,
3848                         vec![(pending_htlc_info, payment.prev_htlc_id)]
3849                 )];
3850                 self.forward_htlcs(&mut per_source_pending_forward);
3851                 Ok(())
3852         }
3853
3854         /// Fails the intercepted HTLC indicated by intercept_id. Should only be called in response to
3855         /// an [`HTLCIntercepted`] event. See [`ChannelManager::forward_intercepted_htlc`].
3856         ///
3857         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
3858         /// backwards.
3859         ///
3860         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
3861         pub fn fail_intercepted_htlc(&self, intercept_id: InterceptId) -> Result<(), APIError> {
3862                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3863
3864                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
3865                         .ok_or_else(|| APIError::APIMisuseError {
3866                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
3867                         })?;
3868
3869                 if let PendingHTLCRouting::Forward { short_channel_id, .. } = payment.forward_info.routing {
3870                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3871                                 short_channel_id: payment.prev_short_channel_id,
3872                                 user_channel_id: Some(payment.prev_user_channel_id),
3873                                 outpoint: payment.prev_funding_outpoint,
3874                                 htlc_id: payment.prev_htlc_id,
3875                                 incoming_packet_shared_secret: payment.forward_info.incoming_shared_secret,
3876                                 phantom_shared_secret: None,
3877                         });
3878
3879                         let failure_reason = HTLCFailReason::from_failure_code(0x4000 | 10);
3880                         let destination = HTLCDestination::UnknownNextHop { requested_forward_scid: short_channel_id };
3881                         self.fail_htlc_backwards_internal(&htlc_source, &payment.forward_info.payment_hash, &failure_reason, destination);
3882                 } else { unreachable!() } // Only `PendingHTLCRouting::Forward`s are intercepted
3883
3884                 Ok(())
3885         }
3886
3887         /// Processes HTLCs which are pending waiting on random forward delay.
3888         ///
3889         /// Should only really ever be called in response to a PendingHTLCsForwardable event.
3890         /// Will likely generate further events.
3891         pub fn process_pending_htlc_forwards(&self) {
3892                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3893
3894                 let mut new_events = VecDeque::new();
3895                 let mut failed_forwards = Vec::new();
3896                 let mut phantom_receives: Vec<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> = Vec::new();
3897                 {
3898                         let mut forward_htlcs = HashMap::new();
3899                         mem::swap(&mut forward_htlcs, &mut self.forward_htlcs.lock().unwrap());
3900
3901                         for (short_chan_id, mut pending_forwards) in forward_htlcs {
3902                                 if short_chan_id != 0 {
3903                                         macro_rules! forwarding_channel_not_found {
3904                                                 () => {
3905                                                         for forward_info in pending_forwards.drain(..) {
3906                                                                 match forward_info {
3907                                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
3908                                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
3909                                                                                 forward_info: PendingHTLCInfo {
3910                                                                                         routing, incoming_shared_secret, payment_hash, outgoing_amt_msat,
3911                                                                                         outgoing_cltv_value, ..
3912                                                                                 }
3913                                                                         }) => {
3914                                                                                 macro_rules! failure_handler {
3915                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr, $next_hop_unknown: expr) => {
3916                                                                                                 log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3917
3918                                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3919                                                                                                         short_channel_id: prev_short_channel_id,
3920                                                                                                         user_channel_id: Some(prev_user_channel_id),
3921                                                                                                         outpoint: prev_funding_outpoint,
3922                                                                                                         htlc_id: prev_htlc_id,
3923                                                                                                         incoming_packet_shared_secret: incoming_shared_secret,
3924                                                                                                         phantom_shared_secret: $phantom_ss,
3925                                                                                                 });
3926
3927                                                                                                 let reason = if $next_hop_unknown {
3928                                                                                                         HTLCDestination::UnknownNextHop { requested_forward_scid: short_chan_id }
3929                                                                                                 } else {
3930                                                                                                         HTLCDestination::FailedPayment{ payment_hash }
3931                                                                                                 };
3932
3933                                                                                                 failed_forwards.push((htlc_source, payment_hash,
3934                                                                                                         HTLCFailReason::reason($err_code, $err_data),
3935                                                                                                         reason
3936                                                                                                 ));
3937                                                                                                 continue;
3938                                                                                         }
3939                                                                                 }
3940                                                                                 macro_rules! fail_forward {
3941                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
3942                                                                                                 {
3943                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, true);
3944                                                                                                 }
3945                                                                                         }
3946                                                                                 }
3947                                                                                 macro_rules! failed_payment {
3948                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
3949                                                                                                 {
3950                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, false);
3951                                                                                                 }
3952                                                                                         }
3953                                                                                 }
3954                                                                                 if let PendingHTLCRouting::Forward { onion_packet, .. } = routing {
3955                                                                                         let phantom_pubkey_res = self.node_signer.get_node_id(Recipient::PhantomNode);
3956                                                                                         if phantom_pubkey_res.is_ok() && fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, short_chan_id, &self.genesis_hash) {
3957                                                                                                 let phantom_shared_secret = self.node_signer.ecdh(Recipient::PhantomNode, &onion_packet.public_key.unwrap(), None).unwrap().secret_bytes();
3958                                                                                                 let next_hop = match onion_utils::decode_next_payment_hop(phantom_shared_secret, &onion_packet.hop_data, onion_packet.hmac, payment_hash) {
3959                                                                                                         Ok(res) => res,
3960                                                                                                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
3961                                                                                                                 let sha256_of_onion = Sha256::hash(&onion_packet.hop_data).into_inner();
3962                                                                                                                 // In this scenario, the phantom would have sent us an
3963                                                                                                                 // `update_fail_malformed_htlc`, meaning here we encrypt the error as
3964                                                                                                                 // if it came from us (the second-to-last hop) but contains the sha256
3965                                                                                                                 // of the onion.
3966                                                                                                                 failed_payment!(err_msg, err_code, sha256_of_onion.to_vec(), None);
3967                                                                                                         },
3968                                                                                                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
3969                                                                                                                 failed_payment!(err_msg, err_code, Vec::new(), Some(phantom_shared_secret));
3970                                                                                                         },
3971                                                                                                 };
3972                                                                                                 match next_hop {
3973                                                                                                         onion_utils::Hop::Receive(hop_data) => {
3974                                                                                                                 match self.construct_recv_pending_htlc_info(hop_data,
3975                                                                                                                         incoming_shared_secret, payment_hash, outgoing_amt_msat,
3976                                                                                                                         outgoing_cltv_value, Some(phantom_shared_secret), false, None)
3977                                                                                                                 {
3978                                                                                                                         Ok(info) => phantom_receives.push((prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, vec![(info, prev_htlc_id)])),
3979                                                                                                                         Err(InboundOnionErr { err_code, err_data, msg }) => failed_payment!(msg, err_code, err_data, Some(phantom_shared_secret))
3980                                                                                                                 }
3981                                                                                                         },
3982                                                                                                         _ => panic!(),
3983                                                                                                 }
3984                                                                                         } else {
3985                                                                                                 fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
3986                                                                                         }
3987                                                                                 } else {
3988                                                                                         fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
3989                                                                                 }
3990                                                                         },
3991                                                                         HTLCForwardInfo::FailHTLC { .. } => {
3992                                                                                 // Channel went away before we could fail it. This implies
3993                                                                                 // the channel is now on chain and our counterparty is
3994                                                                                 // trying to broadcast the HTLC-Timeout, but that's their
3995                                                                                 // problem, not ours.
3996                                                                         }
3997                                                                 }
3998                                                         }
3999                                                 }
4000                                         }
4001                                         let (counterparty_node_id, forward_chan_id) = match self.short_to_chan_info.read().unwrap().get(&short_chan_id) {
4002                                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
4003                                                 None => {
4004                                                         forwarding_channel_not_found!();
4005                                                         continue;
4006                                                 }
4007                                         };
4008                                         let per_peer_state = self.per_peer_state.read().unwrap();
4009                                         let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
4010                                         if peer_state_mutex_opt.is_none() {
4011                                                 forwarding_channel_not_found!();
4012                                                 continue;
4013                                         }
4014                                         let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
4015                                         let peer_state = &mut *peer_state_lock;
4016                                         if let Some(ChannelPhase::Funded(ref mut chan)) = peer_state.channel_by_id.get_mut(&forward_chan_id) {
4017                                                 for forward_info in pending_forwards.drain(..) {
4018                                                         match forward_info {
4019                                                                 HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4020                                                                         prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4021                                                                         forward_info: PendingHTLCInfo {
4022                                                                                 incoming_shared_secret, payment_hash, outgoing_amt_msat, outgoing_cltv_value,
4023                                                                                 routing: PendingHTLCRouting::Forward { onion_packet, .. }, skimmed_fee_msat, ..
4024                                                                         },
4025                                                                 }) => {
4026                                                                         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);
4027                                                                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4028                                                                                 short_channel_id: prev_short_channel_id,
4029                                                                                 user_channel_id: Some(prev_user_channel_id),
4030                                                                                 outpoint: prev_funding_outpoint,
4031                                                                                 htlc_id: prev_htlc_id,
4032                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
4033                                                                                 // Phantom payments are only PendingHTLCRouting::Receive.
4034                                                                                 phantom_shared_secret: None,
4035                                                                         });
4036                                                                         if let Err(e) = chan.queue_add_htlc(outgoing_amt_msat,
4037                                                                                 payment_hash, outgoing_cltv_value, htlc_source.clone(),
4038                                                                                 onion_packet, skimmed_fee_msat, &self.fee_estimator,
4039                                                                                 &self.logger)
4040                                                                         {
4041                                                                                 if let ChannelError::Ignore(msg) = e {
4042                                                                                         log_trace!(self.logger, "Failed to forward HTLC with payment_hash {}: {}", &payment_hash, msg);
4043                                                                                 } else {
4044                                                                                         panic!("Stated return value requirements in send_htlc() were not met");
4045                                                                                 }
4046                                                                                 let (failure_code, data) = self.get_htlc_temp_fail_err_and_data(0x1000|7, short_chan_id, chan);
4047                                                                                 failed_forwards.push((htlc_source, payment_hash,
4048                                                                                         HTLCFailReason::reason(failure_code, data),
4049                                                                                         HTLCDestination::NextHopChannel { node_id: Some(chan.context.get_counterparty_node_id()), channel_id: forward_chan_id }
4050                                                                                 ));
4051                                                                                 continue;
4052                                                                         }
4053                                                                 },
4054                                                                 HTLCForwardInfo::AddHTLC { .. } => {
4055                                                                         panic!("short_channel_id != 0 should imply any pending_forward entries are of type Forward");
4056                                                                 },
4057                                                                 HTLCForwardInfo::FailHTLC { htlc_id, err_packet } => {
4058                                                                         log_trace!(self.logger, "Failing HTLC back to channel with short id {} (backward HTLC ID {}) after delay", short_chan_id, htlc_id);
4059                                                                         if let Err(e) = chan.queue_fail_htlc(
4060                                                                                 htlc_id, err_packet, &self.logger
4061                                                                         ) {
4062                                                                                 if let ChannelError::Ignore(msg) = e {
4063                                                                                         log_trace!(self.logger, "Failed to fail HTLC with ID {} backwards to short_id {}: {}", htlc_id, short_chan_id, msg);
4064                                                                                 } else {
4065                                                                                         panic!("Stated return value requirements in queue_fail_htlc() were not met");
4066                                                                                 }
4067                                                                                 // fail-backs are best-effort, we probably already have one
4068                                                                                 // pending, and if not that's OK, if not, the channel is on
4069                                                                                 // the chain and sending the HTLC-Timeout is their problem.
4070                                                                                 continue;
4071                                                                         }
4072                                                                 },
4073                                                         }
4074                                                 }
4075                                         } else {
4076                                                 forwarding_channel_not_found!();
4077                                                 continue;
4078                                         }
4079                                 } else {
4080                                         'next_forwardable_htlc: for forward_info in pending_forwards.drain(..) {
4081                                                 match forward_info {
4082                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4083                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4084                                                                 forward_info: PendingHTLCInfo {
4085                                                                         routing, incoming_shared_secret, payment_hash, incoming_amt_msat, outgoing_amt_msat,
4086                                                                         skimmed_fee_msat, ..
4087                                                                 }
4088                                                         }) => {
4089                                                                 let (cltv_expiry, onion_payload, payment_data, phantom_shared_secret, mut onion_fields) = match routing {
4090                                                                         PendingHTLCRouting::Receive { payment_data, payment_metadata, incoming_cltv_expiry, phantom_shared_secret, custom_tlvs } => {
4091                                                                                 let _legacy_hop_data = Some(payment_data.clone());
4092                                                                                 let onion_fields = RecipientOnionFields { payment_secret: Some(payment_data.payment_secret),
4093                                                                                                 payment_metadata, custom_tlvs };
4094                                                                                 (incoming_cltv_expiry, OnionPayload::Invoice { _legacy_hop_data },
4095                                                                                         Some(payment_data), phantom_shared_secret, onion_fields)
4096                                                                         },
4097                                                                         PendingHTLCRouting::ReceiveKeysend { payment_data, payment_preimage, payment_metadata, incoming_cltv_expiry, custom_tlvs } => {
4098                                                                                 let onion_fields = RecipientOnionFields {
4099                                                                                         payment_secret: payment_data.as_ref().map(|data| data.payment_secret),
4100                                                                                         payment_metadata,
4101                                                                                         custom_tlvs,
4102                                                                                 };
4103                                                                                 (incoming_cltv_expiry, OnionPayload::Spontaneous(payment_preimage),
4104                                                                                         payment_data, None, onion_fields)
4105                                                                         },
4106                                                                         _ => {
4107                                                                                 panic!("short_channel_id == 0 should imply any pending_forward entries are of type Receive");
4108                                                                         }
4109                                                                 };
4110                                                                 let claimable_htlc = ClaimableHTLC {
4111                                                                         prev_hop: HTLCPreviousHopData {
4112                                                                                 short_channel_id: prev_short_channel_id,
4113                                                                                 user_channel_id: Some(prev_user_channel_id),
4114                                                                                 outpoint: prev_funding_outpoint,
4115                                                                                 htlc_id: prev_htlc_id,
4116                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
4117                                                                                 phantom_shared_secret,
4118                                                                         },
4119                                                                         // We differentiate the received value from the sender intended value
4120                                                                         // if possible so that we don't prematurely mark MPP payments complete
4121                                                                         // if routing nodes overpay
4122                                                                         value: incoming_amt_msat.unwrap_or(outgoing_amt_msat),
4123                                                                         sender_intended_value: outgoing_amt_msat,
4124                                                                         timer_ticks: 0,
4125                                                                         total_value_received: None,
4126                                                                         total_msat: if let Some(data) = &payment_data { data.total_msat } else { outgoing_amt_msat },
4127                                                                         cltv_expiry,
4128                                                                         onion_payload,
4129                                                                         counterparty_skimmed_fee_msat: skimmed_fee_msat,
4130                                                                 };
4131
4132                                                                 let mut committed_to_claimable = false;
4133
4134                                                                 macro_rules! fail_htlc {
4135                                                                         ($htlc: expr, $payment_hash: expr) => {
4136                                                                                 debug_assert!(!committed_to_claimable);
4137                                                                                 let mut htlc_msat_height_data = $htlc.value.to_be_bytes().to_vec();
4138                                                                                 htlc_msat_height_data.extend_from_slice(
4139                                                                                         &self.best_block.read().unwrap().height().to_be_bytes(),
4140                                                                                 );
4141                                                                                 failed_forwards.push((HTLCSource::PreviousHopData(HTLCPreviousHopData {
4142                                                                                                 short_channel_id: $htlc.prev_hop.short_channel_id,
4143                                                                                                 user_channel_id: $htlc.prev_hop.user_channel_id,
4144                                                                                                 outpoint: prev_funding_outpoint,
4145                                                                                                 htlc_id: $htlc.prev_hop.htlc_id,
4146                                                                                                 incoming_packet_shared_secret: $htlc.prev_hop.incoming_packet_shared_secret,
4147                                                                                                 phantom_shared_secret,
4148                                                                                         }), payment_hash,
4149                                                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
4150                                                                                         HTLCDestination::FailedPayment { payment_hash: $payment_hash },
4151                                                                                 ));
4152                                                                                 continue 'next_forwardable_htlc;
4153                                                                         }
4154                                                                 }
4155                                                                 let phantom_shared_secret = claimable_htlc.prev_hop.phantom_shared_secret;
4156                                                                 let mut receiver_node_id = self.our_network_pubkey;
4157                                                                 if phantom_shared_secret.is_some() {
4158                                                                         receiver_node_id = self.node_signer.get_node_id(Recipient::PhantomNode)
4159                                                                                 .expect("Failed to get node_id for phantom node recipient");
4160                                                                 }
4161
4162                                                                 macro_rules! check_total_value {
4163                                                                         ($purpose: expr) => {{
4164                                                                                 let mut payment_claimable_generated = false;
4165                                                                                 let is_keysend = match $purpose {
4166                                                                                         events::PaymentPurpose::SpontaneousPayment(_) => true,
4167                                                                                         events::PaymentPurpose::InvoicePayment { .. } => false,
4168                                                                                 };
4169                                                                                 let mut claimable_payments = self.claimable_payments.lock().unwrap();
4170                                                                                 if claimable_payments.pending_claiming_payments.contains_key(&payment_hash) {
4171                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4172                                                                                 }
4173                                                                                 let ref mut claimable_payment = claimable_payments.claimable_payments
4174                                                                                         .entry(payment_hash)
4175                                                                                         // Note that if we insert here we MUST NOT fail_htlc!()
4176                                                                                         .or_insert_with(|| {
4177                                                                                                 committed_to_claimable = true;
4178                                                                                                 ClaimablePayment {
4179                                                                                                         purpose: $purpose.clone(), htlcs: Vec::new(), onion_fields: None,
4180                                                                                                 }
4181                                                                                         });
4182                                                                                 if $purpose != claimable_payment.purpose {
4183                                                                                         let log_keysend = |keysend| if keysend { "keysend" } else { "non-keysend" };
4184                                                                                         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));
4185                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4186                                                                                 }
4187                                                                                 if !self.default_configuration.accept_mpp_keysend && is_keysend && !claimable_payment.htlcs.is_empty() {
4188                                                                                         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);
4189                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4190                                                                                 }
4191                                                                                 if let Some(earlier_fields) = &mut claimable_payment.onion_fields {
4192                                                                                         if earlier_fields.check_merge(&mut onion_fields).is_err() {
4193                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4194                                                                                         }
4195                                                                                 } else {
4196                                                                                         claimable_payment.onion_fields = Some(onion_fields);
4197                                                                                 }
4198                                                                                 let ref mut htlcs = &mut claimable_payment.htlcs;
4199                                                                                 let mut total_value = claimable_htlc.sender_intended_value;
4200                                                                                 let mut earliest_expiry = claimable_htlc.cltv_expiry;
4201                                                                                 for htlc in htlcs.iter() {
4202                                                                                         total_value += htlc.sender_intended_value;
4203                                                                                         earliest_expiry = cmp::min(earliest_expiry, htlc.cltv_expiry);
4204                                                                                         if htlc.total_msat != claimable_htlc.total_msat {
4205                                                                                                 log_trace!(self.logger, "Failing HTLCs with payment_hash {} as the HTLCs had inconsistent total values (eg {} and {})",
4206                                                                                                         &payment_hash, claimable_htlc.total_msat, htlc.total_msat);
4207                                                                                                 total_value = msgs::MAX_VALUE_MSAT;
4208                                                                                         }
4209                                                                                         if total_value >= msgs::MAX_VALUE_MSAT { break; }
4210                                                                                 }
4211                                                                                 // The condition determining whether an MPP is complete must
4212                                                                                 // match exactly the condition used in `timer_tick_occurred`
4213                                                                                 if total_value >= msgs::MAX_VALUE_MSAT {
4214                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4215                                                                                 } else if total_value - claimable_htlc.sender_intended_value >= claimable_htlc.total_msat {
4216                                                                                         log_trace!(self.logger, "Failing HTLC with payment_hash {} as payment is already claimable",
4217                                                                                                 &payment_hash);
4218                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4219                                                                                 } else if total_value >= claimable_htlc.total_msat {
4220                                                                                         #[allow(unused_assignments)] {
4221                                                                                                 committed_to_claimable = true;
4222                                                                                         }
4223                                                                                         let prev_channel_id = prev_funding_outpoint.to_channel_id();
4224                                                                                         htlcs.push(claimable_htlc);
4225                                                                                         let amount_msat = htlcs.iter().map(|htlc| htlc.value).sum();
4226                                                                                         htlcs.iter_mut().for_each(|htlc| htlc.total_value_received = Some(amount_msat));
4227                                                                                         let counterparty_skimmed_fee_msat = htlcs.iter()
4228                                                                                                 .map(|htlc| htlc.counterparty_skimmed_fee_msat.unwrap_or(0)).sum();
4229                                                                                         debug_assert!(total_value.saturating_sub(amount_msat) <=
4230                                                                                                 counterparty_skimmed_fee_msat);
4231                                                                                         new_events.push_back((events::Event::PaymentClaimable {
4232                                                                                                 receiver_node_id: Some(receiver_node_id),
4233                                                                                                 payment_hash,
4234                                                                                                 purpose: $purpose,
4235                                                                                                 amount_msat,
4236                                                                                                 counterparty_skimmed_fee_msat,
4237                                                                                                 via_channel_id: Some(prev_channel_id),
4238                                                                                                 via_user_channel_id: Some(prev_user_channel_id),
4239                                                                                                 claim_deadline: Some(earliest_expiry - HTLC_FAIL_BACK_BUFFER),
4240                                                                                                 onion_fields: claimable_payment.onion_fields.clone(),
4241                                                                                         }, None));
4242                                                                                         payment_claimable_generated = true;
4243                                                                                 } else {
4244                                                                                         // Nothing to do - we haven't reached the total
4245                                                                                         // payment value yet, wait until we receive more
4246                                                                                         // MPP parts.
4247                                                                                         htlcs.push(claimable_htlc);
4248                                                                                         #[allow(unused_assignments)] {
4249                                                                                                 committed_to_claimable = true;
4250                                                                                         }
4251                                                                                 }
4252                                                                                 payment_claimable_generated
4253                                                                         }}
4254                                                                 }
4255
4256                                                                 // Check that the payment hash and secret are known. Note that we
4257                                                                 // MUST take care to handle the "unknown payment hash" and
4258                                                                 // "incorrect payment secret" cases here identically or we'd expose
4259                                                                 // that we are the ultimate recipient of the given payment hash.
4260                                                                 // Further, we must not expose whether we have any other HTLCs
4261                                                                 // associated with the same payment_hash pending or not.
4262                                                                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
4263                                                                 match payment_secrets.entry(payment_hash) {
4264                                                                         hash_map::Entry::Vacant(_) => {
4265                                                                                 match claimable_htlc.onion_payload {
4266                                                                                         OnionPayload::Invoice { .. } => {
4267                                                                                                 let payment_data = payment_data.unwrap();
4268                                                                                                 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) {
4269                                                                                                         Ok(result) => result,
4270                                                                                                         Err(()) => {
4271                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as payment verification failed", &payment_hash);
4272                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4273                                                                                                         }
4274                                                                                                 };
4275                                                                                                 if let Some(min_final_cltv_expiry_delta) = min_final_cltv_expiry_delta {
4276                                                                                                         let expected_min_expiry_height = (self.current_best_block().height() + min_final_cltv_expiry_delta as u32) as u64;
4277                                                                                                         if (cltv_expiry as u64) < expected_min_expiry_height {
4278                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as its CLTV expiry was too soon (had {}, earliest expected {})",
4279                                                                                                                         &payment_hash, cltv_expiry, expected_min_expiry_height);
4280                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4281                                                                                                         }
4282                                                                                                 }
4283                                                                                                 let purpose = events::PaymentPurpose::InvoicePayment {
4284                                                                                                         payment_preimage: payment_preimage.clone(),
4285                                                                                                         payment_secret: payment_data.payment_secret,
4286                                                                                                 };
4287                                                                                                 check_total_value!(purpose);
4288                                                                                         },
4289                                                                                         OnionPayload::Spontaneous(preimage) => {
4290                                                                                                 let purpose = events::PaymentPurpose::SpontaneousPayment(preimage);
4291                                                                                                 check_total_value!(purpose);
4292                                                                                         }
4293                                                                                 }
4294                                                                         },
4295                                                                         hash_map::Entry::Occupied(inbound_payment) => {
4296                                                                                 if let OnionPayload::Spontaneous(_) = claimable_htlc.onion_payload {
4297                                                                                         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);
4298                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4299                                                                                 }
4300                                                                                 let payment_data = payment_data.unwrap();
4301                                                                                 if inbound_payment.get().payment_secret != payment_data.payment_secret {
4302                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our expected payment secret.", &payment_hash);
4303                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4304                                                                                 } else if inbound_payment.get().min_value_msat.is_some() && payment_data.total_msat < inbound_payment.get().min_value_msat.unwrap() {
4305                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our minimum value (had {}, needed {}).",
4306                                                                                                 &payment_hash, payment_data.total_msat, inbound_payment.get().min_value_msat.unwrap());
4307                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4308                                                                                 } else {
4309                                                                                         let purpose = events::PaymentPurpose::InvoicePayment {
4310                                                                                                 payment_preimage: inbound_payment.get().payment_preimage,
4311                                                                                                 payment_secret: payment_data.payment_secret,
4312                                                                                         };
4313                                                                                         let payment_claimable_generated = check_total_value!(purpose);
4314                                                                                         if payment_claimable_generated {
4315                                                                                                 inbound_payment.remove_entry();
4316                                                                                         }
4317                                                                                 }
4318                                                                         },
4319                                                                 };
4320                                                         },
4321                                                         HTLCForwardInfo::FailHTLC { .. } => {
4322                                                                 panic!("Got pending fail of our own HTLC");
4323                                                         }
4324                                                 }
4325                                         }
4326                                 }
4327                         }
4328                 }
4329
4330                 let best_block_height = self.best_block.read().unwrap().height();
4331                 self.pending_outbound_payments.check_retry_payments(&self.router, || self.list_usable_channels(),
4332                         || self.compute_inflight_htlcs(), &self.entropy_source, &self.node_signer, best_block_height,
4333                         &self.pending_events, &self.logger, |args| self.send_payment_along_path(args));
4334
4335                 for (htlc_source, payment_hash, failure_reason, destination) in failed_forwards.drain(..) {
4336                         self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
4337                 }
4338                 self.forward_htlcs(&mut phantom_receives);
4339
4340                 // Freeing the holding cell here is relatively redundant - in practice we'll do it when we
4341                 // next get a `get_and_clear_pending_msg_events` call, but some tests rely on it, and it's
4342                 // nice to do the work now if we can rather than while we're trying to get messages in the
4343                 // network stack.
4344                 self.check_free_holding_cells();
4345
4346                 if new_events.is_empty() { return }
4347                 let mut events = self.pending_events.lock().unwrap();
4348                 events.append(&mut new_events);
4349         }
4350
4351         /// Free the background events, generally called from [`PersistenceNotifierGuard`] constructors.
4352         ///
4353         /// Expects the caller to have a total_consistency_lock read lock.
4354         fn process_background_events(&self) -> NotifyOption {
4355                 debug_assert_ne!(self.total_consistency_lock.held_by_thread(), LockHeldState::NotHeldByThread);
4356
4357                 self.background_events_processed_since_startup.store(true, Ordering::Release);
4358
4359                 let mut background_events = Vec::new();
4360                 mem::swap(&mut *self.pending_background_events.lock().unwrap(), &mut background_events);
4361                 if background_events.is_empty() {
4362                         return NotifyOption::SkipPersistNoEvents;
4363                 }
4364
4365                 for event in background_events.drain(..) {
4366                         match event {
4367                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((funding_txo, update)) => {
4368                                         // The channel has already been closed, so no use bothering to care about the
4369                                         // monitor updating completing.
4370                                         let _ = self.chain_monitor.update_channel(funding_txo, &update);
4371                                 },
4372                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup { counterparty_node_id, funding_txo, update } => {
4373                                         let mut updated_chan = false;
4374                                         let res = {
4375                                                 let per_peer_state = self.per_peer_state.read().unwrap();
4376                                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
4377                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4378                                                         let peer_state = &mut *peer_state_lock;
4379                                                         match peer_state.channel_by_id.entry(funding_txo.to_channel_id()) {
4380                                                                 hash_map::Entry::Occupied(mut chan_phase) => {
4381                                                                         updated_chan = true;
4382                                                                         handle_new_monitor_update!(self, funding_txo, update.clone(),
4383                                                                                 peer_state_lock, peer_state, per_peer_state, chan_phase).map(|_| ())
4384                                                                 },
4385                                                                 hash_map::Entry::Vacant(_) => Ok(()),
4386                                                         }
4387                                                 } else { Ok(()) }
4388                                         };
4389                                         if !updated_chan {
4390                                                 // TODO: Track this as in-flight even though the channel is closed.
4391                                                 let _ = self.chain_monitor.update_channel(funding_txo, &update);
4392                                         }
4393                                         // TODO: If this channel has since closed, we're likely providing a payment
4394                                         // preimage update, which we must ensure is durable! We currently don't,
4395                                         // however, ensure that.
4396                                         if res.is_err() {
4397                                                 log_error!(self.logger,
4398                                                         "Failed to provide ChannelMonitorUpdate to closed channel! This likely lost us a payment preimage!");
4399                                         }
4400                                         let _ = handle_error!(self, res, counterparty_node_id);
4401                                 },
4402                                 BackgroundEvent::MonitorUpdatesComplete { counterparty_node_id, channel_id } => {
4403                                         let per_peer_state = self.per_peer_state.read().unwrap();
4404                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
4405                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4406                                                 let peer_state = &mut *peer_state_lock;
4407                                                 if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&channel_id) {
4408                                                         handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, chan);
4409                                                 } else {
4410                                                         let update_actions = peer_state.monitor_update_blocked_actions
4411                                                                 .remove(&channel_id).unwrap_or(Vec::new());
4412                                                         mem::drop(peer_state_lock);
4413                                                         mem::drop(per_peer_state);
4414                                                         self.handle_monitor_update_completion_actions(update_actions);
4415                                                 }
4416                                         }
4417                                 },
4418                         }
4419                 }
4420                 NotifyOption::DoPersist
4421         }
4422
4423         #[cfg(any(test, feature = "_test_utils"))]
4424         /// Process background events, for functional testing
4425         pub fn test_process_background_events(&self) {
4426                 let _lck = self.total_consistency_lock.read().unwrap();
4427                 let _ = self.process_background_events();
4428         }
4429
4430         fn update_channel_fee(&self, chan_id: &ChannelId, chan: &mut Channel<SP>, new_feerate: u32) -> NotifyOption {
4431                 if !chan.context.is_outbound() { return NotifyOption::SkipPersistNoEvents; }
4432                 // If the feerate has decreased by less than half, don't bother
4433                 if new_feerate <= chan.context.get_feerate_sat_per_1000_weight() && new_feerate * 2 > chan.context.get_feerate_sat_per_1000_weight() {
4434                         log_trace!(self.logger, "Channel {} does not qualify for a feerate change from {} to {}.",
4435                                 chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4436                         return NotifyOption::SkipPersistNoEvents;
4437                 }
4438                 if !chan.context.is_live() {
4439                         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).",
4440                                 chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4441                         return NotifyOption::SkipPersistNoEvents;
4442                 }
4443                 log_trace!(self.logger, "Channel {} qualifies for a feerate change from {} to {}.",
4444                         &chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4445
4446                 chan.queue_update_fee(new_feerate, &self.fee_estimator, &self.logger);
4447                 NotifyOption::DoPersist
4448         }
4449
4450         #[cfg(fuzzing)]
4451         /// In chanmon_consistency we want to sometimes do the channel fee updates done in
4452         /// timer_tick_occurred, but we can't generate the disabled channel updates as it considers
4453         /// these a fuzz failure (as they usually indicate a channel force-close, which is exactly what
4454         /// it wants to detect). Thus, we have a variant exposed here for its benefit.
4455         pub fn maybe_update_chan_fees(&self) {
4456                 PersistenceNotifierGuard::optionally_notify(self, || {
4457                         let mut should_persist = NotifyOption::SkipPersistNoEvents;
4458
4459                         let normal_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
4460                         let min_mempool_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::MempoolMinimum);
4461
4462                         let per_peer_state = self.per_peer_state.read().unwrap();
4463                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
4464                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4465                                 let peer_state = &mut *peer_state_lock;
4466                                 for (chan_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
4467                                         |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
4468                                 ) {
4469                                         let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
4470                                                 min_mempool_feerate
4471                                         } else {
4472                                                 normal_feerate
4473                                         };
4474                                         let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4475                                         if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4476                                 }
4477                         }
4478
4479                         should_persist
4480                 });
4481         }
4482
4483         /// Performs actions which should happen on startup and roughly once per minute thereafter.
4484         ///
4485         /// This currently includes:
4486         ///  * Increasing or decreasing the on-chain feerate estimates for our outbound channels,
4487         ///  * Broadcasting [`ChannelUpdate`] messages if we've been disconnected from our peer for more
4488         ///    than a minute, informing the network that they should no longer attempt to route over
4489         ///    the channel.
4490         ///  * Expiring a channel's previous [`ChannelConfig`] if necessary to only allow forwarding HTLCs
4491         ///    with the current [`ChannelConfig`].
4492         ///  * Removing peers which have disconnected but and no longer have any channels.
4493         ///  * Force-closing and removing channels which have not completed establishment in a timely manner.
4494         ///
4495         /// Note that this may cause reentrancy through [`chain::Watch::update_channel`] calls or feerate
4496         /// estimate fetches.
4497         ///
4498         /// [`ChannelUpdate`]: msgs::ChannelUpdate
4499         /// [`ChannelConfig`]: crate::util::config::ChannelConfig
4500         pub fn timer_tick_occurred(&self) {
4501                 PersistenceNotifierGuard::optionally_notify(self, || {
4502                         let mut should_persist = NotifyOption::SkipPersistNoEvents;
4503
4504                         let normal_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
4505                         let min_mempool_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::MempoolMinimum);
4506
4507                         let mut handle_errors: Vec<(Result<(), _>, _)> = Vec::new();
4508                         let mut timed_out_mpp_htlcs = Vec::new();
4509                         let mut pending_peers_awaiting_removal = Vec::new();
4510
4511                         let process_unfunded_channel_tick = |
4512                                 chan_id: &ChannelId,
4513                                 context: &mut ChannelContext<SP>,
4514                                 unfunded_context: &mut UnfundedChannelContext,
4515                                 pending_msg_events: &mut Vec<MessageSendEvent>,
4516                                 counterparty_node_id: PublicKey,
4517                         | {
4518                                 context.maybe_expire_prev_config();
4519                                 if unfunded_context.should_expire_unfunded_channel() {
4520                                         log_error!(self.logger,
4521                                                 "Force-closing pending channel with ID {} for not establishing in a timely manner", chan_id);
4522                                         update_maps_on_chan_removal!(self, &context);
4523                                         self.issue_channel_close_events(&context, ClosureReason::HolderForceClosed);
4524                                         self.finish_force_close_channel(context.force_shutdown(false));
4525                                         pending_msg_events.push(MessageSendEvent::HandleError {
4526                                                 node_id: counterparty_node_id,
4527                                                 action: msgs::ErrorAction::SendErrorMessage {
4528                                                         msg: msgs::ErrorMessage {
4529                                                                 channel_id: *chan_id,
4530                                                                 data: "Force-closing pending channel due to timeout awaiting establishment handshake".to_owned(),
4531                                                         },
4532                                                 },
4533                                         });
4534                                         false
4535                                 } else {
4536                                         true
4537                                 }
4538                         };
4539
4540                         {
4541                                 let per_peer_state = self.per_peer_state.read().unwrap();
4542                                 for (counterparty_node_id, peer_state_mutex) in per_peer_state.iter() {
4543                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4544                                         let peer_state = &mut *peer_state_lock;
4545                                         let pending_msg_events = &mut peer_state.pending_msg_events;
4546                                         let counterparty_node_id = *counterparty_node_id;
4547                                         peer_state.channel_by_id.retain(|chan_id, phase| {
4548                                                 match phase {
4549                                                         ChannelPhase::Funded(chan) => {
4550                                                                 let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
4551                                                                         min_mempool_feerate
4552                                                                 } else {
4553                                                                         normal_feerate
4554                                                                 };
4555                                                                 let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4556                                                                 if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4557
4558                                                                 if let Err(e) = chan.timer_check_closing_negotiation_progress() {
4559                                                                         let (needs_close, err) = convert_chan_phase_err!(self, e, chan, chan_id, FUNDED_CHANNEL);
4560                                                                         handle_errors.push((Err(err), counterparty_node_id));
4561                                                                         if needs_close { return false; }
4562                                                                 }
4563
4564                                                                 match chan.channel_update_status() {
4565                                                                         ChannelUpdateStatus::Enabled if !chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(0)),
4566                                                                         ChannelUpdateStatus::Disabled if chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(0)),
4567                                                                         ChannelUpdateStatus::DisabledStaged(_) if chan.context.is_live()
4568                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Enabled),
4569                                                                         ChannelUpdateStatus::EnabledStaged(_) if !chan.context.is_live()
4570                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Disabled),
4571                                                                         ChannelUpdateStatus::DisabledStaged(mut n) if !chan.context.is_live() => {
4572                                                                                 n += 1;
4573                                                                                 if n >= DISABLE_GOSSIP_TICKS {
4574                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Disabled);
4575                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4576                                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4577                                                                                                         msg: update
4578                                                                                                 });
4579                                                                                         }
4580                                                                                         should_persist = NotifyOption::DoPersist;
4581                                                                                 } else {
4582                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(n));
4583                                                                                 }
4584                                                                         },
4585                                                                         ChannelUpdateStatus::EnabledStaged(mut n) if chan.context.is_live() => {
4586                                                                                 n += 1;
4587                                                                                 if n >= ENABLE_GOSSIP_TICKS {
4588                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Enabled);
4589                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4590                                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4591                                                                                                         msg: update
4592                                                                                                 });
4593                                                                                         }
4594                                                                                         should_persist = NotifyOption::DoPersist;
4595                                                                                 } else {
4596                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(n));
4597                                                                                 }
4598                                                                         },
4599                                                                         _ => {},
4600                                                                 }
4601
4602                                                                 chan.context.maybe_expire_prev_config();
4603
4604                                                                 if chan.should_disconnect_peer_awaiting_response() {
4605                                                                         log_debug!(self.logger, "Disconnecting peer {} due to not making any progress on channel {}",
4606                                                                                         counterparty_node_id, chan_id);
4607                                                                         pending_msg_events.push(MessageSendEvent::HandleError {
4608                                                                                 node_id: counterparty_node_id,
4609                                                                                 action: msgs::ErrorAction::DisconnectPeerWithWarning {
4610                                                                                         msg: msgs::WarningMessage {
4611                                                                                                 channel_id: *chan_id,
4612                                                                                                 data: "Disconnecting due to timeout awaiting response".to_owned(),
4613                                                                                         },
4614                                                                                 },
4615                                                                         });
4616                                                                 }
4617
4618                                                                 true
4619                                                         },
4620                                                         ChannelPhase::UnfundedInboundV1(chan) => {
4621                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
4622                                                                         pending_msg_events, counterparty_node_id)
4623                                                         },
4624                                                         ChannelPhase::UnfundedOutboundV1(chan) => {
4625                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
4626                                                                         pending_msg_events, counterparty_node_id)
4627                                                         },
4628                                                 }
4629                                         });
4630
4631                                         for (chan_id, req) in peer_state.inbound_channel_request_by_id.iter_mut() {
4632                                                 if { req.ticks_remaining -= 1 ; req.ticks_remaining } <= 0 {
4633                                                         log_error!(self.logger, "Force-closing unaccepted inbound channel {} for not accepting in a timely manner", &chan_id);
4634                                                         peer_state.pending_msg_events.push(
4635                                                                 events::MessageSendEvent::HandleError {
4636                                                                         node_id: counterparty_node_id,
4637                                                                         action: msgs::ErrorAction::SendErrorMessage {
4638                                                                                 msg: msgs::ErrorMessage { channel_id: chan_id.clone(), data: "Channel force-closed".to_owned() }
4639                                                                         },
4640                                                                 }
4641                                                         );
4642                                                 }
4643                                         }
4644                                         peer_state.inbound_channel_request_by_id.retain(|_, req| req.ticks_remaining > 0);
4645
4646                                         if peer_state.ok_to_remove(true) {
4647                                                 pending_peers_awaiting_removal.push(counterparty_node_id);
4648                                         }
4649                                 }
4650                         }
4651
4652                         // When a peer disconnects but still has channels, the peer's `peer_state` entry in the
4653                         // `per_peer_state` is not removed by the `peer_disconnected` function. If the channels
4654                         // of to that peer is later closed while still being disconnected (i.e. force closed),
4655                         // we therefore need to remove the peer from `peer_state` separately.
4656                         // To avoid having to take the `per_peer_state` `write` lock once the channels are
4657                         // closed, we instead remove such peers awaiting removal here on a timer, to limit the
4658                         // negative effects on parallelism as much as possible.
4659                         if pending_peers_awaiting_removal.len() > 0 {
4660                                 let mut per_peer_state = self.per_peer_state.write().unwrap();
4661                                 for counterparty_node_id in pending_peers_awaiting_removal {
4662                                         match per_peer_state.entry(counterparty_node_id) {
4663                                                 hash_map::Entry::Occupied(entry) => {
4664                                                         // Remove the entry if the peer is still disconnected and we still
4665                                                         // have no channels to the peer.
4666                                                         let remove_entry = {
4667                                                                 let peer_state = entry.get().lock().unwrap();
4668                                                                 peer_state.ok_to_remove(true)
4669                                                         };
4670                                                         if remove_entry {
4671                                                                 entry.remove_entry();
4672                                                         }
4673                                                 },
4674                                                 hash_map::Entry::Vacant(_) => { /* The PeerState has already been removed */ }
4675                                         }
4676                                 }
4677                         }
4678
4679                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
4680                                 if payment.htlcs.is_empty() {
4681                                         // This should be unreachable
4682                                         debug_assert!(false);
4683                                         return false;
4684                                 }
4685                                 if let OnionPayload::Invoice { .. } = payment.htlcs[0].onion_payload {
4686                                         // Check if we've received all the parts we need for an MPP (the value of the parts adds to total_msat).
4687                                         // In this case we're not going to handle any timeouts of the parts here.
4688                                         // This condition determining whether the MPP is complete here must match
4689                                         // exactly the condition used in `process_pending_htlc_forwards`.
4690                                         if payment.htlcs[0].total_msat <= payment.htlcs.iter()
4691                                                 .fold(0, |total, htlc| total + htlc.sender_intended_value)
4692                                         {
4693                                                 return true;
4694                                         } else if payment.htlcs.iter_mut().any(|htlc| {
4695                                                 htlc.timer_ticks += 1;
4696                                                 return htlc.timer_ticks >= MPP_TIMEOUT_TICKS
4697                                         }) {
4698                                                 timed_out_mpp_htlcs.extend(payment.htlcs.drain(..)
4699                                                         .map(|htlc: ClaimableHTLC| (htlc.prev_hop, *payment_hash)));
4700                                                 return false;
4701                                         }
4702                                 }
4703                                 true
4704                         });
4705
4706                         for htlc_source in timed_out_mpp_htlcs.drain(..) {
4707                                 let source = HTLCSource::PreviousHopData(htlc_source.0.clone());
4708                                 let reason = HTLCFailReason::from_failure_code(23);
4709                                 let receiver = HTLCDestination::FailedPayment { payment_hash: htlc_source.1 };
4710                                 self.fail_htlc_backwards_internal(&source, &htlc_source.1, &reason, receiver);
4711                         }
4712
4713                         for (err, counterparty_node_id) in handle_errors.drain(..) {
4714                                 let _ = handle_error!(self, err, counterparty_node_id);
4715                         }
4716
4717                         self.pending_outbound_payments.remove_stale_payments(&self.pending_events);
4718
4719                         // Technically we don't need to do this here, but if we have holding cell entries in a
4720                         // channel that need freeing, it's better to do that here and block a background task
4721                         // than block the message queueing pipeline.
4722                         if self.check_free_holding_cells() {
4723                                 should_persist = NotifyOption::DoPersist;
4724                         }
4725
4726                         should_persist
4727                 });
4728         }
4729
4730         /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
4731         /// after a PaymentClaimable event, failing the HTLC back to its origin and freeing resources
4732         /// along the path (including in our own channel on which we received it).
4733         ///
4734         /// Note that in some cases around unclean shutdown, it is possible the payment may have
4735         /// already been claimed by you via [`ChannelManager::claim_funds`] prior to you seeing (a
4736         /// second copy of) the [`events::Event::PaymentClaimable`] event. Alternatively, the payment
4737         /// may have already been failed automatically by LDK if it was nearing its expiration time.
4738         ///
4739         /// While LDK will never claim a payment automatically on your behalf (i.e. without you calling
4740         /// [`ChannelManager::claim_funds`]), you should still monitor for
4741         /// [`events::Event::PaymentClaimed`] events even for payments you intend to fail, especially on
4742         /// startup during which time claims that were in-progress at shutdown may be replayed.
4743         pub fn fail_htlc_backwards(&self, payment_hash: &PaymentHash) {
4744                 self.fail_htlc_backwards_with_reason(payment_hash, FailureCode::IncorrectOrUnknownPaymentDetails);
4745         }
4746
4747         /// This is a variant of [`ChannelManager::fail_htlc_backwards`] that allows you to specify the
4748         /// reason for the failure.
4749         ///
4750         /// See [`FailureCode`] for valid failure codes.
4751         pub fn fail_htlc_backwards_with_reason(&self, payment_hash: &PaymentHash, failure_code: FailureCode) {
4752                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4753
4754                 let removed_source = self.claimable_payments.lock().unwrap().claimable_payments.remove(payment_hash);
4755                 if let Some(payment) = removed_source {
4756                         for htlc in payment.htlcs {
4757                                 let reason = self.get_htlc_fail_reason_from_failure_code(failure_code, &htlc);
4758                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
4759                                 let receiver = HTLCDestination::FailedPayment { payment_hash: *payment_hash };
4760                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
4761                         }
4762                 }
4763         }
4764
4765         /// Gets error data to form an [`HTLCFailReason`] given a [`FailureCode`] and [`ClaimableHTLC`].
4766         fn get_htlc_fail_reason_from_failure_code(&self, failure_code: FailureCode, htlc: &ClaimableHTLC) -> HTLCFailReason {
4767                 match failure_code {
4768                         FailureCode::TemporaryNodeFailure => HTLCFailReason::from_failure_code(failure_code.into()),
4769                         FailureCode::RequiredNodeFeatureMissing => HTLCFailReason::from_failure_code(failure_code.into()),
4770                         FailureCode::IncorrectOrUnknownPaymentDetails => {
4771                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
4772                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
4773                                 HTLCFailReason::reason(failure_code.into(), htlc_msat_height_data)
4774                         },
4775                         FailureCode::InvalidOnionPayload(data) => {
4776                                 let fail_data = match data {
4777                                         Some((typ, offset)) => [BigSize(typ).encode(), offset.encode()].concat(),
4778                                         None => Vec::new(),
4779                                 };
4780                                 HTLCFailReason::reason(failure_code.into(), fail_data)
4781                         }
4782                 }
4783         }
4784
4785         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
4786         /// that we want to return and a channel.
4787         ///
4788         /// This is for failures on the channel on which the HTLC was *received*, not failures
4789         /// forwarding
4790         fn get_htlc_inbound_temp_fail_err_and_data(&self, desired_err_code: u16, chan: &Channel<SP>) -> (u16, Vec<u8>) {
4791                 // We can't be sure what SCID was used when relaying inbound towards us, so we have to
4792                 // guess somewhat. If its a public channel, we figure best to just use the real SCID (as
4793                 // we're not leaking that we have a channel with the counterparty), otherwise we try to use
4794                 // an inbound SCID alias before the real SCID.
4795                 let scid_pref = if chan.context.should_announce() {
4796                         chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias())
4797                 } else {
4798                         chan.context.latest_inbound_scid_alias().or(chan.context.get_short_channel_id())
4799                 };
4800                 if let Some(scid) = scid_pref {
4801                         self.get_htlc_temp_fail_err_and_data(desired_err_code, scid, chan)
4802                 } else {
4803                         (0x4000|10, Vec::new())
4804                 }
4805         }
4806
4807
4808         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
4809         /// that we want to return and a channel.
4810         fn get_htlc_temp_fail_err_and_data(&self, desired_err_code: u16, scid: u64, chan: &Channel<SP>) -> (u16, Vec<u8>) {
4811                 debug_assert_eq!(desired_err_code & 0x1000, 0x1000);
4812                 if let Ok(upd) = self.get_channel_update_for_onion(scid, chan) {
4813                         let mut enc = VecWriter(Vec::with_capacity(upd.serialized_length() + 6));
4814                         if desired_err_code == 0x1000 | 20 {
4815                                 // No flags for `disabled_flags` are currently defined so they're always two zero bytes.
4816                                 // See https://github.com/lightning/bolts/blob/341ec84/04-onion-routing.md?plain=1#L1008
4817                                 0u16.write(&mut enc).expect("Writes cannot fail");
4818                         }
4819                         (upd.serialized_length() as u16 + 2).write(&mut enc).expect("Writes cannot fail");
4820                         msgs::ChannelUpdate::TYPE.write(&mut enc).expect("Writes cannot fail");
4821                         upd.write(&mut enc).expect("Writes cannot fail");
4822                         (desired_err_code, enc.0)
4823                 } else {
4824                         // If we fail to get a unicast channel_update, it implies we don't yet have an SCID,
4825                         // which means we really shouldn't have gotten a payment to be forwarded over this
4826                         // channel yet, or if we did it's from a route hint. Either way, returning an error of
4827                         // PERM|no_such_channel should be fine.
4828                         (0x4000|10, Vec::new())
4829                 }
4830         }
4831
4832         // Fail a list of HTLCs that were just freed from the holding cell. The HTLCs need to be
4833         // failed backwards or, if they were one of our outgoing HTLCs, then their failure needs to
4834         // be surfaced to the user.
4835         fn fail_holding_cell_htlcs(
4836                 &self, mut htlcs_to_fail: Vec<(HTLCSource, PaymentHash)>, channel_id: ChannelId,
4837                 counterparty_node_id: &PublicKey
4838         ) {
4839                 let (failure_code, onion_failure_data) = {
4840                         let per_peer_state = self.per_peer_state.read().unwrap();
4841                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
4842                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4843                                 let peer_state = &mut *peer_state_lock;
4844                                 match peer_state.channel_by_id.entry(channel_id) {
4845                                         hash_map::Entry::Occupied(chan_phase_entry) => {
4846                                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get() {
4847                                                         self.get_htlc_inbound_temp_fail_err_and_data(0x1000|7, &chan)
4848                                                 } else {
4849                                                         // We shouldn't be trying to fail holding cell HTLCs on an unfunded channel.
4850                                                         debug_assert!(false);
4851                                                         (0x4000|10, Vec::new())
4852                                                 }
4853                                         },
4854                                         hash_map::Entry::Vacant(_) => (0x4000|10, Vec::new())
4855                                 }
4856                         } else { (0x4000|10, Vec::new()) }
4857                 };
4858
4859                 for (htlc_src, payment_hash) in htlcs_to_fail.drain(..) {
4860                         let reason = HTLCFailReason::reason(failure_code, onion_failure_data.clone());
4861                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id };
4862                         self.fail_htlc_backwards_internal(&htlc_src, &payment_hash, &reason, receiver);
4863                 }
4864         }
4865
4866         /// Fails an HTLC backwards to the sender of it to us.
4867         /// Note that we do not assume that channels corresponding to failed HTLCs are still available.
4868         fn fail_htlc_backwards_internal(&self, source: &HTLCSource, payment_hash: &PaymentHash, onion_error: &HTLCFailReason, destination: HTLCDestination) {
4869                 // Ensure that no peer state channel storage lock is held when calling this function.
4870                 // This ensures that future code doesn't introduce a lock-order requirement for
4871                 // `forward_htlcs` to be locked after the `per_peer_state` peer locks, which calling
4872                 // this function with any `per_peer_state` peer lock acquired would.
4873                 for (_, peer) in self.per_peer_state.read().unwrap().iter() {
4874                         debug_assert_ne!(peer.held_by_thread(), LockHeldState::HeldByThread);
4875                 }
4876
4877                 //TODO: There is a timing attack here where if a node fails an HTLC back to us they can
4878                 //identify whether we sent it or not based on the (I presume) very different runtime
4879                 //between the branches here. We should make this async and move it into the forward HTLCs
4880                 //timer handling.
4881
4882                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
4883                 // from block_connected which may run during initialization prior to the chain_monitor
4884                 // being fully configured. See the docs for `ChannelManagerReadArgs` for more.
4885                 match source {
4886                         HTLCSource::OutboundRoute { ref path, ref session_priv, ref payment_id, .. } => {
4887                                 if self.pending_outbound_payments.fail_htlc(source, payment_hash, onion_error, path,
4888                                         session_priv, payment_id, self.probing_cookie_secret, &self.secp_ctx,
4889                                         &self.pending_events, &self.logger)
4890                                 { self.push_pending_forwards_ev(); }
4891                         },
4892                         HTLCSource::PreviousHopData(HTLCPreviousHopData { ref short_channel_id, ref htlc_id, ref incoming_packet_shared_secret, ref phantom_shared_secret, ref outpoint, .. }) => {
4893                                 log_trace!(self.logger, "Failing HTLC with payment_hash {} backwards from us with {:?}", &payment_hash, onion_error);
4894                                 let err_packet = onion_error.get_encrypted_failure_packet(incoming_packet_shared_secret, phantom_shared_secret);
4895
4896                                 let mut push_forward_ev = false;
4897                                 let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
4898                                 if forward_htlcs.is_empty() {
4899                                         push_forward_ev = true;
4900                                 }
4901                                 match forward_htlcs.entry(*short_channel_id) {
4902                                         hash_map::Entry::Occupied(mut entry) => {
4903                                                 entry.get_mut().push(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet });
4904                                         },
4905                                         hash_map::Entry::Vacant(entry) => {
4906                                                 entry.insert(vec!(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet }));
4907                                         }
4908                                 }
4909                                 mem::drop(forward_htlcs);
4910                                 if push_forward_ev { self.push_pending_forwards_ev(); }
4911                                 let mut pending_events = self.pending_events.lock().unwrap();
4912                                 pending_events.push_back((events::Event::HTLCHandlingFailed {
4913                                         prev_channel_id: outpoint.to_channel_id(),
4914                                         failed_next_destination: destination,
4915                                 }, None));
4916                         },
4917                 }
4918         }
4919
4920         /// Provides a payment preimage in response to [`Event::PaymentClaimable`], generating any
4921         /// [`MessageSendEvent`]s needed to claim the payment.
4922         ///
4923         /// This method is guaranteed to ensure the payment has been claimed but only if the current
4924         /// height is strictly below [`Event::PaymentClaimable::claim_deadline`]. To avoid race
4925         /// conditions, you should wait for an [`Event::PaymentClaimed`] before considering the payment
4926         /// successful. It will generally be available in the next [`process_pending_events`] call.
4927         ///
4928         /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
4929         /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentClaimable`
4930         /// event matches your expectation. If you fail to do so and call this method, you may provide
4931         /// the sender "proof-of-payment" when they did not fulfill the full expected payment.
4932         ///
4933         /// This function will fail the payment if it has custom TLVs with even type numbers, as we
4934         /// will assume they are unknown. If you intend to accept even custom TLVs, you should use
4935         /// [`claim_funds_with_known_custom_tlvs`].
4936         ///
4937         /// [`Event::PaymentClaimable`]: crate::events::Event::PaymentClaimable
4938         /// [`Event::PaymentClaimable::claim_deadline`]: crate::events::Event::PaymentClaimable::claim_deadline
4939         /// [`Event::PaymentClaimed`]: crate::events::Event::PaymentClaimed
4940         /// [`process_pending_events`]: EventsProvider::process_pending_events
4941         /// [`create_inbound_payment`]: Self::create_inbound_payment
4942         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
4943         /// [`claim_funds_with_known_custom_tlvs`]: Self::claim_funds_with_known_custom_tlvs
4944         pub fn claim_funds(&self, payment_preimage: PaymentPreimage) {
4945                 self.claim_payment_internal(payment_preimage, false);
4946         }
4947
4948         /// This is a variant of [`claim_funds`] that allows accepting a payment with custom TLVs with
4949         /// even type numbers.
4950         ///
4951         /// # Note
4952         ///
4953         /// You MUST check you've understood all even TLVs before using this to
4954         /// claim, otherwise you may unintentionally agree to some protocol you do not understand.
4955         ///
4956         /// [`claim_funds`]: Self::claim_funds
4957         pub fn claim_funds_with_known_custom_tlvs(&self, payment_preimage: PaymentPreimage) {
4958                 self.claim_payment_internal(payment_preimage, true);
4959         }
4960
4961         fn claim_payment_internal(&self, payment_preimage: PaymentPreimage, custom_tlvs_known: bool) {
4962                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
4963
4964                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4965
4966                 let mut sources = {
4967                         let mut claimable_payments = self.claimable_payments.lock().unwrap();
4968                         if let Some(payment) = claimable_payments.claimable_payments.remove(&payment_hash) {
4969                                 let mut receiver_node_id = self.our_network_pubkey;
4970                                 for htlc in payment.htlcs.iter() {
4971                                         if htlc.prev_hop.phantom_shared_secret.is_some() {
4972                                                 let phantom_pubkey = self.node_signer.get_node_id(Recipient::PhantomNode)
4973                                                         .expect("Failed to get node_id for phantom node recipient");
4974                                                 receiver_node_id = phantom_pubkey;
4975                                                 break;
4976                                         }
4977                                 }
4978
4979                                 let htlcs = payment.htlcs.iter().map(events::ClaimedHTLC::from).collect();
4980                                 let sender_intended_value = payment.htlcs.first().map(|htlc| htlc.total_msat);
4981                                 let dup_purpose = claimable_payments.pending_claiming_payments.insert(payment_hash,
4982                                         ClaimingPayment { amount_msat: payment.htlcs.iter().map(|source| source.value).sum(),
4983                                         payment_purpose: payment.purpose, receiver_node_id, htlcs, sender_intended_value
4984                                 });
4985                                 if dup_purpose.is_some() {
4986                                         debug_assert!(false, "Shouldn't get a duplicate pending claim event ever");
4987                                         log_error!(self.logger, "Got a duplicate pending claimable event on payment hash {}! Please report this bug",
4988                                                 &payment_hash);
4989                                 }
4990
4991                                 if let Some(RecipientOnionFields { ref custom_tlvs, .. }) = payment.onion_fields {
4992                                         if !custom_tlvs_known && custom_tlvs.iter().any(|(typ, _)| typ % 2 == 0) {
4993                                                 log_info!(self.logger, "Rejecting payment with payment hash {} as we cannot accept payment with unknown even TLVs: {}",
4994                                                         &payment_hash, log_iter!(custom_tlvs.iter().map(|(typ, _)| typ).filter(|typ| *typ % 2 == 0)));
4995                                                 claimable_payments.pending_claiming_payments.remove(&payment_hash);
4996                                                 mem::drop(claimable_payments);
4997                                                 for htlc in payment.htlcs {
4998                                                         let reason = self.get_htlc_fail_reason_from_failure_code(FailureCode::InvalidOnionPayload(None), &htlc);
4999                                                         let source = HTLCSource::PreviousHopData(htlc.prev_hop);
5000                                                         let receiver = HTLCDestination::FailedPayment { payment_hash };
5001                                                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
5002                                                 }
5003                                                 return;
5004                                         }
5005                                 }
5006
5007                                 payment.htlcs
5008                         } else { return; }
5009                 };
5010                 debug_assert!(!sources.is_empty());
5011
5012                 // Just in case one HTLC has been failed between when we generated the `PaymentClaimable`
5013                 // and when we got here we need to check that the amount we're about to claim matches the
5014                 // amount we told the user in the last `PaymentClaimable`. We also do a sanity-check that
5015                 // the MPP parts all have the same `total_msat`.
5016                 let mut claimable_amt_msat = 0;
5017                 let mut prev_total_msat = None;
5018                 let mut expected_amt_msat = None;
5019                 let mut valid_mpp = true;
5020                 let mut errs = Vec::new();
5021                 let per_peer_state = self.per_peer_state.read().unwrap();
5022                 for htlc in sources.iter() {
5023                         if prev_total_msat.is_some() && prev_total_msat != Some(htlc.total_msat) {
5024                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different expected total amounts - this should not be reachable!");
5025                                 debug_assert!(false);
5026                                 valid_mpp = false;
5027                                 break;
5028                         }
5029                         prev_total_msat = Some(htlc.total_msat);
5030
5031                         if expected_amt_msat.is_some() && expected_amt_msat != htlc.total_value_received {
5032                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different received total amounts - this should not be reachable!");
5033                                 debug_assert!(false);
5034                                 valid_mpp = false;
5035                                 break;
5036                         }
5037                         expected_amt_msat = htlc.total_value_received;
5038                         claimable_amt_msat += htlc.value;
5039                 }
5040                 mem::drop(per_peer_state);
5041                 if sources.is_empty() || expected_amt_msat.is_none() {
5042                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5043                         log_info!(self.logger, "Attempted to claim an incomplete payment which no longer had any available HTLCs!");
5044                         return;
5045                 }
5046                 if claimable_amt_msat != expected_amt_msat.unwrap() {
5047                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5048                         log_info!(self.logger, "Attempted to claim an incomplete payment, expected {} msat, had {} available to claim.",
5049                                 expected_amt_msat.unwrap(), claimable_amt_msat);
5050                         return;
5051                 }
5052                 if valid_mpp {
5053                         for htlc in sources.drain(..) {
5054                                 if let Err((pk, err)) = self.claim_funds_from_hop(
5055                                         htlc.prev_hop, payment_preimage,
5056                                         |_| Some(MonitorUpdateCompletionAction::PaymentClaimed { payment_hash }))
5057                                 {
5058                                         if let msgs::ErrorAction::IgnoreError = err.err.action {
5059                                                 // We got a temporary failure updating monitor, but will claim the
5060                                                 // HTLC when the monitor updating is restored (or on chain).
5061                                                 log_error!(self.logger, "Temporary failure claiming HTLC, treating as success: {}", err.err.err);
5062                                         } else { errs.push((pk, err)); }
5063                                 }
5064                         }
5065                 }
5066                 if !valid_mpp {
5067                         for htlc in sources.drain(..) {
5068                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
5069                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
5070                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
5071                                 let reason = HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data);
5072                                 let receiver = HTLCDestination::FailedPayment { payment_hash };
5073                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
5074                         }
5075                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5076                 }
5077
5078                 // Now we can handle any errors which were generated.
5079                 for (counterparty_node_id, err) in errs.drain(..) {
5080                         let res: Result<(), _> = Err(err);
5081                         let _ = handle_error!(self, res, counterparty_node_id);
5082                 }
5083         }
5084
5085         fn claim_funds_from_hop<ComplFunc: FnOnce(Option<u64>) -> Option<MonitorUpdateCompletionAction>>(&self,
5086                 prev_hop: HTLCPreviousHopData, payment_preimage: PaymentPreimage, completion_action: ComplFunc)
5087         -> Result<(), (PublicKey, MsgHandleErrInternal)> {
5088                 //TODO: Delay the claimed_funds relaying just like we do outbound relay!
5089
5090                 // If we haven't yet run background events assume we're still deserializing and shouldn't
5091                 // actually pass `ChannelMonitorUpdate`s to users yet. Instead, queue them up as
5092                 // `BackgroundEvent`s.
5093                 let during_init = !self.background_events_processed_since_startup.load(Ordering::Acquire);
5094
5095                 {
5096                         let per_peer_state = self.per_peer_state.read().unwrap();
5097                         let chan_id = prev_hop.outpoint.to_channel_id();
5098                         let counterparty_node_id_opt = match self.short_to_chan_info.read().unwrap().get(&prev_hop.short_channel_id) {
5099                                 Some((cp_id, _dup_chan_id)) => Some(cp_id.clone()),
5100                                 None => None
5101                         };
5102
5103                         let peer_state_opt = counterparty_node_id_opt.as_ref().map(
5104                                 |counterparty_node_id| per_peer_state.get(counterparty_node_id)
5105                                         .map(|peer_mutex| peer_mutex.lock().unwrap())
5106                         ).unwrap_or(None);
5107
5108                         if peer_state_opt.is_some() {
5109                                 let mut peer_state_lock = peer_state_opt.unwrap();
5110                                 let peer_state = &mut *peer_state_lock;
5111                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(chan_id) {
5112                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
5113                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
5114                                                 let fulfill_res = chan.get_update_fulfill_htlc_and_commit(prev_hop.htlc_id, payment_preimage, &self.logger);
5115
5116                                                 if let UpdateFulfillCommitFetch::NewClaim { htlc_value_msat, monitor_update } = fulfill_res {
5117                                                         if let Some(action) = completion_action(Some(htlc_value_msat)) {
5118                                                                 log_trace!(self.logger, "Tracking monitor update completion action for channel {}: {:?}",
5119                                                                         chan_id, action);
5120                                                                 peer_state.monitor_update_blocked_actions.entry(chan_id).or_insert(Vec::new()).push(action);
5121                                                         }
5122                                                         if !during_init {
5123                                                                 let res = handle_new_monitor_update!(self, prev_hop.outpoint, monitor_update, peer_state_lock,
5124                                                                         peer_state, per_peer_state, chan_phase_entry);
5125                                                                 if let Err(e) = res {
5126                                                                         // TODO: This is a *critical* error - we probably updated the outbound edge
5127                                                                         // of the HTLC's monitor with a preimage. We should retry this monitor
5128                                                                         // update over and over again until morale improves.
5129                                                                         log_error!(self.logger, "Failed to update channel monitor with preimage {:?}", payment_preimage);
5130                                                                         return Err((counterparty_node_id, e));
5131                                                                 }
5132                                                         } else {
5133                                                                 // If we're running during init we cannot update a monitor directly -
5134                                                                 // they probably haven't actually been loaded yet. Instead, push the
5135                                                                 // monitor update as a background event.
5136                                                                 self.pending_background_events.lock().unwrap().push(
5137                                                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
5138                                                                                 counterparty_node_id,
5139                                                                                 funding_txo: prev_hop.outpoint,
5140                                                                                 update: monitor_update.clone(),
5141                                                                         });
5142                                                         }
5143                                                 }
5144                                         }
5145                                         return Ok(());
5146                                 }
5147                         }
5148                 }
5149                 let preimage_update = ChannelMonitorUpdate {
5150                         update_id: CLOSED_CHANNEL_UPDATE_ID,
5151                         updates: vec![ChannelMonitorUpdateStep::PaymentPreimage {
5152                                 payment_preimage,
5153                         }],
5154                 };
5155
5156                 if !during_init {
5157                         // We update the ChannelMonitor on the backward link, after
5158                         // receiving an `update_fulfill_htlc` from the forward link.
5159                         let update_res = self.chain_monitor.update_channel(prev_hop.outpoint, &preimage_update);
5160                         if update_res != ChannelMonitorUpdateStatus::Completed {
5161                                 // TODO: This needs to be handled somehow - if we receive a monitor update
5162                                 // with a preimage we *must* somehow manage to propagate it to the upstream
5163                                 // channel, or we must have an ability to receive the same event and try
5164                                 // again on restart.
5165                                 log_error!(self.logger, "Critical error: failed to update channel monitor with preimage {:?}: {:?}",
5166                                         payment_preimage, update_res);
5167                         }
5168                 } else {
5169                         // If we're running during init we cannot update a monitor directly - they probably
5170                         // haven't actually been loaded yet. Instead, push the monitor update as a background
5171                         // event.
5172                         // Note that while it's safe to use `ClosedMonitorUpdateRegeneratedOnStartup` here (the
5173                         // channel is already closed) we need to ultimately handle the monitor update
5174                         // completion action only after we've completed the monitor update. This is the only
5175                         // way to guarantee this update *will* be regenerated on startup (otherwise if this was
5176                         // from a forwarded HTLC the downstream preimage may be deleted before we claim
5177                         // upstream). Thus, we need to transition to some new `BackgroundEvent` type which will
5178                         // complete the monitor update completion action from `completion_action`.
5179                         self.pending_background_events.lock().unwrap().push(
5180                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((
5181                                         prev_hop.outpoint, preimage_update,
5182                                 )));
5183                 }
5184                 // Note that we do process the completion action here. This totally could be a
5185                 // duplicate claim, but we have no way of knowing without interrogating the
5186                 // `ChannelMonitor` we've provided the above update to. Instead, note that `Event`s are
5187                 // generally always allowed to be duplicative (and it's specifically noted in
5188                 // `PaymentForwarded`).
5189                 self.handle_monitor_update_completion_actions(completion_action(None));
5190                 Ok(())
5191         }
5192
5193         fn finalize_claims(&self, sources: Vec<HTLCSource>) {
5194                 self.pending_outbound_payments.finalize_claims(sources, &self.pending_events);
5195         }
5196
5197         fn claim_funds_internal(&self, source: HTLCSource, payment_preimage: PaymentPreimage, forwarded_htlc_value_msat: Option<u64>, from_onchain: bool, next_channel_outpoint: OutPoint) {
5198                 match source {
5199                         HTLCSource::OutboundRoute { session_priv, payment_id, path, .. } => {
5200                                 debug_assert!(self.background_events_processed_since_startup.load(Ordering::Acquire),
5201                                         "We don't support claim_htlc claims during startup - monitors may not be available yet");
5202                                 let ev_completion_action = EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
5203                                         channel_funding_outpoint: next_channel_outpoint,
5204                                         counterparty_node_id: path.hops[0].pubkey,
5205                                 };
5206                                 self.pending_outbound_payments.claim_htlc(payment_id, payment_preimage,
5207                                         session_priv, path, from_onchain, ev_completion_action, &self.pending_events,
5208                                         &self.logger);
5209                         },
5210                         HTLCSource::PreviousHopData(hop_data) => {
5211                                 let prev_outpoint = hop_data.outpoint;
5212                                 let res = self.claim_funds_from_hop(hop_data, payment_preimage,
5213                                         |htlc_claim_value_msat| {
5214                                                 if let Some(forwarded_htlc_value) = forwarded_htlc_value_msat {
5215                                                         let fee_earned_msat = if let Some(claimed_htlc_value) = htlc_claim_value_msat {
5216                                                                 Some(claimed_htlc_value - forwarded_htlc_value)
5217                                                         } else { None };
5218
5219                                                         Some(MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
5220                                                                 event: events::Event::PaymentForwarded {
5221                                                                         fee_earned_msat,
5222                                                                         claim_from_onchain_tx: from_onchain,
5223                                                                         prev_channel_id: Some(prev_outpoint.to_channel_id()),
5224                                                                         next_channel_id: Some(next_channel_outpoint.to_channel_id()),
5225                                                                         outbound_amount_forwarded_msat: forwarded_htlc_value_msat,
5226                                                                 },
5227                                                                 downstream_counterparty_and_funding_outpoint: None,
5228                                                         })
5229                                                 } else { None }
5230                                         });
5231                                 if let Err((pk, err)) = res {
5232                                         let result: Result<(), _> = Err(err);
5233                                         let _ = handle_error!(self, result, pk);
5234                                 }
5235                         },
5236                 }
5237         }
5238
5239         /// Gets the node_id held by this ChannelManager
5240         pub fn get_our_node_id(&self) -> PublicKey {
5241                 self.our_network_pubkey.clone()
5242         }
5243
5244         fn handle_monitor_update_completion_actions<I: IntoIterator<Item=MonitorUpdateCompletionAction>>(&self, actions: I) {
5245                 for action in actions.into_iter() {
5246                         match action {
5247                                 MonitorUpdateCompletionAction::PaymentClaimed { payment_hash } => {
5248                                         let payment = self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5249                                         if let Some(ClaimingPayment {
5250                                                 amount_msat,
5251                                                 payment_purpose: purpose,
5252                                                 receiver_node_id,
5253                                                 htlcs,
5254                                                 sender_intended_value: sender_intended_total_msat,
5255                                         }) = payment {
5256                                                 self.pending_events.lock().unwrap().push_back((events::Event::PaymentClaimed {
5257                                                         payment_hash,
5258                                                         purpose,
5259                                                         amount_msat,
5260                                                         receiver_node_id: Some(receiver_node_id),
5261                                                         htlcs,
5262                                                         sender_intended_total_msat,
5263                                                 }, None));
5264                                         }
5265                                 },
5266                                 MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
5267                                         event, downstream_counterparty_and_funding_outpoint
5268                                 } => {
5269                                         self.pending_events.lock().unwrap().push_back((event, None));
5270                                         if let Some((node_id, funding_outpoint, blocker)) = downstream_counterparty_and_funding_outpoint {
5271                                                 self.handle_monitor_update_release(node_id, funding_outpoint, Some(blocker));
5272                                         }
5273                                 },
5274                         }
5275                 }
5276         }
5277
5278         /// Handles a channel reentering a functional state, either due to reconnect or a monitor
5279         /// update completion.
5280         fn handle_channel_resumption(&self, pending_msg_events: &mut Vec<MessageSendEvent>,
5281                 channel: &mut Channel<SP>, raa: Option<msgs::RevokeAndACK>,
5282                 commitment_update: Option<msgs::CommitmentUpdate>, order: RAACommitmentOrder,
5283                 pending_forwards: Vec<(PendingHTLCInfo, u64)>, funding_broadcastable: Option<Transaction>,
5284                 channel_ready: Option<msgs::ChannelReady>, announcement_sigs: Option<msgs::AnnouncementSignatures>)
5285         -> Option<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> {
5286                 log_trace!(self.logger, "Handling channel resumption for channel {} with {} RAA, {} commitment update, {} pending forwards, {}broadcasting funding, {} channel ready, {} announcement",
5287                         &channel.context.channel_id(),
5288                         if raa.is_some() { "an" } else { "no" },
5289                         if commitment_update.is_some() { "a" } else { "no" }, pending_forwards.len(),
5290                         if funding_broadcastable.is_some() { "" } else { "not " },
5291                         if channel_ready.is_some() { "sending" } else { "without" },
5292                         if announcement_sigs.is_some() { "sending" } else { "without" });
5293
5294                 let mut htlc_forwards = None;
5295
5296                 let counterparty_node_id = channel.context.get_counterparty_node_id();
5297                 if !pending_forwards.is_empty() {
5298                         htlc_forwards = Some((channel.context.get_short_channel_id().unwrap_or(channel.context.outbound_scid_alias()),
5299                                 channel.context.get_funding_txo().unwrap(), channel.context.get_user_id(), pending_forwards));
5300                 }
5301
5302                 if let Some(msg) = channel_ready {
5303                         send_channel_ready!(self, pending_msg_events, channel, msg);
5304                 }
5305                 if let Some(msg) = announcement_sigs {
5306                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
5307                                 node_id: counterparty_node_id,
5308                                 msg,
5309                         });
5310                 }
5311
5312                 macro_rules! handle_cs { () => {
5313                         if let Some(update) = commitment_update {
5314                                 pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
5315                                         node_id: counterparty_node_id,
5316                                         updates: update,
5317                                 });
5318                         }
5319                 } }
5320                 macro_rules! handle_raa { () => {
5321                         if let Some(revoke_and_ack) = raa {
5322                                 pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
5323                                         node_id: counterparty_node_id,
5324                                         msg: revoke_and_ack,
5325                                 });
5326                         }
5327                 } }
5328                 match order {
5329                         RAACommitmentOrder::CommitmentFirst => {
5330                                 handle_cs!();
5331                                 handle_raa!();
5332                         },
5333                         RAACommitmentOrder::RevokeAndACKFirst => {
5334                                 handle_raa!();
5335                                 handle_cs!();
5336                         },
5337                 }
5338
5339                 if let Some(tx) = funding_broadcastable {
5340                         log_info!(self.logger, "Broadcasting funding transaction with txid {}", tx.txid());
5341                         self.tx_broadcaster.broadcast_transactions(&[&tx]);
5342                 }
5343
5344                 {
5345                         let mut pending_events = self.pending_events.lock().unwrap();
5346                         emit_channel_pending_event!(pending_events, channel);
5347                         emit_channel_ready_event!(pending_events, channel);
5348                 }
5349
5350                 htlc_forwards
5351         }
5352
5353         fn channel_monitor_updated(&self, funding_txo: &OutPoint, highest_applied_update_id: u64, counterparty_node_id: Option<&PublicKey>) {
5354                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
5355
5356                 let counterparty_node_id = match counterparty_node_id {
5357                         Some(cp_id) => cp_id.clone(),
5358                         None => {
5359                                 // TODO: Once we can rely on the counterparty_node_id from the
5360                                 // monitor event, this and the id_to_peer map should be removed.
5361                                 let id_to_peer = self.id_to_peer.lock().unwrap();
5362                                 match id_to_peer.get(&funding_txo.to_channel_id()) {
5363                                         Some(cp_id) => cp_id.clone(),
5364                                         None => return,
5365                                 }
5366                         }
5367                 };
5368                 let per_peer_state = self.per_peer_state.read().unwrap();
5369                 let mut peer_state_lock;
5370                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
5371                 if peer_state_mutex_opt.is_none() { return }
5372                 peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
5373                 let peer_state = &mut *peer_state_lock;
5374                 let channel =
5375                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&funding_txo.to_channel_id()) {
5376                                 chan
5377                         } else {
5378                                 let update_actions = peer_state.monitor_update_blocked_actions
5379                                         .remove(&funding_txo.to_channel_id()).unwrap_or(Vec::new());
5380                                 mem::drop(peer_state_lock);
5381                                 mem::drop(per_peer_state);
5382                                 self.handle_monitor_update_completion_actions(update_actions);
5383                                 return;
5384                         };
5385                 let remaining_in_flight =
5386                         if let Some(pending) = peer_state.in_flight_monitor_updates.get_mut(funding_txo) {
5387                                 pending.retain(|upd| upd.update_id > highest_applied_update_id);
5388                                 pending.len()
5389                         } else { 0 };
5390                 log_trace!(self.logger, "ChannelMonitor updated to {}. Current highest is {}. {} pending in-flight updates.",
5391                         highest_applied_update_id, channel.context.get_latest_monitor_update_id(),
5392                         remaining_in_flight);
5393                 if !channel.is_awaiting_monitor_update() || channel.context.get_latest_monitor_update_id() != highest_applied_update_id {
5394                         return;
5395                 }
5396                 handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, channel);
5397         }
5398
5399         /// Accepts a request to open a channel after a [`Event::OpenChannelRequest`].
5400         ///
5401         /// The `temporary_channel_id` parameter indicates which inbound channel should be accepted,
5402         /// and the `counterparty_node_id` parameter is the id of the peer which has requested to open
5403         /// the channel.
5404         ///
5405         /// The `user_channel_id` parameter will be provided back in
5406         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
5407         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
5408         ///
5409         /// Note that this method will return an error and reject the channel, if it requires support
5410         /// for zero confirmations. Instead, `accept_inbound_channel_from_trusted_peer_0conf` must be
5411         /// used to accept such channels.
5412         ///
5413         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
5414         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
5415         pub fn accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
5416                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, false, user_channel_id)
5417         }
5418
5419         /// Accepts a request to open a channel after a [`events::Event::OpenChannelRequest`], treating
5420         /// it as confirmed immediately.
5421         ///
5422         /// The `user_channel_id` parameter will be provided back in
5423         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
5424         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
5425         ///
5426         /// Unlike [`ChannelManager::accept_inbound_channel`], this method accepts the incoming channel
5427         /// and (if the counterparty agrees), enables forwarding of payments immediately.
5428         ///
5429         /// This fully trusts that the counterparty has honestly and correctly constructed the funding
5430         /// transaction and blindly assumes that it will eventually confirm.
5431         ///
5432         /// If it does not confirm before we decide to close the channel, or if the funding transaction
5433         /// does not pay to the correct script the correct amount, *you will lose funds*.
5434         ///
5435         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
5436         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
5437         pub fn accept_inbound_channel_from_trusted_peer_0conf(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
5438                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, true, user_channel_id)
5439         }
5440
5441         fn do_accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, accept_0conf: bool, user_channel_id: u128) -> Result<(), APIError> {
5442                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5443
5444                 let peers_without_funded_channels =
5445                         self.peers_without_funded_channels(|peer| { peer.total_channel_count() > 0 });
5446                 let per_peer_state = self.per_peer_state.read().unwrap();
5447                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5448                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
5449                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5450                 let peer_state = &mut *peer_state_lock;
5451                 let is_only_peer_channel = peer_state.total_channel_count() == 1;
5452
5453                 // Find (and remove) the channel in the unaccepted table. If it's not there, something weird is
5454                 // happening and return an error. N.B. that we create channel with an outbound SCID of zero so
5455                 // that we can delay allocating the SCID until after we're sure that the checks below will
5456                 // succeed.
5457                 let mut channel = match peer_state.inbound_channel_request_by_id.remove(temporary_channel_id) {
5458                         Some(unaccepted_channel) => {
5459                                 let best_block_height = self.best_block.read().unwrap().height();
5460                                 InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
5461                                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features,
5462                                         &unaccepted_channel.open_channel_msg, user_channel_id, &self.default_configuration, best_block_height,
5463                                         &self.logger, accept_0conf).map_err(|e| APIError::ChannelUnavailable { err: e.to_string() })
5464                         }
5465                         _ => Err(APIError::APIMisuseError { err: "No such channel awaiting to be accepted.".to_owned() })
5466                 }?;
5467
5468                 if accept_0conf {
5469                         // This should have been correctly configured by the call to InboundV1Channel::new.
5470                         debug_assert!(channel.context.minimum_depth().unwrap() == 0);
5471                 } else if channel.context.get_channel_type().requires_zero_conf() {
5472                         let send_msg_err_event = events::MessageSendEvent::HandleError {
5473                                 node_id: channel.context.get_counterparty_node_id(),
5474                                 action: msgs::ErrorAction::SendErrorMessage{
5475                                         msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "No zero confirmation channels accepted".to_owned(), }
5476                                 }
5477                         };
5478                         peer_state.pending_msg_events.push(send_msg_err_event);
5479                         return Err(APIError::APIMisuseError { err: "Please use accept_inbound_channel_from_trusted_peer_0conf to accept channels with zero confirmations.".to_owned() });
5480                 } else {
5481                         // If this peer already has some channels, a new channel won't increase our number of peers
5482                         // with unfunded channels, so as long as we aren't over the maximum number of unfunded
5483                         // channels per-peer we can accept channels from a peer with existing ones.
5484                         if is_only_peer_channel && peers_without_funded_channels >= MAX_UNFUNDED_CHANNEL_PEERS {
5485                                 let send_msg_err_event = events::MessageSendEvent::HandleError {
5486                                         node_id: channel.context.get_counterparty_node_id(),
5487                                         action: msgs::ErrorAction::SendErrorMessage{
5488                                                 msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "Have too many peers with unfunded channels, not accepting new ones".to_owned(), }
5489                                         }
5490                                 };
5491                                 peer_state.pending_msg_events.push(send_msg_err_event);
5492                                 return Err(APIError::APIMisuseError { err: "Too many peers with unfunded channels, refusing to accept new ones".to_owned() });
5493                         }
5494                 }
5495
5496                 // Now that we know we have a channel, assign an outbound SCID alias.
5497                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
5498                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
5499
5500                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
5501                         node_id: channel.context.get_counterparty_node_id(),
5502                         msg: channel.accept_inbound_channel(),
5503                 });
5504
5505                 peer_state.channel_by_id.insert(temporary_channel_id.clone(), ChannelPhase::UnfundedInboundV1(channel));
5506
5507                 Ok(())
5508         }
5509
5510         /// Gets the number of peers which match the given filter and do not have any funded, outbound,
5511         /// or 0-conf channels.
5512         ///
5513         /// The filter is called for each peer and provided with the number of unfunded, inbound, and
5514         /// non-0-conf channels we have with the peer.
5515         fn peers_without_funded_channels<Filter>(&self, maybe_count_peer: Filter) -> usize
5516         where Filter: Fn(&PeerState<SP>) -> bool {
5517                 let mut peers_without_funded_channels = 0;
5518                 let best_block_height = self.best_block.read().unwrap().height();
5519                 {
5520                         let peer_state_lock = self.per_peer_state.read().unwrap();
5521                         for (_, peer_mtx) in peer_state_lock.iter() {
5522                                 let peer = peer_mtx.lock().unwrap();
5523                                 if !maybe_count_peer(&*peer) { continue; }
5524                                 let num_unfunded_channels = Self::unfunded_channel_count(&peer, best_block_height);
5525                                 if num_unfunded_channels == peer.total_channel_count() {
5526                                         peers_without_funded_channels += 1;
5527                                 }
5528                         }
5529                 }
5530                 return peers_without_funded_channels;
5531         }
5532
5533         fn unfunded_channel_count(
5534                 peer: &PeerState<SP>, best_block_height: u32
5535         ) -> usize {
5536                 let mut num_unfunded_channels = 0;
5537                 for (_, phase) in peer.channel_by_id.iter() {
5538                         match phase {
5539                                 ChannelPhase::Funded(chan) => {
5540                                         // This covers non-zero-conf inbound `Channel`s that we are currently monitoring, but those
5541                                         // which have not yet had any confirmations on-chain.
5542                                         if !chan.context.is_outbound() && chan.context.minimum_depth().unwrap_or(1) != 0 &&
5543                                                 chan.context.get_funding_tx_confirmations(best_block_height) == 0
5544                                         {
5545                                                 num_unfunded_channels += 1;
5546                                         }
5547                                 },
5548                                 ChannelPhase::UnfundedInboundV1(chan) => {
5549                                         if chan.context.minimum_depth().unwrap_or(1) != 0 {
5550                                                 num_unfunded_channels += 1;
5551                                         }
5552                                 },
5553                                 ChannelPhase::UnfundedOutboundV1(_) => {
5554                                         // Outbound channels don't contribute to the unfunded count in the DoS context.
5555                                         continue;
5556                                 }
5557                         }
5558                 }
5559                 num_unfunded_channels + peer.inbound_channel_request_by_id.len()
5560         }
5561
5562         fn internal_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) -> Result<(), MsgHandleErrInternal> {
5563                 if msg.chain_hash != self.genesis_hash {
5564                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Unknown genesis block hash".to_owned(), msg.temporary_channel_id.clone()));
5565                 }
5566
5567                 if !self.default_configuration.accept_inbound_channels {
5568                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No inbound channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5569                 }
5570
5571                 // Get the number of peers with channels, but without funded ones. We don't care too much
5572                 // about peers that never open a channel, so we filter by peers that have at least one
5573                 // channel, and then limit the number of those with unfunded channels.
5574                 let channeled_peers_without_funding =
5575                         self.peers_without_funded_channels(|node| node.total_channel_count() > 0);
5576
5577                 let per_peer_state = self.per_peer_state.read().unwrap();
5578                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5579                     .ok_or_else(|| {
5580                                 debug_assert!(false);
5581                                 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())
5582                         })?;
5583                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5584                 let peer_state = &mut *peer_state_lock;
5585
5586                 // If this peer already has some channels, a new channel won't increase our number of peers
5587                 // with unfunded channels, so as long as we aren't over the maximum number of unfunded
5588                 // channels per-peer we can accept channels from a peer with existing ones.
5589                 if peer_state.total_channel_count() == 0 &&
5590                         channeled_peers_without_funding >= MAX_UNFUNDED_CHANNEL_PEERS &&
5591                         !self.default_configuration.manually_accept_inbound_channels
5592                 {
5593                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5594                                 "Have too many peers with unfunded channels, not accepting new ones".to_owned(),
5595                                 msg.temporary_channel_id.clone()));
5596                 }
5597
5598                 let best_block_height = self.best_block.read().unwrap().height();
5599                 if Self::unfunded_channel_count(peer_state, best_block_height) >= MAX_UNFUNDED_CHANS_PER_PEER {
5600                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5601                                 format!("Refusing more than {} unfunded channels.", MAX_UNFUNDED_CHANS_PER_PEER),
5602                                 msg.temporary_channel_id.clone()));
5603                 }
5604
5605                 let channel_id = msg.temporary_channel_id;
5606                 let channel_exists = peer_state.has_channel(&channel_id);
5607                 if channel_exists {
5608                         return Err(MsgHandleErrInternal::send_err_msg_no_close("temporary_channel_id collision for the same peer!".to_owned(), msg.temporary_channel_id.clone()));
5609                 }
5610
5611                 // If we're doing manual acceptance checks on the channel, then defer creation until we're sure we want to accept.
5612                 if self.default_configuration.manually_accept_inbound_channels {
5613                         let mut pending_events = self.pending_events.lock().unwrap();
5614                         pending_events.push_back((events::Event::OpenChannelRequest {
5615                                 temporary_channel_id: msg.temporary_channel_id.clone(),
5616                                 counterparty_node_id: counterparty_node_id.clone(),
5617                                 funding_satoshis: msg.funding_satoshis,
5618                                 push_msat: msg.push_msat,
5619                                 channel_type: msg.channel_type.clone().unwrap(),
5620                         }, None));
5621                         peer_state.inbound_channel_request_by_id.insert(channel_id, InboundChannelRequest {
5622                                 open_channel_msg: msg.clone(),
5623                                 ticks_remaining: UNACCEPTED_INBOUND_CHANNEL_AGE_LIMIT_TICKS,
5624                         });
5625                         return Ok(());
5626                 }
5627
5628                 // Otherwise create the channel right now.
5629                 let mut random_bytes = [0u8; 16];
5630                 random_bytes.copy_from_slice(&self.entropy_source.get_secure_random_bytes()[..16]);
5631                 let user_channel_id = u128::from_be_bytes(random_bytes);
5632                 let mut channel = match InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
5633                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features, msg, user_channel_id,
5634                         &self.default_configuration, best_block_height, &self.logger, /*is_0conf=*/false)
5635                 {
5636                         Err(e) => {
5637                                 return Err(MsgHandleErrInternal::from_chan_no_close(e, msg.temporary_channel_id));
5638                         },
5639                         Ok(res) => res
5640                 };
5641
5642                 let channel_type = channel.context.get_channel_type();
5643                 if channel_type.requires_zero_conf() {
5644                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No zero confirmation channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5645                 }
5646                 if channel_type.requires_anchors_zero_fee_htlc_tx() {
5647                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No channels with anchor outputs accepted".to_owned(), msg.temporary_channel_id.clone()));
5648                 }
5649
5650                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
5651                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
5652
5653                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
5654                         node_id: counterparty_node_id.clone(),
5655                         msg: channel.accept_inbound_channel(),
5656                 });
5657                 peer_state.channel_by_id.insert(channel_id, ChannelPhase::UnfundedInboundV1(channel));
5658                 Ok(())
5659         }
5660
5661         fn internal_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) -> Result<(), MsgHandleErrInternal> {
5662                 let (value, output_script, user_id) = {
5663                         let per_peer_state = self.per_peer_state.read().unwrap();
5664                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5665                                 .ok_or_else(|| {
5666                                         debug_assert!(false);
5667                                         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)
5668                                 })?;
5669                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5670                         let peer_state = &mut *peer_state_lock;
5671                         match peer_state.channel_by_id.entry(msg.temporary_channel_id) {
5672                                 hash_map::Entry::Occupied(mut phase) => {
5673                                         match phase.get_mut() {
5674                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
5675                                                         try_chan_phase_entry!(self, chan.accept_channel(&msg, &self.default_configuration.channel_handshake_limits, &peer_state.latest_features), phase);
5676                                                         (chan.context.get_value_satoshis(), chan.context.get_funding_redeemscript().to_v0_p2wsh(), chan.context.get_user_id())
5677                                                 },
5678                                                 _ => {
5679                                                         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));
5680                                                 }
5681                                         }
5682                                 },
5683                                 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))
5684                         }
5685                 };
5686                 let mut pending_events = self.pending_events.lock().unwrap();
5687                 pending_events.push_back((events::Event::FundingGenerationReady {
5688                         temporary_channel_id: msg.temporary_channel_id,
5689                         counterparty_node_id: *counterparty_node_id,
5690                         channel_value_satoshis: value,
5691                         output_script,
5692                         user_channel_id: user_id,
5693                 }, None));
5694                 Ok(())
5695         }
5696
5697         fn internal_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) -> Result<(), MsgHandleErrInternal> {
5698                 let best_block = *self.best_block.read().unwrap();
5699
5700                 let per_peer_state = self.per_peer_state.read().unwrap();
5701                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5702                         .ok_or_else(|| {
5703                                 debug_assert!(false);
5704                                 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)
5705                         })?;
5706
5707                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5708                 let peer_state = &mut *peer_state_lock;
5709                 let (chan, funding_msg, monitor) =
5710                         match peer_state.channel_by_id.remove(&msg.temporary_channel_id) {
5711                                 Some(ChannelPhase::UnfundedInboundV1(inbound_chan)) => {
5712                                         match inbound_chan.funding_created(msg, best_block, &self.signer_provider, &self.logger) {
5713                                                 Ok(res) => res,
5714                                                 Err((mut inbound_chan, err)) => {
5715                                                         // We've already removed this inbound channel from the map in `PeerState`
5716                                                         // above so at this point we just need to clean up any lingering entries
5717                                                         // concerning this channel as it is safe to do so.
5718                                                         update_maps_on_chan_removal!(self, &inbound_chan.context);
5719                                                         let user_id = inbound_chan.context.get_user_id();
5720                                                         let shutdown_res = inbound_chan.context.force_shutdown(false);
5721                                                         return Err(MsgHandleErrInternal::from_finish_shutdown(format!("{}", err),
5722                                                                 msg.temporary_channel_id, user_id, shutdown_res, None, inbound_chan.context.get_value_satoshis()));
5723                                                 },
5724                                         }
5725                                 },
5726                                 Some(ChannelPhase::Funded(_)) | Some(ChannelPhase::UnfundedOutboundV1(_)) => {
5727                                         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));
5728                                 },
5729                                 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))
5730                         };
5731
5732                 match peer_state.channel_by_id.entry(funding_msg.channel_id) {
5733                         hash_map::Entry::Occupied(_) => {
5734                                 Err(MsgHandleErrInternal::send_err_msg_no_close("Already had channel with the new channel_id".to_owned(), funding_msg.channel_id))
5735                         },
5736                         hash_map::Entry::Vacant(e) => {
5737                                 match self.id_to_peer.lock().unwrap().entry(chan.context.channel_id()) {
5738                                         hash_map::Entry::Occupied(_) => {
5739                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close(
5740                                                         "The funding_created message had the same funding_txid as an existing channel - funding is not possible".to_owned(),
5741                                                         funding_msg.channel_id))
5742                                         },
5743                                         hash_map::Entry::Vacant(i_e) => {
5744                                                 i_e.insert(chan.context.get_counterparty_node_id());
5745                                         }
5746                                 }
5747
5748                                 // There's no problem signing a counterparty's funding transaction if our monitor
5749                                 // hasn't persisted to disk yet - we can't lose money on a transaction that we haven't
5750                                 // accepted payment from yet. We do, however, need to wait to send our channel_ready
5751                                 // until we have persisted our monitor.
5752                                 let new_channel_id = funding_msg.channel_id;
5753                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
5754                                         node_id: counterparty_node_id.clone(),
5755                                         msg: funding_msg,
5756                                 });
5757
5758                                 let monitor_res = self.chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor);
5759
5760                                 if let ChannelPhase::Funded(chan) = e.insert(ChannelPhase::Funded(chan)) {
5761                                         let mut res = handle_new_monitor_update!(self, monitor_res, peer_state_lock, peer_state,
5762                                                 per_peer_state, chan, MANUALLY_REMOVING_INITIAL_MONITOR,
5763                                                 { peer_state.channel_by_id.remove(&new_channel_id) });
5764
5765                                         // Note that we reply with the new channel_id in error messages if we gave up on the
5766                                         // channel, not the temporary_channel_id. This is compatible with ourselves, but the
5767                                         // spec is somewhat ambiguous here. Not a huge deal since we'll send error messages for
5768                                         // any messages referencing a previously-closed channel anyway.
5769                                         // We do not propagate the monitor update to the user as it would be for a monitor
5770                                         // that we didn't manage to store (and that we don't care about - we don't respond
5771                                         // with the funding_signed so the channel can never go on chain).
5772                                         if let Err(MsgHandleErrInternal { shutdown_finish: Some((res, _)), .. }) = &mut res {
5773                                                 res.0 = None;
5774                                         }
5775                                         res.map(|_| ())
5776                                 } else {
5777                                         unreachable!("This must be a funded channel as we just inserted it.");
5778                                 }
5779                         }
5780                 }
5781         }
5782
5783         fn internal_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) -> Result<(), MsgHandleErrInternal> {
5784                 let best_block = *self.best_block.read().unwrap();
5785                 let per_peer_state = self.per_peer_state.read().unwrap();
5786                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5787                         .ok_or_else(|| {
5788                                 debug_assert!(false);
5789                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5790                         })?;
5791
5792                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5793                 let peer_state = &mut *peer_state_lock;
5794                 match peer_state.channel_by_id.entry(msg.channel_id) {
5795                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
5796                                 match chan_phase_entry.get_mut() {
5797                                         ChannelPhase::Funded(ref mut chan) => {
5798                                                 let monitor = try_chan_phase_entry!(self,
5799                                                         chan.funding_signed(&msg, best_block, &self.signer_provider, &self.logger), chan_phase_entry);
5800                                                 let update_res = self.chain_monitor.watch_channel(chan.context.get_funding_txo().unwrap(), monitor);
5801                                                 let mut res = handle_new_monitor_update!(self, update_res, peer_state_lock, peer_state, per_peer_state, chan_phase_entry, INITIAL_MONITOR);
5802                                                 if let Err(MsgHandleErrInternal { ref mut shutdown_finish, .. }) = res {
5803                                                         // We weren't able to watch the channel to begin with, so no updates should be made on
5804                                                         // it. Previously, full_stack_target found an (unreachable) panic when the
5805                                                         // monitor update contained within `shutdown_finish` was applied.
5806                                                         if let Some((ref mut shutdown_finish, _)) = shutdown_finish {
5807                                                                 shutdown_finish.0.take();
5808                                                         }
5809                                                 }
5810                                                 res.map(|_| ())
5811                                         },
5812                                         _ => {
5813                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id));
5814                                         },
5815                                 }
5816                         },
5817                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
5818                 }
5819         }
5820
5821         fn internal_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) -> Result<(), MsgHandleErrInternal> {
5822                 let per_peer_state = self.per_peer_state.read().unwrap();
5823                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5824                         .ok_or_else(|| {
5825                                 debug_assert!(false);
5826                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5827                         })?;
5828                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5829                 let peer_state = &mut *peer_state_lock;
5830                 match peer_state.channel_by_id.entry(msg.channel_id) {
5831                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
5832                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
5833                                         let announcement_sigs_opt = try_chan_phase_entry!(self, chan.channel_ready(&msg, &self.node_signer,
5834                                                 self.genesis_hash.clone(), &self.default_configuration, &self.best_block.read().unwrap(), &self.logger), chan_phase_entry);
5835                                         if let Some(announcement_sigs) = announcement_sigs_opt {
5836                                                 log_trace!(self.logger, "Sending announcement_signatures for channel {}", chan.context.channel_id());
5837                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
5838                                                         node_id: counterparty_node_id.clone(),
5839                                                         msg: announcement_sigs,
5840                                                 });
5841                                         } else if chan.context.is_usable() {
5842                                                 // If we're sending an announcement_signatures, we'll send the (public)
5843                                                 // channel_update after sending a channel_announcement when we receive our
5844                                                 // counterparty's announcement_signatures. Thus, we only bother to send a
5845                                                 // channel_update here if the channel is not public, i.e. we're not sending an
5846                                                 // announcement_signatures.
5847                                                 log_trace!(self.logger, "Sending private initial channel_update for our counterparty on channel {}", chan.context.channel_id());
5848                                                 if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
5849                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
5850                                                                 node_id: counterparty_node_id.clone(),
5851                                                                 msg,
5852                                                         });
5853                                                 }
5854                                         }
5855
5856                                         {
5857                                                 let mut pending_events = self.pending_events.lock().unwrap();
5858                                                 emit_channel_ready_event!(pending_events, chan);
5859                                         }
5860
5861                                         Ok(())
5862                                 } else {
5863                                         try_chan_phase_entry!(self, Err(ChannelError::Close(
5864                                                 "Got a channel_ready message for an unfunded channel!".into())), chan_phase_entry)
5865                                 }
5866                         },
5867                         hash_map::Entry::Vacant(_) => {
5868                                 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))
5869                         }
5870                 }
5871         }
5872
5873         fn internal_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) -> Result<(), MsgHandleErrInternal> {
5874                 let mut dropped_htlcs: Vec<(HTLCSource, PaymentHash)>;
5875                 let result: Result<(), _> = loop {
5876                         let per_peer_state = self.per_peer_state.read().unwrap();
5877                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5878                                 .ok_or_else(|| {
5879                                         debug_assert!(false);
5880                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5881                                 })?;
5882                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5883                         let peer_state = &mut *peer_state_lock;
5884                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(msg.channel_id.clone()) {
5885                                 let phase = chan_phase_entry.get_mut();
5886                                 match phase {
5887                                         ChannelPhase::Funded(chan) => {
5888                                                 if !chan.received_shutdown() {
5889                                                         log_info!(self.logger, "Received a shutdown message from our counterparty for channel {}{}.",
5890                                                                 msg.channel_id,
5891                                                                 if chan.sent_shutdown() { " after we initiated shutdown" } else { "" });
5892                                                 }
5893
5894                                                 let funding_txo_opt = chan.context.get_funding_txo();
5895                                                 let (shutdown, monitor_update_opt, htlcs) = try_chan_phase_entry!(self,
5896                                                         chan.shutdown(&self.signer_provider, &peer_state.latest_features, &msg), chan_phase_entry);
5897                                                 dropped_htlcs = htlcs;
5898
5899                                                 if let Some(msg) = shutdown {
5900                                                         // We can send the `shutdown` message before updating the `ChannelMonitor`
5901                                                         // here as we don't need the monitor update to complete until we send a
5902                                                         // `shutdown_signed`, which we'll delay if we're pending a monitor update.
5903                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
5904                                                                 node_id: *counterparty_node_id,
5905                                                                 msg,
5906                                                         });
5907                                                 }
5908                                                 // Update the monitor with the shutdown script if necessary.
5909                                                 if let Some(monitor_update) = monitor_update_opt {
5910                                                         break handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
5911                                                                 peer_state_lock, peer_state, per_peer_state, chan_phase_entry).map(|_| ());
5912                                                 }
5913                                                 break Ok(());
5914                                         },
5915                                         ChannelPhase::UnfundedInboundV1(_) | ChannelPhase::UnfundedOutboundV1(_) => {
5916                                                 let context = phase.context_mut();
5917                                                 log_error!(self.logger, "Immediately closing unfunded channel {} as peer asked to cooperatively shut it down (which is unnecessary)", &msg.channel_id);
5918                                                 self.issue_channel_close_events(&context, ClosureReason::CounterpartyCoopClosedUnfundedChannel);
5919                                                 let mut chan = remove_channel_phase!(self, chan_phase_entry);
5920                                                 self.finish_force_close_channel(chan.context_mut().force_shutdown(false));
5921                                                 return Ok(());
5922                                         },
5923                                 }
5924                         } else {
5925                                 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))
5926                         }
5927                 };
5928                 for htlc_source in dropped_htlcs.drain(..) {
5929                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id: msg.channel_id };
5930                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
5931                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
5932                 }
5933
5934                 result
5935         }
5936
5937         fn internal_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) -> Result<(), MsgHandleErrInternal> {
5938                 let per_peer_state = self.per_peer_state.read().unwrap();
5939                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5940                         .ok_or_else(|| {
5941                                 debug_assert!(false);
5942                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5943                         })?;
5944                 let (tx, chan_option) = {
5945                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5946                         let peer_state = &mut *peer_state_lock;
5947                         match peer_state.channel_by_id.entry(msg.channel_id.clone()) {
5948                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
5949                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
5950                                                 let (closing_signed, tx) = try_chan_phase_entry!(self, chan.closing_signed(&self.fee_estimator, &msg), chan_phase_entry);
5951                                                 if let Some(msg) = closing_signed {
5952                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
5953                                                                 node_id: counterparty_node_id.clone(),
5954                                                                 msg,
5955                                                         });
5956                                                 }
5957                                                 if tx.is_some() {
5958                                                         // We're done with this channel, we've got a signed closing transaction and
5959                                                         // will send the closing_signed back to the remote peer upon return. This
5960                                                         // also implies there are no pending HTLCs left on the channel, so we can
5961                                                         // fully delete it from tracking (the channel monitor is still around to
5962                                                         // watch for old state broadcasts)!
5963                                                         (tx, Some(remove_channel_phase!(self, chan_phase_entry)))
5964                                                 } else { (tx, None) }
5965                                         } else {
5966                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
5967                                                         "Got a closing_signed message for an unfunded channel!".into())), chan_phase_entry);
5968                                         }
5969                                 },
5970                                 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))
5971                         }
5972                 };
5973                 if let Some(broadcast_tx) = tx {
5974                         log_info!(self.logger, "Broadcasting {}", log_tx!(broadcast_tx));
5975                         self.tx_broadcaster.broadcast_transactions(&[&broadcast_tx]);
5976                 }
5977                 if let Some(ChannelPhase::Funded(chan)) = chan_option {
5978                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5979                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5980                                 let peer_state = &mut *peer_state_lock;
5981                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
5982                                         msg: update
5983                                 });
5984                         }
5985                         self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
5986                 }
5987                 Ok(())
5988         }
5989
5990         fn internal_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) -> Result<(), MsgHandleErrInternal> {
5991                 //TODO: BOLT 4 points out a specific attack where a peer may re-send an onion packet and
5992                 //determine the state of the payment based on our response/if we forward anything/the time
5993                 //we take to respond. We should take care to avoid allowing such an attack.
5994                 //
5995                 //TODO: There exists a further attack where a node may garble the onion data, forward it to
5996                 //us repeatedly garbled in different ways, and compare our error messages, which are
5997                 //encrypted with the same key. It's not immediately obvious how to usefully exploit that,
5998                 //but we should prevent it anyway.
5999
6000                 let decoded_hop_res = self.decode_update_add_htlc_onion(msg);
6001                 let per_peer_state = self.per_peer_state.read().unwrap();
6002                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6003                         .ok_or_else(|| {
6004                                 debug_assert!(false);
6005                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6006                         })?;
6007                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6008                 let peer_state = &mut *peer_state_lock;
6009                 match peer_state.channel_by_id.entry(msg.channel_id) {
6010                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6011                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6012                                         let pending_forward_info = match decoded_hop_res {
6013                                                 Ok((next_hop, shared_secret, next_packet_pk_opt)) =>
6014                                                         self.construct_pending_htlc_status(msg, shared_secret, next_hop,
6015                                                                 chan.context.config().accept_underpaying_htlcs, next_packet_pk_opt),
6016                                                 Err(e) => PendingHTLCStatus::Fail(e)
6017                                         };
6018                                         let create_pending_htlc_status = |chan: &Channel<SP>, pending_forward_info: PendingHTLCStatus, error_code: u16| {
6019                                                 // If the update_add is completely bogus, the call will Err and we will close,
6020                                                 // but if we've sent a shutdown and they haven't acknowledged it yet, we just
6021                                                 // want to reject the new HTLC and fail it backwards instead of forwarding.
6022                                                 match pending_forward_info {
6023                                                         PendingHTLCStatus::Forward(PendingHTLCInfo { ref incoming_shared_secret, .. }) => {
6024                                                                 let reason = if (error_code & 0x1000) != 0 {
6025                                                                         let (real_code, error_data) = self.get_htlc_inbound_temp_fail_err_and_data(error_code, chan);
6026                                                                         HTLCFailReason::reason(real_code, error_data)
6027                                                                 } else {
6028                                                                         HTLCFailReason::from_failure_code(error_code)
6029                                                                 }.get_encrypted_failure_packet(incoming_shared_secret, &None);
6030                                                                 let msg = msgs::UpdateFailHTLC {
6031                                                                         channel_id: msg.channel_id,
6032                                                                         htlc_id: msg.htlc_id,
6033                                                                         reason
6034                                                                 };
6035                                                                 PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msg))
6036                                                         },
6037                                                         _ => pending_forward_info
6038                                                 }
6039                                         };
6040                                         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);
6041                                 } else {
6042                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6043                                                 "Got an update_add_htlc message for an unfunded channel!".into())), chan_phase_entry);
6044                                 }
6045                         },
6046                         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))
6047                 }
6048                 Ok(())
6049         }
6050
6051         fn internal_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) -> Result<(), MsgHandleErrInternal> {
6052                 let funding_txo;
6053                 let (htlc_source, forwarded_htlc_value) = {
6054                         let per_peer_state = self.per_peer_state.read().unwrap();
6055                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6056                                 .ok_or_else(|| {
6057                                         debug_assert!(false);
6058                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6059                                 })?;
6060                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6061                         let peer_state = &mut *peer_state_lock;
6062                         match peer_state.channel_by_id.entry(msg.channel_id) {
6063                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6064                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6065                                                 let res = try_chan_phase_entry!(self, chan.update_fulfill_htlc(&msg), chan_phase_entry);
6066                                                 funding_txo = chan.context.get_funding_txo().expect("We won't accept a fulfill until funded");
6067                                                 res
6068                                         } else {
6069                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6070                                                         "Got an update_fulfill_htlc message for an unfunded channel!".into())), chan_phase_entry);
6071                                         }
6072                                 },
6073                                 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))
6074                         }
6075                 };
6076                 self.claim_funds_internal(htlc_source, msg.payment_preimage.clone(), Some(forwarded_htlc_value), false, funding_txo);
6077                 Ok(())
6078         }
6079
6080         fn internal_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) -> Result<(), MsgHandleErrInternal> {
6081                 let per_peer_state = self.per_peer_state.read().unwrap();
6082                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6083                         .ok_or_else(|| {
6084                                 debug_assert!(false);
6085                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6086                         })?;
6087                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6088                 let peer_state = &mut *peer_state_lock;
6089                 match peer_state.channel_by_id.entry(msg.channel_id) {
6090                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6091                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6092                                         try_chan_phase_entry!(self, chan.update_fail_htlc(&msg, HTLCFailReason::from_msg(msg)), chan_phase_entry);
6093                                 } else {
6094                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6095                                                 "Got an update_fail_htlc message for an unfunded channel!".into())), chan_phase_entry);
6096                                 }
6097                         },
6098                         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))
6099                 }
6100                 Ok(())
6101         }
6102
6103         fn internal_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) -> Result<(), MsgHandleErrInternal> {
6104                 let per_peer_state = self.per_peer_state.read().unwrap();
6105                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6106                         .ok_or_else(|| {
6107                                 debug_assert!(false);
6108                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6109                         })?;
6110                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6111                 let peer_state = &mut *peer_state_lock;
6112                 match peer_state.channel_by_id.entry(msg.channel_id) {
6113                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6114                                 if (msg.failure_code & 0x8000) == 0 {
6115                                         let chan_err: ChannelError = ChannelError::Close("Got update_fail_malformed_htlc with BADONION not set".to_owned());
6116                                         try_chan_phase_entry!(self, Err(chan_err), chan_phase_entry);
6117                                 }
6118                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6119                                         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);
6120                                 } else {
6121                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6122                                                 "Got an update_fail_malformed_htlc message for an unfunded channel!".into())), chan_phase_entry);
6123                                 }
6124                                 Ok(())
6125                         },
6126                         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))
6127                 }
6128         }
6129
6130         fn internal_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) -> Result<(), MsgHandleErrInternal> {
6131                 let per_peer_state = self.per_peer_state.read().unwrap();
6132                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6133                         .ok_or_else(|| {
6134                                 debug_assert!(false);
6135                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6136                         })?;
6137                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6138                 let peer_state = &mut *peer_state_lock;
6139                 match peer_state.channel_by_id.entry(msg.channel_id) {
6140                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6141                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6142                                         let funding_txo = chan.context.get_funding_txo();
6143                                         let monitor_update_opt = try_chan_phase_entry!(self, chan.commitment_signed(&msg, &self.logger), chan_phase_entry);
6144                                         if let Some(monitor_update) = monitor_update_opt {
6145                                                 handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update, peer_state_lock,
6146                                                         peer_state, per_peer_state, chan_phase_entry).map(|_| ())
6147                                         } else { Ok(()) }
6148                                 } else {
6149                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6150                                                 "Got a commitment_signed 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         }
6156
6157         #[inline]
6158         fn forward_htlcs(&self, per_source_pending_forwards: &mut [(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)]) {
6159                 for &mut (prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, ref mut pending_forwards) in per_source_pending_forwards {
6160                         let mut push_forward_event = false;
6161                         let mut new_intercept_events = VecDeque::new();
6162                         let mut failed_intercept_forwards = Vec::new();
6163                         if !pending_forwards.is_empty() {
6164                                 for (forward_info, prev_htlc_id) in pending_forwards.drain(..) {
6165                                         let scid = match forward_info.routing {
6166                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
6167                                                 PendingHTLCRouting::Receive { .. } => 0,
6168                                                 PendingHTLCRouting::ReceiveKeysend { .. } => 0,
6169                                         };
6170                                         // Pull this now to avoid introducing a lock order with `forward_htlcs`.
6171                                         let is_our_scid = self.short_to_chan_info.read().unwrap().contains_key(&scid);
6172
6173                                         let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
6174                                         let forward_htlcs_empty = forward_htlcs.is_empty();
6175                                         match forward_htlcs.entry(scid) {
6176                                                 hash_map::Entry::Occupied(mut entry) => {
6177                                                         entry.get_mut().push(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
6178                                                                 prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info }));
6179                                                 },
6180                                                 hash_map::Entry::Vacant(entry) => {
6181                                                         if !is_our_scid && forward_info.incoming_amt_msat.is_some() &&
6182                                                            fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, scid, &self.genesis_hash)
6183                                                         {
6184                                                                 let intercept_id = InterceptId(Sha256::hash(&forward_info.incoming_shared_secret).into_inner());
6185                                                                 let mut pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
6186                                                                 match pending_intercepts.entry(intercept_id) {
6187                                                                         hash_map::Entry::Vacant(entry) => {
6188                                                                                 new_intercept_events.push_back((events::Event::HTLCIntercepted {
6189                                                                                         requested_next_hop_scid: scid,
6190                                                                                         payment_hash: forward_info.payment_hash,
6191                                                                                         inbound_amount_msat: forward_info.incoming_amt_msat.unwrap(),
6192                                                                                         expected_outbound_amount_msat: forward_info.outgoing_amt_msat,
6193                                                                                         intercept_id
6194                                                                                 }, None));
6195                                                                                 entry.insert(PendingAddHTLCInfo {
6196                                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info });
6197                                                                         },
6198                                                                         hash_map::Entry::Occupied(_) => {
6199                                                                                 log_info!(self.logger, "Failed to forward incoming HTLC: detected duplicate intercepted payment over short channel id {}", scid);
6200                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
6201                                                                                         short_channel_id: prev_short_channel_id,
6202                                                                                         user_channel_id: Some(prev_user_channel_id),
6203                                                                                         outpoint: prev_funding_outpoint,
6204                                                                                         htlc_id: prev_htlc_id,
6205                                                                                         incoming_packet_shared_secret: forward_info.incoming_shared_secret,
6206                                                                                         phantom_shared_secret: None,
6207                                                                                 });
6208
6209                                                                                 failed_intercept_forwards.push((htlc_source, forward_info.payment_hash,
6210                                                                                                 HTLCFailReason::from_failure_code(0x4000 | 10),
6211                                                                                                 HTLCDestination::InvalidForward { requested_forward_scid: scid },
6212                                                                                 ));
6213                                                                         }
6214                                                                 }
6215                                                         } else {
6216                                                                 // We don't want to generate a PendingHTLCsForwardable event if only intercepted
6217                                                                 // payments are being processed.
6218                                                                 if forward_htlcs_empty {
6219                                                                         push_forward_event = true;
6220                                                                 }
6221                                                                 entry.insert(vec!(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
6222                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info })));
6223                                                         }
6224                                                 }
6225                                         }
6226                                 }
6227                         }
6228
6229                         for (htlc_source, payment_hash, failure_reason, destination) in failed_intercept_forwards.drain(..) {
6230                                 self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
6231                         }
6232
6233                         if !new_intercept_events.is_empty() {
6234                                 let mut events = self.pending_events.lock().unwrap();
6235                                 events.append(&mut new_intercept_events);
6236                         }
6237                         if push_forward_event { self.push_pending_forwards_ev() }
6238                 }
6239         }
6240
6241         fn push_pending_forwards_ev(&self) {
6242                 let mut pending_events = self.pending_events.lock().unwrap();
6243                 let is_processing_events = self.pending_events_processor.load(Ordering::Acquire);
6244                 let num_forward_events = pending_events.iter().filter(|(ev, _)|
6245                         if let events::Event::PendingHTLCsForwardable { .. } = ev { true } else { false }
6246                 ).count();
6247                 // We only want to push a PendingHTLCsForwardable event if no others are queued. Processing
6248                 // events is done in batches and they are not removed until we're done processing each
6249                 // batch. Since handling a `PendingHTLCsForwardable` event will call back into the
6250                 // `ChannelManager`, we'll still see the original forwarding event not removed. Phantom
6251                 // payments will need an additional forwarding event before being claimed to make them look
6252                 // real by taking more time.
6253                 if (is_processing_events && num_forward_events <= 1) || num_forward_events < 1 {
6254                         pending_events.push_back((Event::PendingHTLCsForwardable {
6255                                 time_forwardable: Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS),
6256                         }, None));
6257                 }
6258         }
6259
6260         /// Checks whether [`ChannelMonitorUpdate`]s generated by the receipt of a remote
6261         /// [`msgs::RevokeAndACK`] should be held for the given channel until some other action
6262         /// completes. Note that this needs to happen in the same [`PeerState`] mutex as any release of
6263         /// the [`ChannelMonitorUpdate`] in question.
6264         fn raa_monitor_updates_held(&self,
6265                 actions_blocking_raa_monitor_updates: &BTreeMap<ChannelId, Vec<RAAMonitorUpdateBlockingAction>>,
6266                 channel_funding_outpoint: OutPoint, counterparty_node_id: PublicKey
6267         ) -> bool {
6268                 actions_blocking_raa_monitor_updates
6269                         .get(&channel_funding_outpoint.to_channel_id()).map(|v| !v.is_empty()).unwrap_or(false)
6270                 || self.pending_events.lock().unwrap().iter().any(|(_, action)| {
6271                         action == &Some(EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
6272                                 channel_funding_outpoint,
6273                                 counterparty_node_id,
6274                         })
6275                 })
6276         }
6277
6278         fn internal_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) -> Result<(), MsgHandleErrInternal> {
6279                 let (htlcs_to_fail, res) = {
6280                         let per_peer_state = self.per_peer_state.read().unwrap();
6281                         let mut peer_state_lock = per_peer_state.get(counterparty_node_id)
6282                                 .ok_or_else(|| {
6283                                         debug_assert!(false);
6284                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6285                                 }).map(|mtx| mtx.lock().unwrap())?;
6286                         let peer_state = &mut *peer_state_lock;
6287                         match peer_state.channel_by_id.entry(msg.channel_id) {
6288                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6289                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6290                                                 let funding_txo_opt = chan.context.get_funding_txo();
6291                                                 let mon_update_blocked = if let Some(funding_txo) = funding_txo_opt {
6292                                                         self.raa_monitor_updates_held(
6293                                                                 &peer_state.actions_blocking_raa_monitor_updates, funding_txo,
6294                                                                 *counterparty_node_id)
6295                                                 } else { false };
6296                                                 let (htlcs_to_fail, monitor_update_opt) = try_chan_phase_entry!(self,
6297                                                         chan.revoke_and_ack(&msg, &self.fee_estimator, &self.logger, mon_update_blocked), chan_phase_entry);
6298                                                 let res = if let Some(monitor_update) = monitor_update_opt {
6299                                                         let funding_txo = funding_txo_opt
6300                                                                 .expect("Funding outpoint must have been set for RAA handling to succeed");
6301                                                         handle_new_monitor_update!(self, funding_txo, monitor_update,
6302                                                                 peer_state_lock, peer_state, per_peer_state, chan_phase_entry).map(|_| ())
6303                                                 } else { Ok(()) };
6304                                                 (htlcs_to_fail, res)
6305                                         } else {
6306                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6307                                                         "Got a revoke_and_ack message for an unfunded channel!".into())), chan_phase_entry);
6308                                         }
6309                                 },
6310                                 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))
6311                         }
6312                 };
6313                 self.fail_holding_cell_htlcs(htlcs_to_fail, msg.channel_id, counterparty_node_id);
6314                 res
6315         }
6316
6317         fn internal_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) -> Result<(), MsgHandleErrInternal> {
6318                 let per_peer_state = self.per_peer_state.read().unwrap();
6319                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6320                         .ok_or_else(|| {
6321                                 debug_assert!(false);
6322                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6323                         })?;
6324                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6325                 let peer_state = &mut *peer_state_lock;
6326                 match peer_state.channel_by_id.entry(msg.channel_id) {
6327                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6328                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6329                                         try_chan_phase_entry!(self, chan.update_fee(&self.fee_estimator, &msg, &self.logger), chan_phase_entry);
6330                                 } else {
6331                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6332                                                 "Got an update_fee message for an unfunded channel!".into())), chan_phase_entry);
6333                                 }
6334                         },
6335                         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))
6336                 }
6337                 Ok(())
6338         }
6339
6340         fn internal_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) -> Result<(), MsgHandleErrInternal> {
6341                 let per_peer_state = self.per_peer_state.read().unwrap();
6342                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6343                         .ok_or_else(|| {
6344                                 debug_assert!(false);
6345                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6346                         })?;
6347                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6348                 let peer_state = &mut *peer_state_lock;
6349                 match peer_state.channel_by_id.entry(msg.channel_id) {
6350                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6351                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6352                                         if !chan.context.is_usable() {
6353                                                 return Err(MsgHandleErrInternal::from_no_close(LightningError{err: "Got an announcement_signatures before we were ready for it".to_owned(), action: msgs::ErrorAction::IgnoreError}));
6354                                         }
6355
6356                                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
6357                                                 msg: try_chan_phase_entry!(self, chan.announcement_signatures(
6358                                                         &self.node_signer, self.genesis_hash.clone(), self.best_block.read().unwrap().height(),
6359                                                         msg, &self.default_configuration
6360                                                 ), chan_phase_entry),
6361                                                 // Note that announcement_signatures fails if the channel cannot be announced,
6362                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
6363                                                 update_msg: Some(self.get_channel_update_for_broadcast(chan).unwrap()),
6364                                         });
6365                                 } else {
6366                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6367                                                 "Got an announcement_signatures message for an unfunded channel!".into())), chan_phase_entry);
6368                                 }
6369                         },
6370                         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))
6371                 }
6372                 Ok(())
6373         }
6374
6375         /// Returns DoPersist if anything changed, otherwise either SkipPersistNoEvents or an Err.
6376         fn internal_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) -> Result<NotifyOption, MsgHandleErrInternal> {
6377                 let (chan_counterparty_node_id, chan_id) = match self.short_to_chan_info.read().unwrap().get(&msg.contents.short_channel_id) {
6378                         Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
6379                         None => {
6380                                 // It's not a local channel
6381                                 return Ok(NotifyOption::SkipPersistNoEvents)
6382                         }
6383                 };
6384                 let per_peer_state = self.per_peer_state.read().unwrap();
6385                 let peer_state_mutex_opt = per_peer_state.get(&chan_counterparty_node_id);
6386                 if peer_state_mutex_opt.is_none() {
6387                         return Ok(NotifyOption::SkipPersistNoEvents)
6388                 }
6389                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
6390                 let peer_state = &mut *peer_state_lock;
6391                 match peer_state.channel_by_id.entry(chan_id) {
6392                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6393                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6394                                         if chan.context.get_counterparty_node_id() != *counterparty_node_id {
6395                                                 if chan.context.should_announce() {
6396                                                         // If the announcement is about a channel of ours which is public, some
6397                                                         // other peer may simply be forwarding all its gossip to us. Don't provide
6398                                                         // a scary-looking error message and return Ok instead.
6399                                                         return Ok(NotifyOption::SkipPersistNoEvents);
6400                                                 }
6401                                                 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));
6402                                         }
6403                                         let were_node_one = self.get_our_node_id().serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
6404                                         let msg_from_node_one = msg.contents.flags & 1 == 0;
6405                                         if were_node_one == msg_from_node_one {
6406                                                 return Ok(NotifyOption::SkipPersistNoEvents);
6407                                         } else {
6408                                                 log_debug!(self.logger, "Received channel_update for channel {}.", chan_id);
6409                                                 try_chan_phase_entry!(self, chan.channel_update(&msg), chan_phase_entry);
6410                                         }
6411                                 } else {
6412                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6413                                                 "Got a channel_update for an unfunded channel!".into())), chan_phase_entry);
6414                                 }
6415                         },
6416                         hash_map::Entry::Vacant(_) => return Ok(NotifyOption::SkipPersistNoEvents)
6417                 }
6418                 Ok(NotifyOption::DoPersist)
6419         }
6420
6421         fn internal_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) -> Result<(), MsgHandleErrInternal> {
6422                 let htlc_forwards;
6423                 let need_lnd_workaround = {
6424                         let per_peer_state = self.per_peer_state.read().unwrap();
6425
6426                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6427                                 .ok_or_else(|| {
6428                                         debug_assert!(false);
6429                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6430                                 })?;
6431                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6432                         let peer_state = &mut *peer_state_lock;
6433                         match peer_state.channel_by_id.entry(msg.channel_id) {
6434                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6435                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6436                                                 // Currently, we expect all holding cell update_adds to be dropped on peer
6437                                                 // disconnect, so Channel's reestablish will never hand us any holding cell
6438                                                 // freed HTLCs to fail backwards. If in the future we no longer drop pending
6439                                                 // add-HTLCs on disconnect, we may be handed HTLCs to fail backwards here.
6440                                                 let responses = try_chan_phase_entry!(self, chan.channel_reestablish(
6441                                                         msg, &self.logger, &self.node_signer, self.genesis_hash,
6442                                                         &self.default_configuration, &*self.best_block.read().unwrap()), chan_phase_entry);
6443                                                 let mut channel_update = None;
6444                                                 if let Some(msg) = responses.shutdown_msg {
6445                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
6446                                                                 node_id: counterparty_node_id.clone(),
6447                                                                 msg,
6448                                                         });
6449                                                 } else if chan.context.is_usable() {
6450                                                         // If the channel is in a usable state (ie the channel is not being shut
6451                                                         // down), send a unicast channel_update to our counterparty to make sure
6452                                                         // they have the latest channel parameters.
6453                                                         if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
6454                                                                 channel_update = Some(events::MessageSendEvent::SendChannelUpdate {
6455                                                                         node_id: chan.context.get_counterparty_node_id(),
6456                                                                         msg,
6457                                                                 });
6458                                                         }
6459                                                 }
6460                                                 let need_lnd_workaround = chan.context.workaround_lnd_bug_4006.take();
6461                                                 htlc_forwards = self.handle_channel_resumption(
6462                                                         &mut peer_state.pending_msg_events, chan, responses.raa, responses.commitment_update, responses.order,
6463                                                         Vec::new(), None, responses.channel_ready, responses.announcement_sigs);
6464                                                 if let Some(upd) = channel_update {
6465                                                         peer_state.pending_msg_events.push(upd);
6466                                                 }
6467                                                 need_lnd_workaround
6468                                         } else {
6469                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6470                                                         "Got a channel_reestablish message for an unfunded channel!".into())), chan_phase_entry);
6471                                         }
6472                                 },
6473                                 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))
6474                         }
6475                 };
6476
6477                 if let Some(forwards) = htlc_forwards {
6478                         self.forward_htlcs(&mut [forwards][..]);
6479                 }
6480
6481                 if let Some(channel_ready_msg) = need_lnd_workaround {
6482                         self.internal_channel_ready(counterparty_node_id, &channel_ready_msg)?;
6483                 }
6484                 Ok(())
6485         }
6486
6487         /// Process pending events from the [`chain::Watch`], returning whether any events were processed.
6488         fn process_pending_monitor_events(&self) -> bool {
6489                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
6490
6491                 let mut failed_channels = Vec::new();
6492                 let mut pending_monitor_events = self.chain_monitor.release_pending_monitor_events();
6493                 let has_pending_monitor_events = !pending_monitor_events.is_empty();
6494                 for (funding_outpoint, mut monitor_events, counterparty_node_id) in pending_monitor_events.drain(..) {
6495                         for monitor_event in monitor_events.drain(..) {
6496                                 match monitor_event {
6497                                         MonitorEvent::HTLCEvent(htlc_update) => {
6498                                                 if let Some(preimage) = htlc_update.payment_preimage {
6499                                                         log_trace!(self.logger, "Claiming HTLC with preimage {} from our monitor", &preimage);
6500                                                         self.claim_funds_internal(htlc_update.source, preimage, htlc_update.htlc_value_satoshis.map(|v| v * 1000), true, funding_outpoint);
6501                                                 } else {
6502                                                         log_trace!(self.logger, "Failing HTLC with hash {} from our monitor", &htlc_update.payment_hash);
6503                                                         let receiver = HTLCDestination::NextHopChannel { node_id: counterparty_node_id, channel_id: funding_outpoint.to_channel_id() };
6504                                                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
6505                                                         self.fail_htlc_backwards_internal(&htlc_update.source, &htlc_update.payment_hash, &reason, receiver);
6506                                                 }
6507                                         },
6508                                         MonitorEvent::CommitmentTxConfirmed(funding_outpoint) |
6509                                         MonitorEvent::UpdateFailed(funding_outpoint) => {
6510                                                 let counterparty_node_id_opt = match counterparty_node_id {
6511                                                         Some(cp_id) => Some(cp_id),
6512                                                         None => {
6513                                                                 // TODO: Once we can rely on the counterparty_node_id from the
6514                                                                 // monitor event, this and the id_to_peer map should be removed.
6515                                                                 let id_to_peer = self.id_to_peer.lock().unwrap();
6516                                                                 id_to_peer.get(&funding_outpoint.to_channel_id()).cloned()
6517                                                         }
6518                                                 };
6519                                                 if let Some(counterparty_node_id) = counterparty_node_id_opt {
6520                                                         let per_peer_state = self.per_peer_state.read().unwrap();
6521                                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
6522                                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6523                                                                 let peer_state = &mut *peer_state_lock;
6524                                                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6525                                                                 if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(funding_outpoint.to_channel_id()) {
6526                                                                         if let ChannelPhase::Funded(mut chan) = remove_channel_phase!(self, chan_phase_entry) {
6527                                                                                 failed_channels.push(chan.context.force_shutdown(false));
6528                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6529                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6530                                                                                                 msg: update
6531                                                                                         });
6532                                                                                 }
6533                                                                                 let reason = if let MonitorEvent::UpdateFailed(_) = monitor_event {
6534                                                                                         ClosureReason::ProcessingError { err: "Failed to persist ChannelMonitor update during chain sync".to_string() }
6535                                                                                 } else {
6536                                                                                         ClosureReason::CommitmentTxConfirmed
6537                                                                                 };
6538                                                                                 self.issue_channel_close_events(&chan.context, reason);
6539                                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
6540                                                                                         node_id: chan.context.get_counterparty_node_id(),
6541                                                                                         action: msgs::ErrorAction::SendErrorMessage {
6542                                                                                                 msg: msgs::ErrorMessage { channel_id: chan.context.channel_id(), data: "Channel force-closed".to_owned() }
6543                                                                                         },
6544                                                                                 });
6545                                                                         }
6546                                                                 }
6547                                                         }
6548                                                 }
6549                                         },
6550                                         MonitorEvent::Completed { funding_txo, monitor_update_id } => {
6551                                                 self.channel_monitor_updated(&funding_txo, monitor_update_id, counterparty_node_id.as_ref());
6552                                         },
6553                                 }
6554                         }
6555                 }
6556
6557                 for failure in failed_channels.drain(..) {
6558                         self.finish_force_close_channel(failure);
6559                 }
6560
6561                 has_pending_monitor_events
6562         }
6563
6564         /// In chanmon_consistency_target, we'd like to be able to restore monitor updating without
6565         /// handling all pending events (i.e. not PendingHTLCsForwardable). Thus, we expose monitor
6566         /// update events as a separate process method here.
6567         #[cfg(fuzzing)]
6568         pub fn process_monitor_events(&self) {
6569                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6570                 self.process_pending_monitor_events();
6571         }
6572
6573         /// Check the holding cell in each channel and free any pending HTLCs in them if possible.
6574         /// Returns whether there were any updates such as if pending HTLCs were freed or a monitor
6575         /// update was applied.
6576         fn check_free_holding_cells(&self) -> bool {
6577                 let mut has_monitor_update = false;
6578                 let mut failed_htlcs = Vec::new();
6579                 let mut handle_errors = Vec::new();
6580
6581                 // Walk our list of channels and find any that need to update. Note that when we do find an
6582                 // update, if it includes actions that must be taken afterwards, we have to drop the
6583                 // per-peer state lock as well as the top level per_peer_state lock. Thus, we loop until we
6584                 // manage to go through all our peers without finding a single channel to update.
6585                 'peer_loop: loop {
6586                         let per_peer_state = self.per_peer_state.read().unwrap();
6587                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6588                                 'chan_loop: loop {
6589                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6590                                         let peer_state: &mut PeerState<_> = &mut *peer_state_lock;
6591                                         for (channel_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
6592                                                 |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
6593                                         ) {
6594                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
6595                                                 let funding_txo = chan.context.get_funding_txo();
6596                                                 let (monitor_opt, holding_cell_failed_htlcs) =
6597                                                         chan.maybe_free_holding_cell_htlcs(&self.fee_estimator, &self.logger);
6598                                                 if !holding_cell_failed_htlcs.is_empty() {
6599                                                         failed_htlcs.push((holding_cell_failed_htlcs, *channel_id, counterparty_node_id));
6600                                                 }
6601                                                 if let Some(monitor_update) = monitor_opt {
6602                                                         has_monitor_update = true;
6603
6604                                                         let channel_id: ChannelId = *channel_id;
6605                                                         let res = handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update,
6606                                                                 peer_state_lock, peer_state, per_peer_state, chan, MANUALLY_REMOVING,
6607                                                                 peer_state.channel_by_id.remove(&channel_id));
6608                                                         if res.is_err() {
6609                                                                 handle_errors.push((counterparty_node_id, res));
6610                                                         }
6611                                                         continue 'peer_loop;
6612                                                 }
6613                                         }
6614                                         break 'chan_loop;
6615                                 }
6616                         }
6617                         break 'peer_loop;
6618                 }
6619
6620                 let has_update = has_monitor_update || !failed_htlcs.is_empty() || !handle_errors.is_empty();
6621                 for (failures, channel_id, counterparty_node_id) in failed_htlcs.drain(..) {
6622                         self.fail_holding_cell_htlcs(failures, channel_id, &counterparty_node_id);
6623                 }
6624
6625                 for (counterparty_node_id, err) in handle_errors.drain(..) {
6626                         let _ = handle_error!(self, err, counterparty_node_id);
6627                 }
6628
6629                 has_update
6630         }
6631
6632         /// Check whether any channels have finished removing all pending updates after a shutdown
6633         /// exchange and can now send a closing_signed.
6634         /// Returns whether any closing_signed messages were generated.
6635         fn maybe_generate_initial_closing_signed(&self) -> bool {
6636                 let mut handle_errors: Vec<(PublicKey, Result<(), _>)> = Vec::new();
6637                 let mut has_update = false;
6638                 {
6639                         let per_peer_state = self.per_peer_state.read().unwrap();
6640
6641                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6642                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6643                                 let peer_state = &mut *peer_state_lock;
6644                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6645                                 peer_state.channel_by_id.retain(|channel_id, phase| {
6646                                         match phase {
6647                                                 ChannelPhase::Funded(chan) => {
6648                                                         match chan.maybe_propose_closing_signed(&self.fee_estimator, &self.logger) {
6649                                                                 Ok((msg_opt, tx_opt)) => {
6650                                                                         if let Some(msg) = msg_opt {
6651                                                                                 has_update = true;
6652                                                                                 pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
6653                                                                                         node_id: chan.context.get_counterparty_node_id(), msg,
6654                                                                                 });
6655                                                                         }
6656                                                                         if let Some(tx) = tx_opt {
6657                                                                                 // We're done with this channel. We got a closing_signed and sent back
6658                                                                                 // a closing_signed with a closing transaction to broadcast.
6659                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6660                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6661                                                                                                 msg: update
6662                                                                                         });
6663                                                                                 }
6664
6665                                                                                 self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
6666
6667                                                                                 log_info!(self.logger, "Broadcasting {}", log_tx!(tx));
6668                                                                                 self.tx_broadcaster.broadcast_transactions(&[&tx]);
6669                                                                                 update_maps_on_chan_removal!(self, &chan.context);
6670                                                                                 false
6671                                                                         } else { true }
6672                                                                 },
6673                                                                 Err(e) => {
6674                                                                         has_update = true;
6675                                                                         let (close_channel, res) = convert_chan_phase_err!(self, e, chan, channel_id, FUNDED_CHANNEL);
6676                                                                         handle_errors.push((chan.context.get_counterparty_node_id(), Err(res)));
6677                                                                         !close_channel
6678                                                                 }
6679                                                         }
6680                                                 },
6681                                                 _ => true, // Retain unfunded channels if present.
6682                                         }
6683                                 });
6684                         }
6685                 }
6686
6687                 for (counterparty_node_id, err) in handle_errors.drain(..) {
6688                         let _ = handle_error!(self, err, counterparty_node_id);
6689                 }
6690
6691                 has_update
6692         }
6693
6694         /// Handle a list of channel failures during a block_connected or block_disconnected call,
6695         /// pushing the channel monitor update (if any) to the background events queue and removing the
6696         /// Channel object.
6697         fn handle_init_event_channel_failures(&self, mut failed_channels: Vec<ShutdownResult>) {
6698                 for mut failure in failed_channels.drain(..) {
6699                         // Either a commitment transactions has been confirmed on-chain or
6700                         // Channel::block_disconnected detected that the funding transaction has been
6701                         // reorganized out of the main chain.
6702                         // We cannot broadcast our latest local state via monitor update (as
6703                         // Channel::force_shutdown tries to make us do) as we may still be in initialization,
6704                         // so we track the update internally and handle it when the user next calls
6705                         // timer_tick_occurred, guaranteeing we're running normally.
6706                         if let Some((counterparty_node_id, funding_txo, update)) = failure.0.take() {
6707                                 assert_eq!(update.updates.len(), 1);
6708                                 if let ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } = update.updates[0] {
6709                                         assert!(should_broadcast);
6710                                 } else { unreachable!(); }
6711                                 self.pending_background_events.lock().unwrap().push(
6712                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
6713                                                 counterparty_node_id, funding_txo, update
6714                                         });
6715                         }
6716                         self.finish_force_close_channel(failure);
6717                 }
6718         }
6719
6720         /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
6721         /// to pay us.
6722         ///
6723         /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
6724         /// [`PaymentHash`] and [`PaymentPreimage`] for you.
6725         ///
6726         /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentClaimable`], which
6727         /// will have the [`PaymentClaimable::purpose`] be [`PaymentPurpose::InvoicePayment`] with
6728         /// its [`PaymentPurpose::InvoicePayment::payment_preimage`] field filled in. That should then be
6729         /// passed directly to [`claim_funds`].
6730         ///
6731         /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
6732         ///
6733         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
6734         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
6735         ///
6736         /// # Note
6737         ///
6738         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
6739         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
6740         ///
6741         /// Errors if `min_value_msat` is greater than total bitcoin supply.
6742         ///
6743         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
6744         /// on versions of LDK prior to 0.0.114.
6745         ///
6746         /// [`claim_funds`]: Self::claim_funds
6747         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
6748         /// [`PaymentClaimable::purpose`]: events::Event::PaymentClaimable::purpose
6749         /// [`PaymentPurpose::InvoicePayment`]: events::PaymentPurpose::InvoicePayment
6750         /// [`PaymentPurpose::InvoicePayment::payment_preimage`]: events::PaymentPurpose::InvoicePayment::payment_preimage
6751         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
6752         pub fn create_inbound_payment(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32,
6753                 min_final_cltv_expiry_delta: Option<u16>) -> Result<(PaymentHash, PaymentSecret), ()> {
6754                 inbound_payment::create(&self.inbound_payment_key, min_value_msat, invoice_expiry_delta_secs,
6755                         &self.entropy_source, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
6756                         min_final_cltv_expiry_delta)
6757         }
6758
6759         /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
6760         /// stored external to LDK.
6761         ///
6762         /// A [`PaymentClaimable`] event will only be generated if the [`PaymentSecret`] matches a
6763         /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
6764         /// the `min_value_msat` provided here, if one is provided.
6765         ///
6766         /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) should be globally unique, though
6767         /// note that LDK will not stop you from registering duplicate payment hashes for inbound
6768         /// payments.
6769         ///
6770         /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
6771         /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
6772         /// before a [`PaymentClaimable`] event will be generated, ensuring that we do not provide the
6773         /// sender "proof-of-payment" unless they have paid the required amount.
6774         ///
6775         /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
6776         /// in excess of the current time. This should roughly match the expiry time set in the invoice.
6777         /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
6778         /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
6779         /// invoices when no timeout is set.
6780         ///
6781         /// Note that we use block header time to time-out pending inbound payments (with some margin
6782         /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
6783         /// accept a payment and generate a [`PaymentClaimable`] event for some time after the expiry.
6784         /// If you need exact expiry semantics, you should enforce them upon receipt of
6785         /// [`PaymentClaimable`].
6786         ///
6787         /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry_delta`
6788         /// set to at least [`MIN_FINAL_CLTV_EXPIRY_DELTA`].
6789         ///
6790         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
6791         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
6792         ///
6793         /// # Note
6794         ///
6795         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
6796         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
6797         ///
6798         /// Errors if `min_value_msat` is greater than total bitcoin supply.
6799         ///
6800         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
6801         /// on versions of LDK prior to 0.0.114.
6802         ///
6803         /// [`create_inbound_payment`]: Self::create_inbound_payment
6804         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
6805         pub fn create_inbound_payment_for_hash(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>,
6806                 invoice_expiry_delta_secs: u32, min_final_cltv_expiry: Option<u16>) -> Result<PaymentSecret, ()> {
6807                 inbound_payment::create_from_hash(&self.inbound_payment_key, min_value_msat, payment_hash,
6808                         invoice_expiry_delta_secs, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
6809                         min_final_cltv_expiry)
6810         }
6811
6812         /// Gets an LDK-generated payment preimage from a payment hash and payment secret that were
6813         /// previously returned from [`create_inbound_payment`].
6814         ///
6815         /// [`create_inbound_payment`]: Self::create_inbound_payment
6816         pub fn get_payment_preimage(&self, payment_hash: PaymentHash, payment_secret: PaymentSecret) -> Result<PaymentPreimage, APIError> {
6817                 inbound_payment::get_payment_preimage(payment_hash, payment_secret, &self.inbound_payment_key)
6818         }
6819
6820         /// Gets a fake short channel id for use in receiving [phantom node payments]. These fake scids
6821         /// are used when constructing the phantom invoice's route hints.
6822         ///
6823         /// [phantom node payments]: crate::sign::PhantomKeysManager
6824         pub fn get_phantom_scid(&self) -> u64 {
6825                 let best_block_height = self.best_block.read().unwrap().height();
6826                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
6827                 loop {
6828                         let scid_candidate = fake_scid::Namespace::Phantom.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
6829                         // Ensure the generated scid doesn't conflict with a real channel.
6830                         match short_to_chan_info.get(&scid_candidate) {
6831                                 Some(_) => continue,
6832                                 None => return scid_candidate
6833                         }
6834                 }
6835         }
6836
6837         /// Gets route hints for use in receiving [phantom node payments].
6838         ///
6839         /// [phantom node payments]: crate::sign::PhantomKeysManager
6840         pub fn get_phantom_route_hints(&self) -> PhantomRouteHints {
6841                 PhantomRouteHints {
6842                         channels: self.list_usable_channels(),
6843                         phantom_scid: self.get_phantom_scid(),
6844                         real_node_pubkey: self.get_our_node_id(),
6845                 }
6846         }
6847
6848         /// Gets a fake short channel id for use in receiving intercepted payments. These fake scids are
6849         /// used when constructing the route hints for HTLCs intended to be intercepted. See
6850         /// [`ChannelManager::forward_intercepted_htlc`].
6851         ///
6852         /// Note that this method is not guaranteed to return unique values, you may need to call it a few
6853         /// times to get a unique scid.
6854         pub fn get_intercept_scid(&self) -> u64 {
6855                 let best_block_height = self.best_block.read().unwrap().height();
6856                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
6857                 loop {
6858                         let scid_candidate = fake_scid::Namespace::Intercept.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
6859                         // Ensure the generated scid doesn't conflict with a real channel.
6860                         if short_to_chan_info.contains_key(&scid_candidate) { continue }
6861                         return scid_candidate
6862                 }
6863         }
6864
6865         /// Gets inflight HTLC information by processing pending outbound payments that are in
6866         /// our channels. May be used during pathfinding to account for in-use channel liquidity.
6867         pub fn compute_inflight_htlcs(&self) -> InFlightHtlcs {
6868                 let mut inflight_htlcs = InFlightHtlcs::new();
6869
6870                 let per_peer_state = self.per_peer_state.read().unwrap();
6871                 for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6872                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6873                         let peer_state = &mut *peer_state_lock;
6874                         for chan in peer_state.channel_by_id.values().filter_map(
6875                                 |phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }
6876                         ) {
6877                                 for (htlc_source, _) in chan.inflight_htlc_sources() {
6878                                         if let HTLCSource::OutboundRoute { path, .. } = htlc_source {
6879                                                 inflight_htlcs.process_path(path, self.get_our_node_id());
6880                                         }
6881                                 }
6882                         }
6883                 }
6884
6885                 inflight_htlcs
6886         }
6887
6888         #[cfg(any(test, feature = "_test_utils"))]
6889         pub fn get_and_clear_pending_events(&self) -> Vec<events::Event> {
6890                 let events = core::cell::RefCell::new(Vec::new());
6891                 let event_handler = |event: events::Event| events.borrow_mut().push(event);
6892                 self.process_pending_events(&event_handler);
6893                 events.into_inner()
6894         }
6895
6896         #[cfg(feature = "_test_utils")]
6897         pub fn push_pending_event(&self, event: events::Event) {
6898                 let mut events = self.pending_events.lock().unwrap();
6899                 events.push_back((event, None));
6900         }
6901
6902         #[cfg(test)]
6903         pub fn pop_pending_event(&self) -> Option<events::Event> {
6904                 let mut events = self.pending_events.lock().unwrap();
6905                 events.pop_front().map(|(e, _)| e)
6906         }
6907
6908         #[cfg(test)]
6909         pub fn has_pending_payments(&self) -> bool {
6910                 self.pending_outbound_payments.has_pending_payments()
6911         }
6912
6913         #[cfg(test)]
6914         pub fn clear_pending_payments(&self) {
6915                 self.pending_outbound_payments.clear_pending_payments()
6916         }
6917
6918         /// When something which was blocking a channel from updating its [`ChannelMonitor`] (e.g. an
6919         /// [`Event`] being handled) completes, this should be called to restore the channel to normal
6920         /// operation. It will double-check that nothing *else* is also blocking the same channel from
6921         /// making progress and then let any blocked [`ChannelMonitorUpdate`]s fly.
6922         fn handle_monitor_update_release(&self, counterparty_node_id: PublicKey, channel_funding_outpoint: OutPoint, mut completed_blocker: Option<RAAMonitorUpdateBlockingAction>) {
6923                 let mut errors = Vec::new();
6924                 loop {
6925                         let per_peer_state = self.per_peer_state.read().unwrap();
6926                         if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
6927                                 let mut peer_state_lck = peer_state_mtx.lock().unwrap();
6928                                 let peer_state = &mut *peer_state_lck;
6929
6930                                 if let Some(blocker) = completed_blocker.take() {
6931                                         // Only do this on the first iteration of the loop.
6932                                         if let Some(blockers) = peer_state.actions_blocking_raa_monitor_updates
6933                                                 .get_mut(&channel_funding_outpoint.to_channel_id())
6934                                         {
6935                                                 blockers.retain(|iter| iter != &blocker);
6936                                         }
6937                                 }
6938
6939                                 if self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
6940                                         channel_funding_outpoint, counterparty_node_id) {
6941                                         // Check that, while holding the peer lock, we don't have anything else
6942                                         // blocking monitor updates for this channel. If we do, release the monitor
6943                                         // update(s) when those blockers complete.
6944                                         log_trace!(self.logger, "Delaying monitor unlock for channel {} as another channel's mon update needs to complete first",
6945                                                 &channel_funding_outpoint.to_channel_id());
6946                                         break;
6947                                 }
6948
6949                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(channel_funding_outpoint.to_channel_id()) {
6950                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6951                                                 debug_assert_eq!(chan.context.get_funding_txo().unwrap(), channel_funding_outpoint);
6952                                                 if let Some((monitor_update, further_update_exists)) = chan.unblock_next_blocked_monitor_update() {
6953                                                         log_debug!(self.logger, "Unlocking monitor updating for channel {} and updating monitor",
6954                                                                 channel_funding_outpoint.to_channel_id());
6955                                                         if let Err(e) = handle_new_monitor_update!(self, channel_funding_outpoint, monitor_update,
6956                                                                 peer_state_lck, peer_state, per_peer_state, chan_phase_entry)
6957                                                         {
6958                                                                 errors.push((e, counterparty_node_id));
6959                                                         }
6960                                                         if further_update_exists {
6961                                                                 // If there are more `ChannelMonitorUpdate`s to process, restart at the
6962                                                                 // top of the loop.
6963                                                                 continue;
6964                                                         }
6965                                                 } else {
6966                                                         log_trace!(self.logger, "Unlocked monitor updating for channel {} without monitors to update",
6967                                                                 channel_funding_outpoint.to_channel_id());
6968                                                 }
6969                                         }
6970                                 }
6971                         } else {
6972                                 log_debug!(self.logger,
6973                                         "Got a release post-RAA monitor update for peer {} but the channel is gone",
6974                                         log_pubkey!(counterparty_node_id));
6975                         }
6976                         break;
6977                 }
6978                 for (err, counterparty_node_id) in errors {
6979                         let res = Err::<(), _>(err);
6980                         let _ = handle_error!(self, res, counterparty_node_id);
6981                 }
6982         }
6983
6984         fn handle_post_event_actions(&self, actions: Vec<EventCompletionAction>) {
6985                 for action in actions {
6986                         match action {
6987                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
6988                                         channel_funding_outpoint, counterparty_node_id
6989                                 } => {
6990                                         self.handle_monitor_update_release(counterparty_node_id, channel_funding_outpoint, None);
6991                                 }
6992                         }
6993                 }
6994         }
6995
6996         /// Processes any events asynchronously in the order they were generated since the last call
6997         /// using the given event handler.
6998         ///
6999         /// See the trait-level documentation of [`EventsProvider`] for requirements.
7000         pub async fn process_pending_events_async<Future: core::future::Future, H: Fn(Event) -> Future>(
7001                 &self, handler: H
7002         ) {
7003                 let mut ev;
7004                 process_events_body!(self, ev, { handler(ev).await });
7005         }
7006 }
7007
7008 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>
7009 where
7010         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7011         T::Target: BroadcasterInterface,
7012         ES::Target: EntropySource,
7013         NS::Target: NodeSigner,
7014         SP::Target: SignerProvider,
7015         F::Target: FeeEstimator,
7016         R::Target: Router,
7017         L::Target: Logger,
7018 {
7019         /// Returns `MessageSendEvent`s strictly ordered per-peer, in the order they were generated.
7020         /// The returned array will contain `MessageSendEvent`s for different peers if
7021         /// `MessageSendEvent`s to more than one peer exists, but `MessageSendEvent`s to the same peer
7022         /// is always placed next to each other.
7023         ///
7024         /// Note that that while `MessageSendEvent`s are strictly ordered per-peer, the peer order for
7025         /// the chunks of `MessageSendEvent`s for different peers is random. I.e. if the array contains
7026         /// `MessageSendEvent`s  for both `node_a` and `node_b`, the `MessageSendEvent`s for `node_a`
7027         /// will randomly be placed first or last in the returned array.
7028         ///
7029         /// Note that even though `BroadcastChannelAnnouncement` and `BroadcastChannelUpdate`
7030         /// `MessageSendEvent`s are intended to be broadcasted to all peers, they will be pleaced among
7031         /// the `MessageSendEvent`s to the specific peer they were generated under.
7032         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent> {
7033                 let events = RefCell::new(Vec::new());
7034                 PersistenceNotifierGuard::optionally_notify(self, || {
7035                         let mut result = NotifyOption::SkipPersistNoEvents;
7036
7037                         // TODO: This behavior should be documented. It's unintuitive that we query
7038                         // ChannelMonitors when clearing other events.
7039                         if self.process_pending_monitor_events() {
7040                                 result = NotifyOption::DoPersist;
7041                         }
7042
7043                         if self.check_free_holding_cells() {
7044                                 result = NotifyOption::DoPersist;
7045                         }
7046                         if self.maybe_generate_initial_closing_signed() {
7047                                 result = NotifyOption::DoPersist;
7048                         }
7049
7050                         let mut pending_events = Vec::new();
7051                         let per_peer_state = self.per_peer_state.read().unwrap();
7052                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7053                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7054                                 let peer_state = &mut *peer_state_lock;
7055                                 if peer_state.pending_msg_events.len() > 0 {
7056                                         pending_events.append(&mut peer_state.pending_msg_events);
7057                                 }
7058                         }
7059
7060                         if !pending_events.is_empty() {
7061                                 events.replace(pending_events);
7062                         }
7063
7064                         result
7065                 });
7066                 events.into_inner()
7067         }
7068 }
7069
7070 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>
7071 where
7072         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7073         T::Target: BroadcasterInterface,
7074         ES::Target: EntropySource,
7075         NS::Target: NodeSigner,
7076         SP::Target: SignerProvider,
7077         F::Target: FeeEstimator,
7078         R::Target: Router,
7079         L::Target: Logger,
7080 {
7081         /// Processes events that must be periodically handled.
7082         ///
7083         /// An [`EventHandler`] may safely call back to the provider in order to handle an event.
7084         /// However, it must not call [`Writeable::write`] as doing so would result in a deadlock.
7085         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler {
7086                 let mut ev;
7087                 process_events_body!(self, ev, handler.handle_event(ev));
7088         }
7089 }
7090
7091 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>
7092 where
7093         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7094         T::Target: BroadcasterInterface,
7095         ES::Target: EntropySource,
7096         NS::Target: NodeSigner,
7097         SP::Target: SignerProvider,
7098         F::Target: FeeEstimator,
7099         R::Target: Router,
7100         L::Target: Logger,
7101 {
7102         fn filtered_block_connected(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
7103                 {
7104                         let best_block = self.best_block.read().unwrap();
7105                         assert_eq!(best_block.block_hash(), header.prev_blockhash,
7106                                 "Blocks must be connected in chain-order - the connected header must build on the last connected header");
7107                         assert_eq!(best_block.height(), height - 1,
7108                                 "Blocks must be connected in chain-order - the connected block height must be one greater than the previous height");
7109                 }
7110
7111                 self.transactions_confirmed(header, txdata, height);
7112                 self.best_block_updated(header, height);
7113         }
7114
7115         fn block_disconnected(&self, header: &BlockHeader, height: u32) {
7116                 let _persistence_guard =
7117                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7118                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7119                 let new_height = height - 1;
7120                 {
7121                         let mut best_block = self.best_block.write().unwrap();
7122                         assert_eq!(best_block.block_hash(), header.block_hash(),
7123                                 "Blocks must be disconnected in chain-order - the disconnected header must be the last connected header");
7124                         assert_eq!(best_block.height(), height,
7125                                 "Blocks must be disconnected in chain-order - the disconnected block must have the correct height");
7126                         *best_block = BestBlock::new(header.prev_blockhash, new_height)
7127                 }
7128
7129                 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));
7130         }
7131 }
7132
7133 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>
7134 where
7135         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7136         T::Target: BroadcasterInterface,
7137         ES::Target: EntropySource,
7138         NS::Target: NodeSigner,
7139         SP::Target: SignerProvider,
7140         F::Target: FeeEstimator,
7141         R::Target: Router,
7142         L::Target: Logger,
7143 {
7144         fn transactions_confirmed(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
7145                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7146                 // during initialization prior to the chain_monitor being fully configured in some cases.
7147                 // See the docs for `ChannelManagerReadArgs` for more.
7148
7149                 let block_hash = header.block_hash();
7150                 log_trace!(self.logger, "{} transactions included in block {} at height {} provided", txdata.len(), block_hash, height);
7151
7152                 let _persistence_guard =
7153                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7154                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7155                 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)
7156                         .map(|(a, b)| (a, Vec::new(), b)));
7157
7158                 let last_best_block_height = self.best_block.read().unwrap().height();
7159                 if height < last_best_block_height {
7160                         let timestamp = self.highest_seen_timestamp.load(Ordering::Acquire);
7161                         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));
7162                 }
7163         }
7164
7165         fn best_block_updated(&self, header: &BlockHeader, height: u32) {
7166                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7167                 // during initialization prior to the chain_monitor being fully configured in some cases.
7168                 // See the docs for `ChannelManagerReadArgs` for more.
7169
7170                 let block_hash = header.block_hash();
7171                 log_trace!(self.logger, "New best block: {} at height {}", block_hash, height);
7172
7173                 let _persistence_guard =
7174                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7175                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7176                 *self.best_block.write().unwrap() = BestBlock::new(block_hash, height);
7177
7178                 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));
7179
7180                 macro_rules! max_time {
7181                         ($timestamp: expr) => {
7182                                 loop {
7183                                         // Update $timestamp to be the max of its current value and the block
7184                                         // timestamp. This should keep us close to the current time without relying on
7185                                         // having an explicit local time source.
7186                                         // Just in case we end up in a race, we loop until we either successfully
7187                                         // update $timestamp or decide we don't need to.
7188                                         let old_serial = $timestamp.load(Ordering::Acquire);
7189                                         if old_serial >= header.time as usize { break; }
7190                                         if $timestamp.compare_exchange(old_serial, header.time as usize, Ordering::AcqRel, Ordering::Relaxed).is_ok() {
7191                                                 break;
7192                                         }
7193                                 }
7194                         }
7195                 }
7196                 max_time!(self.highest_seen_timestamp);
7197                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
7198                 payment_secrets.retain(|_, inbound_payment| {
7199                         inbound_payment.expiry_time > header.time as u64
7200                 });
7201         }
7202
7203         fn get_relevant_txids(&self) -> Vec<(Txid, Option<BlockHash>)> {
7204                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
7205                 for (_cp_id, peer_state_mutex) in self.per_peer_state.read().unwrap().iter() {
7206                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7207                         let peer_state = &mut *peer_state_lock;
7208                         for chan in peer_state.channel_by_id.values().filter_map(|phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }) {
7209                                 if let (Some(funding_txo), Some(block_hash)) = (chan.context.get_funding_txo(), chan.context.get_funding_tx_confirmed_in()) {
7210                                         res.push((funding_txo.txid, Some(block_hash)));
7211                                 }
7212                         }
7213                 }
7214                 res
7215         }
7216
7217         fn transaction_unconfirmed(&self, txid: &Txid) {
7218                 let _persistence_guard =
7219                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7220                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7221                 self.do_chain_event(None, |channel| {
7222                         if let Some(funding_txo) = channel.context.get_funding_txo() {
7223                                 if funding_txo.txid == *txid {
7224                                         channel.funding_transaction_unconfirmed(&self.logger).map(|()| (None, Vec::new(), None))
7225                                 } else { Ok((None, Vec::new(), None)) }
7226                         } else { Ok((None, Vec::new(), None)) }
7227                 });
7228         }
7229 }
7230
7231 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>
7232 where
7233         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7234         T::Target: BroadcasterInterface,
7235         ES::Target: EntropySource,
7236         NS::Target: NodeSigner,
7237         SP::Target: SignerProvider,
7238         F::Target: FeeEstimator,
7239         R::Target: Router,
7240         L::Target: Logger,
7241 {
7242         /// Calls a function which handles an on-chain event (blocks dis/connected, transactions
7243         /// un/confirmed, etc) on each channel, handling any resulting errors or messages generated by
7244         /// the function.
7245         fn do_chain_event<FN: Fn(&mut Channel<SP>) -> Result<(Option<msgs::ChannelReady>, Vec<(HTLCSource, PaymentHash)>, Option<msgs::AnnouncementSignatures>), ClosureReason>>
7246                         (&self, height_opt: Option<u32>, f: FN) {
7247                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7248                 // during initialization prior to the chain_monitor being fully configured in some cases.
7249                 // See the docs for `ChannelManagerReadArgs` for more.
7250
7251                 let mut failed_channels = Vec::new();
7252                 let mut timed_out_htlcs = Vec::new();
7253                 {
7254                         let per_peer_state = self.per_peer_state.read().unwrap();
7255                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7256                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7257                                 let peer_state = &mut *peer_state_lock;
7258                                 let pending_msg_events = &mut peer_state.pending_msg_events;
7259                                 peer_state.channel_by_id.retain(|_, phase| {
7260                                         match phase {
7261                                                 // Retain unfunded channels.
7262                                                 ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => true,
7263                                                 ChannelPhase::Funded(channel) => {
7264                                                         let res = f(channel);
7265                                                         if let Ok((channel_ready_opt, mut timed_out_pending_htlcs, announcement_sigs)) = res {
7266                                                                 for (source, payment_hash) in timed_out_pending_htlcs.drain(..) {
7267                                                                         let (failure_code, data) = self.get_htlc_inbound_temp_fail_err_and_data(0x1000|14 /* expiry_too_soon */, &channel);
7268                                                                         timed_out_htlcs.push((source, payment_hash, HTLCFailReason::reason(failure_code, data),
7269                                                                                 HTLCDestination::NextHopChannel { node_id: Some(channel.context.get_counterparty_node_id()), channel_id: channel.context.channel_id() }));
7270                                                                 }
7271                                                                 if let Some(channel_ready) = channel_ready_opt {
7272                                                                         send_channel_ready!(self, pending_msg_events, channel, channel_ready);
7273                                                                         if channel.context.is_usable() {
7274                                                                                 log_trace!(self.logger, "Sending channel_ready with private initial channel_update for our counterparty on channel {}", channel.context.channel_id());
7275                                                                                 if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
7276                                                                                         pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
7277                                                                                                 node_id: channel.context.get_counterparty_node_id(),
7278                                                                                                 msg,
7279                                                                                         });
7280                                                                                 }
7281                                                                         } else {
7282                                                                                 log_trace!(self.logger, "Sending channel_ready WITHOUT channel_update for {}", channel.context.channel_id());
7283                                                                         }
7284                                                                 }
7285
7286                                                                 {
7287                                                                         let mut pending_events = self.pending_events.lock().unwrap();
7288                                                                         emit_channel_ready_event!(pending_events, channel);
7289                                                                 }
7290
7291                                                                 if let Some(announcement_sigs) = announcement_sigs {
7292                                                                         log_trace!(self.logger, "Sending announcement_signatures for channel {}", channel.context.channel_id());
7293                                                                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
7294                                                                                 node_id: channel.context.get_counterparty_node_id(),
7295                                                                                 msg: announcement_sigs,
7296                                                                         });
7297                                                                         if let Some(height) = height_opt {
7298                                                                                 if let Some(announcement) = channel.get_signed_channel_announcement(&self.node_signer, self.genesis_hash, height, &self.default_configuration) {
7299                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
7300                                                                                                 msg: announcement,
7301                                                                                                 // Note that announcement_signatures fails if the channel cannot be announced,
7302                                                                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
7303                                                                                                 update_msg: Some(self.get_channel_update_for_broadcast(channel).unwrap()),
7304                                                                                         });
7305                                                                                 }
7306                                                                         }
7307                                                                 }
7308                                                                 if channel.is_our_channel_ready() {
7309                                                                         if let Some(real_scid) = channel.context.get_short_channel_id() {
7310                                                                                 // If we sent a 0conf channel_ready, and now have an SCID, we add it
7311                                                                                 // to the short_to_chan_info map here. Note that we check whether we
7312                                                                                 // can relay using the real SCID at relay-time (i.e.
7313                                                                                 // enforce option_scid_alias then), and if the funding tx is ever
7314                                                                                 // un-confirmed we force-close the channel, ensuring short_to_chan_info
7315                                                                                 // is always consistent.
7316                                                                                 let mut short_to_chan_info = self.short_to_chan_info.write().unwrap();
7317                                                                                 let scid_insert = short_to_chan_info.insert(real_scid, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
7318                                                                                 assert!(scid_insert.is_none() || scid_insert.unwrap() == (channel.context.get_counterparty_node_id(), channel.context.channel_id()),
7319                                                                                         "SCIDs should never collide - ensure you weren't behind by a full {} blocks when creating channels",
7320                                                                                         fake_scid::MAX_SCID_BLOCKS_FROM_NOW);
7321                                                                         }
7322                                                                 }
7323                                                         } else if let Err(reason) = res {
7324                                                                 update_maps_on_chan_removal!(self, &channel.context);
7325                                                                 // It looks like our counterparty went on-chain or funding transaction was
7326                                                                 // reorged out of the main chain. Close the channel.
7327                                                                 failed_channels.push(channel.context.force_shutdown(true));
7328                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&channel) {
7329                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
7330                                                                                 msg: update
7331                                                                         });
7332                                                                 }
7333                                                                 let reason_message = format!("{}", reason);
7334                                                                 self.issue_channel_close_events(&channel.context, reason);
7335                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
7336                                                                         node_id: channel.context.get_counterparty_node_id(),
7337                                                                         action: msgs::ErrorAction::SendErrorMessage { msg: msgs::ErrorMessage {
7338                                                                                 channel_id: channel.context.channel_id(),
7339                                                                                 data: reason_message,
7340                                                                         } },
7341                                                                 });
7342                                                                 return false;
7343                                                         }
7344                                                         true
7345                                                 }
7346                                         }
7347                                 });
7348                         }
7349                 }
7350
7351                 if let Some(height) = height_opt {
7352                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
7353                                 payment.htlcs.retain(|htlc| {
7354                                         // If height is approaching the number of blocks we think it takes us to get
7355                                         // our commitment transaction confirmed before the HTLC expires, plus the
7356                                         // number of blocks we generally consider it to take to do a commitment update,
7357                                         // just give up on it and fail the HTLC.
7358                                         if height >= htlc.cltv_expiry - HTLC_FAIL_BACK_BUFFER {
7359                                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
7360                                                 htlc_msat_height_data.extend_from_slice(&height.to_be_bytes());
7361
7362                                                 timed_out_htlcs.push((HTLCSource::PreviousHopData(htlc.prev_hop.clone()), payment_hash.clone(),
7363                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
7364                                                         HTLCDestination::FailedPayment { payment_hash: payment_hash.clone() }));
7365                                                 false
7366                                         } else { true }
7367                                 });
7368                                 !payment.htlcs.is_empty() // Only retain this entry if htlcs has at least one entry.
7369                         });
7370
7371                         let mut intercepted_htlcs = self.pending_intercepted_htlcs.lock().unwrap();
7372                         intercepted_htlcs.retain(|_, htlc| {
7373                                 if height >= htlc.forward_info.outgoing_cltv_value - HTLC_FAIL_BACK_BUFFER {
7374                                         let prev_hop_data = HTLCSource::PreviousHopData(HTLCPreviousHopData {
7375                                                 short_channel_id: htlc.prev_short_channel_id,
7376                                                 user_channel_id: Some(htlc.prev_user_channel_id),
7377                                                 htlc_id: htlc.prev_htlc_id,
7378                                                 incoming_packet_shared_secret: htlc.forward_info.incoming_shared_secret,
7379                                                 phantom_shared_secret: None,
7380                                                 outpoint: htlc.prev_funding_outpoint,
7381                                         });
7382
7383                                         let requested_forward_scid /* intercept scid */ = match htlc.forward_info.routing {
7384                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
7385                                                 _ => unreachable!(),
7386                                         };
7387                                         timed_out_htlcs.push((prev_hop_data, htlc.forward_info.payment_hash,
7388                                                         HTLCFailReason::from_failure_code(0x2000 | 2),
7389                                                         HTLCDestination::InvalidForward { requested_forward_scid }));
7390                                         log_trace!(self.logger, "Timing out intercepted HTLC with requested forward scid {}", requested_forward_scid);
7391                                         false
7392                                 } else { true }
7393                         });
7394                 }
7395
7396                 self.handle_init_event_channel_failures(failed_channels);
7397
7398                 for (source, payment_hash, reason, destination) in timed_out_htlcs.drain(..) {
7399                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, destination);
7400                 }
7401         }
7402
7403         /// Gets a [`Future`] that completes when this [`ChannelManager`] may need to be persisted or
7404         /// may have events that need processing.
7405         ///
7406         /// In order to check if this [`ChannelManager`] needs persisting, call
7407         /// [`Self::get_and_clear_needs_persistence`].
7408         ///
7409         /// Note that callbacks registered on the [`Future`] MUST NOT call back into this
7410         /// [`ChannelManager`] and should instead register actions to be taken later.
7411         pub fn get_event_or_persistence_needed_future(&self) -> Future {
7412                 self.event_persist_notifier.get_future()
7413         }
7414
7415         /// Returns true if this [`ChannelManager`] needs to be persisted.
7416         pub fn get_and_clear_needs_persistence(&self) -> bool {
7417                 self.needs_persist_flag.swap(false, Ordering::AcqRel)
7418         }
7419
7420         #[cfg(any(test, feature = "_test_utils"))]
7421         pub fn get_event_or_persist_condvar_value(&self) -> bool {
7422                 self.event_persist_notifier.notify_pending()
7423         }
7424
7425         /// Gets the latest best block which was connected either via the [`chain::Listen`] or
7426         /// [`chain::Confirm`] interfaces.
7427         pub fn current_best_block(&self) -> BestBlock {
7428                 self.best_block.read().unwrap().clone()
7429         }
7430
7431         /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
7432         /// [`ChannelManager`].
7433         pub fn node_features(&self) -> NodeFeatures {
7434                 provided_node_features(&self.default_configuration)
7435         }
7436
7437         /// Fetches the set of [`Bolt11InvoiceFeatures`] flags which are provided by or required by
7438         /// [`ChannelManager`].
7439         ///
7440         /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
7441         /// or not. Thus, this method is not public.
7442         #[cfg(any(feature = "_test_utils", test))]
7443         pub fn invoice_features(&self) -> Bolt11InvoiceFeatures {
7444                 provided_invoice_features(&self.default_configuration)
7445         }
7446
7447         /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
7448         /// [`ChannelManager`].
7449         pub fn channel_features(&self) -> ChannelFeatures {
7450                 provided_channel_features(&self.default_configuration)
7451         }
7452
7453         /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
7454         /// [`ChannelManager`].
7455         pub fn channel_type_features(&self) -> ChannelTypeFeatures {
7456                 provided_channel_type_features(&self.default_configuration)
7457         }
7458
7459         /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
7460         /// [`ChannelManager`].
7461         pub fn init_features(&self) -> InitFeatures {
7462                 provided_init_features(&self.default_configuration)
7463         }
7464 }
7465
7466 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
7467         ChannelMessageHandler for ChannelManager<M, T, ES, NS, SP, F, R, L>
7468 where
7469         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7470         T::Target: BroadcasterInterface,
7471         ES::Target: EntropySource,
7472         NS::Target: NodeSigner,
7473         SP::Target: SignerProvider,
7474         F::Target: FeeEstimator,
7475         R::Target: Router,
7476         L::Target: Logger,
7477 {
7478         fn handle_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) {
7479                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7480                 let _ = handle_error!(self, self.internal_open_channel(counterparty_node_id, msg), *counterparty_node_id);
7481         }
7482
7483         fn handle_open_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannelV2) {
7484                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7485                         "Dual-funded channels not supported".to_owned(),
7486                          msg.temporary_channel_id.clone())), *counterparty_node_id);
7487         }
7488
7489         fn handle_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) {
7490                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7491                 let _ = handle_error!(self, self.internal_accept_channel(counterparty_node_id, msg), *counterparty_node_id);
7492         }
7493
7494         fn handle_accept_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannelV2) {
7495                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7496                         "Dual-funded channels not supported".to_owned(),
7497                          msg.temporary_channel_id.clone())), *counterparty_node_id);
7498         }
7499
7500         fn handle_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) {
7501                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7502                 let _ = handle_error!(self, self.internal_funding_created(counterparty_node_id, msg), *counterparty_node_id);
7503         }
7504
7505         fn handle_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) {
7506                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7507                 let _ = handle_error!(self, self.internal_funding_signed(counterparty_node_id, msg), *counterparty_node_id);
7508         }
7509
7510         fn handle_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) {
7511                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7512                 let _ = handle_error!(self, self.internal_channel_ready(counterparty_node_id, msg), *counterparty_node_id);
7513         }
7514
7515         fn handle_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) {
7516                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7517                 let _ = handle_error!(self, self.internal_shutdown(counterparty_node_id, msg), *counterparty_node_id);
7518         }
7519
7520         fn handle_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) {
7521                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7522                 let _ = handle_error!(self, self.internal_closing_signed(counterparty_node_id, msg), *counterparty_node_id);
7523         }
7524
7525         fn handle_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) {
7526                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7527                 let _ = handle_error!(self, self.internal_update_add_htlc(counterparty_node_id, msg), *counterparty_node_id);
7528         }
7529
7530         fn handle_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) {
7531                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7532                 let _ = handle_error!(self, self.internal_update_fulfill_htlc(counterparty_node_id, msg), *counterparty_node_id);
7533         }
7534
7535         fn handle_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) {
7536                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7537                 let _ = handle_error!(self, self.internal_update_fail_htlc(counterparty_node_id, msg), *counterparty_node_id);
7538         }
7539
7540         fn handle_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) {
7541                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7542                 let _ = handle_error!(self, self.internal_update_fail_malformed_htlc(counterparty_node_id, msg), *counterparty_node_id);
7543         }
7544
7545         fn handle_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) {
7546                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7547                 let _ = handle_error!(self, self.internal_commitment_signed(counterparty_node_id, msg), *counterparty_node_id);
7548         }
7549
7550         fn handle_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) {
7551                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7552                 let _ = handle_error!(self, self.internal_revoke_and_ack(counterparty_node_id, msg), *counterparty_node_id);
7553         }
7554
7555         fn handle_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) {
7556                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7557                 let _ = handle_error!(self, self.internal_update_fee(counterparty_node_id, msg), *counterparty_node_id);
7558         }
7559
7560         fn handle_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) {
7561                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7562                 let _ = handle_error!(self, self.internal_announcement_signatures(counterparty_node_id, msg), *counterparty_node_id);
7563         }
7564
7565         fn handle_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) {
7566                 PersistenceNotifierGuard::optionally_notify(self, || {
7567                         if let Ok(persist) = handle_error!(self, self.internal_channel_update(counterparty_node_id, msg), *counterparty_node_id) {
7568                                 persist
7569                         } else {
7570                                 NotifyOption::SkipPersistNoEvents
7571                         }
7572                 });
7573         }
7574
7575         fn handle_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) {
7576                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7577                 let _ = handle_error!(self, self.internal_channel_reestablish(counterparty_node_id, msg), *counterparty_node_id);
7578         }
7579
7580         fn peer_disconnected(&self, counterparty_node_id: &PublicKey) {
7581                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7582                 let mut failed_channels = Vec::new();
7583                 let mut per_peer_state = self.per_peer_state.write().unwrap();
7584                 let remove_peer = {
7585                         log_debug!(self.logger, "Marking channels with {} disconnected and generating channel_updates.",
7586                                 log_pubkey!(counterparty_node_id));
7587                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
7588                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7589                                 let peer_state = &mut *peer_state_lock;
7590                                 let pending_msg_events = &mut peer_state.pending_msg_events;
7591                                 peer_state.channel_by_id.retain(|_, phase| {
7592                                         let context = match phase {
7593                                                 ChannelPhase::Funded(chan) => {
7594                                                         chan.remove_uncommitted_htlcs_and_mark_paused(&self.logger);
7595                                                         // We only retain funded channels that are not shutdown.
7596                                                         if !chan.is_shutdown() {
7597                                                                 return true;
7598                                                         }
7599                                                         &chan.context
7600                                                 },
7601                                                 // Unfunded channels will always be removed.
7602                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
7603                                                         &chan.context
7604                                                 },
7605                                                 ChannelPhase::UnfundedInboundV1(chan) => {
7606                                                         &chan.context
7607                                                 },
7608                                         };
7609                                         // Clean up for removal.
7610                                         update_maps_on_chan_removal!(self, &context);
7611                                         self.issue_channel_close_events(&context, ClosureReason::DisconnectedPeer);
7612                                         false
7613                                 });
7614                                 // Note that we don't bother generating any events for pre-accept channels -
7615                                 // they're not considered "channels" yet from the PoV of our events interface.
7616                                 peer_state.inbound_channel_request_by_id.clear();
7617                                 pending_msg_events.retain(|msg| {
7618                                         match msg {
7619                                                 // V1 Channel Establishment
7620                                                 &events::MessageSendEvent::SendAcceptChannel { .. } => false,
7621                                                 &events::MessageSendEvent::SendOpenChannel { .. } => false,
7622                                                 &events::MessageSendEvent::SendFundingCreated { .. } => false,
7623                                                 &events::MessageSendEvent::SendFundingSigned { .. } => false,
7624                                                 // V2 Channel Establishment
7625                                                 &events::MessageSendEvent::SendAcceptChannelV2 { .. } => false,
7626                                                 &events::MessageSendEvent::SendOpenChannelV2 { .. } => false,
7627                                                 // Common Channel Establishment
7628                                                 &events::MessageSendEvent::SendChannelReady { .. } => false,
7629                                                 &events::MessageSendEvent::SendAnnouncementSignatures { .. } => false,
7630                                                 // Interactive Transaction Construction
7631                                                 &events::MessageSendEvent::SendTxAddInput { .. } => false,
7632                                                 &events::MessageSendEvent::SendTxAddOutput { .. } => false,
7633                                                 &events::MessageSendEvent::SendTxRemoveInput { .. } => false,
7634                                                 &events::MessageSendEvent::SendTxRemoveOutput { .. } => false,
7635                                                 &events::MessageSendEvent::SendTxComplete { .. } => false,
7636                                                 &events::MessageSendEvent::SendTxSignatures { .. } => false,
7637                                                 &events::MessageSendEvent::SendTxInitRbf { .. } => false,
7638                                                 &events::MessageSendEvent::SendTxAckRbf { .. } => false,
7639                                                 &events::MessageSendEvent::SendTxAbort { .. } => false,
7640                                                 // Channel Operations
7641                                                 &events::MessageSendEvent::UpdateHTLCs { .. } => false,
7642                                                 &events::MessageSendEvent::SendRevokeAndACK { .. } => false,
7643                                                 &events::MessageSendEvent::SendClosingSigned { .. } => false,
7644                                                 &events::MessageSendEvent::SendShutdown { .. } => false,
7645                                                 &events::MessageSendEvent::SendChannelReestablish { .. } => false,
7646                                                 &events::MessageSendEvent::HandleError { .. } => false,
7647                                                 // Gossip
7648                                                 &events::MessageSendEvent::SendChannelAnnouncement { .. } => false,
7649                                                 &events::MessageSendEvent::BroadcastChannelAnnouncement { .. } => true,
7650                                                 &events::MessageSendEvent::BroadcastChannelUpdate { .. } => true,
7651                                                 &events::MessageSendEvent::BroadcastNodeAnnouncement { .. } => true,
7652                                                 &events::MessageSendEvent::SendChannelUpdate { .. } => false,
7653                                                 &events::MessageSendEvent::SendChannelRangeQuery { .. } => false,
7654                                                 &events::MessageSendEvent::SendShortIdsQuery { .. } => false,
7655                                                 &events::MessageSendEvent::SendReplyChannelRange { .. } => false,
7656                                                 &events::MessageSendEvent::SendGossipTimestampFilter { .. } => false,
7657                                         }
7658                                 });
7659                                 debug_assert!(peer_state.is_connected, "A disconnected peer cannot disconnect");
7660                                 peer_state.is_connected = false;
7661                                 peer_state.ok_to_remove(true)
7662                         } else { debug_assert!(false, "Unconnected peer disconnected"); true }
7663                 };
7664                 if remove_peer {
7665                         per_peer_state.remove(counterparty_node_id);
7666                 }
7667                 mem::drop(per_peer_state);
7668
7669                 for failure in failed_channels.drain(..) {
7670                         self.finish_force_close_channel(failure);
7671                 }
7672         }
7673
7674         fn peer_connected(&self, counterparty_node_id: &PublicKey, init_msg: &msgs::Init, inbound: bool) -> Result<(), ()> {
7675                 if !init_msg.features.supports_static_remote_key() {
7676                         log_debug!(self.logger, "Peer {} does not support static remote key, disconnecting", log_pubkey!(counterparty_node_id));
7677                         return Err(());
7678                 }
7679
7680                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7681
7682                 // If we have too many peers connected which don't have funded channels, disconnect the
7683                 // peer immediately (as long as it doesn't have funded channels). If we have a bunch of
7684                 // unfunded channels taking up space in memory for disconnected peers, we still let new
7685                 // peers connect, but we'll reject new channels from them.
7686                 let connected_peers_without_funded_channels = self.peers_without_funded_channels(|node| node.is_connected);
7687                 let inbound_peer_limited = inbound && connected_peers_without_funded_channels >= MAX_NO_CHANNEL_PEERS;
7688
7689                 {
7690                         let mut peer_state_lock = self.per_peer_state.write().unwrap();
7691                         match peer_state_lock.entry(counterparty_node_id.clone()) {
7692                                 hash_map::Entry::Vacant(e) => {
7693                                         if inbound_peer_limited {
7694                                                 return Err(());
7695                                         }
7696                                         e.insert(Mutex::new(PeerState {
7697                                                 channel_by_id: HashMap::new(),
7698                                                 inbound_channel_request_by_id: HashMap::new(),
7699                                                 latest_features: init_msg.features.clone(),
7700                                                 pending_msg_events: Vec::new(),
7701                                                 in_flight_monitor_updates: BTreeMap::new(),
7702                                                 monitor_update_blocked_actions: BTreeMap::new(),
7703                                                 actions_blocking_raa_monitor_updates: BTreeMap::new(),
7704                                                 is_connected: true,
7705                                         }));
7706                                 },
7707                                 hash_map::Entry::Occupied(e) => {
7708                                         let mut peer_state = e.get().lock().unwrap();
7709                                         peer_state.latest_features = init_msg.features.clone();
7710
7711                                         let best_block_height = self.best_block.read().unwrap().height();
7712                                         if inbound_peer_limited &&
7713                                                 Self::unfunded_channel_count(&*peer_state, best_block_height) ==
7714                                                 peer_state.channel_by_id.len()
7715                                         {
7716                                                 return Err(());
7717                                         }
7718
7719                                         debug_assert!(!peer_state.is_connected, "A peer shouldn't be connected twice");
7720                                         peer_state.is_connected = true;
7721                                 },
7722                         }
7723                 }
7724
7725                 log_debug!(self.logger, "Generating channel_reestablish events for {}", log_pubkey!(counterparty_node_id));
7726
7727                 let per_peer_state = self.per_peer_state.read().unwrap();
7728                 if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
7729                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7730                         let peer_state = &mut *peer_state_lock;
7731                         let pending_msg_events = &mut peer_state.pending_msg_events;
7732
7733                         peer_state.channel_by_id.iter_mut().filter_map(|(_, phase)|
7734                                 if let ChannelPhase::Funded(chan) = phase { Some(chan) } else {
7735                                         // Since unfunded channel maps are cleared upon disconnecting a peer, and they're not persisted
7736                                         // (so won't be recovered after a crash), they shouldn't exist here and we would never need to
7737                                         // worry about closing and removing them.
7738                                         debug_assert!(false);
7739                                         None
7740                                 }
7741                         ).for_each(|chan| {
7742                                 pending_msg_events.push(events::MessageSendEvent::SendChannelReestablish {
7743                                         node_id: chan.context.get_counterparty_node_id(),
7744                                         msg: chan.get_channel_reestablish(&self.logger),
7745                                 });
7746                         });
7747                 }
7748                 //TODO: Also re-broadcast announcement_signatures
7749                 Ok(())
7750         }
7751
7752         fn handle_error(&self, counterparty_node_id: &PublicKey, msg: &msgs::ErrorMessage) {
7753                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7754
7755                 match &msg.data as &str {
7756                         "cannot co-op close channel w/ active htlcs"|
7757                         "link failed to shutdown" =>
7758                         {
7759                                 // LND hasn't properly handled shutdown messages ever, and force-closes any time we
7760                                 // send one while HTLCs are still present. The issue is tracked at
7761                                 // https://github.com/lightningnetwork/lnd/issues/6039 and has had multiple patches
7762                                 // to fix it but none so far have managed to land upstream. The issue appears to be
7763                                 // very low priority for the LND team despite being marked "P1".
7764                                 // We're not going to bother handling this in a sensible way, instead simply
7765                                 // repeating the Shutdown message on repeat until morale improves.
7766                                 if !msg.channel_id.is_zero() {
7767                                         let per_peer_state = self.per_peer_state.read().unwrap();
7768                                         let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
7769                                         if peer_state_mutex_opt.is_none() { return; }
7770                                         let mut peer_state = peer_state_mutex_opt.unwrap().lock().unwrap();
7771                                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get(&msg.channel_id) {
7772                                                 if let Some(msg) = chan.get_outbound_shutdown() {
7773                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
7774                                                                 node_id: *counterparty_node_id,
7775                                                                 msg,
7776                                                         });
7777                                                 }
7778                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::HandleError {
7779                                                         node_id: *counterparty_node_id,
7780                                                         action: msgs::ErrorAction::SendWarningMessage {
7781                                                                 msg: msgs::WarningMessage {
7782                                                                         channel_id: msg.channel_id,
7783                                                                         data: "You appear to be exhibiting LND bug 6039, we'll keep sending you shutdown messages until you handle them correctly".to_owned()
7784                                                                 },
7785                                                                 log_level: Level::Trace,
7786                                                         }
7787                                                 });
7788                                         }
7789                                 }
7790                                 return;
7791                         }
7792                         _ => {}
7793                 }
7794
7795                 if msg.channel_id.is_zero() {
7796                         let channel_ids: Vec<ChannelId> = {
7797                                 let per_peer_state = self.per_peer_state.read().unwrap();
7798                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
7799                                 if peer_state_mutex_opt.is_none() { return; }
7800                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
7801                                 let peer_state = &mut *peer_state_lock;
7802                                 // Note that we don't bother generating any events for pre-accept channels -
7803                                 // they're not considered "channels" yet from the PoV of our events interface.
7804                                 peer_state.inbound_channel_request_by_id.clear();
7805                                 peer_state.channel_by_id.keys().cloned().collect()
7806                         };
7807                         for channel_id in channel_ids {
7808                                 // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
7809                                 let _ = self.force_close_channel_with_peer(&channel_id, counterparty_node_id, Some(&msg.data), true);
7810                         }
7811                 } else {
7812                         {
7813                                 // First check if we can advance the channel type and try again.
7814                                 let per_peer_state = self.per_peer_state.read().unwrap();
7815                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
7816                                 if peer_state_mutex_opt.is_none() { return; }
7817                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
7818                                 let peer_state = &mut *peer_state_lock;
7819                                 if let Some(ChannelPhase::UnfundedOutboundV1(chan)) = peer_state.channel_by_id.get_mut(&msg.channel_id) {
7820                                         if let Ok(msg) = chan.maybe_handle_error_without_close(self.genesis_hash, &self.fee_estimator) {
7821                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
7822                                                         node_id: *counterparty_node_id,
7823                                                         msg,
7824                                                 });
7825                                                 return;
7826                                         }
7827                                 }
7828                         }
7829
7830                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
7831                         let _ = self.force_close_channel_with_peer(&msg.channel_id, counterparty_node_id, Some(&msg.data), true);
7832                 }
7833         }
7834
7835         fn provided_node_features(&self) -> NodeFeatures {
7836                 provided_node_features(&self.default_configuration)
7837         }
7838
7839         fn provided_init_features(&self, _their_init_features: &PublicKey) -> InitFeatures {
7840                 provided_init_features(&self.default_configuration)
7841         }
7842
7843         fn get_genesis_hashes(&self) -> Option<Vec<ChainHash>> {
7844                 Some(vec![ChainHash::from(&self.genesis_hash[..])])
7845         }
7846
7847         fn handle_tx_add_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddInput) {
7848                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7849                         "Dual-funded channels not supported".to_owned(),
7850                          msg.channel_id.clone())), *counterparty_node_id);
7851         }
7852
7853         fn handle_tx_add_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddOutput) {
7854                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7855                         "Dual-funded channels not supported".to_owned(),
7856                          msg.channel_id.clone())), *counterparty_node_id);
7857         }
7858
7859         fn handle_tx_remove_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveInput) {
7860                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7861                         "Dual-funded channels not supported".to_owned(),
7862                          msg.channel_id.clone())), *counterparty_node_id);
7863         }
7864
7865         fn handle_tx_remove_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveOutput) {
7866                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7867                         "Dual-funded channels not supported".to_owned(),
7868                          msg.channel_id.clone())), *counterparty_node_id);
7869         }
7870
7871         fn handle_tx_complete(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxComplete) {
7872                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7873                         "Dual-funded channels not supported".to_owned(),
7874                          msg.channel_id.clone())), *counterparty_node_id);
7875         }
7876
7877         fn handle_tx_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxSignatures) {
7878                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7879                         "Dual-funded channels not supported".to_owned(),
7880                          msg.channel_id.clone())), *counterparty_node_id);
7881         }
7882
7883         fn handle_tx_init_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxInitRbf) {
7884                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7885                         "Dual-funded channels not supported".to_owned(),
7886                          msg.channel_id.clone())), *counterparty_node_id);
7887         }
7888
7889         fn handle_tx_ack_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAckRbf) {
7890                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7891                         "Dual-funded channels not supported".to_owned(),
7892                          msg.channel_id.clone())), *counterparty_node_id);
7893         }
7894
7895         fn handle_tx_abort(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAbort) {
7896                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7897                         "Dual-funded channels not supported".to_owned(),
7898                          msg.channel_id.clone())), *counterparty_node_id);
7899         }
7900 }
7901
7902 /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
7903 /// [`ChannelManager`].
7904 pub(crate) fn provided_node_features(config: &UserConfig) -> NodeFeatures {
7905         let mut node_features = provided_init_features(config).to_context();
7906         node_features.set_keysend_optional();
7907         node_features
7908 }
7909
7910 /// Fetches the set of [`Bolt11InvoiceFeatures`] flags which are provided by or required by
7911 /// [`ChannelManager`].
7912 ///
7913 /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
7914 /// or not. Thus, this method is not public.
7915 #[cfg(any(feature = "_test_utils", test))]
7916 pub(crate) fn provided_invoice_features(config: &UserConfig) -> Bolt11InvoiceFeatures {
7917         provided_init_features(config).to_context()
7918 }
7919
7920 /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
7921 /// [`ChannelManager`].
7922 pub(crate) fn provided_channel_features(config: &UserConfig) -> ChannelFeatures {
7923         provided_init_features(config).to_context()
7924 }
7925
7926 /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
7927 /// [`ChannelManager`].
7928 pub(crate) fn provided_channel_type_features(config: &UserConfig) -> ChannelTypeFeatures {
7929         ChannelTypeFeatures::from_init(&provided_init_features(config))
7930 }
7931
7932 /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
7933 /// [`ChannelManager`].
7934 pub fn provided_init_features(config: &UserConfig) -> InitFeatures {
7935         // Note that if new features are added here which other peers may (eventually) require, we
7936         // should also add the corresponding (optional) bit to the [`ChannelMessageHandler`] impl for
7937         // [`ErroringMessageHandler`].
7938         let mut features = InitFeatures::empty();
7939         features.set_data_loss_protect_required();
7940         features.set_upfront_shutdown_script_optional();
7941         features.set_variable_length_onion_required();
7942         features.set_static_remote_key_required();
7943         features.set_payment_secret_required();
7944         features.set_basic_mpp_optional();
7945         features.set_wumbo_optional();
7946         features.set_shutdown_any_segwit_optional();
7947         features.set_channel_type_optional();
7948         features.set_scid_privacy_optional();
7949         features.set_zero_conf_optional();
7950         if config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx {
7951                 features.set_anchors_zero_fee_htlc_tx_optional();
7952         }
7953         features
7954 }
7955
7956 const SERIALIZATION_VERSION: u8 = 1;
7957 const MIN_SERIALIZATION_VERSION: u8 = 1;
7958
7959 impl_writeable_tlv_based!(CounterpartyForwardingInfo, {
7960         (2, fee_base_msat, required),
7961         (4, fee_proportional_millionths, required),
7962         (6, cltv_expiry_delta, required),
7963 });
7964
7965 impl_writeable_tlv_based!(ChannelCounterparty, {
7966         (2, node_id, required),
7967         (4, features, required),
7968         (6, unspendable_punishment_reserve, required),
7969         (8, forwarding_info, option),
7970         (9, outbound_htlc_minimum_msat, option),
7971         (11, outbound_htlc_maximum_msat, option),
7972 });
7973
7974 impl Writeable for ChannelDetails {
7975         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
7976                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
7977                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
7978                 let user_channel_id_low = self.user_channel_id as u64;
7979                 let user_channel_id_high_opt = Some((self.user_channel_id >> 64) as u64);
7980                 write_tlv_fields!(writer, {
7981                         (1, self.inbound_scid_alias, option),
7982                         (2, self.channel_id, required),
7983                         (3, self.channel_type, option),
7984                         (4, self.counterparty, required),
7985                         (5, self.outbound_scid_alias, option),
7986                         (6, self.funding_txo, option),
7987                         (7, self.config, option),
7988                         (8, self.short_channel_id, option),
7989                         (9, self.confirmations, option),
7990                         (10, self.channel_value_satoshis, required),
7991                         (12, self.unspendable_punishment_reserve, option),
7992                         (14, user_channel_id_low, required),
7993                         (16, self.next_outbound_htlc_limit_msat, required),  // Forwards compatibility for removed balance_msat field.
7994                         (18, self.outbound_capacity_msat, required),
7995                         (19, self.next_outbound_htlc_limit_msat, required),
7996                         (20, self.inbound_capacity_msat, required),
7997                         (21, self.next_outbound_htlc_minimum_msat, required),
7998                         (22, self.confirmations_required, option),
7999                         (24, self.force_close_spend_delay, option),
8000                         (26, self.is_outbound, required),
8001                         (28, self.is_channel_ready, required),
8002                         (30, self.is_usable, required),
8003                         (32, self.is_public, required),
8004                         (33, self.inbound_htlc_minimum_msat, option),
8005                         (35, self.inbound_htlc_maximum_msat, option),
8006                         (37, user_channel_id_high_opt, option),
8007                         (39, self.feerate_sat_per_1000_weight, option),
8008                         (41, self.channel_shutdown_state, option),
8009                 });
8010                 Ok(())
8011         }
8012 }
8013
8014 impl Readable for ChannelDetails {
8015         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8016                 _init_and_read_len_prefixed_tlv_fields!(reader, {
8017                         (1, inbound_scid_alias, option),
8018                         (2, channel_id, required),
8019                         (3, channel_type, option),
8020                         (4, counterparty, required),
8021                         (5, outbound_scid_alias, option),
8022                         (6, funding_txo, option),
8023                         (7, config, option),
8024                         (8, short_channel_id, option),
8025                         (9, confirmations, option),
8026                         (10, channel_value_satoshis, required),
8027                         (12, unspendable_punishment_reserve, option),
8028                         (14, user_channel_id_low, required),
8029                         (16, _balance_msat, option),  // Backwards compatibility for removed balance_msat field.
8030                         (18, outbound_capacity_msat, required),
8031                         // Note that by the time we get past the required read above, outbound_capacity_msat will be
8032                         // filled in, so we can safely unwrap it here.
8033                         (19, next_outbound_htlc_limit_msat, (default_value, outbound_capacity_msat.0.unwrap() as u64)),
8034                         (20, inbound_capacity_msat, required),
8035                         (21, next_outbound_htlc_minimum_msat, (default_value, 0)),
8036                         (22, confirmations_required, option),
8037                         (24, force_close_spend_delay, option),
8038                         (26, is_outbound, required),
8039                         (28, is_channel_ready, required),
8040                         (30, is_usable, required),
8041                         (32, is_public, required),
8042                         (33, inbound_htlc_minimum_msat, option),
8043                         (35, inbound_htlc_maximum_msat, option),
8044                         (37, user_channel_id_high_opt, option),
8045                         (39, feerate_sat_per_1000_weight, option),
8046                         (41, channel_shutdown_state, option),
8047                 });
8048
8049                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
8050                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
8051                 let user_channel_id_low: u64 = user_channel_id_low.0.unwrap();
8052                 let user_channel_id = user_channel_id_low as u128 +
8053                         ((user_channel_id_high_opt.unwrap_or(0 as u64) as u128) << 64);
8054
8055                 let _balance_msat: Option<u64> = _balance_msat;
8056
8057                 Ok(Self {
8058                         inbound_scid_alias,
8059                         channel_id: channel_id.0.unwrap(),
8060                         channel_type,
8061                         counterparty: counterparty.0.unwrap(),
8062                         outbound_scid_alias,
8063                         funding_txo,
8064                         config,
8065                         short_channel_id,
8066                         channel_value_satoshis: channel_value_satoshis.0.unwrap(),
8067                         unspendable_punishment_reserve,
8068                         user_channel_id,
8069                         outbound_capacity_msat: outbound_capacity_msat.0.unwrap(),
8070                         next_outbound_htlc_limit_msat: next_outbound_htlc_limit_msat.0.unwrap(),
8071                         next_outbound_htlc_minimum_msat: next_outbound_htlc_minimum_msat.0.unwrap(),
8072                         inbound_capacity_msat: inbound_capacity_msat.0.unwrap(),
8073                         confirmations_required,
8074                         confirmations,
8075                         force_close_spend_delay,
8076                         is_outbound: is_outbound.0.unwrap(),
8077                         is_channel_ready: is_channel_ready.0.unwrap(),
8078                         is_usable: is_usable.0.unwrap(),
8079                         is_public: is_public.0.unwrap(),
8080                         inbound_htlc_minimum_msat,
8081                         inbound_htlc_maximum_msat,
8082                         feerate_sat_per_1000_weight,
8083                         channel_shutdown_state,
8084                 })
8085         }
8086 }
8087
8088 impl_writeable_tlv_based!(PhantomRouteHints, {
8089         (2, channels, required_vec),
8090         (4, phantom_scid, required),
8091         (6, real_node_pubkey, required),
8092 });
8093
8094 impl_writeable_tlv_based_enum!(PendingHTLCRouting,
8095         (0, Forward) => {
8096                 (0, onion_packet, required),
8097                 (2, short_channel_id, required),
8098         },
8099         (1, Receive) => {
8100                 (0, payment_data, required),
8101                 (1, phantom_shared_secret, option),
8102                 (2, incoming_cltv_expiry, required),
8103                 (3, payment_metadata, option),
8104                 (5, custom_tlvs, optional_vec),
8105         },
8106         (2, ReceiveKeysend) => {
8107                 (0, payment_preimage, required),
8108                 (2, incoming_cltv_expiry, required),
8109                 (3, payment_metadata, option),
8110                 (4, payment_data, option), // Added in 0.0.116
8111                 (5, custom_tlvs, optional_vec),
8112         },
8113 ;);
8114
8115 impl_writeable_tlv_based!(PendingHTLCInfo, {
8116         (0, routing, required),
8117         (2, incoming_shared_secret, required),
8118         (4, payment_hash, required),
8119         (6, outgoing_amt_msat, required),
8120         (8, outgoing_cltv_value, required),
8121         (9, incoming_amt_msat, option),
8122         (10, skimmed_fee_msat, option),
8123 });
8124
8125
8126 impl Writeable for HTLCFailureMsg {
8127         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8128                 match self {
8129                         HTLCFailureMsg::Relay(msgs::UpdateFailHTLC { channel_id, htlc_id, reason }) => {
8130                                 0u8.write(writer)?;
8131                                 channel_id.write(writer)?;
8132                                 htlc_id.write(writer)?;
8133                                 reason.write(writer)?;
8134                         },
8135                         HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
8136                                 channel_id, htlc_id, sha256_of_onion, failure_code
8137                         }) => {
8138                                 1u8.write(writer)?;
8139                                 channel_id.write(writer)?;
8140                                 htlc_id.write(writer)?;
8141                                 sha256_of_onion.write(writer)?;
8142                                 failure_code.write(writer)?;
8143                         },
8144                 }
8145                 Ok(())
8146         }
8147 }
8148
8149 impl Readable for HTLCFailureMsg {
8150         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8151                 let id: u8 = Readable::read(reader)?;
8152                 match id {
8153                         0 => {
8154                                 Ok(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
8155                                         channel_id: Readable::read(reader)?,
8156                                         htlc_id: Readable::read(reader)?,
8157                                         reason: Readable::read(reader)?,
8158                                 }))
8159                         },
8160                         1 => {
8161                                 Ok(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
8162                                         channel_id: Readable::read(reader)?,
8163                                         htlc_id: Readable::read(reader)?,
8164                                         sha256_of_onion: Readable::read(reader)?,
8165                                         failure_code: Readable::read(reader)?,
8166                                 }))
8167                         },
8168                         // In versions prior to 0.0.101, HTLCFailureMsg objects were written with type 0 or 1 but
8169                         // weren't length-prefixed and thus didn't support reading the TLV stream suffix of the network
8170                         // messages contained in the variants.
8171                         // In version 0.0.101, support for reading the variants with these types was added, and
8172                         // we should migrate to writing these variants when UpdateFailHTLC or
8173                         // UpdateFailMalformedHTLC get TLV fields.
8174                         2 => {
8175                                 let length: BigSize = Readable::read(reader)?;
8176                                 let mut s = FixedLengthReader::new(reader, length.0);
8177                                 let res = Readable::read(&mut s)?;
8178                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
8179                                 Ok(HTLCFailureMsg::Relay(res))
8180                         },
8181                         3 => {
8182                                 let length: BigSize = Readable::read(reader)?;
8183                                 let mut s = FixedLengthReader::new(reader, length.0);
8184                                 let res = Readable::read(&mut s)?;
8185                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
8186                                 Ok(HTLCFailureMsg::Malformed(res))
8187                         },
8188                         _ => Err(DecodeError::UnknownRequiredFeature),
8189                 }
8190         }
8191 }
8192
8193 impl_writeable_tlv_based_enum!(PendingHTLCStatus, ;
8194         (0, Forward),
8195         (1, Fail),
8196 );
8197
8198 impl_writeable_tlv_based!(HTLCPreviousHopData, {
8199         (0, short_channel_id, required),
8200         (1, phantom_shared_secret, option),
8201         (2, outpoint, required),
8202         (4, htlc_id, required),
8203         (6, incoming_packet_shared_secret, required),
8204         (7, user_channel_id, option),
8205 });
8206
8207 impl Writeable for ClaimableHTLC {
8208         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8209                 let (payment_data, keysend_preimage) = match &self.onion_payload {
8210                         OnionPayload::Invoice { _legacy_hop_data } => (_legacy_hop_data.as_ref(), None),
8211                         OnionPayload::Spontaneous(preimage) => (None, Some(preimage)),
8212                 };
8213                 write_tlv_fields!(writer, {
8214                         (0, self.prev_hop, required),
8215                         (1, self.total_msat, required),
8216                         (2, self.value, required),
8217                         (3, self.sender_intended_value, required),
8218                         (4, payment_data, option),
8219                         (5, self.total_value_received, option),
8220                         (6, self.cltv_expiry, required),
8221                         (8, keysend_preimage, option),
8222                         (10, self.counterparty_skimmed_fee_msat, option),
8223                 });
8224                 Ok(())
8225         }
8226 }
8227
8228 impl Readable for ClaimableHTLC {
8229         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8230                 _init_and_read_len_prefixed_tlv_fields!(reader, {
8231                         (0, prev_hop, required),
8232                         (1, total_msat, option),
8233                         (2, value_ser, required),
8234                         (3, sender_intended_value, option),
8235                         (4, payment_data_opt, option),
8236                         (5, total_value_received, option),
8237                         (6, cltv_expiry, required),
8238                         (8, keysend_preimage, option),
8239                         (10, counterparty_skimmed_fee_msat, option),
8240                 });
8241                 let payment_data: Option<msgs::FinalOnionHopData> = payment_data_opt;
8242                 let value = value_ser.0.unwrap();
8243                 let onion_payload = match keysend_preimage {
8244                         Some(p) => {
8245                                 if payment_data.is_some() {
8246                                         return Err(DecodeError::InvalidValue)
8247                                 }
8248                                 if total_msat.is_none() {
8249                                         total_msat = Some(value);
8250                                 }
8251                                 OnionPayload::Spontaneous(p)
8252                         },
8253                         None => {
8254                                 if total_msat.is_none() {
8255                                         if payment_data.is_none() {
8256                                                 return Err(DecodeError::InvalidValue)
8257                                         }
8258                                         total_msat = Some(payment_data.as_ref().unwrap().total_msat);
8259                                 }
8260                                 OnionPayload::Invoice { _legacy_hop_data: payment_data }
8261                         },
8262                 };
8263                 Ok(Self {
8264                         prev_hop: prev_hop.0.unwrap(),
8265                         timer_ticks: 0,
8266                         value,
8267                         sender_intended_value: sender_intended_value.unwrap_or(value),
8268                         total_value_received,
8269                         total_msat: total_msat.unwrap(),
8270                         onion_payload,
8271                         cltv_expiry: cltv_expiry.0.unwrap(),
8272                         counterparty_skimmed_fee_msat,
8273                 })
8274         }
8275 }
8276
8277 impl Readable for HTLCSource {
8278         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8279                 let id: u8 = Readable::read(reader)?;
8280                 match id {
8281                         0 => {
8282                                 let mut session_priv: crate::util::ser::RequiredWrapper<SecretKey> = crate::util::ser::RequiredWrapper(None);
8283                                 let mut first_hop_htlc_msat: u64 = 0;
8284                                 let mut path_hops = Vec::new();
8285                                 let mut payment_id = None;
8286                                 let mut payment_params: Option<PaymentParameters> = None;
8287                                 let mut blinded_tail: Option<BlindedTail> = None;
8288                                 read_tlv_fields!(reader, {
8289                                         (0, session_priv, required),
8290                                         (1, payment_id, option),
8291                                         (2, first_hop_htlc_msat, required),
8292                                         (4, path_hops, required_vec),
8293                                         (5, payment_params, (option: ReadableArgs, 0)),
8294                                         (6, blinded_tail, option),
8295                                 });
8296                                 if payment_id.is_none() {
8297                                         // For backwards compat, if there was no payment_id written, use the session_priv bytes
8298                                         // instead.
8299                                         payment_id = Some(PaymentId(*session_priv.0.unwrap().as_ref()));
8300                                 }
8301                                 let path = Path { hops: path_hops, blinded_tail };
8302                                 if path.hops.len() == 0 {
8303                                         return Err(DecodeError::InvalidValue);
8304                                 }
8305                                 if let Some(params) = payment_params.as_mut() {
8306                                         if let Payee::Clear { ref mut final_cltv_expiry_delta, .. } = params.payee {
8307                                                 if final_cltv_expiry_delta == &0 {
8308                                                         *final_cltv_expiry_delta = path.final_cltv_expiry_delta().ok_or(DecodeError::InvalidValue)?;
8309                                                 }
8310                                         }
8311                                 }
8312                                 Ok(HTLCSource::OutboundRoute {
8313                                         session_priv: session_priv.0.unwrap(),
8314                                         first_hop_htlc_msat,
8315                                         path,
8316                                         payment_id: payment_id.unwrap(),
8317                                 })
8318                         }
8319                         1 => Ok(HTLCSource::PreviousHopData(Readable::read(reader)?)),
8320                         _ => Err(DecodeError::UnknownRequiredFeature),
8321                 }
8322         }
8323 }
8324
8325 impl Writeable for HTLCSource {
8326         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), crate::io::Error> {
8327                 match self {
8328                         HTLCSource::OutboundRoute { ref session_priv, ref first_hop_htlc_msat, ref path, payment_id } => {
8329                                 0u8.write(writer)?;
8330                                 let payment_id_opt = Some(payment_id);
8331                                 write_tlv_fields!(writer, {
8332                                         (0, session_priv, required),
8333                                         (1, payment_id_opt, option),
8334                                         (2, first_hop_htlc_msat, required),
8335                                         // 3 was previously used to write a PaymentSecret for the payment.
8336                                         (4, path.hops, required_vec),
8337                                         (5, None::<PaymentParameters>, option), // payment_params in LDK versions prior to 0.0.115
8338                                         (6, path.blinded_tail, option),
8339                                  });
8340                         }
8341                         HTLCSource::PreviousHopData(ref field) => {
8342                                 1u8.write(writer)?;
8343                                 field.write(writer)?;
8344                         }
8345                 }
8346                 Ok(())
8347         }
8348 }
8349
8350 impl_writeable_tlv_based!(PendingAddHTLCInfo, {
8351         (0, forward_info, required),
8352         (1, prev_user_channel_id, (default_value, 0)),
8353         (2, prev_short_channel_id, required),
8354         (4, prev_htlc_id, required),
8355         (6, prev_funding_outpoint, required),
8356 });
8357
8358 impl_writeable_tlv_based_enum!(HTLCForwardInfo,
8359         (1, FailHTLC) => {
8360                 (0, htlc_id, required),
8361                 (2, err_packet, required),
8362         };
8363         (0, AddHTLC)
8364 );
8365
8366 impl_writeable_tlv_based!(PendingInboundPayment, {
8367         (0, payment_secret, required),
8368         (2, expiry_time, required),
8369         (4, user_payment_id, required),
8370         (6, payment_preimage, required),
8371         (8, min_value_msat, required),
8372 });
8373
8374 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>
8375 where
8376         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8377         T::Target: BroadcasterInterface,
8378         ES::Target: EntropySource,
8379         NS::Target: NodeSigner,
8380         SP::Target: SignerProvider,
8381         F::Target: FeeEstimator,
8382         R::Target: Router,
8383         L::Target: Logger,
8384 {
8385         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8386                 let _consistency_lock = self.total_consistency_lock.write().unwrap();
8387
8388                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
8389
8390                 self.genesis_hash.write(writer)?;
8391                 {
8392                         let best_block = self.best_block.read().unwrap();
8393                         best_block.height().write(writer)?;
8394                         best_block.block_hash().write(writer)?;
8395                 }
8396
8397                 let mut serializable_peer_count: u64 = 0;
8398                 {
8399                         let per_peer_state = self.per_peer_state.read().unwrap();
8400                         let mut number_of_funded_channels = 0;
8401                         for (_, peer_state_mutex) in per_peer_state.iter() {
8402                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8403                                 let peer_state = &mut *peer_state_lock;
8404                                 if !peer_state.ok_to_remove(false) {
8405                                         serializable_peer_count += 1;
8406                                 }
8407
8408                                 number_of_funded_channels += peer_state.channel_by_id.iter().filter(
8409                                         |(_, phase)| if let ChannelPhase::Funded(chan) = phase { chan.context.is_funding_initiated() } else { false }
8410                                 ).count();
8411                         }
8412
8413                         (number_of_funded_channels as u64).write(writer)?;
8414
8415                         for (_, peer_state_mutex) in per_peer_state.iter() {
8416                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8417                                 let peer_state = &mut *peer_state_lock;
8418                                 for channel in peer_state.channel_by_id.iter().filter_map(
8419                                         |(_, phase)| if let ChannelPhase::Funded(channel) = phase {
8420                                                 if channel.context.is_funding_initiated() { Some(channel) } else { None }
8421                                         } else { None }
8422                                 ) {
8423                                         channel.write(writer)?;
8424                                 }
8425                         }
8426                 }
8427
8428                 {
8429                         let forward_htlcs = self.forward_htlcs.lock().unwrap();
8430                         (forward_htlcs.len() as u64).write(writer)?;
8431                         for (short_channel_id, pending_forwards) in forward_htlcs.iter() {
8432                                 short_channel_id.write(writer)?;
8433                                 (pending_forwards.len() as u64).write(writer)?;
8434                                 for forward in pending_forwards {
8435                                         forward.write(writer)?;
8436                                 }
8437                         }
8438                 }
8439
8440                 let per_peer_state = self.per_peer_state.write().unwrap();
8441
8442                 let pending_inbound_payments = self.pending_inbound_payments.lock().unwrap();
8443                 let claimable_payments = self.claimable_payments.lock().unwrap();
8444                 let pending_outbound_payments = self.pending_outbound_payments.pending_outbound_payments.lock().unwrap();
8445
8446                 let mut htlc_purposes: Vec<&events::PaymentPurpose> = Vec::new();
8447                 let mut htlc_onion_fields: Vec<&_> = Vec::new();
8448                 (claimable_payments.claimable_payments.len() as u64).write(writer)?;
8449                 for (payment_hash, payment) in claimable_payments.claimable_payments.iter() {
8450                         payment_hash.write(writer)?;
8451                         (payment.htlcs.len() as u64).write(writer)?;
8452                         for htlc in payment.htlcs.iter() {
8453                                 htlc.write(writer)?;
8454                         }
8455                         htlc_purposes.push(&payment.purpose);
8456                         htlc_onion_fields.push(&payment.onion_fields);
8457                 }
8458
8459                 let mut monitor_update_blocked_actions_per_peer = None;
8460                 let mut peer_states = Vec::new();
8461                 for (_, peer_state_mutex) in per_peer_state.iter() {
8462                         // Because we're holding the owning `per_peer_state` write lock here there's no chance
8463                         // of a lockorder violation deadlock - no other thread can be holding any
8464                         // per_peer_state lock at all.
8465                         peer_states.push(peer_state_mutex.unsafe_well_ordered_double_lock_self());
8466                 }
8467
8468                 (serializable_peer_count).write(writer)?;
8469                 for ((peer_pubkey, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
8470                         // Peers which we have no channels to should be dropped once disconnected. As we
8471                         // disconnect all peers when shutting down and serializing the ChannelManager, we
8472                         // consider all peers as disconnected here. There's therefore no need write peers with
8473                         // no channels.
8474                         if !peer_state.ok_to_remove(false) {
8475                                 peer_pubkey.write(writer)?;
8476                                 peer_state.latest_features.write(writer)?;
8477                                 if !peer_state.monitor_update_blocked_actions.is_empty() {
8478                                         monitor_update_blocked_actions_per_peer
8479                                                 .get_or_insert_with(Vec::new)
8480                                                 .push((*peer_pubkey, &peer_state.monitor_update_blocked_actions));
8481                                 }
8482                         }
8483                 }
8484
8485                 let events = self.pending_events.lock().unwrap();
8486                 // LDK versions prior to 0.0.115 don't support post-event actions, thus if there's no
8487                 // actions at all, skip writing the required TLV. Otherwise, pre-0.0.115 versions will
8488                 // refuse to read the new ChannelManager.
8489                 let events_not_backwards_compatible = events.iter().any(|(_, action)| action.is_some());
8490                 if events_not_backwards_compatible {
8491                         // If we're gonna write a even TLV that will overwrite our events anyway we might as
8492                         // well save the space and not write any events here.
8493                         0u64.write(writer)?;
8494                 } else {
8495                         (events.len() as u64).write(writer)?;
8496                         for (event, _) in events.iter() {
8497                                 event.write(writer)?;
8498                         }
8499                 }
8500
8501                 // LDK versions prior to 0.0.116 wrote the `pending_background_events`
8502                 // `MonitorUpdateRegeneratedOnStartup`s here, however there was never a reason to do so -
8503                 // the closing monitor updates were always effectively replayed on startup (either directly
8504                 // by calling `broadcast_latest_holder_commitment_txn` on a `ChannelMonitor` during
8505                 // deserialization or, in 0.0.115, by regenerating the monitor update itself).
8506                 0u64.write(writer)?;
8507
8508                 // Prior to 0.0.111 we tracked node_announcement serials here, however that now happens in
8509                 // `PeerManager`, and thus we simply write the `highest_seen_timestamp` twice, which is
8510                 // likely to be identical.
8511                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
8512                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
8513
8514                 (pending_inbound_payments.len() as u64).write(writer)?;
8515                 for (hash, pending_payment) in pending_inbound_payments.iter() {
8516                         hash.write(writer)?;
8517                         pending_payment.write(writer)?;
8518                 }
8519
8520                 // For backwards compat, write the session privs and their total length.
8521                 let mut num_pending_outbounds_compat: u64 = 0;
8522                 for (_, outbound) in pending_outbound_payments.iter() {
8523                         if !outbound.is_fulfilled() && !outbound.abandoned() {
8524                                 num_pending_outbounds_compat += outbound.remaining_parts() as u64;
8525                         }
8526                 }
8527                 num_pending_outbounds_compat.write(writer)?;
8528                 for (_, outbound) in pending_outbound_payments.iter() {
8529                         match outbound {
8530                                 PendingOutboundPayment::Legacy { session_privs } |
8531                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
8532                                         for session_priv in session_privs.iter() {
8533                                                 session_priv.write(writer)?;
8534                                         }
8535                                 }
8536                                 PendingOutboundPayment::AwaitingInvoice { .. } => {},
8537                                 PendingOutboundPayment::InvoiceReceived { .. } => {},
8538                                 PendingOutboundPayment::Fulfilled { .. } => {},
8539                                 PendingOutboundPayment::Abandoned { .. } => {},
8540                         }
8541                 }
8542
8543                 // Encode without retry info for 0.0.101 compatibility.
8544                 let mut pending_outbound_payments_no_retry: HashMap<PaymentId, HashSet<[u8; 32]>> = HashMap::new();
8545                 for (id, outbound) in pending_outbound_payments.iter() {
8546                         match outbound {
8547                                 PendingOutboundPayment::Legacy { session_privs } |
8548                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
8549                                         pending_outbound_payments_no_retry.insert(*id, session_privs.clone());
8550                                 },
8551                                 _ => {},
8552                         }
8553                 }
8554
8555                 let mut pending_intercepted_htlcs = None;
8556                 let our_pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
8557                 if our_pending_intercepts.len() != 0 {
8558                         pending_intercepted_htlcs = Some(our_pending_intercepts);
8559                 }
8560
8561                 let mut pending_claiming_payments = Some(&claimable_payments.pending_claiming_payments);
8562                 if pending_claiming_payments.as_ref().unwrap().is_empty() {
8563                         // LDK versions prior to 0.0.113 do not know how to read the pending claimed payments
8564                         // map. Thus, if there are no entries we skip writing a TLV for it.
8565                         pending_claiming_payments = None;
8566                 }
8567
8568                 let mut in_flight_monitor_updates: Option<HashMap<(&PublicKey, &OutPoint), &Vec<ChannelMonitorUpdate>>> = None;
8569                 for ((counterparty_id, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
8570                         for (funding_outpoint, updates) in peer_state.in_flight_monitor_updates.iter() {
8571                                 if !updates.is_empty() {
8572                                         if in_flight_monitor_updates.is_none() { in_flight_monitor_updates = Some(HashMap::new()); }
8573                                         in_flight_monitor_updates.as_mut().unwrap().insert((counterparty_id, funding_outpoint), updates);
8574                                 }
8575                         }
8576                 }
8577
8578                 write_tlv_fields!(writer, {
8579                         (1, pending_outbound_payments_no_retry, required),
8580                         (2, pending_intercepted_htlcs, option),
8581                         (3, pending_outbound_payments, required),
8582                         (4, pending_claiming_payments, option),
8583                         (5, self.our_network_pubkey, required),
8584                         (6, monitor_update_blocked_actions_per_peer, option),
8585                         (7, self.fake_scid_rand_bytes, required),
8586                         (8, if events_not_backwards_compatible { Some(&*events) } else { None }, option),
8587                         (9, htlc_purposes, required_vec),
8588                         (10, in_flight_monitor_updates, option),
8589                         (11, self.probing_cookie_secret, required),
8590                         (13, htlc_onion_fields, optional_vec),
8591                 });
8592
8593                 Ok(())
8594         }
8595 }
8596
8597 impl Writeable for VecDeque<(Event, Option<EventCompletionAction>)> {
8598         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
8599                 (self.len() as u64).write(w)?;
8600                 for (event, action) in self.iter() {
8601                         event.write(w)?;
8602                         action.write(w)?;
8603                         #[cfg(debug_assertions)] {
8604                                 // Events are MaybeReadable, in some cases indicating that they shouldn't actually
8605                                 // be persisted and are regenerated on restart. However, if such an event has a
8606                                 // post-event-handling action we'll write nothing for the event and would have to
8607                                 // either forget the action or fail on deserialization (which we do below). Thus,
8608                                 // check that the event is sane here.
8609                                 let event_encoded = event.encode();
8610                                 let event_read: Option<Event> =
8611                                         MaybeReadable::read(&mut &event_encoded[..]).unwrap();
8612                                 if action.is_some() { assert!(event_read.is_some()); }
8613                         }
8614                 }
8615                 Ok(())
8616         }
8617 }
8618 impl Readable for VecDeque<(Event, Option<EventCompletionAction>)> {
8619         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8620                 let len: u64 = Readable::read(reader)?;
8621                 const MAX_ALLOC_SIZE: u64 = 1024 * 16;
8622                 let mut events: Self = VecDeque::with_capacity(cmp::min(
8623                         MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>() as u64,
8624                         len) as usize);
8625                 for _ in 0..len {
8626                         let ev_opt = MaybeReadable::read(reader)?;
8627                         let action = Readable::read(reader)?;
8628                         if let Some(ev) = ev_opt {
8629                                 events.push_back((ev, action));
8630                         } else if action.is_some() {
8631                                 return Err(DecodeError::InvalidValue);
8632                         }
8633                 }
8634                 Ok(events)
8635         }
8636 }
8637
8638 impl_writeable_tlv_based_enum!(ChannelShutdownState,
8639         (0, NotShuttingDown) => {},
8640         (2, ShutdownInitiated) => {},
8641         (4, ResolvingHTLCs) => {},
8642         (6, NegotiatingClosingFee) => {},
8643         (8, ShutdownComplete) => {}, ;
8644 );
8645
8646 /// Arguments for the creation of a ChannelManager that are not deserialized.
8647 ///
8648 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
8649 /// is:
8650 /// 1) Deserialize all stored [`ChannelMonitor`]s.
8651 /// 2) Deserialize the [`ChannelManager`] by filling in this struct and calling:
8652 ///    `<(BlockHash, ChannelManager)>::read(reader, args)`
8653 ///    This may result in closing some channels if the [`ChannelMonitor`] is newer than the stored
8654 ///    [`ChannelManager`] state to ensure no loss of funds. Thus, transactions may be broadcasted.
8655 /// 3) If you are not fetching full blocks, register all relevant [`ChannelMonitor`] outpoints the
8656 ///    same way you would handle a [`chain::Filter`] call using
8657 ///    [`ChannelMonitor::get_outputs_to_watch`] and [`ChannelMonitor::get_funding_txo`].
8658 /// 4) Reconnect blocks on your [`ChannelMonitor`]s.
8659 /// 5) Disconnect/connect blocks on the [`ChannelManager`].
8660 /// 6) Re-persist the [`ChannelMonitor`]s to ensure the latest state is on disk.
8661 ///    Note that if you're using a [`ChainMonitor`] for your [`chain::Watch`] implementation, you
8662 ///    will likely accomplish this as a side-effect of calling [`chain::Watch::watch_channel`] in
8663 ///    the next step.
8664 /// 7) Move the [`ChannelMonitor`]s into your local [`chain::Watch`]. If you're using a
8665 ///    [`ChainMonitor`], this is done by calling [`chain::Watch::watch_channel`].
8666 ///
8667 /// Note that the ordering of #4-7 is not of importance, however all four must occur before you
8668 /// call any other methods on the newly-deserialized [`ChannelManager`].
8669 ///
8670 /// Note that because some channels may be closed during deserialization, it is critical that you
8671 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
8672 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
8673 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
8674 /// not force-close the same channels but consider them live), you may end up revoking a state for
8675 /// which you've already broadcasted the transaction.
8676 ///
8677 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
8678 pub struct ChannelManagerReadArgs<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8679 where
8680         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8681         T::Target: BroadcasterInterface,
8682         ES::Target: EntropySource,
8683         NS::Target: NodeSigner,
8684         SP::Target: SignerProvider,
8685         F::Target: FeeEstimator,
8686         R::Target: Router,
8687         L::Target: Logger,
8688 {
8689         /// A cryptographically secure source of entropy.
8690         pub entropy_source: ES,
8691
8692         /// A signer that is able to perform node-scoped cryptographic operations.
8693         pub node_signer: NS,
8694
8695         /// The keys provider which will give us relevant keys. Some keys will be loaded during
8696         /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
8697         /// signing data.
8698         pub signer_provider: SP,
8699
8700         /// The fee_estimator for use in the ChannelManager in the future.
8701         ///
8702         /// No calls to the FeeEstimator will be made during deserialization.
8703         pub fee_estimator: F,
8704         /// The chain::Watch for use in the ChannelManager in the future.
8705         ///
8706         /// No calls to the chain::Watch will be made during deserialization. It is assumed that
8707         /// you have deserialized ChannelMonitors separately and will add them to your
8708         /// chain::Watch after deserializing this ChannelManager.
8709         pub chain_monitor: M,
8710
8711         /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
8712         /// used to broadcast the latest local commitment transactions of channels which must be
8713         /// force-closed during deserialization.
8714         pub tx_broadcaster: T,
8715         /// The router which will be used in the ChannelManager in the future for finding routes
8716         /// on-the-fly for trampoline payments. Absent in private nodes that don't support forwarding.
8717         ///
8718         /// No calls to the router will be made during deserialization.
8719         pub router: R,
8720         /// The Logger for use in the ChannelManager and which may be used to log information during
8721         /// deserialization.
8722         pub logger: L,
8723         /// Default settings used for new channels. Any existing channels will continue to use the
8724         /// runtime settings which were stored when the ChannelManager was serialized.
8725         pub default_config: UserConfig,
8726
8727         /// A map from channel funding outpoints to ChannelMonitors for those channels (ie
8728         /// value.context.get_funding_txo() should be the key).
8729         ///
8730         /// If a monitor is inconsistent with the channel state during deserialization the channel will
8731         /// be force-closed using the data in the ChannelMonitor and the channel will be dropped. This
8732         /// is true for missing channels as well. If there is a monitor missing for which we find
8733         /// channel data Err(DecodeError::InvalidValue) will be returned.
8734         ///
8735         /// In such cases the latest local transactions will be sent to the tx_broadcaster included in
8736         /// this struct.
8737         ///
8738         /// This is not exported to bindings users because we have no HashMap bindings
8739         pub channel_monitors: HashMap<OutPoint, &'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>,
8740 }
8741
8742 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8743                 ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>
8744 where
8745         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8746         T::Target: BroadcasterInterface,
8747         ES::Target: EntropySource,
8748         NS::Target: NodeSigner,
8749         SP::Target: SignerProvider,
8750         F::Target: FeeEstimator,
8751         R::Target: Router,
8752         L::Target: Logger,
8753 {
8754         /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
8755         /// HashMap for you. This is primarily useful for C bindings where it is not practical to
8756         /// populate a HashMap directly from C.
8757         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,
8758                         mut channel_monitors: Vec<&'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>) -> Self {
8759                 Self {
8760                         entropy_source, node_signer, signer_provider, fee_estimator, chain_monitor, tx_broadcaster, router, logger, default_config,
8761                         channel_monitors: channel_monitors.drain(..).map(|monitor| { (monitor.get_funding_txo().0, monitor) }).collect()
8762                 }
8763         }
8764 }
8765
8766 // Implement ReadableArgs for an Arc'd ChannelManager to make it a bit easier to work with the
8767 // SipmleArcChannelManager type:
8768 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8769         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, Arc<ChannelManager<M, T, ES, NS, SP, F, R, L>>)
8770 where
8771         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8772         T::Target: BroadcasterInterface,
8773         ES::Target: EntropySource,
8774         NS::Target: NodeSigner,
8775         SP::Target: SignerProvider,
8776         F::Target: FeeEstimator,
8777         R::Target: Router,
8778         L::Target: Logger,
8779 {
8780         fn read<Reader: io::Read>(reader: &mut Reader, args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
8781                 let (blockhash, chan_manager) = <(BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)>::read(reader, args)?;
8782                 Ok((blockhash, Arc::new(chan_manager)))
8783         }
8784 }
8785
8786 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8787         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)
8788 where
8789         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8790         T::Target: BroadcasterInterface,
8791         ES::Target: EntropySource,
8792         NS::Target: NodeSigner,
8793         SP::Target: SignerProvider,
8794         F::Target: FeeEstimator,
8795         R::Target: Router,
8796         L::Target: Logger,
8797 {
8798         fn read<Reader: io::Read>(reader: &mut Reader, mut args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
8799                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
8800
8801                 let genesis_hash: BlockHash = Readable::read(reader)?;
8802                 let best_block_height: u32 = Readable::read(reader)?;
8803                 let best_block_hash: BlockHash = Readable::read(reader)?;
8804
8805                 let mut failed_htlcs = Vec::new();
8806
8807                 let channel_count: u64 = Readable::read(reader)?;
8808                 let mut funding_txo_set = HashSet::with_capacity(cmp::min(channel_count as usize, 128));
8809                 let mut funded_peer_channels: HashMap<PublicKey, HashMap<ChannelId, ChannelPhase<SP>>> = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
8810                 let mut id_to_peer = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
8811                 let mut short_to_chan_info = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
8812                 let mut channel_closures = VecDeque::new();
8813                 let mut close_background_events = Vec::new();
8814                 for _ in 0..channel_count {
8815                         let mut channel: Channel<SP> = Channel::read(reader, (
8816                                 &args.entropy_source, &args.signer_provider, best_block_height, &provided_channel_type_features(&args.default_config)
8817                         ))?;
8818                         let funding_txo = channel.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
8819                         funding_txo_set.insert(funding_txo.clone());
8820                         if let Some(ref mut monitor) = args.channel_monitors.get_mut(&funding_txo) {
8821                                 if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() ||
8822                                                 channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() ||
8823                                                 channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() ||
8824                                                 channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
8825                                         // But if the channel is behind of the monitor, close the channel:
8826                                         log_error!(args.logger, "A ChannelManager is stale compared to the current ChannelMonitor!");
8827                                         log_error!(args.logger, " The channel will be force-closed and the latest commitment transaction from the ChannelMonitor broadcast.");
8828                                         if channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
8829                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
8830                                                         &channel.context.channel_id(), monitor.get_latest_update_id(), channel.context.get_latest_monitor_update_id());
8831                                         }
8832                                         if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() {
8833                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at holder commitment number {} but the ChannelManager is at holder commitment number {}.",
8834                                                         &channel.context.channel_id(), monitor.get_cur_holder_commitment_number(), channel.get_cur_holder_commitment_transaction_number());
8835                                         }
8836                                         if channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() {
8837                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at revoked counterparty transaction number {} but the ChannelManager is at revoked counterparty transaction number {}.",
8838                                                         &channel.context.channel_id(), monitor.get_min_seen_secret(), channel.get_revoked_counterparty_commitment_transaction_number());
8839                                         }
8840                                         if channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() {
8841                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at counterparty commitment transaction number {} but the ChannelManager is at counterparty commitment transaction number {}.",
8842                                                         &channel.context.channel_id(), monitor.get_cur_counterparty_commitment_number(), channel.get_cur_counterparty_commitment_transaction_number());
8843                                         }
8844                                         let (monitor_update, mut new_failed_htlcs) = channel.context.force_shutdown(true);
8845                                         if let Some((counterparty_node_id, funding_txo, update)) = monitor_update {
8846                                                 close_background_events.push(BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
8847                                                         counterparty_node_id, funding_txo, update
8848                                                 });
8849                                         }
8850                                         failed_htlcs.append(&mut new_failed_htlcs);
8851                                         channel_closures.push_back((events::Event::ChannelClosed {
8852                                                 channel_id: channel.context.channel_id(),
8853                                                 user_channel_id: channel.context.get_user_id(),
8854                                                 reason: ClosureReason::OutdatedChannelManager,
8855                                                 counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
8856                                                 channel_capacity_sats: Some(channel.context.get_value_satoshis()),
8857                                         }, None));
8858                                         for (channel_htlc_source, payment_hash) in channel.inflight_htlc_sources() {
8859                                                 let mut found_htlc = false;
8860                                                 for (monitor_htlc_source, _) in monitor.get_all_current_outbound_htlcs() {
8861                                                         if *channel_htlc_source == monitor_htlc_source { found_htlc = true; break; }
8862                                                 }
8863                                                 if !found_htlc {
8864                                                         // If we have some HTLCs in the channel which are not present in the newer
8865                                                         // ChannelMonitor, they have been removed and should be failed back to
8866                                                         // ensure we don't forget them entirely. Note that if the missing HTLC(s)
8867                                                         // were actually claimed we'd have generated and ensured the previous-hop
8868                                                         // claim update ChannelMonitor updates were persisted prior to persising
8869                                                         // the ChannelMonitor update for the forward leg, so attempting to fail the
8870                                                         // backwards leg of the HTLC will simply be rejected.
8871                                                         log_info!(args.logger,
8872                                                                 "Failing HTLC with hash {} as it is missing in the ChannelMonitor for channel {} but was present in the (stale) ChannelManager",
8873                                                                 &channel.context.channel_id(), &payment_hash);
8874                                                         failed_htlcs.push((channel_htlc_source.clone(), *payment_hash, channel.context.get_counterparty_node_id(), channel.context.channel_id()));
8875                                                 }
8876                                         }
8877                                 } else {
8878                                         log_info!(args.logger, "Successfully loaded channel {} at update_id {} against monitor at update id {}",
8879                                                 &channel.context.channel_id(), channel.context.get_latest_monitor_update_id(),
8880                                                 monitor.get_latest_update_id());
8881                                         if let Some(short_channel_id) = channel.context.get_short_channel_id() {
8882                                                 short_to_chan_info.insert(short_channel_id, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
8883                                         }
8884                                         if channel.context.is_funding_initiated() {
8885                                                 id_to_peer.insert(channel.context.channel_id(), channel.context.get_counterparty_node_id());
8886                                         }
8887                                         match funded_peer_channels.entry(channel.context.get_counterparty_node_id()) {
8888                                                 hash_map::Entry::Occupied(mut entry) => {
8889                                                         let by_id_map = entry.get_mut();
8890                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
8891                                                 },
8892                                                 hash_map::Entry::Vacant(entry) => {
8893                                                         let mut by_id_map = HashMap::new();
8894                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
8895                                                         entry.insert(by_id_map);
8896                                                 }
8897                                         }
8898                                 }
8899                         } else if channel.is_awaiting_initial_mon_persist() {
8900                                 // If we were persisted and shut down while the initial ChannelMonitor persistence
8901                                 // was in-progress, we never broadcasted the funding transaction and can still
8902                                 // safely discard the channel.
8903                                 let _ = channel.context.force_shutdown(false);
8904                                 channel_closures.push_back((events::Event::ChannelClosed {
8905                                         channel_id: channel.context.channel_id(),
8906                                         user_channel_id: channel.context.get_user_id(),
8907                                         reason: ClosureReason::DisconnectedPeer,
8908                                         counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
8909                                         channel_capacity_sats: Some(channel.context.get_value_satoshis()),
8910                                 }, None));
8911                         } else {
8912                                 log_error!(args.logger, "Missing ChannelMonitor for channel {} needed by ChannelManager.", &channel.context.channel_id());
8913                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
8914                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
8915                                 log_error!(args.logger, " Without the ChannelMonitor we cannot continue without risking funds.");
8916                                 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");
8917                                 return Err(DecodeError::InvalidValue);
8918                         }
8919                 }
8920
8921                 for (funding_txo, _) in args.channel_monitors.iter() {
8922                         if !funding_txo_set.contains(funding_txo) {
8923                                 log_info!(args.logger, "Queueing monitor update to ensure missing channel {} is force closed",
8924                                         &funding_txo.to_channel_id());
8925                                 let monitor_update = ChannelMonitorUpdate {
8926                                         update_id: CLOSED_CHANNEL_UPDATE_ID,
8927                                         updates: vec![ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast: true }],
8928                                 };
8929                                 close_background_events.push(BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((*funding_txo, monitor_update)));
8930                         }
8931                 }
8932
8933                 const MAX_ALLOC_SIZE: usize = 1024 * 64;
8934                 let forward_htlcs_count: u64 = Readable::read(reader)?;
8935                 let mut forward_htlcs = HashMap::with_capacity(cmp::min(forward_htlcs_count as usize, 128));
8936                 for _ in 0..forward_htlcs_count {
8937                         let short_channel_id = Readable::read(reader)?;
8938                         let pending_forwards_count: u64 = Readable::read(reader)?;
8939                         let mut pending_forwards = Vec::with_capacity(cmp::min(pending_forwards_count as usize, MAX_ALLOC_SIZE/mem::size_of::<HTLCForwardInfo>()));
8940                         for _ in 0..pending_forwards_count {
8941                                 pending_forwards.push(Readable::read(reader)?);
8942                         }
8943                         forward_htlcs.insert(short_channel_id, pending_forwards);
8944                 }
8945
8946                 let claimable_htlcs_count: u64 = Readable::read(reader)?;
8947                 let mut claimable_htlcs_list = Vec::with_capacity(cmp::min(claimable_htlcs_count as usize, 128));
8948                 for _ in 0..claimable_htlcs_count {
8949                         let payment_hash = Readable::read(reader)?;
8950                         let previous_hops_len: u64 = Readable::read(reader)?;
8951                         let mut previous_hops = Vec::with_capacity(cmp::min(previous_hops_len as usize, MAX_ALLOC_SIZE/mem::size_of::<ClaimableHTLC>()));
8952                         for _ in 0..previous_hops_len {
8953                                 previous_hops.push(<ClaimableHTLC as Readable>::read(reader)?);
8954                         }
8955                         claimable_htlcs_list.push((payment_hash, previous_hops));
8956                 }
8957
8958                 let peer_state_from_chans = |channel_by_id| {
8959                         PeerState {
8960                                 channel_by_id,
8961                                 inbound_channel_request_by_id: HashMap::new(),
8962                                 latest_features: InitFeatures::empty(),
8963                                 pending_msg_events: Vec::new(),
8964                                 in_flight_monitor_updates: BTreeMap::new(),
8965                                 monitor_update_blocked_actions: BTreeMap::new(),
8966                                 actions_blocking_raa_monitor_updates: BTreeMap::new(),
8967                                 is_connected: false,
8968                         }
8969                 };
8970
8971                 let peer_count: u64 = Readable::read(reader)?;
8972                 let mut per_peer_state = HashMap::with_capacity(cmp::min(peer_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(PublicKey, Mutex<PeerState<SP>>)>()));
8973                 for _ in 0..peer_count {
8974                         let peer_pubkey = Readable::read(reader)?;
8975                         let peer_chans = funded_peer_channels.remove(&peer_pubkey).unwrap_or(HashMap::new());
8976                         let mut peer_state = peer_state_from_chans(peer_chans);
8977                         peer_state.latest_features = Readable::read(reader)?;
8978                         per_peer_state.insert(peer_pubkey, Mutex::new(peer_state));
8979                 }
8980
8981                 let event_count: u64 = Readable::read(reader)?;
8982                 let mut pending_events_read: VecDeque<(events::Event, Option<EventCompletionAction>)> =
8983                         VecDeque::with_capacity(cmp::min(event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>()));
8984                 for _ in 0..event_count {
8985                         match MaybeReadable::read(reader)? {
8986                                 Some(event) => pending_events_read.push_back((event, None)),
8987                                 None => continue,
8988                         }
8989                 }
8990
8991                 let background_event_count: u64 = Readable::read(reader)?;
8992                 for _ in 0..background_event_count {
8993                         match <u8 as Readable>::read(reader)? {
8994                                 0 => {
8995                                         // LDK versions prior to 0.0.116 wrote pending `MonitorUpdateRegeneratedOnStartup`s here,
8996                                         // however we really don't (and never did) need them - we regenerate all
8997                                         // on-startup monitor updates.
8998                                         let _: OutPoint = Readable::read(reader)?;
8999                                         let _: ChannelMonitorUpdate = Readable::read(reader)?;
9000                                 }
9001                                 _ => return Err(DecodeError::InvalidValue),
9002                         }
9003                 }
9004
9005                 let _last_node_announcement_serial: u32 = Readable::read(reader)?; // Only used < 0.0.111
9006                 let highest_seen_timestamp: u32 = Readable::read(reader)?;
9007
9008                 let pending_inbound_payment_count: u64 = Readable::read(reader)?;
9009                 let mut pending_inbound_payments: HashMap<PaymentHash, PendingInboundPayment> = HashMap::with_capacity(cmp::min(pending_inbound_payment_count as usize, MAX_ALLOC_SIZE/(3*32)));
9010                 for _ in 0..pending_inbound_payment_count {
9011                         if pending_inbound_payments.insert(Readable::read(reader)?, Readable::read(reader)?).is_some() {
9012                                 return Err(DecodeError::InvalidValue);
9013                         }
9014                 }
9015
9016                 let pending_outbound_payments_count_compat: u64 = Readable::read(reader)?;
9017                 let mut pending_outbound_payments_compat: HashMap<PaymentId, PendingOutboundPayment> =
9018                         HashMap::with_capacity(cmp::min(pending_outbound_payments_count_compat as usize, MAX_ALLOC_SIZE/32));
9019                 for _ in 0..pending_outbound_payments_count_compat {
9020                         let session_priv = Readable::read(reader)?;
9021                         let payment = PendingOutboundPayment::Legacy {
9022                                 session_privs: [session_priv].iter().cloned().collect()
9023                         };
9024                         if pending_outbound_payments_compat.insert(PaymentId(session_priv), payment).is_some() {
9025                                 return Err(DecodeError::InvalidValue)
9026                         };
9027                 }
9028
9029                 // pending_outbound_payments_no_retry is for compatibility with 0.0.101 clients.
9030                 let mut pending_outbound_payments_no_retry: Option<HashMap<PaymentId, HashSet<[u8; 32]>>> = None;
9031                 let mut pending_outbound_payments = None;
9032                 let mut pending_intercepted_htlcs: Option<HashMap<InterceptId, PendingAddHTLCInfo>> = Some(HashMap::new());
9033                 let mut received_network_pubkey: Option<PublicKey> = None;
9034                 let mut fake_scid_rand_bytes: Option<[u8; 32]> = None;
9035                 let mut probing_cookie_secret: Option<[u8; 32]> = None;
9036                 let mut claimable_htlc_purposes = None;
9037                 let mut claimable_htlc_onion_fields = None;
9038                 let mut pending_claiming_payments = Some(HashMap::new());
9039                 let mut monitor_update_blocked_actions_per_peer: Option<Vec<(_, BTreeMap<_, Vec<_>>)>> = Some(Vec::new());
9040                 let mut events_override = None;
9041                 let mut in_flight_monitor_updates: Option<HashMap<(PublicKey, OutPoint), Vec<ChannelMonitorUpdate>>> = None;
9042                 read_tlv_fields!(reader, {
9043                         (1, pending_outbound_payments_no_retry, option),
9044                         (2, pending_intercepted_htlcs, option),
9045                         (3, pending_outbound_payments, option),
9046                         (4, pending_claiming_payments, option),
9047                         (5, received_network_pubkey, option),
9048                         (6, monitor_update_blocked_actions_per_peer, option),
9049                         (7, fake_scid_rand_bytes, option),
9050                         (8, events_override, option),
9051                         (9, claimable_htlc_purposes, optional_vec),
9052                         (10, in_flight_monitor_updates, option),
9053                         (11, probing_cookie_secret, option),
9054                         (13, claimable_htlc_onion_fields, optional_vec),
9055                 });
9056                 if fake_scid_rand_bytes.is_none() {
9057                         fake_scid_rand_bytes = Some(args.entropy_source.get_secure_random_bytes());
9058                 }
9059
9060                 if probing_cookie_secret.is_none() {
9061                         probing_cookie_secret = Some(args.entropy_source.get_secure_random_bytes());
9062                 }
9063
9064                 if let Some(events) = events_override {
9065                         pending_events_read = events;
9066                 }
9067
9068                 if !channel_closures.is_empty() {
9069                         pending_events_read.append(&mut channel_closures);
9070                 }
9071
9072                 if pending_outbound_payments.is_none() && pending_outbound_payments_no_retry.is_none() {
9073                         pending_outbound_payments = Some(pending_outbound_payments_compat);
9074                 } else if pending_outbound_payments.is_none() {
9075                         let mut outbounds = HashMap::new();
9076                         for (id, session_privs) in pending_outbound_payments_no_retry.unwrap().drain() {
9077                                 outbounds.insert(id, PendingOutboundPayment::Legacy { session_privs });
9078                         }
9079                         pending_outbound_payments = Some(outbounds);
9080                 }
9081                 let pending_outbounds = OutboundPayments {
9082                         pending_outbound_payments: Mutex::new(pending_outbound_payments.unwrap()),
9083                         retry_lock: Mutex::new(())
9084                 };
9085
9086                 // We have to replay (or skip, if they were completed after we wrote the `ChannelManager`)
9087                 // each `ChannelMonitorUpdate` in `in_flight_monitor_updates`. After doing so, we have to
9088                 // check that each channel we have isn't newer than the latest `ChannelMonitorUpdate`(s) we
9089                 // replayed, and for each monitor update we have to replay we have to ensure there's a
9090                 // `ChannelMonitor` for it.
9091                 //
9092                 // In order to do so we first walk all of our live channels (so that we can check their
9093                 // state immediately after doing the update replays, when we have the `update_id`s
9094                 // available) and then walk any remaining in-flight updates.
9095                 //
9096                 // Because the actual handling of the in-flight updates is the same, it's macro'ized here:
9097                 let mut pending_background_events = Vec::new();
9098                 macro_rules! handle_in_flight_updates {
9099                         ($counterparty_node_id: expr, $chan_in_flight_upds: expr, $funding_txo: expr,
9100                          $monitor: expr, $peer_state: expr, $channel_info_log: expr
9101                         ) => { {
9102                                 let mut max_in_flight_update_id = 0;
9103                                 $chan_in_flight_upds.retain(|upd| upd.update_id > $monitor.get_latest_update_id());
9104                                 for update in $chan_in_flight_upds.iter() {
9105                                         log_trace!(args.logger, "Replaying ChannelMonitorUpdate {} for {}channel {}",
9106                                                 update.update_id, $channel_info_log, &$funding_txo.to_channel_id());
9107                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id, update.update_id);
9108                                         pending_background_events.push(
9109                                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
9110                                                         counterparty_node_id: $counterparty_node_id,
9111                                                         funding_txo: $funding_txo,
9112                                                         update: update.clone(),
9113                                                 });
9114                                 }
9115                                 if $chan_in_flight_upds.is_empty() {
9116                                         // We had some updates to apply, but it turns out they had completed before we
9117                                         // were serialized, we just weren't notified of that. Thus, we may have to run
9118                                         // the completion actions for any monitor updates, but otherwise are done.
9119                                         pending_background_events.push(
9120                                                 BackgroundEvent::MonitorUpdatesComplete {
9121                                                         counterparty_node_id: $counterparty_node_id,
9122                                                         channel_id: $funding_txo.to_channel_id(),
9123                                                 });
9124                                 }
9125                                 if $peer_state.in_flight_monitor_updates.insert($funding_txo, $chan_in_flight_upds).is_some() {
9126                                         log_error!(args.logger, "Duplicate in-flight monitor update set for the same channel!");
9127                                         return Err(DecodeError::InvalidValue);
9128                                 }
9129                                 max_in_flight_update_id
9130                         } }
9131                 }
9132
9133                 for (counterparty_id, peer_state_mtx) in per_peer_state.iter_mut() {
9134                         let mut peer_state_lock = peer_state_mtx.lock().unwrap();
9135                         let peer_state = &mut *peer_state_lock;
9136                         for phase in peer_state.channel_by_id.values() {
9137                                 if let ChannelPhase::Funded(chan) = phase {
9138                                         // Channels that were persisted have to be funded, otherwise they should have been
9139                                         // discarded.
9140                                         let funding_txo = chan.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
9141                                         let monitor = args.channel_monitors.get(&funding_txo)
9142                                                 .expect("We already checked for monitor presence when loading channels");
9143                                         let mut max_in_flight_update_id = monitor.get_latest_update_id();
9144                                         if let Some(in_flight_upds) = &mut in_flight_monitor_updates {
9145                                                 if let Some(mut chan_in_flight_upds) = in_flight_upds.remove(&(*counterparty_id, funding_txo)) {
9146                                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id,
9147                                                                 handle_in_flight_updates!(*counterparty_id, chan_in_flight_upds,
9148                                                                         funding_txo, monitor, peer_state, ""));
9149                                                 }
9150                                         }
9151                                         if chan.get_latest_unblocked_monitor_update_id() > max_in_flight_update_id {
9152                                                 // If the channel is ahead of the monitor, return InvalidValue:
9153                                                 log_error!(args.logger, "A ChannelMonitor is stale compared to the current ChannelManager! This indicates a potentially-critical violation of the chain::Watch API!");
9154                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} with update_id through {} in-flight",
9155                                                         chan.context.channel_id(), monitor.get_latest_update_id(), max_in_flight_update_id);
9156                                                 log_error!(args.logger, " but the ChannelManager is at update_id {}.", chan.get_latest_unblocked_monitor_update_id());
9157                                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
9158                                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
9159                                                 log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
9160                                                 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");
9161                                                 return Err(DecodeError::InvalidValue);
9162                                         }
9163                                 } else {
9164                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
9165                                         // created in this `channel_by_id` map.
9166                                         debug_assert!(false);
9167                                         return Err(DecodeError::InvalidValue);
9168                                 }
9169                         }
9170                 }
9171
9172                 if let Some(in_flight_upds) = in_flight_monitor_updates {
9173                         for ((counterparty_id, funding_txo), mut chan_in_flight_updates) in in_flight_upds {
9174                                 if let Some(monitor) = args.channel_monitors.get(&funding_txo) {
9175                                         // Now that we've removed all the in-flight monitor updates for channels that are
9176                                         // still open, we need to replay any monitor updates that are for closed channels,
9177                                         // creating the neccessary peer_state entries as we go.
9178                                         let peer_state_mutex = per_peer_state.entry(counterparty_id).or_insert_with(|| {
9179                                                 Mutex::new(peer_state_from_chans(HashMap::new()))
9180                                         });
9181                                         let mut peer_state = peer_state_mutex.lock().unwrap();
9182                                         handle_in_flight_updates!(counterparty_id, chan_in_flight_updates,
9183                                                 funding_txo, monitor, peer_state, "closed ");
9184                                 } else {
9185                                         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!");
9186                                         log_error!(args.logger, " The ChannelMonitor for channel {} is missing.",
9187                                                 &funding_txo.to_channel_id());
9188                                         log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
9189                                         log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
9190                                         log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
9191                                         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");
9192                                         return Err(DecodeError::InvalidValue);
9193                                 }
9194                         }
9195                 }
9196
9197                 // Note that we have to do the above replays before we push new monitor updates.
9198                 pending_background_events.append(&mut close_background_events);
9199
9200                 // If there's any preimages for forwarded HTLCs hanging around in ChannelMonitors we
9201                 // should ensure we try them again on the inbound edge. We put them here and do so after we
9202                 // have a fully-constructed `ChannelManager` at the end.
9203                 let mut pending_claims_to_replay = Vec::new();
9204
9205                 {
9206                         // If we're tracking pending payments, ensure we haven't lost any by looking at the
9207                         // ChannelMonitor data for any channels for which we do not have authorative state
9208                         // (i.e. those for which we just force-closed above or we otherwise don't have a
9209                         // corresponding `Channel` at all).
9210                         // This avoids several edge-cases where we would otherwise "forget" about pending
9211                         // payments which are still in-flight via their on-chain state.
9212                         // We only rebuild the pending payments map if we were most recently serialized by
9213                         // 0.0.102+
9214                         for (_, monitor) in args.channel_monitors.iter() {
9215                                 let counterparty_opt = id_to_peer.get(&monitor.get_funding_txo().0.to_channel_id());
9216                                 if counterparty_opt.is_none() {
9217                                         for (htlc_source, (htlc, _)) in monitor.get_pending_or_resolved_outbound_htlcs() {
9218                                                 if let HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } = htlc_source {
9219                                                         if path.hops.is_empty() {
9220                                                                 log_error!(args.logger, "Got an empty path for a pending payment");
9221                                                                 return Err(DecodeError::InvalidValue);
9222                                                         }
9223
9224                                                         let path_amt = path.final_value_msat();
9225                                                         let mut session_priv_bytes = [0; 32];
9226                                                         session_priv_bytes[..].copy_from_slice(&session_priv[..]);
9227                                                         match pending_outbounds.pending_outbound_payments.lock().unwrap().entry(payment_id) {
9228                                                                 hash_map::Entry::Occupied(mut entry) => {
9229                                                                         let newly_added = entry.get_mut().insert(session_priv_bytes, &path);
9230                                                                         log_info!(args.logger, "{} a pending payment path for {} msat for session priv {} on an existing pending payment with payment hash {}",
9231                                                                                 if newly_added { "Added" } else { "Had" }, path_amt, log_bytes!(session_priv_bytes), &htlc.payment_hash);
9232                                                                 },
9233                                                                 hash_map::Entry::Vacant(entry) => {
9234                                                                         let path_fee = path.fee_msat();
9235                                                                         entry.insert(PendingOutboundPayment::Retryable {
9236                                                                                 retry_strategy: None,
9237                                                                                 attempts: PaymentAttempts::new(),
9238                                                                                 payment_params: None,
9239                                                                                 session_privs: [session_priv_bytes].iter().map(|a| *a).collect(),
9240                                                                                 payment_hash: htlc.payment_hash,
9241                                                                                 payment_secret: None, // only used for retries, and we'll never retry on startup
9242                                                                                 payment_metadata: None, // only used for retries, and we'll never retry on startup
9243                                                                                 keysend_preimage: None, // only used for retries, and we'll never retry on startup
9244                                                                                 custom_tlvs: Vec::new(), // only used for retries, and we'll never retry on startup
9245                                                                                 pending_amt_msat: path_amt,
9246                                                                                 pending_fee_msat: Some(path_fee),
9247                                                                                 total_msat: path_amt,
9248                                                                                 starting_block_height: best_block_height,
9249                                                                         });
9250                                                                         log_info!(args.logger, "Added a pending payment for {} msat with payment hash {} for path with session priv {}",
9251                                                                                 path_amt, &htlc.payment_hash,  log_bytes!(session_priv_bytes));
9252                                                                 }
9253                                                         }
9254                                                 }
9255                                         }
9256                                         for (htlc_source, (htlc, preimage_opt)) in monitor.get_all_current_outbound_htlcs() {
9257                                                 match htlc_source {
9258                                                         HTLCSource::PreviousHopData(prev_hop_data) => {
9259                                                                 let pending_forward_matches_htlc = |info: &PendingAddHTLCInfo| {
9260                                                                         info.prev_funding_outpoint == prev_hop_data.outpoint &&
9261                                                                                 info.prev_htlc_id == prev_hop_data.htlc_id
9262                                                                 };
9263                                                                 // The ChannelMonitor is now responsible for this HTLC's
9264                                                                 // failure/success and will let us know what its outcome is. If we
9265                                                                 // still have an entry for this HTLC in `forward_htlcs` or
9266                                                                 // `pending_intercepted_htlcs`, we were apparently not persisted after
9267                                                                 // the monitor was when forwarding the payment.
9268                                                                 forward_htlcs.retain(|_, forwards| {
9269                                                                         forwards.retain(|forward| {
9270                                                                                 if let HTLCForwardInfo::AddHTLC(htlc_info) = forward {
9271                                                                                         if pending_forward_matches_htlc(&htlc_info) {
9272                                                                                                 log_info!(args.logger, "Removing pending to-forward HTLC with hash {} as it was forwarded to the closed channel {}",
9273                                                                                                         &htlc.payment_hash, &monitor.get_funding_txo().0.to_channel_id());
9274                                                                                                 false
9275                                                                                         } else { true }
9276                                                                                 } else { true }
9277                                                                         });
9278                                                                         !forwards.is_empty()
9279                                                                 });
9280                                                                 pending_intercepted_htlcs.as_mut().unwrap().retain(|intercepted_id, htlc_info| {
9281                                                                         if pending_forward_matches_htlc(&htlc_info) {
9282                                                                                 log_info!(args.logger, "Removing pending intercepted HTLC with hash {} as it was forwarded to the closed channel {}",
9283                                                                                         &htlc.payment_hash, &monitor.get_funding_txo().0.to_channel_id());
9284                                                                                 pending_events_read.retain(|(event, _)| {
9285                                                                                         if let Event::HTLCIntercepted { intercept_id: ev_id, .. } = event {
9286                                                                                                 intercepted_id != ev_id
9287                                                                                         } else { true }
9288                                                                                 });
9289                                                                                 false
9290                                                                         } else { true }
9291                                                                 });
9292                                                         },
9293                                                         HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } => {
9294                                                                 if let Some(preimage) = preimage_opt {
9295                                                                         let pending_events = Mutex::new(pending_events_read);
9296                                                                         // Note that we set `from_onchain` to "false" here,
9297                                                                         // deliberately keeping the pending payment around forever.
9298                                                                         // Given it should only occur when we have a channel we're
9299                                                                         // force-closing for being stale that's okay.
9300                                                                         // The alternative would be to wipe the state when claiming,
9301                                                                         // generating a `PaymentPathSuccessful` event but regenerating
9302                                                                         // it and the `PaymentSent` on every restart until the
9303                                                                         // `ChannelMonitor` is removed.
9304                                                                         let compl_action =
9305                                                                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
9306                                                                                         channel_funding_outpoint: monitor.get_funding_txo().0,
9307                                                                                         counterparty_node_id: path.hops[0].pubkey,
9308                                                                                 };
9309                                                                         pending_outbounds.claim_htlc(payment_id, preimage, session_priv,
9310                                                                                 path, false, compl_action, &pending_events, &args.logger);
9311                                                                         pending_events_read = pending_events.into_inner().unwrap();
9312                                                                 }
9313                                                         },
9314                                                 }
9315                                         }
9316                                 }
9317
9318                                 // Whether the downstream channel was closed or not, try to re-apply any payment
9319                                 // preimages from it which may be needed in upstream channels for forwarded
9320                                 // payments.
9321                                 let outbound_claimed_htlcs_iter = monitor.get_all_current_outbound_htlcs()
9322                                         .into_iter()
9323                                         .filter_map(|(htlc_source, (htlc, preimage_opt))| {
9324                                                 if let HTLCSource::PreviousHopData(_) = htlc_source {
9325                                                         if let Some(payment_preimage) = preimage_opt {
9326                                                                 Some((htlc_source, payment_preimage, htlc.amount_msat,
9327                                                                         // Check if `counterparty_opt.is_none()` to see if the
9328                                                                         // downstream chan is closed (because we don't have a
9329                                                                         // channel_id -> peer map entry).
9330                                                                         counterparty_opt.is_none(),
9331                                                                         monitor.get_funding_txo().0))
9332                                                         } else { None }
9333                                                 } else {
9334                                                         // If it was an outbound payment, we've handled it above - if a preimage
9335                                                         // came in and we persisted the `ChannelManager` we either handled it and
9336                                                         // are good to go or the channel force-closed - we don't have to handle the
9337                                                         // channel still live case here.
9338                                                         None
9339                                                 }
9340                                         });
9341                                 for tuple in outbound_claimed_htlcs_iter {
9342                                         pending_claims_to_replay.push(tuple);
9343                                 }
9344                         }
9345                 }
9346
9347                 if !forward_htlcs.is_empty() || pending_outbounds.needs_abandon() {
9348                         // If we have pending HTLCs to forward, assume we either dropped a
9349                         // `PendingHTLCsForwardable` or the user received it but never processed it as they
9350                         // shut down before the timer hit. Either way, set the time_forwardable to a small
9351                         // constant as enough time has likely passed that we should simply handle the forwards
9352                         // now, or at least after the user gets a chance to reconnect to our peers.
9353                         pending_events_read.push_back((events::Event::PendingHTLCsForwardable {
9354                                 time_forwardable: Duration::from_secs(2),
9355                         }, None));
9356                 }
9357
9358                 let inbound_pmt_key_material = args.node_signer.get_inbound_payment_key_material();
9359                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
9360
9361                 let mut claimable_payments = HashMap::with_capacity(claimable_htlcs_list.len());
9362                 if let Some(purposes) = claimable_htlc_purposes {
9363                         if purposes.len() != claimable_htlcs_list.len() {
9364                                 return Err(DecodeError::InvalidValue);
9365                         }
9366                         if let Some(onion_fields) = claimable_htlc_onion_fields {
9367                                 if onion_fields.len() != claimable_htlcs_list.len() {
9368                                         return Err(DecodeError::InvalidValue);
9369                                 }
9370                                 for (purpose, (onion, (payment_hash, htlcs))) in
9371                                         purposes.into_iter().zip(onion_fields.into_iter().zip(claimable_htlcs_list.into_iter()))
9372                                 {
9373                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
9374                                                 purpose, htlcs, onion_fields: onion,
9375                                         });
9376                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
9377                                 }
9378                         } else {
9379                                 for (purpose, (payment_hash, htlcs)) in purposes.into_iter().zip(claimable_htlcs_list.into_iter()) {
9380                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
9381                                                 purpose, htlcs, onion_fields: None,
9382                                         });
9383                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
9384                                 }
9385                         }
9386                 } else {
9387                         // LDK versions prior to 0.0.107 did not write a `pending_htlc_purposes`, but do
9388                         // include a `_legacy_hop_data` in the `OnionPayload`.
9389                         for (payment_hash, htlcs) in claimable_htlcs_list.drain(..) {
9390                                 if htlcs.is_empty() {
9391                                         return Err(DecodeError::InvalidValue);
9392                                 }
9393                                 let purpose = match &htlcs[0].onion_payload {
9394                                         OnionPayload::Invoice { _legacy_hop_data } => {
9395                                                 if let Some(hop_data) = _legacy_hop_data {
9396                                                         events::PaymentPurpose::InvoicePayment {
9397                                                                 payment_preimage: match pending_inbound_payments.get(&payment_hash) {
9398                                                                         Some(inbound_payment) => inbound_payment.payment_preimage,
9399                                                                         None => match inbound_payment::verify(payment_hash, &hop_data, 0, &expanded_inbound_key, &args.logger) {
9400                                                                                 Ok((payment_preimage, _)) => payment_preimage,
9401                                                                                 Err(()) => {
9402                                                                                         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);
9403                                                                                         return Err(DecodeError::InvalidValue);
9404                                                                                 }
9405                                                                         }
9406                                                                 },
9407                                                                 payment_secret: hop_data.payment_secret,
9408                                                         }
9409                                                 } else { return Err(DecodeError::InvalidValue); }
9410                                         },
9411                                         OnionPayload::Spontaneous(payment_preimage) =>
9412                                                 events::PaymentPurpose::SpontaneousPayment(*payment_preimage),
9413                                 };
9414                                 claimable_payments.insert(payment_hash, ClaimablePayment {
9415                                         purpose, htlcs, onion_fields: None,
9416                                 });
9417                         }
9418                 }
9419
9420                 let mut secp_ctx = Secp256k1::new();
9421                 secp_ctx.seeded_randomize(&args.entropy_source.get_secure_random_bytes());
9422
9423                 let our_network_pubkey = match args.node_signer.get_node_id(Recipient::Node) {
9424                         Ok(key) => key,
9425                         Err(()) => return Err(DecodeError::InvalidValue)
9426                 };
9427                 if let Some(network_pubkey) = received_network_pubkey {
9428                         if network_pubkey != our_network_pubkey {
9429                                 log_error!(args.logger, "Key that was generated does not match the existing key.");
9430                                 return Err(DecodeError::InvalidValue);
9431                         }
9432                 }
9433
9434                 let mut outbound_scid_aliases = HashSet::new();
9435                 for (_peer_node_id, peer_state_mutex) in per_peer_state.iter_mut() {
9436                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9437                         let peer_state = &mut *peer_state_lock;
9438                         for (chan_id, phase) in peer_state.channel_by_id.iter_mut() {
9439                                 if let ChannelPhase::Funded(chan) = phase {
9440                                         if chan.context.outbound_scid_alias() == 0 {
9441                                                 let mut outbound_scid_alias;
9442                                                 loop {
9443                                                         outbound_scid_alias = fake_scid::Namespace::OutboundAlias
9444                                                                 .get_fake_scid(best_block_height, &genesis_hash, fake_scid_rand_bytes.as_ref().unwrap(), &args.entropy_source);
9445                                                         if outbound_scid_aliases.insert(outbound_scid_alias) { break; }
9446                                                 }
9447                                                 chan.context.set_outbound_scid_alias(outbound_scid_alias);
9448                                         } else if !outbound_scid_aliases.insert(chan.context.outbound_scid_alias()) {
9449                                                 // Note that in rare cases its possible to hit this while reading an older
9450                                                 // channel if we just happened to pick a colliding outbound alias above.
9451                                                 log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
9452                                                 return Err(DecodeError::InvalidValue);
9453                                         }
9454                                         if chan.context.is_usable() {
9455                                                 if short_to_chan_info.insert(chan.context.outbound_scid_alias(), (chan.context.get_counterparty_node_id(), *chan_id)).is_some() {
9456                                                         // Note that in rare cases its possible to hit this while reading an older
9457                                                         // channel if we just happened to pick a colliding outbound alias above.
9458                                                         log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
9459                                                         return Err(DecodeError::InvalidValue);
9460                                                 }
9461                                         }
9462                                 } else {
9463                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
9464                                         // created in this `channel_by_id` map.
9465                                         debug_assert!(false);
9466                                         return Err(DecodeError::InvalidValue);
9467                                 }
9468                         }
9469                 }
9470
9471                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(args.fee_estimator);
9472
9473                 for (_, monitor) in args.channel_monitors.iter() {
9474                         for (payment_hash, payment_preimage) in monitor.get_stored_preimages() {
9475                                 if let Some(payment) = claimable_payments.remove(&payment_hash) {
9476                                         log_info!(args.logger, "Re-claiming HTLCs with payment hash {} as we've released the preimage to a ChannelMonitor!", &payment_hash);
9477                                         let mut claimable_amt_msat = 0;
9478                                         let mut receiver_node_id = Some(our_network_pubkey);
9479                                         let phantom_shared_secret = payment.htlcs[0].prev_hop.phantom_shared_secret;
9480                                         if phantom_shared_secret.is_some() {
9481                                                 let phantom_pubkey = args.node_signer.get_node_id(Recipient::PhantomNode)
9482                                                         .expect("Failed to get node_id for phantom node recipient");
9483                                                 receiver_node_id = Some(phantom_pubkey)
9484                                         }
9485                                         for claimable_htlc in &payment.htlcs {
9486                                                 claimable_amt_msat += claimable_htlc.value;
9487
9488                                                 // Add a holding-cell claim of the payment to the Channel, which should be
9489                                                 // applied ~immediately on peer reconnection. Because it won't generate a
9490                                                 // new commitment transaction we can just provide the payment preimage to
9491                                                 // the corresponding ChannelMonitor and nothing else.
9492                                                 //
9493                                                 // We do so directly instead of via the normal ChannelMonitor update
9494                                                 // procedure as the ChainMonitor hasn't yet been initialized, implying
9495                                                 // we're not allowed to call it directly yet. Further, we do the update
9496                                                 // without incrementing the ChannelMonitor update ID as there isn't any
9497                                                 // reason to.
9498                                                 // If we were to generate a new ChannelMonitor update ID here and then
9499                                                 // crash before the user finishes block connect we'd end up force-closing
9500                                                 // this channel as well. On the flip side, there's no harm in restarting
9501                                                 // without the new monitor persisted - we'll end up right back here on
9502                                                 // restart.
9503                                                 let previous_channel_id = claimable_htlc.prev_hop.outpoint.to_channel_id();
9504                                                 if let Some(peer_node_id) = id_to_peer.get(&previous_channel_id){
9505                                                         let peer_state_mutex = per_peer_state.get(peer_node_id).unwrap();
9506                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9507                                                         let peer_state = &mut *peer_state_lock;
9508                                                         if let Some(ChannelPhase::Funded(channel)) = peer_state.channel_by_id.get_mut(&previous_channel_id) {
9509                                                                 channel.claim_htlc_while_disconnected_dropping_mon_update(claimable_htlc.prev_hop.htlc_id, payment_preimage, &args.logger);
9510                                                         }
9511                                                 }
9512                                                 if let Some(previous_hop_monitor) = args.channel_monitors.get(&claimable_htlc.prev_hop.outpoint) {
9513                                                         previous_hop_monitor.provide_payment_preimage(&payment_hash, &payment_preimage, &args.tx_broadcaster, &bounded_fee_estimator, &args.logger);
9514                                                 }
9515                                         }
9516                                         pending_events_read.push_back((events::Event::PaymentClaimed {
9517                                                 receiver_node_id,
9518                                                 payment_hash,
9519                                                 purpose: payment.purpose,
9520                                                 amount_msat: claimable_amt_msat,
9521                                                 htlcs: payment.htlcs.iter().map(events::ClaimedHTLC::from).collect(),
9522                                                 sender_intended_total_msat: payment.htlcs.first().map(|htlc| htlc.total_msat),
9523                                         }, None));
9524                                 }
9525                         }
9526                 }
9527
9528                 for (node_id, monitor_update_blocked_actions) in monitor_update_blocked_actions_per_peer.unwrap() {
9529                         if let Some(peer_state) = per_peer_state.get(&node_id) {
9530                                 for (_, actions) in monitor_update_blocked_actions.iter() {
9531                                         for action in actions.iter() {
9532                                                 if let MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
9533                                                         downstream_counterparty_and_funding_outpoint:
9534                                                                 Some((blocked_node_id, blocked_channel_outpoint, blocking_action)), ..
9535                                                 } = action {
9536                                                         if let Some(blocked_peer_state) = per_peer_state.get(&blocked_node_id) {
9537                                                                 blocked_peer_state.lock().unwrap().actions_blocking_raa_monitor_updates
9538                                                                         .entry(blocked_channel_outpoint.to_channel_id())
9539                                                                         .or_insert_with(Vec::new).push(blocking_action.clone());
9540                                                         } else {
9541                                                                 // If the channel we were blocking has closed, we don't need to
9542                                                                 // worry about it - the blocked monitor update should never have
9543                                                                 // been released from the `Channel` object so it can't have
9544                                                                 // completed, and if the channel closed there's no reason to bother
9545                                                                 // anymore.
9546                                                         }
9547                                                 }
9548                                         }
9549                                 }
9550                                 peer_state.lock().unwrap().monitor_update_blocked_actions = monitor_update_blocked_actions;
9551                         } else {
9552                                 log_error!(args.logger, "Got blocked actions without a per-peer-state for {}", node_id);
9553                                 return Err(DecodeError::InvalidValue);
9554                         }
9555                 }
9556
9557                 let channel_manager = ChannelManager {
9558                         genesis_hash,
9559                         fee_estimator: bounded_fee_estimator,
9560                         chain_monitor: args.chain_monitor,
9561                         tx_broadcaster: args.tx_broadcaster,
9562                         router: args.router,
9563
9564                         best_block: RwLock::new(BestBlock::new(best_block_hash, best_block_height)),
9565
9566                         inbound_payment_key: expanded_inbound_key,
9567                         pending_inbound_payments: Mutex::new(pending_inbound_payments),
9568                         pending_outbound_payments: pending_outbounds,
9569                         pending_intercepted_htlcs: Mutex::new(pending_intercepted_htlcs.unwrap()),
9570
9571                         forward_htlcs: Mutex::new(forward_htlcs),
9572                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments, pending_claiming_payments: pending_claiming_payments.unwrap() }),
9573                         outbound_scid_aliases: Mutex::new(outbound_scid_aliases),
9574                         id_to_peer: Mutex::new(id_to_peer),
9575                         short_to_chan_info: FairRwLock::new(short_to_chan_info),
9576                         fake_scid_rand_bytes: fake_scid_rand_bytes.unwrap(),
9577
9578                         probing_cookie_secret: probing_cookie_secret.unwrap(),
9579
9580                         our_network_pubkey,
9581                         secp_ctx,
9582
9583                         highest_seen_timestamp: AtomicUsize::new(highest_seen_timestamp as usize),
9584
9585                         per_peer_state: FairRwLock::new(per_peer_state),
9586
9587                         pending_events: Mutex::new(pending_events_read),
9588                         pending_events_processor: AtomicBool::new(false),
9589                         pending_background_events: Mutex::new(pending_background_events),
9590                         total_consistency_lock: RwLock::new(()),
9591                         background_events_processed_since_startup: AtomicBool::new(false),
9592
9593                         event_persist_notifier: Notifier::new(),
9594                         needs_persist_flag: AtomicBool::new(false),
9595
9596                         entropy_source: args.entropy_source,
9597                         node_signer: args.node_signer,
9598                         signer_provider: args.signer_provider,
9599
9600                         logger: args.logger,
9601                         default_configuration: args.default_config,
9602                 };
9603
9604                 for htlc_source in failed_htlcs.drain(..) {
9605                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
9606                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
9607                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
9608                         channel_manager.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
9609                 }
9610
9611                 for (source, preimage, downstream_value, downstream_closed, downstream_funding) in pending_claims_to_replay {
9612                         // We use `downstream_closed` in place of `from_onchain` here just as a guess - we
9613                         // don't remember in the `ChannelMonitor` where we got a preimage from, but if the
9614                         // channel is closed we just assume that it probably came from an on-chain claim.
9615                         channel_manager.claim_funds_internal(source, preimage, Some(downstream_value),
9616                                 downstream_closed, downstream_funding);
9617                 }
9618
9619                 //TODO: Broadcast channel update for closed channels, but only after we've made a
9620                 //connection or two.
9621
9622                 Ok((best_block_hash.clone(), channel_manager))
9623         }
9624 }
9625
9626 #[cfg(test)]
9627 mod tests {
9628         use bitcoin::hashes::Hash;
9629         use bitcoin::hashes::sha256::Hash as Sha256;
9630         use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
9631         use core::sync::atomic::Ordering;
9632         use crate::events::{Event, HTLCDestination, MessageSendEvent, MessageSendEventsProvider, ClosureReason};
9633         use crate::ln::{PaymentPreimage, PaymentHash, PaymentSecret};
9634         use crate::ln::ChannelId;
9635         use crate::ln::channelmanager::{inbound_payment, PaymentId, PaymentSendFailure, RecipientOnionFields, InterceptId};
9636         use crate::ln::functional_test_utils::*;
9637         use crate::ln::msgs::{self, ErrorAction};
9638         use crate::ln::msgs::ChannelMessageHandler;
9639         use crate::routing::router::{PaymentParameters, RouteParameters, find_route};
9640         use crate::util::errors::APIError;
9641         use crate::util::test_utils;
9642         use crate::util::config::{ChannelConfig, ChannelConfigUpdate};
9643         use crate::sign::EntropySource;
9644
9645         #[test]
9646         fn test_notify_limits() {
9647                 // Check that a few cases which don't require the persistence of a new ChannelManager,
9648                 // indeed, do not cause the persistence of a new ChannelManager.
9649                 let chanmon_cfgs = create_chanmon_cfgs(3);
9650                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
9651                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
9652                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
9653
9654                 // All nodes start with a persistable update pending as `create_network` connects each node
9655                 // with all other nodes to make most tests simpler.
9656                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
9657                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
9658                 assert!(nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
9659
9660                 let mut chan = create_announced_chan_between_nodes(&nodes, 0, 1);
9661
9662                 // We check that the channel info nodes have doesn't change too early, even though we try
9663                 // to connect messages with new values
9664                 chan.0.contents.fee_base_msat *= 2;
9665                 chan.1.contents.fee_base_msat *= 2;
9666                 let node_a_chan_info = nodes[0].node.list_channels_with_counterparty(
9667                         &nodes[1].node.get_our_node_id()).pop().unwrap();
9668                 let node_b_chan_info = nodes[1].node.list_channels_with_counterparty(
9669                         &nodes[0].node.get_our_node_id()).pop().unwrap();
9670
9671                 // The first two nodes (which opened a channel) should now require fresh persistence
9672                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
9673                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
9674                 // ... but the last node should not.
9675                 assert!(!nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
9676                 // After persisting the first two nodes they should no longer need fresh persistence.
9677                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
9678                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
9679
9680                 // Node 3, unrelated to the only channel, shouldn't care if it receives a channel_update
9681                 // about the channel.
9682                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.0);
9683                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.1);
9684                 assert!(!nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
9685
9686                 // The nodes which are a party to the channel should also ignore messages from unrelated
9687                 // parties.
9688                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
9689                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
9690                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
9691                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
9692                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
9693                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
9694
9695                 // At this point the channel info given by peers should still be the same.
9696                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
9697                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
9698
9699                 // An earlier version of handle_channel_update didn't check the directionality of the
9700                 // update message and would always update the local fee info, even if our peer was
9701                 // (spuriously) forwarding us our own channel_update.
9702                 let as_node_one = nodes[0].node.get_our_node_id().serialize()[..] < nodes[1].node.get_our_node_id().serialize()[..];
9703                 let as_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.0 } else { &chan.1 };
9704                 let bs_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.1 } else { &chan.0 };
9705
9706                 // First deliver each peers' own message, checking that the node doesn't need to be
9707                 // persisted and that its channel info remains the same.
9708                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &as_update);
9709                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &bs_update);
9710                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
9711                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
9712                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
9713                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
9714
9715                 // Finally, deliver the other peers' message, ensuring each node needs to be persisted and
9716                 // the channel info has updated.
9717                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &bs_update);
9718                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &as_update);
9719                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
9720                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
9721                 assert_ne!(nodes[0].node.list_channels()[0], node_a_chan_info);
9722                 assert_ne!(nodes[1].node.list_channels()[0], node_b_chan_info);
9723         }
9724
9725         #[test]
9726         fn test_keysend_dup_hash_partial_mpp() {
9727                 // Test that a keysend payment with a duplicate hash to an existing partial MPP payment fails as
9728                 // expected.
9729                 let chanmon_cfgs = create_chanmon_cfgs(2);
9730                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9731                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9732                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9733                 create_announced_chan_between_nodes(&nodes, 0, 1);
9734
9735                 // First, send a partial MPP payment.
9736                 let (route, our_payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100_000);
9737                 let mut mpp_route = route.clone();
9738                 mpp_route.paths.push(mpp_route.paths[0].clone());
9739
9740                 let payment_id = PaymentId([42; 32]);
9741                 // Use the utility function send_payment_along_path to send the payment with MPP data which
9742                 // indicates there are more HTLCs coming.
9743                 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.
9744                 let session_privs = nodes[0].node.test_add_new_pending_payment(our_payment_hash,
9745                         RecipientOnionFields::secret_only(payment_secret), payment_id, &mpp_route).unwrap();
9746                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[0], &our_payment_hash,
9747                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[0]).unwrap();
9748                 check_added_monitors!(nodes[0], 1);
9749                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9750                 assert_eq!(events.len(), 1);
9751                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), false, None);
9752
9753                 // Next, send a keysend payment with the same payment_hash and make sure it fails.
9754                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9755                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
9756                 check_added_monitors!(nodes[0], 1);
9757                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9758                 assert_eq!(events.len(), 1);
9759                 let ev = events.drain(..).next().unwrap();
9760                 let payment_event = SendEvent::from_event(ev);
9761                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9762                 check_added_monitors!(nodes[1], 0);
9763                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9764                 expect_pending_htlcs_forwardable!(nodes[1]);
9765                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
9766                 check_added_monitors!(nodes[1], 1);
9767                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9768                 assert!(updates.update_add_htlcs.is_empty());
9769                 assert!(updates.update_fulfill_htlcs.is_empty());
9770                 assert_eq!(updates.update_fail_htlcs.len(), 1);
9771                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9772                 assert!(updates.update_fee.is_none());
9773                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
9774                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
9775                 expect_payment_failed!(nodes[0], our_payment_hash, true);
9776
9777                 // Send the second half of the original MPP payment.
9778                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[1], &our_payment_hash,
9779                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[1]).unwrap();
9780                 check_added_monitors!(nodes[0], 1);
9781                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9782                 assert_eq!(events.len(), 1);
9783                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), true, None);
9784
9785                 // Claim the full MPP payment. Note that we can't use a test utility like
9786                 // claim_funds_along_route because the ordering of the messages causes the second half of the
9787                 // payment to be put in the holding cell, which confuses the test utilities. So we exchange the
9788                 // lightning messages manually.
9789                 nodes[1].node.claim_funds(payment_preimage);
9790                 expect_payment_claimed!(nodes[1], our_payment_hash, 200_000);
9791                 check_added_monitors!(nodes[1], 2);
9792
9793                 let bs_first_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9794                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_first_updates.update_fulfill_htlcs[0]);
9795                 expect_payment_sent(&nodes[0], payment_preimage, None, false, false);
9796                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_first_updates.commitment_signed);
9797                 check_added_monitors!(nodes[0], 1);
9798                 let (as_first_raa, as_first_cs) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
9799                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_first_raa);
9800                 check_added_monitors!(nodes[1], 1);
9801                 let bs_second_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9802                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_first_cs);
9803                 check_added_monitors!(nodes[1], 1);
9804                 let bs_first_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
9805                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_second_updates.update_fulfill_htlcs[0]);
9806                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_second_updates.commitment_signed);
9807                 check_added_monitors!(nodes[0], 1);
9808                 let as_second_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
9809                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_first_raa);
9810                 let as_second_updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
9811                 check_added_monitors!(nodes[0], 1);
9812                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_second_raa);
9813                 check_added_monitors!(nodes[1], 1);
9814                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_second_updates.commitment_signed);
9815                 check_added_monitors!(nodes[1], 1);
9816                 let bs_third_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
9817                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_third_raa);
9818                 check_added_monitors!(nodes[0], 1);
9819
9820                 // Note that successful MPP payments will generate a single PaymentSent event upon the first
9821                 // path's success and a PaymentPathSuccessful event for each path's success.
9822                 let events = nodes[0].node.get_and_clear_pending_events();
9823                 assert_eq!(events.len(), 2);
9824                 match events[0] {
9825                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
9826                                 assert_eq!(payment_id, *actual_payment_id);
9827                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
9828                                 assert_eq!(route.paths[0], *path);
9829                         },
9830                         _ => panic!("Unexpected event"),
9831                 }
9832                 match events[1] {
9833                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
9834                                 assert_eq!(payment_id, *actual_payment_id);
9835                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
9836                                 assert_eq!(route.paths[0], *path);
9837                         },
9838                         _ => panic!("Unexpected event"),
9839                 }
9840         }
9841
9842         #[test]
9843         fn test_keysend_dup_payment_hash() {
9844                 do_test_keysend_dup_payment_hash(false);
9845                 do_test_keysend_dup_payment_hash(true);
9846         }
9847
9848         fn do_test_keysend_dup_payment_hash(accept_mpp_keysend: bool) {
9849                 // (1): Test that a keysend payment with a duplicate payment hash to an existing pending
9850                 //      outbound regular payment fails as expected.
9851                 // (2): Test that a regular payment with a duplicate payment hash to an existing keysend payment
9852                 //      fails as expected.
9853                 // (3): Test that a keysend payment with a duplicate payment hash to an existing keysend
9854                 //      payment fails as expected. When `accept_mpp_keysend` is false, this tests that we
9855                 //      reject MPP keysend payments, since in this case where the payment has no payment
9856                 //      secret, a keysend payment with a duplicate hash is basically an MPP keysend. If
9857                 //      `accept_mpp_keysend` is true, this tests that we only accept MPP keysends with
9858                 //      payment secrets and reject otherwise.
9859                 let chanmon_cfgs = create_chanmon_cfgs(2);
9860                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9861                 let mut mpp_keysend_cfg = test_default_channel_config();
9862                 mpp_keysend_cfg.accept_mpp_keysend = accept_mpp_keysend;
9863                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(mpp_keysend_cfg)]);
9864                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9865                 create_announced_chan_between_nodes(&nodes, 0, 1);
9866                 let scorer = test_utils::TestScorer::new();
9867                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
9868
9869                 // To start (1), send a regular payment but don't claim it.
9870                 let expected_route = [&nodes[1]];
9871                 let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &expected_route, 100_000);
9872
9873                 // Next, attempt a keysend payment and make sure it fails.
9874                 let route_params = RouteParameters::from_payment_params_and_value(
9875                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(),
9876                         TEST_FINAL_CLTV, false), 100_000);
9877                 let route = find_route(
9878                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
9879                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
9880                 ).unwrap();
9881                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9882                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
9883                 check_added_monitors!(nodes[0], 1);
9884                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9885                 assert_eq!(events.len(), 1);
9886                 let ev = events.drain(..).next().unwrap();
9887                 let payment_event = SendEvent::from_event(ev);
9888                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9889                 check_added_monitors!(nodes[1], 0);
9890                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9891                 // We have to forward pending HTLCs twice - once tries to forward the payment forward (and
9892                 // fails), the second will process the resulting failure and fail the HTLC backward
9893                 expect_pending_htlcs_forwardable!(nodes[1]);
9894                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
9895                 check_added_monitors!(nodes[1], 1);
9896                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9897                 assert!(updates.update_add_htlcs.is_empty());
9898                 assert!(updates.update_fulfill_htlcs.is_empty());
9899                 assert_eq!(updates.update_fail_htlcs.len(), 1);
9900                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9901                 assert!(updates.update_fee.is_none());
9902                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
9903                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
9904                 expect_payment_failed!(nodes[0], payment_hash, true);
9905
9906                 // Finally, claim the original payment.
9907                 claim_payment(&nodes[0], &expected_route, payment_preimage);
9908
9909                 // To start (2), send a keysend payment but don't claim it.
9910                 let payment_preimage = PaymentPreimage([42; 32]);
9911                 let route = find_route(
9912                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
9913                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
9914                 ).unwrap();
9915                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9916                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
9917                 check_added_monitors!(nodes[0], 1);
9918                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9919                 assert_eq!(events.len(), 1);
9920                 let event = events.pop().unwrap();
9921                 let path = vec![&nodes[1]];
9922                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
9923
9924                 // Next, attempt a regular payment and make sure it fails.
9925                 let payment_secret = PaymentSecret([43; 32]);
9926                 nodes[0].node.send_payment_with_route(&route, payment_hash,
9927                         RecipientOnionFields::secret_only(payment_secret), PaymentId(payment_hash.0)).unwrap();
9928                 check_added_monitors!(nodes[0], 1);
9929                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9930                 assert_eq!(events.len(), 1);
9931                 let ev = events.drain(..).next().unwrap();
9932                 let payment_event = SendEvent::from_event(ev);
9933                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9934                 check_added_monitors!(nodes[1], 0);
9935                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9936                 expect_pending_htlcs_forwardable!(nodes[1]);
9937                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
9938                 check_added_monitors!(nodes[1], 1);
9939                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9940                 assert!(updates.update_add_htlcs.is_empty());
9941                 assert!(updates.update_fulfill_htlcs.is_empty());
9942                 assert_eq!(updates.update_fail_htlcs.len(), 1);
9943                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9944                 assert!(updates.update_fee.is_none());
9945                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
9946                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
9947                 expect_payment_failed!(nodes[0], payment_hash, true);
9948
9949                 // Finally, succeed the keysend payment.
9950                 claim_payment(&nodes[0], &expected_route, payment_preimage);
9951
9952                 // To start (3), send a keysend payment but don't claim it.
9953                 let payment_id_1 = PaymentId([44; 32]);
9954                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9955                         RecipientOnionFields::spontaneous_empty(), payment_id_1).unwrap();
9956                 check_added_monitors!(nodes[0], 1);
9957                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9958                 assert_eq!(events.len(), 1);
9959                 let event = events.pop().unwrap();
9960                 let path = vec![&nodes[1]];
9961                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
9962
9963                 // Next, attempt a keysend payment and make sure it fails.
9964                 let route_params = RouteParameters::from_payment_params_and_value(
9965                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(), TEST_FINAL_CLTV, false),
9966                         100_000
9967                 );
9968                 let route = find_route(
9969                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
9970                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
9971                 ).unwrap();
9972                 let payment_id_2 = PaymentId([45; 32]);
9973                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9974                         RecipientOnionFields::spontaneous_empty(), payment_id_2).unwrap();
9975                 check_added_monitors!(nodes[0], 1);
9976                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9977                 assert_eq!(events.len(), 1);
9978                 let ev = events.drain(..).next().unwrap();
9979                 let payment_event = SendEvent::from_event(ev);
9980                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9981                 check_added_monitors!(nodes[1], 0);
9982                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9983                 expect_pending_htlcs_forwardable!(nodes[1]);
9984                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
9985                 check_added_monitors!(nodes[1], 1);
9986                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9987                 assert!(updates.update_add_htlcs.is_empty());
9988                 assert!(updates.update_fulfill_htlcs.is_empty());
9989                 assert_eq!(updates.update_fail_htlcs.len(), 1);
9990                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9991                 assert!(updates.update_fee.is_none());
9992                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
9993                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
9994                 expect_payment_failed!(nodes[0], payment_hash, true);
9995
9996                 // Finally, claim the original payment.
9997                 claim_payment(&nodes[0], &expected_route, payment_preimage);
9998         }
9999
10000         #[test]
10001         fn test_keysend_hash_mismatch() {
10002                 // Test that if we receive a keysend `update_add_htlc` msg, we fail as expected if the keysend
10003                 // preimage doesn't match the msg's payment hash.
10004                 let chanmon_cfgs = create_chanmon_cfgs(2);
10005                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10006                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10007                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10008
10009                 let payer_pubkey = nodes[0].node.get_our_node_id();
10010                 let payee_pubkey = nodes[1].node.get_our_node_id();
10011
10012                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
10013                 let route_params = RouteParameters::from_payment_params_and_value(
10014                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
10015                 let network_graph = nodes[0].network_graph.clone();
10016                 let first_hops = nodes[0].node.list_usable_channels();
10017                 let scorer = test_utils::TestScorer::new();
10018                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
10019                 let route = find_route(
10020                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
10021                         nodes[0].logger, &scorer, &(), &random_seed_bytes
10022                 ).unwrap();
10023
10024                 let test_preimage = PaymentPreimage([42; 32]);
10025                 let mismatch_payment_hash = PaymentHash([43; 32]);
10026                 let session_privs = nodes[0].node.test_add_new_pending_payment(mismatch_payment_hash,
10027                         RecipientOnionFields::spontaneous_empty(), PaymentId(mismatch_payment_hash.0), &route).unwrap();
10028                 nodes[0].node.test_send_payment_internal(&route, mismatch_payment_hash,
10029                         RecipientOnionFields::spontaneous_empty(), Some(test_preimage), PaymentId(mismatch_payment_hash.0), None, session_privs).unwrap();
10030                 check_added_monitors!(nodes[0], 1);
10031
10032                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10033                 assert_eq!(updates.update_add_htlcs.len(), 1);
10034                 assert!(updates.update_fulfill_htlcs.is_empty());
10035                 assert!(updates.update_fail_htlcs.is_empty());
10036                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10037                 assert!(updates.update_fee.is_none());
10038                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
10039
10040                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "Payment preimage didn't match payment hash", 1);
10041         }
10042
10043         #[test]
10044         fn test_keysend_msg_with_secret_err() {
10045                 // Test that we error as expected if we receive a keysend payment that includes a payment
10046                 // secret when we don't support MPP keysend.
10047                 let mut reject_mpp_keysend_cfg = test_default_channel_config();
10048                 reject_mpp_keysend_cfg.accept_mpp_keysend = false;
10049                 let chanmon_cfgs = create_chanmon_cfgs(2);
10050                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10051                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(reject_mpp_keysend_cfg)]);
10052                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10053
10054                 let payer_pubkey = nodes[0].node.get_our_node_id();
10055                 let payee_pubkey = nodes[1].node.get_our_node_id();
10056
10057                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
10058                 let route_params = RouteParameters::from_payment_params_and_value(
10059                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
10060                 let network_graph = nodes[0].network_graph.clone();
10061                 let first_hops = nodes[0].node.list_usable_channels();
10062                 let scorer = test_utils::TestScorer::new();
10063                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
10064                 let route = find_route(
10065                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
10066                         nodes[0].logger, &scorer, &(), &random_seed_bytes
10067                 ).unwrap();
10068
10069                 let test_preimage = PaymentPreimage([42; 32]);
10070                 let test_secret = PaymentSecret([43; 32]);
10071                 let payment_hash = PaymentHash(Sha256::hash(&test_preimage.0).into_inner());
10072                 let session_privs = nodes[0].node.test_add_new_pending_payment(payment_hash,
10073                         RecipientOnionFields::secret_only(test_secret), PaymentId(payment_hash.0), &route).unwrap();
10074                 nodes[0].node.test_send_payment_internal(&route, payment_hash,
10075                         RecipientOnionFields::secret_only(test_secret), Some(test_preimage),
10076                         PaymentId(payment_hash.0), None, session_privs).unwrap();
10077                 check_added_monitors!(nodes[0], 1);
10078
10079                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10080                 assert_eq!(updates.update_add_htlcs.len(), 1);
10081                 assert!(updates.update_fulfill_htlcs.is_empty());
10082                 assert!(updates.update_fail_htlcs.is_empty());
10083                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10084                 assert!(updates.update_fee.is_none());
10085                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
10086
10087                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "We don't support MPP keysend payments", 1);
10088         }
10089
10090         #[test]
10091         fn test_multi_hop_missing_secret() {
10092                 let chanmon_cfgs = create_chanmon_cfgs(4);
10093                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
10094                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
10095                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
10096
10097                 let chan_1_id = create_announced_chan_between_nodes(&nodes, 0, 1).0.contents.short_channel_id;
10098                 let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2).0.contents.short_channel_id;
10099                 let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3).0.contents.short_channel_id;
10100                 let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3).0.contents.short_channel_id;
10101
10102                 // Marshall an MPP route.
10103                 let (mut route, payment_hash, _, _) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
10104                 let path = route.paths[0].clone();
10105                 route.paths.push(path);
10106                 route.paths[0].hops[0].pubkey = nodes[1].node.get_our_node_id();
10107                 route.paths[0].hops[0].short_channel_id = chan_1_id;
10108                 route.paths[0].hops[1].short_channel_id = chan_3_id;
10109                 route.paths[1].hops[0].pubkey = nodes[2].node.get_our_node_id();
10110                 route.paths[1].hops[0].short_channel_id = chan_2_id;
10111                 route.paths[1].hops[1].short_channel_id = chan_4_id;
10112
10113                 match nodes[0].node.send_payment_with_route(&route, payment_hash,
10114                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_hash.0))
10115                 .unwrap_err() {
10116                         PaymentSendFailure::ParameterError(APIError::APIMisuseError { ref err }) => {
10117                                 assert!(regex::Regex::new(r"Payment secret is required for multi-path payments").unwrap().is_match(err))
10118                         },
10119                         _ => panic!("unexpected error")
10120                 }
10121         }
10122
10123         #[test]
10124         fn test_drop_disconnected_peers_when_removing_channels() {
10125                 let chanmon_cfgs = create_chanmon_cfgs(2);
10126                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10127                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10128                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10129
10130                 let chan = create_announced_chan_between_nodes(&nodes, 0, 1);
10131
10132                 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
10133                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10134
10135                 nodes[0].node.force_close_broadcasting_latest_txn(&chan.2, &nodes[1].node.get_our_node_id()).unwrap();
10136                 check_closed_broadcast!(nodes[0], true);
10137                 check_added_monitors!(nodes[0], 1);
10138                 check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed, [nodes[1].node.get_our_node_id()], 100000);
10139
10140                 {
10141                         // Assert that nodes[1] is awaiting removal for nodes[0] once nodes[1] has been
10142                         // disconnected and the channel between has been force closed.
10143                         let nodes_0_per_peer_state = nodes[0].node.per_peer_state.read().unwrap();
10144                         // Assert that nodes[1] isn't removed before `timer_tick_occurred` has been executed.
10145                         assert_eq!(nodes_0_per_peer_state.len(), 1);
10146                         assert!(nodes_0_per_peer_state.get(&nodes[1].node.get_our_node_id()).is_some());
10147                 }
10148
10149                 nodes[0].node.timer_tick_occurred();
10150
10151                 {
10152                         // Assert that nodes[1] has now been removed.
10153                         assert_eq!(nodes[0].node.per_peer_state.read().unwrap().len(), 0);
10154                 }
10155         }
10156
10157         #[test]
10158         fn bad_inbound_payment_hash() {
10159                 // Add coverage for checking that a user-provided payment hash matches the payment secret.
10160                 let chanmon_cfgs = create_chanmon_cfgs(2);
10161                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10162                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10163                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10164
10165                 let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[0]);
10166                 let payment_data = msgs::FinalOnionHopData {
10167                         payment_secret,
10168                         total_msat: 100_000,
10169                 };
10170
10171                 // Ensure that if the payment hash given to `inbound_payment::verify` differs from the original,
10172                 // payment verification fails as expected.
10173                 let mut bad_payment_hash = payment_hash.clone();
10174                 bad_payment_hash.0[0] += 1;
10175                 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) {
10176                         Ok(_) => panic!("Unexpected ok"),
10177                         Err(()) => {
10178                                 nodes[0].logger.assert_log_contains("lightning::ln::inbound_payment", "Failing HTLC with user-generated payment_hash", 1);
10179                         }
10180                 }
10181
10182                 // Check that using the original payment hash succeeds.
10183                 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());
10184         }
10185
10186         #[test]
10187         fn test_id_to_peer_coverage() {
10188                 // Test that the `ChannelManager:id_to_peer` contains channels which have been assigned
10189                 // a `channel_id` (i.e. have had the funding tx created), and that they are removed once
10190                 // the channel is successfully closed.
10191                 let chanmon_cfgs = create_chanmon_cfgs(2);
10192                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10193                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10194                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10195
10196                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1_000_000, 500_000_000, 42, None).unwrap();
10197                 let open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10198                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel);
10199                 let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10200                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
10201
10202                 let (temporary_channel_id, tx, _funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 1_000_000, 42);
10203                 let channel_id = ChannelId::from_bytes(tx.txid().into_inner());
10204                 {
10205                         // Ensure that the `id_to_peer` map is empty until either party has received the
10206                         // funding transaction, and have the real `channel_id`.
10207                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
10208                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10209                 }
10210
10211                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
10212                 {
10213                         // Assert that `nodes[0]`'s `id_to_peer` map is populated with the channel as soon as
10214                         // as it has the funding transaction.
10215                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10216                         assert_eq!(nodes_0_lock.len(), 1);
10217                         assert!(nodes_0_lock.contains_key(&channel_id));
10218                 }
10219
10220                 assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10221
10222                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
10223
10224                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
10225                 {
10226                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10227                         assert_eq!(nodes_0_lock.len(), 1);
10228                         assert!(nodes_0_lock.contains_key(&channel_id));
10229                 }
10230                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
10231
10232                 {
10233                         // Assert that `nodes[1]`'s `id_to_peer` map is populated with the channel as soon as
10234                         // as it has the funding transaction.
10235                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10236                         assert_eq!(nodes_1_lock.len(), 1);
10237                         assert!(nodes_1_lock.contains_key(&channel_id));
10238                 }
10239                 check_added_monitors!(nodes[1], 1);
10240                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
10241                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
10242                 check_added_monitors!(nodes[0], 1);
10243                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
10244                 let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
10245                 let (announcement, nodes_0_update, nodes_1_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
10246                 update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &nodes_0_update, &nodes_1_update);
10247
10248                 nodes[0].node.close_channel(&channel_id, &nodes[1].node.get_our_node_id()).unwrap();
10249                 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()));
10250                 let nodes_1_shutdown = get_event_msg!(nodes[1], MessageSendEvent::SendShutdown, nodes[0].node.get_our_node_id());
10251                 nodes[0].node.handle_shutdown(&nodes[1].node.get_our_node_id(), &nodes_1_shutdown);
10252
10253                 let closing_signed_node_0 = get_event_msg!(nodes[0], MessageSendEvent::SendClosingSigned, nodes[1].node.get_our_node_id());
10254                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0);
10255                 {
10256                         // Assert that the channel is kept in the `id_to_peer` map for both nodes until the
10257                         // channel can be fully closed by both parties (i.e. no outstanding htlcs exists, the
10258                         // fee for the closing transaction has been negotiated and the parties has the other
10259                         // party's signature for the fee negotiated closing transaction.)
10260                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10261                         assert_eq!(nodes_0_lock.len(), 1);
10262                         assert!(nodes_0_lock.contains_key(&channel_id));
10263                 }
10264
10265                 {
10266                         // At this stage, `nodes[1]` has proposed a fee for the closing transaction in the
10267                         // `handle_closing_signed` call above. As `nodes[1]` has not yet received the signature
10268                         // from `nodes[0]` for the closing transaction with the proposed fee, the channel is
10269                         // kept in the `nodes[1]`'s `id_to_peer` map.
10270                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10271                         assert_eq!(nodes_1_lock.len(), 1);
10272                         assert!(nodes_1_lock.contains_key(&channel_id));
10273                 }
10274
10275                 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()));
10276                 {
10277                         // `nodes[0]` accepts `nodes[1]`'s proposed fee for the closing transaction, and
10278                         // therefore has all it needs to fully close the channel (both signatures for the
10279                         // closing transaction).
10280                         // Assert that the channel is removed from `nodes[0]`'s `id_to_peer` map as it can be
10281                         // fully closed by `nodes[0]`.
10282                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
10283
10284                         // Assert that the channel is still in `nodes[1]`'s  `id_to_peer` map, as `nodes[1]`
10285                         // doesn't have `nodes[0]`'s signature for the closing transaction yet.
10286                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10287                         assert_eq!(nodes_1_lock.len(), 1);
10288                         assert!(nodes_1_lock.contains_key(&channel_id));
10289                 }
10290
10291                 let (_nodes_0_update, closing_signed_node_0) = get_closing_signed_broadcast!(nodes[0].node, nodes[1].node.get_our_node_id());
10292
10293                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0.unwrap());
10294                 {
10295                         // Assert that the channel has now been removed from both parties `id_to_peer` map once
10296                         // they both have everything required to fully close the channel.
10297                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10298                 }
10299                 let (_nodes_1_update, _none) = get_closing_signed_broadcast!(nodes[1].node, nodes[0].node.get_our_node_id());
10300
10301                 check_closed_event!(nodes[0], 1, ClosureReason::CooperativeClosure, [nodes[1].node.get_our_node_id()], 1000000);
10302                 check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure, [nodes[0].node.get_our_node_id()], 1000000);
10303         }
10304
10305         fn check_not_connected_to_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
10306                 let expected_message = format!("Not connected to node: {}", expected_public_key);
10307                 check_api_error_message(expected_message, res_err)
10308         }
10309
10310         fn check_unkown_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
10311                 let expected_message = format!("Can't find a peer matching the passed counterparty node_id {}", expected_public_key);
10312                 check_api_error_message(expected_message, res_err)
10313         }
10314
10315         fn check_api_error_message<T>(expected_err_message: String, res_err: Result<T, APIError>) {
10316                 match res_err {
10317                         Err(APIError::APIMisuseError { err }) => {
10318                                 assert_eq!(err, expected_err_message);
10319                         },
10320                         Err(APIError::ChannelUnavailable { err }) => {
10321                                 assert_eq!(err, expected_err_message);
10322                         },
10323                         Ok(_) => panic!("Unexpected Ok"),
10324                         Err(_) => panic!("Unexpected Error"),
10325                 }
10326         }
10327
10328         #[test]
10329         fn test_api_calls_with_unkown_counterparty_node() {
10330                 // Tests that our API functions that expects a `counterparty_node_id` as input, behaves as
10331                 // expected if the `counterparty_node_id` is an unkown peer in the
10332                 // `ChannelManager::per_peer_state` map.
10333                 let chanmon_cfg = create_chanmon_cfgs(2);
10334                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
10335                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[None, None]);
10336                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
10337
10338                 // Dummy values
10339                 let channel_id = ChannelId::from_bytes([4; 32]);
10340                 let unkown_public_key = PublicKey::from_secret_key(&Secp256k1::signing_only(), &SecretKey::from_slice(&[42; 32]).unwrap());
10341                 let intercept_id = InterceptId([0; 32]);
10342
10343                 // Test the API functions.
10344                 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);
10345
10346                 check_unkown_peer_error(nodes[0].node.accept_inbound_channel(&channel_id, &unkown_public_key, 42), unkown_public_key);
10347
10348                 check_unkown_peer_error(nodes[0].node.close_channel(&channel_id, &unkown_public_key), unkown_public_key);
10349
10350                 check_unkown_peer_error(nodes[0].node.force_close_broadcasting_latest_txn(&channel_id, &unkown_public_key), unkown_public_key);
10351
10352                 check_unkown_peer_error(nodes[0].node.force_close_without_broadcasting_txn(&channel_id, &unkown_public_key), unkown_public_key);
10353
10354                 check_unkown_peer_error(nodes[0].node.forward_intercepted_htlc(intercept_id, &channel_id, unkown_public_key, 1_000_000), unkown_public_key);
10355
10356                 check_unkown_peer_error(nodes[0].node.update_channel_config(&unkown_public_key, &[channel_id], &ChannelConfig::default()), unkown_public_key);
10357         }
10358
10359         #[test]
10360         fn test_connection_limiting() {
10361                 // Test that we limit un-channel'd peers and un-funded channels properly.
10362                 let chanmon_cfgs = create_chanmon_cfgs(2);
10363                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10364                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10365                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10366
10367                 // Note that create_network connects the nodes together for us
10368
10369                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10370                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10371
10372                 let mut funding_tx = None;
10373                 for idx in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
10374                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10375                         let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10376
10377                         if idx == 0 {
10378                                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
10379                                 let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100_000, 42);
10380                                 funding_tx = Some(tx.clone());
10381                                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx).unwrap();
10382                                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
10383
10384                                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
10385                                 check_added_monitors!(nodes[1], 1);
10386                                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
10387
10388                                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
10389
10390                                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
10391                                 check_added_monitors!(nodes[0], 1);
10392                                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
10393                         }
10394                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10395                 }
10396
10397                 // A MAX_UNFUNDED_CHANS_PER_PEER + 1 channel will be summarily rejected
10398                 open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10399                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10400                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10401                         open_channel_msg.temporary_channel_id);
10402
10403                 // Further, because all of our channels with nodes[0] are inbound, and none of them funded,
10404                 // it doesn't count as a "protected" peer, i.e. it counts towards the MAX_NO_CHANNEL_PEERS
10405                 // limit.
10406                 let mut peer_pks = Vec::with_capacity(super::MAX_NO_CHANNEL_PEERS);
10407                 for _ in 1..super::MAX_NO_CHANNEL_PEERS {
10408                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10409                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10410                         peer_pks.push(random_pk);
10411                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
10412                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10413                         }, true).unwrap();
10414                 }
10415                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10416                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10417                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10418                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10419                 }, true).unwrap_err();
10420
10421                 // Also importantly, because nodes[0] isn't "protected", we will refuse a reconnection from
10422                 // them if we have too many un-channel'd peers.
10423                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10424                 let chan_closed_events = nodes[1].node.get_and_clear_pending_events();
10425                 assert_eq!(chan_closed_events.len(), super::MAX_UNFUNDED_CHANS_PER_PEER - 1);
10426                 for ev in chan_closed_events {
10427                         if let Event::ChannelClosed { .. } = ev { } else { panic!(); }
10428                 }
10429                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10430                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10431                 }, true).unwrap();
10432                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10433                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10434                 }, true).unwrap_err();
10435
10436                 // but of course if the connection is outbound its allowed...
10437                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10438                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10439                 }, false).unwrap();
10440                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10441
10442                 // Now nodes[0] is disconnected but still has a pending, un-funded channel lying around.
10443                 // Even though we accept one more connection from new peers, we won't actually let them
10444                 // open channels.
10445                 assert!(peer_pks.len() > super::MAX_UNFUNDED_CHANNEL_PEERS - 1);
10446                 for i in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
10447                         nodes[1].node.handle_open_channel(&peer_pks[i], &open_channel_msg);
10448                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, peer_pks[i]);
10449                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10450                 }
10451                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10452                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
10453                         open_channel_msg.temporary_channel_id);
10454
10455                 // Of course, however, outbound channels are always allowed
10456                 nodes[1].node.create_channel(last_random_pk, 100_000, 0, 42, None).unwrap();
10457                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, last_random_pk);
10458
10459                 // If we fund the first channel, nodes[0] has a live on-chain channel with us, it is now
10460                 // "protected" and can connect again.
10461                 mine_transaction(&nodes[1], funding_tx.as_ref().unwrap());
10462                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10463                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10464                 }, true).unwrap();
10465                 get_event_msg!(nodes[1], MessageSendEvent::SendChannelReestablish, nodes[0].node.get_our_node_id());
10466
10467                 // Further, because the first channel was funded, we can open another channel with
10468                 // last_random_pk.
10469                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10470                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
10471         }
10472
10473         #[test]
10474         fn test_outbound_chans_unlimited() {
10475                 // Test that we never refuse an outbound channel even if a peer is unfuned-channel-limited
10476                 let chanmon_cfgs = create_chanmon_cfgs(2);
10477                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10478                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10479                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10480
10481                 // Note that create_network connects the nodes together for us
10482
10483                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10484                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10485
10486                 for _ in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
10487                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10488                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10489                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10490                 }
10491
10492                 // Once we have MAX_UNFUNDED_CHANS_PER_PEER unfunded channels, new inbound channels will be
10493                 // rejected.
10494                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10495                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10496                         open_channel_msg.temporary_channel_id);
10497
10498                 // but we can still open an outbound channel.
10499                 nodes[1].node.create_channel(nodes[0].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10500                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
10501
10502                 // but even with such an outbound channel, additional inbound channels will still fail.
10503                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10504                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10505                         open_channel_msg.temporary_channel_id);
10506         }
10507
10508         #[test]
10509         fn test_0conf_limiting() {
10510                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
10511                 // flag set and (sometimes) accept channels as 0conf.
10512                 let chanmon_cfgs = create_chanmon_cfgs(2);
10513                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10514                 let mut settings = test_default_channel_config();
10515                 settings.manually_accept_inbound_channels = true;
10516                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(settings)]);
10517                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10518
10519                 // Note that create_network connects the nodes together for us
10520
10521                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10522                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10523
10524                 // First, get us up to MAX_UNFUNDED_CHANNEL_PEERS so we can test at the edge
10525                 for _ in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
10526                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10527                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10528                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
10529                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10530                         }, true).unwrap();
10531
10532                         nodes[1].node.handle_open_channel(&random_pk, &open_channel_msg);
10533                         let events = nodes[1].node.get_and_clear_pending_events();
10534                         match events[0] {
10535                                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
10536                                         nodes[1].node.accept_inbound_channel(&temporary_channel_id, &random_pk, 23).unwrap();
10537                                 }
10538                                 _ => panic!("Unexpected event"),
10539                         }
10540                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, random_pk);
10541                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10542                 }
10543
10544                 // If we try to accept a channel from another peer non-0conf it will fail.
10545                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10546                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10547                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10548                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10549                 }, true).unwrap();
10550                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10551                 let events = nodes[1].node.get_and_clear_pending_events();
10552                 match events[0] {
10553                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10554                                 match nodes[1].node.accept_inbound_channel(&temporary_channel_id, &last_random_pk, 23) {
10555                                         Err(APIError::APIMisuseError { err }) =>
10556                                                 assert_eq!(err, "Too many peers with unfunded channels, refusing to accept new ones"),
10557                                         _ => panic!(),
10558                                 }
10559                         }
10560                         _ => panic!("Unexpected event"),
10561                 }
10562                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
10563                         open_channel_msg.temporary_channel_id);
10564
10565                 // ...however if we accept the same channel 0conf it should work just fine.
10566                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10567                 let events = nodes[1].node.get_and_clear_pending_events();
10568                 match events[0] {
10569                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10570                                 nodes[1].node.accept_inbound_channel_from_trusted_peer_0conf(&temporary_channel_id, &last_random_pk, 23).unwrap();
10571                         }
10572                         _ => panic!("Unexpected event"),
10573                 }
10574                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
10575         }
10576
10577         #[test]
10578         fn reject_excessively_underpaying_htlcs() {
10579                 let chanmon_cfg = create_chanmon_cfgs(1);
10580                 let node_cfg = create_node_cfgs(1, &chanmon_cfg);
10581                 let node_chanmgr = create_node_chanmgrs(1, &node_cfg, &[None]);
10582                 let node = create_network(1, &node_cfg, &node_chanmgr);
10583                 let sender_intended_amt_msat = 100;
10584                 let extra_fee_msat = 10;
10585                 let hop_data = msgs::InboundOnionPayload::Receive {
10586                         amt_msat: 100,
10587                         outgoing_cltv_value: 42,
10588                         payment_metadata: None,
10589                         keysend_preimage: None,
10590                         payment_data: Some(msgs::FinalOnionHopData {
10591                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
10592                         }),
10593                         custom_tlvs: Vec::new(),
10594                 };
10595                 // Check that if the amount we received + the penultimate hop extra fee is less than the sender
10596                 // intended amount, we fail the payment.
10597                 if let Err(crate::ln::channelmanager::InboundOnionErr { err_code, .. }) =
10598                         node[0].node.construct_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
10599                                 sender_intended_amt_msat - extra_fee_msat - 1, 42, None, true, Some(extra_fee_msat))
10600                 {
10601                         assert_eq!(err_code, 19);
10602                 } else { panic!(); }
10603
10604                 // If amt_received + extra_fee is equal to the sender intended amount, we're fine.
10605                 let hop_data = msgs::InboundOnionPayload::Receive { // This is the same payload as above, InboundOnionPayload doesn't implement Clone
10606                         amt_msat: 100,
10607                         outgoing_cltv_value: 42,
10608                         payment_metadata: None,
10609                         keysend_preimage: None,
10610                         payment_data: Some(msgs::FinalOnionHopData {
10611                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
10612                         }),
10613                         custom_tlvs: Vec::new(),
10614                 };
10615                 assert!(node[0].node.construct_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
10616                         sender_intended_amt_msat - extra_fee_msat, 42, None, true, Some(extra_fee_msat)).is_ok());
10617         }
10618
10619         #[test]
10620         fn test_inbound_anchors_manual_acceptance() {
10621                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
10622                 // flag set and (sometimes) accept channels as 0conf.
10623                 let mut anchors_cfg = test_default_channel_config();
10624                 anchors_cfg.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
10625
10626                 let mut anchors_manual_accept_cfg = anchors_cfg.clone();
10627                 anchors_manual_accept_cfg.manually_accept_inbound_channels = true;
10628
10629                 let chanmon_cfgs = create_chanmon_cfgs(3);
10630                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
10631                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs,
10632                         &[Some(anchors_cfg.clone()), Some(anchors_cfg.clone()), Some(anchors_manual_accept_cfg.clone())]);
10633                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
10634
10635                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10636                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10637
10638                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10639                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
10640                 let msg_events = nodes[1].node.get_and_clear_pending_msg_events();
10641                 match &msg_events[0] {
10642                         MessageSendEvent::HandleError { node_id, action } => {
10643                                 assert_eq!(*node_id, nodes[0].node.get_our_node_id());
10644                                 match action {
10645                                         ErrorAction::SendErrorMessage { msg } =>
10646                                                 assert_eq!(msg.data, "No channels with anchor outputs accepted".to_owned()),
10647                                         _ => panic!("Unexpected error action"),
10648                                 }
10649                         }
10650                         _ => panic!("Unexpected event"),
10651                 }
10652
10653                 nodes[2].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10654                 let events = nodes[2].node.get_and_clear_pending_events();
10655                 match events[0] {
10656                         Event::OpenChannelRequest { temporary_channel_id, .. } =>
10657                                 nodes[2].node.accept_inbound_channel(&temporary_channel_id, &nodes[0].node.get_our_node_id(), 23).unwrap(),
10658                         _ => panic!("Unexpected event"),
10659                 }
10660                 get_event_msg!(nodes[2], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10661         }
10662
10663         #[test]
10664         fn test_anchors_zero_fee_htlc_tx_fallback() {
10665                 // Tests that if both nodes support anchors, but the remote node does not want to accept
10666                 // anchor channels at the moment, an error it sent to the local node such that it can retry
10667                 // the channel without the anchors feature.
10668                 let chanmon_cfgs = create_chanmon_cfgs(2);
10669                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10670                 let mut anchors_config = test_default_channel_config();
10671                 anchors_config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
10672                 anchors_config.manually_accept_inbound_channels = true;
10673                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(anchors_config.clone()), Some(anchors_config.clone())]);
10674                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10675
10676                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 0, None).unwrap();
10677                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10678                 assert!(open_channel_msg.channel_type.as_ref().unwrap().supports_anchors_zero_fee_htlc_tx());
10679
10680                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10681                 let events = nodes[1].node.get_and_clear_pending_events();
10682                 match events[0] {
10683                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10684                                 nodes[1].node.force_close_broadcasting_latest_txn(&temporary_channel_id, &nodes[0].node.get_our_node_id()).unwrap();
10685                         }
10686                         _ => panic!("Unexpected event"),
10687                 }
10688
10689                 let error_msg = get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id());
10690                 nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &error_msg);
10691
10692                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10693                 assert!(!open_channel_msg.channel_type.unwrap().supports_anchors_zero_fee_htlc_tx());
10694
10695                 // Since nodes[1] should not have accepted the channel, it should
10696                 // not have generated any events.
10697                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
10698         }
10699
10700         #[test]
10701         fn test_update_channel_config() {
10702                 let chanmon_cfg = create_chanmon_cfgs(2);
10703                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
10704                 let mut user_config = test_default_channel_config();
10705                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config), Some(user_config)]);
10706                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
10707                 let _ = create_announced_chan_between_nodes(&nodes, 0, 1);
10708                 let channel = &nodes[0].node.list_channels()[0];
10709
10710                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
10711                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10712                 assert_eq!(events.len(), 0);
10713
10714                 user_config.channel_config.forwarding_fee_base_msat += 10;
10715                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
10716                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_base_msat, user_config.channel_config.forwarding_fee_base_msat);
10717                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10718                 assert_eq!(events.len(), 1);
10719                 match &events[0] {
10720                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
10721                         _ => panic!("expected BroadcastChannelUpdate event"),
10722                 }
10723
10724                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate::default()).unwrap();
10725                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10726                 assert_eq!(events.len(), 0);
10727
10728                 let new_cltv_expiry_delta = user_config.channel_config.cltv_expiry_delta + 6;
10729                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
10730                         cltv_expiry_delta: Some(new_cltv_expiry_delta),
10731                         ..Default::default()
10732                 }).unwrap();
10733                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
10734                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10735                 assert_eq!(events.len(), 1);
10736                 match &events[0] {
10737                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
10738                         _ => panic!("expected BroadcastChannelUpdate event"),
10739                 }
10740
10741                 let new_fee = user_config.channel_config.forwarding_fee_proportional_millionths + 100;
10742                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
10743                         forwarding_fee_proportional_millionths: Some(new_fee),
10744                         ..Default::default()
10745                 }).unwrap();
10746                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
10747                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, new_fee);
10748                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10749                 assert_eq!(events.len(), 1);
10750                 match &events[0] {
10751                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
10752                         _ => panic!("expected BroadcastChannelUpdate event"),
10753                 }
10754
10755                 // If we provide a channel_id not associated with the peer, we should get an error and no updates
10756                 // should be applied to ensure update atomicity as specified in the API docs.
10757                 let bad_channel_id = ChannelId::v1_from_funding_txid(&[10; 32], 10);
10758                 let current_fee = nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths;
10759                 let new_fee = current_fee + 100;
10760                 assert!(
10761                         matches!(
10762                                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id, bad_channel_id], &ChannelConfigUpdate {
10763                                         forwarding_fee_proportional_millionths: Some(new_fee),
10764                                         ..Default::default()
10765                                 }),
10766                                 Err(APIError::ChannelUnavailable { err: _ }),
10767                         )
10768                 );
10769                 // Check that the fee hasn't changed for the channel that exists.
10770                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, current_fee);
10771                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10772                 assert_eq!(events.len(), 0);
10773         }
10774
10775         #[test]
10776         fn test_payment_display() {
10777                 let payment_id = PaymentId([42; 32]);
10778                 assert_eq!(format!("{}", &payment_id), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
10779                 let payment_hash = PaymentHash([42; 32]);
10780                 assert_eq!(format!("{}", &payment_hash), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
10781                 let payment_preimage = PaymentPreimage([42; 32]);
10782                 assert_eq!(format!("{}", &payment_preimage), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
10783         }
10784 }
10785
10786 #[cfg(ldk_bench)]
10787 pub mod bench {
10788         use crate::chain::Listen;
10789         use crate::chain::chainmonitor::{ChainMonitor, Persist};
10790         use crate::sign::{KeysManager, InMemorySigner};
10791         use crate::events::{Event, MessageSendEvent, MessageSendEventsProvider};
10792         use crate::ln::channelmanager::{BestBlock, ChainParameters, ChannelManager, PaymentHash, PaymentPreimage, PaymentId, RecipientOnionFields, Retry};
10793         use crate::ln::functional_test_utils::*;
10794         use crate::ln::msgs::{ChannelMessageHandler, Init};
10795         use crate::routing::gossip::NetworkGraph;
10796         use crate::routing::router::{PaymentParameters, RouteParameters};
10797         use crate::util::test_utils;
10798         use crate::util::config::{UserConfig, MaxDustHTLCExposure};
10799
10800         use bitcoin::hashes::Hash;
10801         use bitcoin::hashes::sha256::Hash as Sha256;
10802         use bitcoin::{Block, BlockHeader, PackedLockTime, Transaction, TxMerkleNode, TxOut};
10803
10804         use crate::sync::{Arc, Mutex, RwLock};
10805
10806         use criterion::Criterion;
10807
10808         type Manager<'a, P> = ChannelManager<
10809                 &'a ChainMonitor<InMemorySigner, &'a test_utils::TestChainSource,
10810                         &'a test_utils::TestBroadcaster, &'a test_utils::TestFeeEstimator,
10811                         &'a test_utils::TestLogger, &'a P>,
10812                 &'a test_utils::TestBroadcaster, &'a KeysManager, &'a KeysManager, &'a KeysManager,
10813                 &'a test_utils::TestFeeEstimator, &'a test_utils::TestRouter<'a>,
10814                 &'a test_utils::TestLogger>;
10815
10816         struct ANodeHolder<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> {
10817                 node: &'node_cfg Manager<'chan_mon_cfg, P>,
10818         }
10819         impl<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> NodeHolder for ANodeHolder<'node_cfg, 'chan_mon_cfg, P> {
10820                 type CM = Manager<'chan_mon_cfg, P>;
10821                 #[inline]
10822                 fn node(&self) -> &Manager<'chan_mon_cfg, P> { self.node }
10823                 #[inline]
10824                 fn chain_monitor(&self) -> Option<&test_utils::TestChainMonitor> { None }
10825         }
10826
10827         pub fn bench_sends(bench: &mut Criterion) {
10828                 bench_two_sends(bench, "bench_sends", test_utils::TestPersister::new(), test_utils::TestPersister::new());
10829         }
10830
10831         pub fn bench_two_sends<P: Persist<InMemorySigner>>(bench: &mut Criterion, bench_name: &str, persister_a: P, persister_b: P) {
10832                 // Do a simple benchmark of sending a payment back and forth between two nodes.
10833                 // Note that this is unrealistic as each payment send will require at least two fsync
10834                 // calls per node.
10835                 let network = bitcoin::Network::Testnet;
10836                 let genesis_block = bitcoin::blockdata::constants::genesis_block(network);
10837
10838                 let tx_broadcaster = test_utils::TestBroadcaster::new(network);
10839                 let fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
10840                 let logger_a = test_utils::TestLogger::with_id("node a".to_owned());
10841                 let scorer = RwLock::new(test_utils::TestScorer::new());
10842                 let router = test_utils::TestRouter::new(Arc::new(NetworkGraph::new(network, &logger_a)), &scorer);
10843
10844                 let mut config: UserConfig = Default::default();
10845                 config.channel_config.max_dust_htlc_exposure = MaxDustHTLCExposure::FeeRateMultiplier(5_000_000 / 253);
10846                 config.channel_handshake_config.minimum_depth = 1;
10847
10848                 let chain_monitor_a = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_a);
10849                 let seed_a = [1u8; 32];
10850                 let keys_manager_a = KeysManager::new(&seed_a, 42, 42);
10851                 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 {
10852                         network,
10853                         best_block: BestBlock::from_network(network),
10854                 }, genesis_block.header.time);
10855                 let node_a_holder = ANodeHolder { node: &node_a };
10856
10857                 let logger_b = test_utils::TestLogger::with_id("node a".to_owned());
10858                 let chain_monitor_b = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_b);
10859                 let seed_b = [2u8; 32];
10860                 let keys_manager_b = KeysManager::new(&seed_b, 42, 42);
10861                 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 {
10862                         network,
10863                         best_block: BestBlock::from_network(network),
10864                 }, genesis_block.header.time);
10865                 let node_b_holder = ANodeHolder { node: &node_b };
10866
10867                 node_a.peer_connected(&node_b.get_our_node_id(), &Init {
10868                         features: node_b.init_features(), networks: None, remote_network_address: None
10869                 }, true).unwrap();
10870                 node_b.peer_connected(&node_a.get_our_node_id(), &Init {
10871                         features: node_a.init_features(), networks: None, remote_network_address: None
10872                 }, false).unwrap();
10873                 node_a.create_channel(node_b.get_our_node_id(), 8_000_000, 100_000_000, 42, None).unwrap();
10874                 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()));
10875                 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()));
10876
10877                 let tx;
10878                 if let Event::FundingGenerationReady { temporary_channel_id, output_script, .. } = get_event!(node_a_holder, Event::FundingGenerationReady) {
10879                         tx = Transaction { version: 2, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: vec![TxOut {
10880                                 value: 8_000_000, script_pubkey: output_script,
10881                         }]};
10882                         node_a.funding_transaction_generated(&temporary_channel_id, &node_b.get_our_node_id(), tx.clone()).unwrap();
10883                 } else { panic!(); }
10884
10885                 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()));
10886                 let events_b = node_b.get_and_clear_pending_events();
10887                 assert_eq!(events_b.len(), 1);
10888                 match events_b[0] {
10889                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
10890                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
10891                         },
10892                         _ => panic!("Unexpected event"),
10893                 }
10894
10895                 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()));
10896                 let events_a = node_a.get_and_clear_pending_events();
10897                 assert_eq!(events_a.len(), 1);
10898                 match events_a[0] {
10899                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
10900                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
10901                         },
10902                         _ => panic!("Unexpected event"),
10903                 }
10904
10905                 assert_eq!(&tx_broadcaster.txn_broadcasted.lock().unwrap()[..], &[tx.clone()]);
10906
10907                 let block = create_dummy_block(BestBlock::from_network(network).block_hash(), 42, vec![tx]);
10908                 Listen::block_connected(&node_a, &block, 1);
10909                 Listen::block_connected(&node_b, &block, 1);
10910
10911                 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()));
10912                 let msg_events = node_a.get_and_clear_pending_msg_events();
10913                 assert_eq!(msg_events.len(), 2);
10914                 match msg_events[0] {
10915                         MessageSendEvent::SendChannelReady { ref msg, .. } => {
10916                                 node_b.handle_channel_ready(&node_a.get_our_node_id(), msg);
10917                                 get_event_msg!(node_b_holder, MessageSendEvent::SendChannelUpdate, node_a.get_our_node_id());
10918                         },
10919                         _ => panic!(),
10920                 }
10921                 match msg_events[1] {
10922                         MessageSendEvent::SendChannelUpdate { .. } => {},
10923                         _ => panic!(),
10924                 }
10925
10926                 let events_a = node_a.get_and_clear_pending_events();
10927                 assert_eq!(events_a.len(), 1);
10928                 match events_a[0] {
10929                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
10930                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
10931                         },
10932                         _ => panic!("Unexpected event"),
10933                 }
10934
10935                 let events_b = node_b.get_and_clear_pending_events();
10936                 assert_eq!(events_b.len(), 1);
10937                 match events_b[0] {
10938                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
10939                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
10940                         },
10941                         _ => panic!("Unexpected event"),
10942                 }
10943
10944                 let mut payment_count: u64 = 0;
10945                 macro_rules! send_payment {
10946                         ($node_a: expr, $node_b: expr) => {
10947                                 let payment_params = PaymentParameters::from_node_id($node_b.get_our_node_id(), TEST_FINAL_CLTV)
10948                                         .with_bolt11_features($node_b.invoice_features()).unwrap();
10949                                 let mut payment_preimage = PaymentPreimage([0; 32]);
10950                                 payment_preimage.0[0..8].copy_from_slice(&payment_count.to_le_bytes());
10951                                 payment_count += 1;
10952                                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner());
10953                                 let payment_secret = $node_b.create_inbound_payment_for_hash(payment_hash, None, 7200, None).unwrap();
10954
10955                                 $node_a.send_payment(payment_hash, RecipientOnionFields::secret_only(payment_secret),
10956                                         PaymentId(payment_hash.0),
10957                                         RouteParameters::from_payment_params_and_value(payment_params, 10_000),
10958                                         Retry::Attempts(0)).unwrap();
10959                                 let payment_event = SendEvent::from_event($node_a.get_and_clear_pending_msg_events().pop().unwrap());
10960                                 $node_b.handle_update_add_htlc(&$node_a.get_our_node_id(), &payment_event.msgs[0]);
10961                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &payment_event.commitment_msg);
10962                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_b }, &$node_a.get_our_node_id());
10963                                 $node_a.handle_revoke_and_ack(&$node_b.get_our_node_id(), &raa);
10964                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &cs);
10965                                 $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()));
10966
10967                                 expect_pending_htlcs_forwardable!(ANodeHolder { node: &$node_b });
10968                                 expect_payment_claimable!(ANodeHolder { node: &$node_b }, payment_hash, payment_secret, 10_000);
10969                                 $node_b.claim_funds(payment_preimage);
10970                                 expect_payment_claimed!(ANodeHolder { node: &$node_b }, payment_hash, 10_000);
10971
10972                                 match $node_b.get_and_clear_pending_msg_events().pop().unwrap() {
10973                                         MessageSendEvent::UpdateHTLCs { node_id, updates } => {
10974                                                 assert_eq!(node_id, $node_a.get_our_node_id());
10975                                                 $node_a.handle_update_fulfill_htlc(&$node_b.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
10976                                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &updates.commitment_signed);
10977                                         },
10978                                         _ => panic!("Failed to generate claim event"),
10979                                 }
10980
10981                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_a }, &$node_b.get_our_node_id());
10982                                 $node_b.handle_revoke_and_ack(&$node_a.get_our_node_id(), &raa);
10983                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &cs);
10984                                 $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()));
10985
10986                                 expect_payment_sent!(ANodeHolder { node: &$node_a }, payment_preimage);
10987                         }
10988                 }
10989
10990                 bench.bench_function(bench_name, |b| b.iter(|| {
10991                         send_payment!(node_a, node_b);
10992                         send_payment!(node_b, node_a);
10993                 }));
10994         }
10995 }